/* ============================================================
   Best Agent NZ — Design System
   Primary: forest #1F3D2F  Accent: clay #C2664A  Bg: #FFFFFF
   Display: Fraunces (variable)  Body: Instrument Sans (variable)
   ============================================================ */

/* -------- Self-hosted variable fonts -------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/fonts/fraunces-latin-wght-normal.woff2") format("woff2-variations");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-display: swap;
  font-weight: 100 900;
  src: url("/fonts/fraunces-latin-wght-italic.woff2") format("woff2-variations");
}
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/fonts/instrument-sans-latin-wght-normal.woff2") format("woff2-variations");
}
@font-face {
  font-family: "Instrument Sans";
  font-style: italic;
  font-display: swap;
  font-weight: 100 900;
  src: url("/fonts/instrument-sans-latin-wght-italic.woff2") format("woff2-variations");
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

:root {
  --forest-900: #0F1F17;
  --forest-800: #152B21;
  --forest-700: #1F3D2F;
  --forest-600: #2A513E;
  --forest-500: #3D6D54;
  --forest-100: #E8EEE9;
  --forest-50:  #F3F6F3;

  --clay-600: #B45A3A;
  --clay-500: #C2664A;
  --clay-400: #D17F66;
  --clay-100: #F6E6DF;

  --ink:   #0F1F17;
  --muted: #5A6B62;
  --line:  #E5E7E4;
  --bg:    #FFFFFF;

  --shadow-sm: 0 1px 2px rgba(15, 31, 23, 0.04),
               0 1px 1px rgba(15, 31, 23, 0.03);
  --shadow-md: 0 4px 10px -2px rgba(15, 31, 23, 0.06),
               0 2px 4px -1px rgba(15, 31, 23, 0.04);
  --shadow-lg: 0 20px 40px -12px rgba(15, 31, 23, 0.10),
               0 8px 16px -8px rgba(15, 31, 23, 0.06);
  --shadow-xl: 0 30px 60px -18px rgba(15, 31, 23, 0.18),
               0 12px 24px -12px rgba(15, 31, 23, 0.08);

  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-soft:  cubic-bezier(0.64, 0, 0.78, 0);

  --container: 1200px;
  --nav-h: 72px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: "Instrument Sans", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "ss01", "cv11";
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* -------- Type scale (Fraunces for display, Instrument Sans for body) --- */

.font-display {
  font-family: "Fraunces", Georgia, serif;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--forest-900);
  margin: 0;
}

h1 { font-size: clamp(2.5rem, 6vw + 0.5rem, 4.75rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 3.6vw + 0.6rem, 3.25rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.375rem, 1.1vw + 1rem, 1.75rem); letter-spacing: -0.02em; }

p { margin: 0; line-height: 1.7; }

.eyebrow {
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-600);
}

/* -------- Container / layout -------- */

.container-px { padding-left: clamp(1.25rem, 4vw, 2.5rem); padding-right: clamp(1.25rem, 4vw, 2.5rem); }
.max-container { max-width: var(--container); margin-inline: auto; }
html, body { overflow-x: hidden; }

/* -------- Buttons -------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 240ms var(--ease-out-soft),
              background-color 240ms var(--ease-out-soft),
              color 240ms var(--ease-out-soft),
              border-color 240ms var(--ease-out-soft),
              box-shadow 240ms var(--ease-out-soft);
  will-change: transform;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn:focus-visible { outline: 2px solid var(--clay-500); outline-offset: 3px; }

.btn-primary {
  background: var(--forest-700);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(31, 61, 47, 0.45),
              0 2px 4px -2px rgba(31, 61, 47, 0.25);
}
.btn-primary:hover {
  background: var(--forest-800);
  box-shadow: 0 14px 28px -10px rgba(31, 61, 47, 0.5),
              0 4px 8px -4px rgba(31, 61, 47, 0.3);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--clay-500);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(194, 102, 74, 0.45),
              0 2px 4px -2px rgba(194, 102, 74, 0.25);
}
.btn-accent:hover {
  background: var(--clay-600);
  box-shadow: 0 14px 28px -10px rgba(194, 102, 74, 0.5),
              0 4px 8px -4px rgba(194, 102, 74, 0.3);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--forest-900);
  border-color: var(--line);
}
.btn-outline:hover {
  background: var(--forest-50);
  border-color: var(--forest-700);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--forest-900);
}
.btn-ghost:hover { color: var(--forest-700); }

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-sm svg + span, .btn-sm svg { flex-shrink: 0; }
.site-nav .btn-outline.btn-sm { padding: 0.5rem 1.125rem; gap: 0.5rem; border-radius: 999px; }
.btn-lg { padding: 1.125rem 2rem; font-size: 1rem; }

/* -------- Sticky nav -------- */

