
/* ─── RESET & ROOT ─────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary:       #c17b5e;
  --primary-light: #d99b7e;
  --primary-pale:  #f5ece6;
  --dark:          #2d2a24;
  --dark2:         #1e1c18;
  --light:         #fcf7f2;
  --sand:          #e5d9cc;
  --sand-dark:     #d4c5b4;
  --gray:          #6b6258;
  --gray-light:    #9e9188;
  --white:         #ffffff;
  --radius:        16px;
  --radius-sm:     10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.15;
}
h1 { font-size: clamp(48px, 7vw, 80px); letter-spacing: -1.5px; }
h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -1px; }
h3 { font-size: 22px; }
em { font-style: italic; }

/* ─── CUSTOM CURSOR ─────────────────────────────── */
.cursor {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.5;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 12px; height: 12px; }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 56px; height: 56px; opacity: 0.25; }

@media (hover: none) { .cursor, .cursor-follower { display: none; } }

/* ─── SCROLL REVEAL ─────────────────────────────── */
/* Elements are visible by default */
.reveal { opacity: 1; transform: none; }

/* Only animate when JS has confirmed the page is ready */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.js-ready .reveal:nth-child(2) { transition-delay: 0.08s; }
.js-ready .reveal:nth-child(3) { transition-delay: 0.16s; }
.js-ready .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ─── HEADER ─────────────────────────────────────── */
#header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(252, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow 0.3s;
}
#header.scrolled { box-shadow: 0 4px 24px rgba(45,42,36,0.07); }
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 500;
  text-decoration: none; color: var(--dark);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.3px;
}
.logo em { color: var(--primary); font-style: italic; }
.logo-star {
  color: var(--primary); font-size: 26px;
  display: inline-block;
  animation: spin-slow 12s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

nav { display: flex; gap: 36px; align-items: center; }
nav a {
  text-decoration: none; color: var(--gray);
  font-size: 14px; font-weight: 500;
  transition: color 0.2s; letter-spacing: 0.01em;
}
nav a:hover { color: var(--dark); }
.nav-cta {
  background: var(--dark) !important; color: var(--white) !important;
  padding: 10px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--primary) !important; transform: translateY(-1px); }

/* Mobile */
.mobile-toggle {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white); padding: 20px 28px 28px;
  gap: 0; border-bottom: 1px solid var(--sand);
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--dark);
  font-size: 16px; font-weight: 500;
  padding: 14px 0; border-bottom: 1px solid var(--sand);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-cta {
  margin-top: 8px; text-align: center;
  padding: 14px; border-radius: 999px;
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  min-height: 95vh;
  display: flex; align-items: center;
  background: var(--light);
  position: relative; overflow: hidden;
  padding: 100px 0 80px;
}
.hero-deco-star {
  position: absolute; right: -2%;
  top: 50%; transform: translateY(-50%);
  font-size: clamp(280px, 35vw, 480px);
  color: var(--sand); opacity: 0.45;
  font-family: 'Playfair Display', serif;
  user-select: none; line-height: 1;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(-53%) rotate(8deg); }
}
.hero-deco-circle {
  position: absolute; left: -120px; bottom: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--primary); opacity: 0.05;
}
.hero-inner { position: relative; z-index: 2; max-width: 680px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--sand);
  color: var(--gray); font-size: 12px; font-weight: 500;
  padding: 6px 16px; border-radius: 999px;
  margin-bottom: 28px; letter-spacing: 0.04em; text-transform: uppercase;
}
.hero-tag-dot {
  width: 7px; height: 7px;
  background: var(--primary); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }
.hero h1 { margin-bottom: 24px; color: var(--dark); }
.hero h1 em { color: var(--primary); }
.hero-outline {
  -webkit-text-stroke: 2px var(--dark);
  color: transparent;
  font-style: italic;
}
.hero-sub {
  font-size: 18px; color: var(--gray);
  line-height: 1.7; max-width: 520px;
  margin-bottom: 36px; font-weight: 300;
}
.hero-actions {
  display: flex; gap: 14px;
  flex-wrap: wrap; margin-bottom: 36px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--dark); color: var(--white);
  padding: 16px 32px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: var(--primary); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--dark);
  padding: 16px 32px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--dark);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-ghost:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }
