:root {
  --sand-50: #FAF7F2;
  --sand-100: #F3EDE3;
  --sand-200: #E8DECC;
  --sand-300: #D6C6AD;
  --sand-400: #BFA688;
  --sand-500: #A78968;
  --sand-600: #8C6F52;
  --sand-700: #6F5640;
  --sand-800: #594636;
  --sand-900: #3E3026;
  --ochre-400: #C98B3B;
  --ochre-500: #B5792E;
  --ochre-600: #946025;
  --ochre-700: #74491E;
  --teal-700: #0F4C4B;
  --teal-800: #0A3534;
  --teal-900: #062221;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --max-width: 1400px;
  --section-py: clamp(90px, 12vh, 160px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Hanken Grotesk", sans-serif;
  background: var(--sand-50);
  color: var(--sand-900);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
}
.italic-accent { font-style: italic; font-weight: 400; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(92%, var(--max-width));
  margin-inline: auto;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
.section-header h2 { font-size: clamp(2.1rem, 3.8vw, 3.6rem); max-width: 20ch; }
.section-header p {
  font-size: 1.08rem;
  color: var(--sand-600);
  line-height: 1.65;
  max-width: 54ch;
  margin: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--ochre-500);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), background 0.3s, color 0.3s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--teal-700);
  color: #fff;
  box-shadow: 0 12px 32px rgba(15, 76, 75, 0.22);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(15, 76, 75, 0.3); background: var(--teal-800); }
.btn-ochre {
  background: var(--ochre-500);
  color: #fff;
  box-shadow: 0 12px 32px rgba(181, 121, 46, 0.24);
}
.btn-ochre:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(181, 121, 46, 0.32); background: var(--ochre-600); }
.btn-outline {
  background: transparent;
  color: var(--teal-700);
  border: 1.5px solid var(--teal-700);
}
.btn-outline:hover { background: var(--teal-700); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--teal-800);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--sand-50); transform: translateY(-3px); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s var(--ease-out-quart), padding 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart);
}
.site-header.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(62, 48, 38, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 44px; height: 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
}
.logo-mark span { background: var(--teal-700); border-radius: 2px; opacity: 0.85; }
.logo-mark span:nth-child(2) { background: var(--ochre-500); }
.logo-mark span:nth-child(3) { background: var(--sand-400); }
.logo-text { font-family: "Fraunces", serif; font-size: 1.25rem; line-height: 1.05; font-weight: 600; }
.logo-text small { display: block; font-size: 0.68rem; font-family: "Hanken Grotesk", sans-serif; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sand-600); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: 0.88rem; font-weight: 500; color: var(--sand-800);
  position: relative; padding-bottom: 4px;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--ochre-500); transition: width 0.35s var(--ease-out-expo);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.lang-switch {
  display: flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 0.86rem; cursor: pointer;
}
.phone-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: rgba(15, 76, 75, 0.06);
  color: var(--teal-800); font-weight: 600; font-size: 0.9rem;
  transition: background 0.3s;
}
.phone-pill:hover { background: rgba(15, 76, 75, 0.12); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { width: 26px; height: 2px; background: var(--sand-900); transition: 0.3s; }

@media (max-width: 1040px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .phone-pill span { display: none; }
}

/* Mega menu */
.mega-wrap { position: relative; }
.mega-toggle {
  display: inline-flex; align-items: center; gap: 6px;
}
.mega-chevron { transition: transform 0.3s var(--ease-out-expo); }
.mega-wrap:hover .mega-chevron, .mega-wrap.open .mega-chevron { transform: rotate(180deg); }
.mega-menu {
  position: absolute; top: calc(100% + 18px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(900px, 92vw);
  background: #fff;
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(62, 48, 38, 0.14);
  padding: 34px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease-out-quart), transform 0.35s var(--ease-out-quart);
  z-index: 999;
}
.mega-menu::before {
  content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px; background: #fff; border-left: 1px solid var(--sand-200); border-top: 1px solid var(--sand-200);
}
.mega-wrap:hover .mega-menu, .mega-wrap.open .mega-menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.mega-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; }
.mega-main h3 { font-size: 1.4rem; margin-bottom: 22px; }
.mega-main h3 em { color: var(--ochre-600); font-style: italic; }
.mega-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 28px; }
.mega-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--sand-100);
  font-weight: 500; color: var(--sand-800);
  transition: color 0.2s, transform 0.2s;
}
.mega-link:hover { color: var(--teal-700); transform: translateX(4px); }
.mega-link-icon {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: var(--sand-100); display: grid; place-items: center;
}
.mega-link-icon svg { width: 16px; height: 16px; stroke: var(--teal-700); }
.mega-feature { background: var(--sand-100); border-radius: var(--radius-md); overflow: hidden; }
.mega-feature img { width: 100%; height: 160px; object-fit: cover; }
.mega-feature-text { padding: 22px; }
.mega-feature-text p { margin: 0 0 8px; color: var(--sand-600); font-size: 0.92rem; }
.mega-feature-text .mega-lead { font-family: "Fraunces", serif; font-size: 1.15rem; color: var(--sand-900); font-weight: 600; }
.mega-feature-text .btn { width: 100%; margin-top: 14px; }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; background: var(--sand-50);
  z-index: 1500; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 22px;
  transform: translateX(100%); transition: transform 0.45s var(--ease-out-expo);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: "Fraunces", serif; font-size: 1.5rem; color: var(--sand-900); }