.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 240ms var(--ease-out-soft),
              background 240ms var(--ease-out-soft);
}
.site-nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
}
.site-nav__row {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.site-nav__logo {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: "Fraunces", serif; font-weight: 600; font-size: 1.5rem;
  letter-spacing: -0.02em; color: var(--forest-900);
}
.site-nav__logo img { height: 34px; width: auto; }

.site-nav__links {
  display: flex; align-items: center; gap: 2rem;
  font-size: 0.9375rem;
}
.site-nav__links a {
  color: var(--forest-900); font-weight: 500;
  padding: 0.5rem 0; position: relative;
  transition: color 200ms var(--ease-out-soft);
}
.site-nav__links a:hover { color: var(--forest-700); }
.site-nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--clay-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform 260ms var(--ease-out-soft);
}
.site-nav__links a:hover::after { transform: scaleX(1); }

/* Buttons inside the primary nav: defer to .btn-* color (the nav-link
   selector above is more specific than .btn-primary, so we bump it back),
   and suppress the underline pseudo so the button looks like a button. */
.site-nav__links a.btn { font-weight: 500; }
.site-nav__links a.btn::after { content: none; }
.site-nav__links a.btn-primary,
.site-nav__links a.btn-primary:hover { color: #fff; }
.site-nav__links a.btn-outline,
.site-nav__links a.btn-outline:hover { color: var(--forest-900); }
.site-nav__links a.btn-accent,
.site-nav__links a.btn-accent:hover { color: #fff; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown__toggle {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: none; border: 0; cursor: pointer; padding: 0.5rem 0;
  font: inherit; color: var(--forest-900); font-weight: 500;
}
.dropdown__chev { transition: transform 200ms var(--ease-out-soft); }
.dropdown[data-open="true"] .dropdown__chev { transform: rotate(180deg); }
.dropdown__menu {
  position: absolute; top: calc(100% + 12px); right: 0;
  min-width: 260px; padding: 0.75rem;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity 220ms var(--ease-out-soft), transform 220ms var(--ease-out-soft);
  display: grid; gap: 2px;
}
.dropdown[data-open="true"] .dropdown__menu {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.dropdown__menu a {
  padding: 0.625rem 0.75rem; border-radius: 8px; font-size: 0.9375rem;
  color: var(--forest-900); display: flex; align-items: center; gap: 0.6rem;
  transition: background 200ms var(--ease-out-soft);
}
.dropdown__menu a:hover { background: var(--forest-50); }
.dropdown__menu a::after { content: none; }
.dropdown__menu a .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--clay-500); }