.hero-trust { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-pill {
  display: flex; align-items: center; gap: 7px;
  background: var(--white); border: 1px solid var(--sand);
  color: var(--gray); font-size: 13px; font-weight: 500;
  padding: 7px 14px; border-radius: 999px;
}
.trust-pill i { color: var(--primary); font-size: 12px; }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gray-light); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scroll-drop 1.5s ease-in-out infinite;
}
@keyframes scroll-drop { 0%,100%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1)} }

/* ─── TICKER ─────────────────────────────────────── */
.ticker-wrap {
  background: var(--dark); overflow: hidden;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ticker-track {
  display: inline-flex; gap: 32px; white-space: nowrap;
  animation: ticker 22s linear infinite;
  font-size: 13px; font-weight: 500;
  color: var(--sand-dark); letter-spacing: 0.05em; text-transform: uppercase;
}
.ticker-dot { color: var(--primary); font-size: 10px; opacity: 0.7; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── STATS ──────────────────────────────────────── */
.stats-section { background: var(--white); padding: 64px 0; }
.stats-grid {
  display: flex; align-items: center;
  gap: 0; justify-content: space-between;
}
.stat-item { text-align: center; flex: 1; padding: 20px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500; color: var(--dark);
  line-height: 1; margin-bottom: 8px;
  letter-spacing: -2px;
}
.stat-label { font-size: 14px; color: var(--gray); font-weight: 400; }
.stat-divider {
  width: 1px; height: 60px;
  background: var(--sand); flex-shrink: 0;
}

/* ─── SECTION SHARED ─────────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}
.section-label.light { color: var(--primary-light); }
.section-sub { color: var(--gray); font-size: 17px; margin-top: 12px; font-weight: 300; }
.section-header h2 em { color: var(--primary); }

/* ─── FOR SECTION ────────────────────────────────── */
.for-section { padding: 80px 0; background: var(--light); }
.for-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.for-card {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.for-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(193,123,94,0.12);
}
.for-num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700;
  color: var(--sand); line-height: 1;
  transition: color 0.25s;
}
.for-card:hover .for-num { color: var(--primary-pale); }
.for-icon { font-size: 28px; color: var(--primary); margin-bottom: 20px; }
.for-card h3 { font-size: 20px; margin-bottom: 10px; }
.for-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ─── WORK SECTION ───────────────────────────────── */
.work-section { padding: 80px 0; background: var(--white); }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.work-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--sand); text-decoration: none;
  display: block; background: var(--white);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.work-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(45,42,36,0.1); border-color: var(--primary); }