.mobile-nav .close { position: absolute; top: 20px; right: 20px; background: none; border: none; cursor: pointer; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 110px;
  background: var(--sand-100);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0;
  min-height: calc(100svh - 110px);
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(36px, 5vw, 80px) 0;
  position: relative; z-index: 2;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  max-width: 12ch;
  margin-bottom: 24px;
}
.hero p.lead {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.65; color: var(--sand-700);
  max-width: 52ch; margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 52px; flex-wrap: wrap; }
.stat strong {
  display: block; font-family: "Fraunces", serif; font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--teal-700); line-height: 1;
}
.stat span { font-size: 0.78rem; color: var(--sand-600); font-weight: 500; }
.hero-media {
  position: relative; min-height: 100%;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(243,237,227,0.35) 0%, rgba(243,237,227,0) 45%);
  pointer-events: none;
}
.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--sand-600); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 3;
}
.scroll-hint svg { animation: bob 2s ease-in-out infinite; }

@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 420px; clip-path: none; order: -1; }
  .hero-media::after { background: linear-gradient(180deg, rgba(243,237,227,0.75) 0%, rgba(243,237,227,0) 50%); }
  .hero-content { padding-top: 26px; }
  .hero h1 { max-width: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
}

/* Page hero (compact) */
.page-hero {
  padding: 160px 0 90px;
  background: var(--sand-100);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(201,139,59,0.08) 0%, transparent 45%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 780px; }
.page-hero h1 { font-size: clamp(2.4rem, 4.5vw, 4rem); margin-bottom: 18px; }
.page-hero p { font-size: 1.15rem; color: var(--sand-700); line-height: 1.65; margin: 0; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--sand-500); margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--teal-700); }

/* Services */
.services { padding: var(--section-py) 0; background: var(--sand-50); position: relative; }
.services::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(201,139,59,0.06) 0%, transparent 50%),
              radial-gradient(circle at 20% 90%, rgba(15,76,75,0.04) 0%, transparent 45%);
  pointer-events: none;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.service-card {
  position: relative; background: #fff; border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg); padding: 30px;
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo), border-color 0.3s;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--ochre-500), var(--teal-700));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(62, 48, 38, 0.1); border-color: var(--sand-300); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 50px; height: 50px; border-radius: var(--radius-md);
  background: var(--sand-100); display: grid; place-items: center; margin-bottom: 18px;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--teal-700); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--sand-600); line-height: 1.6; margin: 0 0 18px; }