/* Footer button styled as a footer link */
.site-footer .footer-link-btn {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}
.site-footer .footer-link-btn:hover { color: #fff; text-decoration: underline; }
.site-footer .footer-link-btn:focus-visible {
  outline: 2px solid var(--clay-400);
  outline-offset: 2px;
  border-radius: 4px;
}

/* "All NZ Cities" hub link in the dropdown */
.dropdown__menu a.dropdown__hub-link {
  border-bottom: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  margin-bottom: 0.25rem;
  padding-bottom: 0.65rem;
  color: var(--forest-700);
}
.dropdown__menu a.dropdown__hub-link strong { font-weight: 600; }

/* Mobile drawer hub link */
.mobile-drawer .sub a.sub__hub-link {
  color: var(--forest-700);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0.25rem;
}

/* aria-current="page" highlight in primary nav */
.site-nav__links a[aria-current="page"] {
  color: var(--forest-700);
  position: relative;
}
.site-nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--clay-500);
  border-radius: 2px;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line); border-radius: 10px;
  width: 44px; height: 44px; padding: 0; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--forest-900);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--forest-900);
  transition: transform 220ms var(--ease-out-soft), top 220ms var(--ease-out-soft);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.mobile-drawer {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 49;
  background: #fff;
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity 240ms var(--ease-out-soft), transform 240ms var(--ease-out-soft);
  overflow-y: auto;
}
.mobile-drawer[data-open="true"] {
  transform: translateY(0); opacity: 1; pointer-events: auto;
}
.mobile-drawer a {
  display: block; padding: 0.875rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.0625rem; font-weight: 500;
}
/* If a drawer link is rendered as a button, restore the .btn appearance. */
.mobile-drawer a.btn {
  display: inline-flex;
  border-bottom: 0;
  padding: 0.875rem 1.5rem;
  font-size: 0.95rem;
}
.mobile-drawer a.btn-primary,
.mobile-drawer a.btn-primary:hover { color: #fff; }
.mobile-drawer a.btn-accent,
.mobile-drawer a.btn-accent:hover { color: #fff; }
.mobile-drawer details > summary {
  padding: 0.875rem 0; border-bottom: 1px solid var(--line);
  font-size: 1.0625rem; font-weight: 500; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-drawer details[open] > summary { border-bottom-color: transparent; }
.mobile-drawer details .sub {
  padding: 0.25rem 0 0.75rem 1rem; border-bottom: 1px solid var(--line);
}
.mobile-drawer details .sub a {
  padding: 0.5rem 0; border-bottom: 0; font-size: 0.9375rem; color: var(--muted);
}
.mobile-drawer .btn { width: 100%; margin-top: 1.25rem; }

@media (max-width: 960px) {
  .site-nav__links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* -------- Hero -------- */

.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(70% 55% at 82% -10%, rgba(194, 102, 74, 0.10), transparent 60%),
    radial-gradient(55% 50% at 10% 110%, rgba(31, 61, 47, 0.08), transparent 60%),
    #ffffff;
}
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.035;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero__inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero__inner { overflow: hidden; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); word-break: break-word; }
  .hero__visual { max-width: 100%; }
  .hero__trust { flex-wrap: wrap; font-size: 0.8125rem; }
  .search-card { flex-wrap: wrap; padding: 0.75rem; max-width: 100%; }
  .search-card input { min-width: 0; width: 100%; }
  .search-card .btn { width: 100%; justify-content: center; }
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 0.75rem 0.375rem 0.5rem;
  background: var(--forest-50);
  border: 1px solid var(--forest-100);
  border-radius: 999px;
  font-size: 0.8125rem; font-weight: 500;
  color: var(--forest-700);
}
.hero__eyebrow .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 999px;
  background: var(--clay-500);
  box-shadow: 0 0 0 4px rgba(194, 102, 74, 0.18);
}

.hero__title {
  margin-top: 1.25rem;
  font-weight: 400;
}
.hero__title em {
  font-style: italic; font-weight: 400; color: var(--clay-500);
}
.hero__sub {
  margin-top: 1.25rem;
  font-size: clamp(1.0625rem, 0.5vw + 1rem, 1.1875rem);
  color: var(--muted); max-width: 560px;
}
.hero__cta-row { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

.hero__trust {
  margin-top: 2rem;
  display: flex; align-items: center; gap: 1rem;
  color: var(--muted); font-size: 0.875rem;
}
.hero__stars { color: var(--clay-500); letter-spacing: 2px; }

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 31, 23, 0.35) 100%);
}
.hero__card {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  display: flex; align-items: center; gap: 0.9rem;
  box-shadow: var(--shadow-lg);
}
.hero__card .avatar {
  width: 40px; height: 40px; border-radius: 999px; overflow: hidden;
  background: var(--forest-100); flex: 0 0 auto;
}
.hero__card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero__card .meta { font-size: 0.8125rem; color: var(--muted); }
.hero__card .name { font-weight: 600; color: var(--forest-900); font-size: 0.9375rem; }