.work-card-img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--sand); }
.work-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.work-card:hover .work-card-img img { transform: scale(1.04); }
.work-card-overlay {
  position: absolute; inset: 0;
  background: rgba(45,42,36,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.work-card:hover .work-card-overlay { opacity: 1; }
.work-card-overlay span {
  color: var(--white); font-size: 16px; font-weight: 500;
  letter-spacing: 0.02em;
}
.work-card-body { padding: 24px 28px 28px; }
.work-card-tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.work-card-tags span {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--primary);
  background: var(--primary-pale);
  padding: 4px 10px; border-radius: 999px;
}
.work-card h3 { font-size: 22px; margin-bottom: 8px; color: var(--dark); }
.work-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.work-card-cta {
  background: var(--light) !important;
  display: flex !important;
  align-items: center; justify-content: center;
  cursor: default;
}
.work-card-cta:hover { transform: none !important; box-shadow: none !important; border-color: var(--sand) !important; }
.work-card-cta-inner { text-align: center; padding: 40px 32px; }
.work-cta-star {
  font-size: 52px; color: var(--primary); opacity: 0.4;
  display: block; margin-bottom: 16px;
  animation: spin-slow 18s linear infinite;
}
.work-card-cta h3 { font-size: 26px; margin-bottom: 10px; color: var(--dark); }
.work-card-cta p { font-size: 15px; color: var(--gray); margin-bottom: 24px; }

/* ─── SERVICES SECTION ───────────────────────────── */
.services-section { padding: 80px 0; background: var(--light); }
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-row {
  display: grid; grid-template-columns: 60px 1fr 60px auto;
  align-items: center; gap: 32px;
  padding: 36px 0; border-bottom: 1px solid var(--sand);
  transition: padding 0.25s;
  cursor: default;
}
.service-row:first-child { border-top: 1px solid var(--sand); }
.service-row:hover { padding-left: 12px; }
.service-row-num {
  font-family: 'Playfair Display', serif;
  font-size: 14px; font-weight: 500;
  color: var(--primary); letter-spacing: 0.05em;
}
.service-row-content h3 { font-size: 22px; margin-bottom: 8px; transition: color 0.2s; }
.service-row:hover .service-row-content h3 { color: var(--primary); }
.service-row-content p { font-size: 14px; color: var(--gray); line-height: 1.7; max-width: 520px; }
.service-row-icon {
  font-size: 28px; color: var(--sand-dark);
  text-align: center; transition: color 0.2s;
}
.service-row:hover .service-row-icon { color: var(--primary); }
.service-row-link {
  color: var(--primary); font-size: 14px; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  transition: letter-spacing 0.2s;
}
.service-row:hover .service-row-link { letter-spacing: 0.03em; }

/* ─── PROCESS ────────────────────────────────────── */
.process-section { padding: 80px 0; background: var(--white); }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 32px; position: relative;
}
.process-step { position: relative; }
.process-step-num {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 500; color: var(--primary);
  margin-bottom: 20px; position: relative; z-index: 2;
  background: var(--white);
  transition: background 0.25s, color 0.25s;
}
.process-step:hover .process-step-num { background: var(--primary); color: var(--white); }
.process-step-line {
  position: absolute; top: 26px; left: 52px;
  right: -32px; height: 2px;
  background: linear-gradient(to right, var(--primary), var(--sand));
  z-index: 1;
}
.process-step-line.last { display: none; }
.process-step h3 { font-size: 18px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ─── WHY SECTION ────────────────────────────────── */
.why-section { background: var(--dark); padding: 80px 0; }
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.why-text h2 { color: var(--white); margin-bottom: 20px; }
.why-text h2 em { color: var(--primary-light); }
.why-text p { color: #b5aa9a; font-size: 16px; line-height: 1.8; font-weight: 300; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px 22px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(193,123,94,0.4);
  transform: translateY(-4px);
}
.why-card i { font-size: 22px; color: var(--primary); margin-bottom: 14px; display: block; }
.why-card h4 { font-size: 16px; color: var(--white); margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 600; }
.why-card p { font-size: 13px; color: #8f887d; line-height: 1.65; }

/* ─── PRICING ────────────────────────────────────── */
.pricing-section { padding: 80px 0; background: var(--light); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-bottom: 40px;
}
.pricing-card {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius); padding: 36px 28px;
  display: flex; flex-direction: column; position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(45,42,36,0.08); }
.pricing-card-featured {
  border: 2px solid var(--primary);
  background: var(--white);
}
.pricing-badge {
  position: absolute; top: -13px; left: 28px;
  background: var(--primary); color: var(--white);
  font-size: 11px; font-weight: 600;
  padding: 4px 16px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.pricing-card-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gray); margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 500;
  color: var(--dark); letter-spacing: -2px;
  line-height: 1; margin-bottom: 4px;
}
.pricing-period { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.pricing-card > p { font-size: 14px; color: var(--gray); margin-bottom: 24px; line-height: 1.6; }
.pricing-features {
  list-style: none; flex: 1; margin-bottom: 28px;
}
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--sand);
  font-size: 14px; color: var(--dark);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--primary); font-size: 12px; flex-shrink: 0; }