.service-card a {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal-700);
}
.service-card a svg { transition: transform 0.3s var(--ease-out-expo); }
.service-card:hover a svg { transform: translateX(5px); }

@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) {
  .services-grid { grid-template-columns: 1fr; }
  .section-header { grid-template-columns: 1fr; gap: 18px; }
}

/* Premium compare */
.premium-section { padding: var(--section-py) 0; background: var(--sand-100); position: relative; overflow: hidden; }
.premium-section::before {
  content: "Mangen"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: "Fraunces", serif; font-size: clamp(8rem, 22vw, 22rem); font-weight: 700;
  color: var(--sand-200); opacity: 0.35; pointer-events: none; white-space: nowrap; user-select: none;
}
.premium-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.premium-text h2 { font-size: clamp(2.1rem, 3.8vw, 3.4rem); margin-bottom: 20px; }
.premium-text h2 em { color: var(--ochre-600); font-style: italic; }
.premium-text p { color: var(--sand-700); line-height: 1.7; margin-bottom: 24px; }
.premium-checklist { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 12px; }
.premium-checklist li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; color: var(--sand-800); }
.premium-checklist li svg { flex-shrink: 0; margin-top: 2px; }
.compare-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 90px rgba(62, 48, 38, 0.18); aspect-ratio: 4 / 3; user-select: none; }
.compare-wrapper img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare-after { clip-path: inset(0 50% 0 0); }
.compare-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: #fff; cursor: ew-resize; transform: translateX(-50%); z-index: 3; box-shadow: 0 0 20px rgba(0,0,0,0.25); }
.compare-handle::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.compare-handle svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 4; }
.compare-labels { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; justify-content: space-between; padding: 0 18px; pointer-events: none; z-index: 2; }
.compare-labels span { background: rgba(255,255,255,0.92); padding: 8px 12px; border-radius: var(--radius-sm); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sand-900); }

@media (max-width: 980px) { .premium-grid { grid-template-columns: 1fr; gap: 42px; } .compare-wrapper { aspect-ratio: 16 / 10; } }

/* Proof */
.proof { padding: var(--section-py) 0; background: var(--teal-900); color: var(--sand-100); position: relative; }
.proof-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.proof h2 { font-size: clamp(2.1rem, 3.8vw, 3.4rem); margin-bottom: 20px; }
.proof h2 em { color: var(--ochre-400); font-style: italic; }
.proof p { color: var(--sand-300); line-height: 1.7; margin-bottom: 28px; }
.proof-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.proof-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 26px;
  transition: transform 0.4s var(--ease-out-expo), background 0.3s;
}
.proof-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.08); }
.proof-card svg { width: 30px; height: 30px; stroke: var(--ochre-400); margin-bottom: 14px; }
.proof-card h4 { font-size: 1.05rem; margin-bottom: 8px; font-family: "Hanken Grotesk", sans-serif; font-weight: 700; }
.proof-card p { font-size: 0.88rem; color: var(--sand-400); margin: 0; }

@media (max-width: 980px) { .proof-grid, .proof-cards { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band {
  padding: 80px 0; text-align: center;
  background: linear-gradient(135deg, var(--ochre-600) 0%, var(--ochre-500) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.cta-band h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); margin-bottom: 16px; position: relative; }
.cta-band p { font-size: 1.08rem; opacity: 0.92; max-width: 54ch; margin: 0 auto 30px; position: relative; }

/* Content sections */
.content-section { padding: var(--section-py) 0; background: var(--sand-50); }
.content-section.alt { background: var(--sand-100); }
.text-columns { columns: 2; gap: 48px; }
.text-columns p:first-child { margin-top: 0; }
@media (max-width: 760px) { .text-columns { columns: 1; } }

.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--sand-800); }
.feature-list li svg { flex-shrink: 0; margin-top: 3px; }

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-section img { border-radius: var(--radius-lg); box-shadow: 0 30px 70px rgba(62,48,38,0.12); }
.split-text h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); margin-bottom: 18px; }
.split-text p { color: var(--sand-700); line-height: 1.7; margin-bottom: 18px; }