/* -------- Search / postcode card -------- */

.search-card {
  margin-top: 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.6rem 0.6rem 0.6rem 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: var(--shadow-md);
  max-width: 560px;
  transition: box-shadow 240ms var(--ease-out-soft), border-color 240ms var(--ease-out-soft);
}
.search-card:focus-within {
  border-color: var(--forest-700);
  box-shadow: var(--shadow-lg);
}
.search-card .pin { color: var(--forest-700); flex: 0 0 auto; }
.search-card input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font: inherit; font-size: 1rem; color: var(--ink); padding: 0.875rem 0;
}
.search-card input::placeholder { color: #8b9992; }
.search-card:focus-within {
  border-color: var(--forest-700);
  box-shadow: 0 0 0 3px rgba(31, 61, 47, 0.12);
}

/* -------- Section helpers -------- */

.section { padding: clamp(4rem, 7vw, 7rem) 0; }
.section-tight { padding: clamp(3rem, 5vw, 5rem) 0; }
.section-head { max-width: 720px; margin: 0 auto clamp(2.5rem, 4vw, 3.75rem); text-align: center; }
.section-head .eyebrow { margin-bottom: 0.75rem; display: block; }
.section-head p { color: var(--muted); margin-top: 1rem; font-size: 1.0625rem; }

.divider { height: 1px; background: var(--line); }

/* -------- How it works -------- */

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  position: relative;
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 320ms var(--ease-out-soft),
              box-shadow 320ms var(--ease-out-soft),
              border-color 320ms var(--ease-out-soft);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--forest-700); color: #fff;
  font-family: "Fraunces", serif; font-size: 1.125rem; font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.9375rem; }

/* -------- Feature cards (why choose us) -------- */

.features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
@media (max-width: 860px) { .features { grid-template-columns: 1fr; } }

.feature {
  padding: 2rem 1.75rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 320ms var(--ease-out-soft), box-shadow 320ms var(--ease-out-soft);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature__icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--forest-50); color: var(--forest-700);
  margin-bottom: 1.25rem;
}
.feature h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.feature p { color: var(--muted); font-size: 0.9375rem; }

/* -------- Stats -------- */

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 700px) { .stats { grid-template-columns: 1fr; } }

.stat {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
  text-align: left;
}
.stat:last-child { border-right: 0; }
@media (max-width: 700px) {
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
}
.stat__num {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: clamp(2.5rem, 4vw + 0.5rem, 3.75rem);
  letter-spacing: -0.04em; line-height: 1;
  color: var(--forest-900);
}
.stat__num em { font-style: italic; color: var(--clay-500); font-weight: 400; }
.stat__label { margin-top: 0.75rem; color: var(--muted); font-size: 0.9375rem; }

/* -------- Testimonials carousel -------- */