.btn-outline-dark {
  display: block; text-align: center;
  padding: 13px; border-radius: 999px;
  border: 1.5px solid var(--dark); color: var(--dark);
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.pricing-note {
  text-align: center; font-size: 15px;
  color: var(--gray); padding: 20px;
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius-sm); max-width: 500px; margin: 0 auto;
}

/* ─── CONTACT ────────────────────────────────────── */
.contact-section { background: var(--dark); padding: 80px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-left h2 { color: var(--white); margin-bottom: 16px; }
.contact-left h2 em { color: var(--primary-light); }
.contact-left > p { color: #b5aa9a; font-size: 16px; line-height: 1.8; margin-bottom: 36px; font-weight: 300; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; color: inherit;
  transition: opacity 0.2s;
}
.contact-item:hover { opacity: 0.75; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 16px; flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--white); font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.contact-item span { font-size: 14px; color: #b5aa9a; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  padding: 14px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.whatsapp-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.contact-right {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 36px;
}
.contact-form label {
  display: block; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--sand-dark); margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm); color: var(--white);
  font-family: inherit; font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #6b6258; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--primary); }
.contact-form select { color: var(--sand-dark); cursor: pointer; }
.contact-form select option { background: var(--dark2); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #8f887d; margin-bottom: 20px;
}
.form-check input[type=checkbox] { width: auto; flex-shrink: 0; accent-color: var(--primary); }
.form-check a { color: var(--primary-light); }
.submit-btn {
  width: 100%; padding: 15px; border-radius: 999px;
  background: var(--primary); color: var(--white);
  border: none; cursor: pointer; font-family: inherit;
  font-size: 15px; font-weight: 500;
  transition: opacity 0.2s, transform 0.2s;
}
.submit-btn:hover { opacity: 0.88; transform: translateY(-2px); }