@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; gap: 36px; }
  .split-section.reverse { direction: ltr; }
}

/* FAQ */
.faq-list { display: grid; gap: 14px; max-width: 880px; }
.faq-item { background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 26px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: "Hanken Grotesk", sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--sand-900);
}
.faq-question svg { flex-shrink: 0; transition: transform 0.3s var(--ease-out-expo); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
  padding: 0 26px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 26px 22px; }
.faq-answer p { margin: 0; color: var(--sand-600); line-height: 1.65; }

/* Contact / forms */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.form-group { margin-bottom: 0; }
.form-group label { display: block; font-weight: 600; font-size: 0.82rem; margin-bottom: 7px; color: var(--sand-800); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-md); border: 1px solid var(--sand-300);
  background: #fff; font-family: inherit; font-size: 0.95rem; color: var(--sand-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal-700); box-shadow: 0 0 0 3px rgba(15,76,75,0.08);
}
.form-group textarea { min-height: 130px; resize: vertical; }
@media (max-width: 680px) { .form-grid { grid-template-columns: 1fr; } }

/* Cards grids */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo); }
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(62,48,38,0.1); }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card-body p { font-size: 0.9rem; color: var(--sand-600); margin: 0; }

@media (max-width: 1020px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

/* Drawer */
.drawer-overlay { position: fixed; inset: 0; background: rgba(6,34,33,0.55); opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease-out-quart); z-index: 2000; }
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(520px, 100vw);
  background: var(--sand-50); transform: translateX(100%); transition: transform 0.5s var(--ease-out-expo);
  z-index: 2001; display: flex; flex-direction: column; box-shadow: -20px 0 80px rgba(0,0,0,0.18);
}
.drawer.open { transform: translateX(0); }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; border-bottom: 1px solid var(--sand-200); }
.drawer-header h3 { font-size: 1.35rem; }
.drawer-close { background: none; border: none; cursor: pointer; padding: 6px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 28px; }
.step-indicator { display: flex; gap: 8px; margin-bottom: 24px; }
.step-dot { height: 4px; flex: 1; background: var(--sand-200); border-radius: 2px; transition: background 0.3s; }
.step-dot.active { background: var(--teal-700); }
.form-step { display: none; animation: fadeIn 0.35s var(--ease-out-quart); }
.form-step.active { display: block; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag { padding: 9px 14px; border-radius: 999px; border: 1px solid var(--sand-300); background: #fff; cursor: pointer; font-size: 0.85rem; font-weight: 500; transition: all 0.2s; }
.service-tag.selected { background: var(--teal-700); border-color: var(--teal-700); color: #fff; }
.drawer-footer { display: flex; justify-content: space-between; gap: 12px; padding: 20px 28px; border-top: 1px solid var(--sand-200); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: none; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 12px; background: #fff; box-shadow: 0 -6px 30px rgba(0,0,0,0.1); z-index: 900;
}
.sticky-cta .btn { padding: 14px; font-size: 0.78rem; }
@media (max-width: 680px) { .sticky-cta { display: grid; } body { padding-bottom: 76px; } }

/* Footer */
.site-footer { background: var(--sand-900); color: var(--sand-200); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 42px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo-text { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: var(--sand-400); line-height: 1.65; margin: 0 0 18px; font-size: 0.92rem; }
.footer-brand .contact-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-weight: 500; font-size: 0.9rem; }
.footer-brand .contact-row svg { stroke: var(--ochre-400); }
.footer-col h4 { font-family: "Hanken Grotesk", sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--sand-400); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--ochre-400); }
.footer-cta { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 24px; }
.footer-cta p { font-size: 0.9rem; color: var(--sand-300); margin: 0 0 16px; }
.footer-cta .btn { width: 100%; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 0.78rem; color: var(--sand-500); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--sand-400); text-decoration: underline; }

@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* Utilities */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease-out-quart), transform 0.8s var(--ease-out-quart); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.text-center { text-align: center; }
.max-w-2xl { max-width: 720px; margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