.testimonials {
  position: relative;
  overflow: hidden;
}
.testimonials__track {
  display: flex; gap: 1.5rem;
  transition: transform 600ms var(--ease-out-soft);
  will-change: transform;
}
.testimonial {
  flex: 0 0 min(440px, 88%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.testimonial__stars { color: var(--clay-500); letter-spacing: 2px; font-size: 0.9rem; }
.testimonial__quote {
  font-family: "Fraunces", serif;
  font-size: clamp(1.0625rem, 0.3vw + 1rem, 1.25rem);
  line-height: 1.45; color: var(--forest-900);
  letter-spacing: -0.01em;
}
.testimonial__who {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: auto; padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}
.testimonial__who .avatar {
  width: 40px; height: 40px; border-radius: 999px; overflow: hidden;
  background: var(--forest-100); flex: 0 0 auto;
}
.testimonial__who .avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__who .name { font-weight: 600; color: var(--forest-900); font-size: 0.9375rem; }
.testimonial__who .place { color: var(--muted); font-size: 0.8125rem; }

.carousel-controls {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2rem; gap: 1rem;
}
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 999px; border: 0; padding: 0;
  background: var(--line); cursor: pointer;
  transition: background 220ms, width 220ms;
}
.carousel-dots button[aria-current="true"] {
  background: var(--forest-700); width: 24px;
}
.carousel-arrows { display: flex; gap: 0.5rem; }
.carousel-arrows button {
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--forest-900);
  transition: background 220ms var(--ease-out-soft), border-color 220ms var(--ease-out-soft);
}
.carousel-arrows button:hover {
  background: var(--forest-50); border-color: var(--forest-700);
}
.carousel-arrows button:disabled { opacity: 0.4; cursor: not-allowed; }

/* -------- Regions grid -------- */

.regions {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 860px) { .regions { grid-template-columns: repeat(2, 1fr); } }

.region {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--forest-100);
  isolation: isolate;
  display: block;
  transition: transform 400ms var(--ease-out-soft);
}
.region:hover { transform: translateY(-3px); }
.region img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out-soft); }
.region:hover img { transform: scale(1.04); }
.region__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15, 31, 23, 0) 30%, rgba(15, 31, 23, 0.82) 100%);
  mix-blend-mode: normal;
}
.region__tint {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(31, 61, 47, 0.22);
  mix-blend-mode: multiply;
}
.region__name {
  position: absolute; left: 1rem; right: 1rem; bottom: 0.9rem; z-index: 2;
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 1.25rem; letter-spacing: -0.02em;
  display: flex; align-items: center; justify-content: space-between;
}

/* -------- Final CTA section -------- */

.cta-block {
  position: relative;
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 4rem);
  border-radius: 28px;
  background: var(--forest-900);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta-block::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 20% 10%, rgba(194, 102, 74, 0.22), transparent 60%),
    radial-gradient(55% 50% at 80% 110%, rgba(61, 109, 84, 0.35), transparent 60%),
    var(--forest-900);
}
.cta-block h2 {
  color: #fff;
  font-weight: 400;
  max-width: 20ch; margin-inline: auto;
}
.cta-block h2 em { font-style: italic; color: var(--clay-400); }
.cta-block p {
  max-width: 560px; margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.0625rem;
}
.cta-block__row {
  margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
}
.cta-block .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.cta-block .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

/* -------- FAQ accordion -------- */

.faq {
  max-width: 820px; margin: 0 auto;
  display: grid; gap: 0.75rem;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 220ms var(--ease-out-soft), box-shadow 220ms var(--ease-out-soft);
}
.faq__item[data-open="true"] {
  border-color: var(--forest-700);
  box-shadow: var(--shadow-md);
}
.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer;
  padding: 1.25rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left;
  font-family: "Fraunces", serif; font-size: 1.0625rem;
  color: var(--forest-900);
  letter-spacing: -0.01em;
}
.faq__icon {
  flex: 0 0 auto;
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--forest-50); color: var(--forest-700);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 240ms var(--ease-out-soft), background 240ms var(--ease-out-soft), color 240ms var(--ease-out-soft);
}
.faq__item[data-open="true"] .faq__icon {
  background: var(--forest-700); color: #fff;
  transform: rotate(45deg);
}
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 420ms var(--ease-out-soft);
}
.faq__a-inner {
  padding: 0 1.25rem 1.5rem;
  color: var(--muted); font-size: 0.9375rem; line-height: 1.75;
}

/* -------- Modal (multi-step funnel) -------- */