/* ─── WHATSAPP FLOAT ──────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  background: #25D366; color: var(--white);
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; text-decoration: none; z-index: 500;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }

/* ─── FOOTER ─────────────────────────────────────── */
footer { background: var(--dark2); padding: 60px 0 32px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--white);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px; font-weight: 500;
}
.footer-brand .footer-logo em { color: var(--primary); font-style: italic; }
.footer-brand > p { color: #b5aa9a; font-size: 14px; line-height: 1.6; margin-bottom: 6px; }
.footer-location { font-size: 13px; color: #6b6258 !important; }
.footer-links h4 {
  color: var(--sand-dark); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 18px; font-family: 'Inter', sans-serif;
}
.footer-links a {
  display: block; color: #8f887d; text-decoration: none;
  font-size: 14px; margin-bottom: 10px; transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 10px; margin-bottom: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); text-decoration: none;
  font-size: 14px; transition: background 0.2s; margin: 0;
}
.footer-social a:hover { background: var(--primary); }
.footer-tel {
  color: var(--primary-light) !important;
  font-size: 14px; margin: 0 !important;
}
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: #5a5348; }
.footer-top-link {
  font-size: 13px; color: var(--primary); text-decoration: none;
  transition: letter-spacing 0.2s;
}
.footer-top-link:hover { letter-spacing: 0.03em; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .for-grid { grid-template-columns: 1fr; gap: 16px; }
  .work-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step-line { display: none; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .mobile-toggle { display: flex; }
  .stats-grid { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 45%; }
  .service-row { grid-template-columns: 40px 1fr; gap: 16px; }
  .service-row-icon, .service-row-link { display: none; }
  .why-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-deco-star { font-size: 180px; opacity: 0.25; right: -10%; }
  .hero-scroll-hint { display: none; }
}


/* ─── ABOUT PAGE ─────────────────────────────────── */
.about-hero {
  background: var(--light); padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.about-hero-deco {
  position: absolute; right: -60px; top: 50%;
  transform: translateY(-50%);
  font-size: 320px; color: var(--sand);
  opacity: 0.5; line-height: 1;
  font-family: 'Playfair Display', serif;
  animation: float 10s ease-in-out infinite;
}
.about-hero-inner { position: relative; z-index: 2; max-width: 640px; }
.about-hero .section-label { margin-bottom: 12px; }
.about-hero h1 { margin-bottom: 20px; }
.about-hero p { font-size: 18px; color: var(--gray); line-height: 1.7; font-weight: 300; }

.about-mission { background: var(--dark); padding: 80px 0; }
.about-mission-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-mission h2 { color: var(--white); margin-bottom: 20px; }
.about-mission h2 em { color: var(--primary-light); }
.about-mission p { color: #b5aa9a; font-size: 16px; line-height: 1.8; font-weight: 300; margin-bottom: 16px; }
.about-mission strong { color: var(--white); font-weight: 600; }
.mission-quote {
  border-left: 3px solid var(--primary); padding-left: 24px;
  font-family: 'Playfair Display', serif; font-size: 22px;
  font-style: italic; color: var(--sand); line-height: 1.6; margin-bottom: 0;
}
.about-stats-inner {
  display: flex; justify-content: space-around; align-items: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 40px 32px;
}
.about-stat { text-align: center; }
.about-stat-num {
  font-family: 'Playfair Display', serif; font-size: 48px;
  font-weight: 500; color: var(--primary); letter-spacing: -2px;
  line-height: 1; margin-bottom: 6px;
}
.about-stat-label { font-size: 13px; color: #8f887d; }
.about-stat-div { width: 1px; height: 50px; background: rgba(255,255,255,0.08); }

.about-values { padding: 80px 0; background: var(--white); }
.about-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.about-value-card {
  border: 1px solid var(--sand); border-radius: var(--radius);
  padding: 32px 24px; background: var(--light);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.about-value-card:hover {
  transform: translateY(-5px); border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(193,123,94,0.1);
}
.about-value-card i { font-size: 24px; color: var(--primary); margin-bottom: 16px; display: block; }
.about-value-card h3 { font-size: 18px; margin-bottom: 10px; }
.about-value-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

.about-cta-strip { background: var(--primary); padding: 64px 0; text-align: center; }
.about-cta-strip h2 { color: var(--white); margin-bottom: 16px; }
.about-cta-strip p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 32px; font-weight: 300; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--primary);
  padding: 16px 32px; border-radius: 999px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s; margin: 0 8px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-white-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 15px 32px; border-radius: 999px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s, transform 0.2s; margin: 0 8px;
}
.btn-white-ghost:hover { border-color: var(--white); transform: translateY(-2px); }

/* ─── PRIVACY & TERMS PAGES ──────────────────────── */
.page-header {
  background: var(--light); padding: 120px 0 60px;
  text-align: center; border-bottom: 1px solid var(--sand);
}
.page-header h1 { margin-bottom: 12px; }
.page-header h1 span { color: var(--primary); font-style: italic; }
.page-header p { color: var(--gray); font-size: 17px; }

.policy-content, .terms-content {
  max-width: 800px; margin: 0 auto; padding: 60px 24px;
}
.policy-content h2, .terms-content h2 {
  margin: 40px 0 16px; font-size: 24px; color: var(--dark);
}
.policy-content p, .policy-content ul,
.terms-content p, .terms-content ul {
  margin-bottom: 16px; color: var(--gray); line-height: 1.8; font-size: 15px;
}
.policy-content ul, .terms-content ul { padding-left: 24px; }
.policy-content ul li, .terms-content ul li { margin-bottom: 8px; }
.last-updated { color: var(--gray); font-style: italic; margin-bottom: 40px; font-size: 14px; }

/* ─── ABOUT RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .about-mission-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .about-stats-inner { flex-wrap: wrap; gap: 24px; }
}
@media (max-width: 768px) {
  .about-hero { padding: 100px 0 60px; }
  .about-hero-deco { font-size: 160px; opacity: 0.25; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-stats-inner { flex-direction: column; }
  .about-stat-div { width: 80%; height: 1px; }
}

/* ─── INLINE SVG ICONS ───────────────────────────── */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
}
.icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: block;
}