.modal {
  position: fixed; inset: 0; z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 1.25rem;
}
.modal[data-open="true"] { display: flex; }
.modal__scrim {
  position: absolute; inset: 0;
  background: rgba(15, 31, 23, 0.55);
  backdrop-filter: blur(4px);
  animation: fadein 240ms var(--ease-out-soft);
}
.modal__card {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 2.5rem);
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  display: flex; flex-direction: column;
  animation: rise 320ms var(--ease-out-soft);
}
.modal__head {
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.modal__close {
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--forest-900);
  transition: background 220ms var(--ease-out-soft);
}
.modal__close:hover { background: var(--forest-50); }

.modal__progress {
  display: flex; align-items: center; gap: 0.875rem;
  padding: 0 1.5rem; margin-top: 1rem;
}
.modal__step-text {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}
.modal__step-text [data-step-current] { color: var(--forest-700); }
.modal__progress-bars {
  display: flex;
  gap: 0.375rem;
  flex: 1;
}
.modal__progress span {
  flex: 1; height: 4px; border-radius: 999px;
  background: var(--forest-100);
  transition: background 280ms var(--ease-out-soft);
}
.modal__progress span[data-on="true"] { background: var(--forest-700); }

.modal__body { padding: 1.5rem; overflow-y: auto; }
.modal__step {
  display: none;
  animation: slide 340ms var(--ease-out-soft);
}
.modal__step[data-on="true"] { display: block; }
.modal__step h3 {
  font-size: 1.625rem; margin-bottom: 0.5rem;
}
.modal__step p.hint { color: var(--muted); margin-bottom: 1.5rem; }

.field { display: block; margin-bottom: 1rem; }
.field label {
  display: block; font-size: 0.8125rem; font-weight: 500;
  color: var(--forest-900); margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--line); border-radius: 12px;
  font: inherit; font-size: 1rem;
  color: var(--ink); background: #fff;
  transition: border-color 220ms var(--ease-out-soft), box-shadow 220ms var(--ease-out-soft);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--forest-700);
  box-shadow: 0 0 0 3px rgba(31, 61, 47, 0.12);
}
.field textarea { min-height: 140px; resize: vertical; }
.field .helper { margin-top: 0.4rem; font-size: 0.8125rem; color: var(--muted); }

.modal__foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  background: #fff;
}

@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes slide {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

body.modal-open { overflow: hidden; }

/* -------- Exit intent -------- */

.exit-intent {
  position: fixed; inset: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
  opacity: 0; pointer-events: none;
  transition: opacity 280ms var(--ease-out-soft);
}
.exit-intent.is-open {
  opacity: 1; pointer-events: auto;
}
.exit-intent__scrim {
  position: absolute; inset: 0;
  background: rgba(15, 31, 23, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.exit-intent__card {
  position: relative; z-index: 1;
  background: #fff;
  border-radius: 24px;
  padding: 2.25rem 2rem 2rem;
  max-width: 420px; width: 100%;
  box-shadow: var(--shadow-xl);
  transform: translateY(16px) scale(0.97);
  transition: transform 320ms var(--ease-out-soft);
  text-align: center;
}
.exit-intent.is-open .exit-intent__card {
  transform: translateY(0) scale(1);
}
.exit-intent__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff;
  cursor: pointer; display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--muted);
  transition: background 200ms var(--ease-out-soft);
}
.exit-intent__close:hover { background: var(--forest-50); color: var(--forest-900); }
.exit-intent__icon {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--forest-50); color: var(--forest-700);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.exit-intent__card h3 {
  font-size: 1.625rem; margin-bottom: 0.625rem;
}
.exit-intent__card p {
  color: var(--muted); font-size: 1rem; line-height: 1.65;
}
.exit-intent__card p em { font-style: italic; color: var(--forest-700); font-weight: 500; }
.exit-intent__stats {
  display: flex; gap: 0; margin-top: 1.5rem;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.exit-intent__stats > div {
  flex: 1; padding: 0.875rem 0.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  border-right: 1px solid var(--line);
}
.exit-intent__stats > div:last-child { border-right: 0; }
.exit-intent__stats strong {
  font-family: "Fraunces", serif; font-size: 1.25rem;
  font-weight: 400; letter-spacing: -0.02em; color: var(--forest-900);
}
.exit-intent__stats span { font-size: 0.75rem; color: var(--muted); }
.exit-intent__dismiss {
  display: block; width: 100%; margin-top: 0.875rem;
  background: none; border: 0; padding: 0.5rem;
  font: inherit; font-size: 0.875rem; color: var(--muted);
  cursor: pointer; text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 200ms var(--ease-out-soft);
}
.exit-intent__dismiss:hover { color: var(--forest-900); }

/* -------- Sticky mobile CTA -------- */

.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 24px -8px rgba(15, 31, 23, 0.12),
              0 -1px 4px -2px rgba(15, 31, 23, 0.06);
  transform: translateY(100%);
  transition: transform 320ms var(--ease-out-soft);
  /* safe-area inset for notched phones */
  padding-bottom: calc(0.875rem + env(safe-area-inset-bottom, 0px));
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--forest-900);
  flex-shrink: 0;
  transition: background 220ms var(--ease-out-soft), border-color 220ms var(--ease-out-soft);
}
.sticky-cta__call:hover {
  background: var(--forest-50);
  border-color: var(--forest-700);
}
/* Desktop: hide entirely */
@media (min-width: 961px) {
  .sticky-cta { display: none; }
}
/* Add bottom padding to page on mobile so sticky bar doesn't overlap footer */
@media (max-width: 960px) {
  body.sticky-cta-active { padding-bottom: 80px; }
}

/* -------- Footer -------- */

.site-footer {
  margin-top: clamp(4rem, 8vw, 7rem);
  background: var(--forest-900);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(50% 50% at 100% 0%, rgba(194, 102, 74, 0.10), transparent 60%),
    radial-gradient(55% 50% at 0% 100%, rgba(61, 109, 84, 0.22), transparent 60%);
}
.site-footer h4 {
  color: #fff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  padding: 0.25rem 0;
  transition: color 220ms var(--ease-out-soft);
}
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.25rem; font-size: 0.9375rem; }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1/-1; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-brand__logo {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: "Fraunces", serif; font-size: 1.5rem; font-weight: 500;
  color: #fff; margin-bottom: 1rem;
  letter-spacing: -0.02em; white-space: nowrap;
}
.footer-brand__logo img { height: 34px; width: auto; }
.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem; max-width: 36ch;
}
.footer-social {
  display: flex; gap: 0.5rem; margin-top: 1.25rem;
}
.footer-social a {
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
  transition: background 220ms var(--ease-out-soft), border-color 220ms var(--ease-out-soft), color 220ms var(--ease-out-soft);
}
.footer-social a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.footer-cities {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 0.5rem;
  font-size: 0.875rem;
}
.footer-cities .label {
  color: #fff; font-weight: 500; margin-right: 0.75rem;
  font-family: "Fraunces", serif; font-style: italic; font-size: 0.95rem;
}
.footer-cities a {
  padding: 0.35rem 0.75rem; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8125rem;
}
.footer-cities a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-disclosure {
  margin: 2rem 0 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}
.footer-disclosure summary {
  cursor: pointer; font-weight: 500; color: #fff; font-size: 0.9375rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-disclosure summary::-webkit-details-marker { display: none; }
.footer-disclosure summary::after {
  content: "+"; font-size: 1.25rem; color: #fff; transition: transform 240ms;
}
.footer-disclosure[open] summary::after { content: "–"; }
.footer-disclosure p {
  margin-top: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem; line-height: 1.7;
}

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.65); padding: 0; }
.footer-bottom a + a { margin-left: 1.25rem; }
.footer-bottom .reviews {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}
.footer-bottom .reviews .stars { color: var(--clay-400); letter-spacing: 2px; }

/* -------- Page hero (inner pages) -------- */

.page-hero {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(2.5rem, 4vw, 4rem);
  position: relative; isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 82% 0%, rgba(194, 102, 74, 0.10), transparent 60%),
    radial-gradient(55% 50% at 0% 100%, rgba(31, 61, 47, 0.06), transparent 60%),
    #fff;
}
.page-hero h1 { max-width: 22ch; }
.page-hero p.lead {
  margin-top: 1rem; font-size: 1.125rem; color: var(--muted); max-width: 620px;
}

/* -------- Blog cards -------- */

.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.post {
  display: grid; gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: transform 360ms var(--ease-out-soft), box-shadow 360ms var(--ease-out-soft);
}
.post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.post__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--forest-100);
}
.post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out-soft); }
.post:hover .post__img img { transform: scale(1.04); }
.post__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 31, 23, 0.15) 100%);
}
.post__body { padding: 0 1.5rem 1.5rem; display: grid; gap: 0.75rem; }
.post__cat {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--clay-500);
}
.post h3 { font-size: 1.35rem; }
.post p { color: var(--muted); font-size: 0.9375rem; }
.post__read {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--forest-700); font-weight: 500; font-size: 0.9375rem;
  margin-top: 0.25rem;
}
.post__read .arrow { transition: transform 240ms var(--ease-out-soft); }
.post:hover .post__read .arrow { transform: translateX(4px); }

/* Featured post + newsletter responsive */
@media (max-width: 768px) {
  .featured-post { grid-template-columns: 1fr !important; }
  .featured-post__body { padding: 1.5rem !important; }
  .newsletter-block { grid-template-columns: 1fr !important; }
}

/* -------- Contact page -------- */

.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  background: var(--forest-900); color: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  display: grid; gap: 1.5rem;
  position: relative; isolation: isolate; overflow: hidden;
}
.contact-info::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 50% at 90% 0%, rgba(194, 102, 74, 0.22), transparent 60%);
}
.contact-info h3 { color: #fff; font-size: 1.625rem; }
.contact-info p { color: rgba(255, 255, 255, 0.72); font-size: 0.9375rem; }
.contact-info .row {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-info .row .icon {
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto; color: var(--clay-400);
}
.contact-info .row strong { display: block; color: #fff; font-weight: 500; margin-bottom: 0.2rem; }
.contact-info .row span { color: rgba(255, 255, 255, 0.72); font-size: 0.9375rem; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
}

/* -------- Fees sidebar widget -------- */

.fees-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(1.5rem, 3vw, 3rem); align-items: start;
}
.fees-layout__container { max-width: 1360px; }
@media (max-width: 1024px) { .fees-layout { grid-template-columns: 1fr; } }

.fees-widget {
  position: sticky; top: calc(var(--nav-h) + 24px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}
.fees-widget h4 {
  color: var(--forest-900); font-family: "Fraunces", serif;
  font-size: 1.25rem; margin-bottom: 0.4rem; letter-spacing: -0.02em;
}
.fees-widget p.hint { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.25rem; }
.fees-widget .search-card {
  margin: 0 0 1rem; max-width: 100%; padding: 0.4rem 0.4rem 0.4rem 1rem;
}
.fees-widget .tiny-trust {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; color: var(--muted);
}
.fees-widget .stars { color: var(--clay-500); letter-spacing: 2px; }

/* -------- Prose block (About) -------- */

/* About page responsive grids */
@media (max-width: 768px) {
  .about-mission-grid { grid-template-columns: 1fr !important; }
  .about-twoup-grid { grid-template-columns: 1fr !important; }
}

.prose { max-width: 68ch; }
.prose p {
  font-size: 1.0625rem; color: #334a41; margin-bottom: 1.25rem; line-height: 1.8;
}
.prose p strong { color: var(--forest-900); }

/* -------- Google Reviews badge -------- */

.google-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8125rem; color: var(--muted);
  box-shadow: var(--shadow-sm);
}
.google-badge .g-icon {
  width: 18px; height: 18px;
}
.google-badge .stars { color: var(--clay-500); letter-spacing: 2px; font-size: 0.8125rem; }
.google-badge strong { color: var(--forest-900); font-weight: 600; }

/* -------- Reveal on scroll -------- */

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 700ms var(--ease-out-soft), transform 700ms var(--ease-out-soft);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
