/* ============================================================
   TROPICS PEST CONTROL — Grand Cayman
   Bright tropical · sunlit cream, lush canopy green, citrus lime.
   ============================================================ */

:root {
  --sand: #f6f3ea;          /* page background — warm cream */
  --sand-2: #efe9d9;        /* panel / alt section */
  --sand-3: #e7e0cd;        /* deeper panel edge */
  --ink: #14241b;           /* primary text — deep forest */
  --ink-soft: #2c3d33;
  --canopy: #1f5c3d;        /* brand green */
  --canopy-deep: #143f2a;
  --lime: #b6e94a;          /* citrus accent / pop */
  --lime-deep: #8fc62f;
  --turq: #1fb6a6;          /* secondary accent */
  --muted: #6a7568;         /* muted label text */
  --line: rgba(20, 36, 27, 0.13);
  --line-soft: rgba(20, 36, 27, 0.08);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "Space Mono", monospace;

  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --max-w: 1600px;          /* content cap — keeps sections from over-stretching on ultrawide */
  --gutter: max(var(--pad), calc((100% - var(--max-w)) / 2));
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--lime); color: var(--ink); }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

/* film grain — soft, on the page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 800;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ SHARED BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.95rem 1.5rem;
  border-radius: 99px;
  white-space: nowrap;
  transition: transform 0.4s var(--ease), background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.btn svg { flex-shrink: 0; }
.btn--solid { background: var(--canopy); color: var(--sand); }
.btn--solid:hover { background: var(--ink); }
.btn--ghost { color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--canopy); color: var(--canopy); }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(182, 233, 74, 0.13), transparent 27rem),
    var(--sand);
  overflow: hidden;
}
.preloader::before,
.preloader::after {
  content: "";
  position: absolute;
  width: min(70vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(31, 92, 61, 0.1);
  border-radius: 50%;
  pointer-events: none;
}
.preloader::after { width: min(54vw, 580px); }
/* orbit ring — same size as the inner circle, so the balls ride exactly on it */
.preloader__orbit {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(54vw, 580px);
  aspect-ratio: 1;
  pointer-events: none;
}
.preloader__dot { position: absolute; inset: 0; }
.preloader__dot i {
  position: absolute;
  top: 0;
  left: 50%;
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: var(--canopy);
}
.preloader__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.preloader__eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(0.52rem, 1.2vw, 0.64rem);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--canopy);
}
.preloader__logo { color: var(--canopy); line-height: 0; }
.preloader__logo img { width: clamp(104px, 14vw, 144px); height: auto; display: block; filter: drop-shadow(0 14px 26px rgba(20, 63, 42, 0.18)); }
.preloader__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3.2vw, 1.8rem);
  letter-spacing: 0.01em;
  color: var(--ink);
  text-align: center;
}
.preloader__name em {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.45em;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--muted);
  margin-top: 0.5rem;
}
.preloader__track {
  width: clamp(150px, 32vw, 230px);
  height: 2px;
  margin-top: 0.4rem;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.preloader__fill {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--lime-deep);
  transform: scaleX(0);
  transform-origin: left;
}
.preloader__count {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--canopy);
}
.preloader__count span::after { content: "%"; opacity: 0.5; }

/* ============ CURSOR ============ */
.cursor { position: fixed; top: 0; left: 0; z-index: 9500; pointer-events: none; display: none; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor__dot {
  position: absolute;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--canopy);
  transition: transform 0.25s ease, background 0.25s ease;
}
.cursor.is-hover .cursor__dot { transform: scale(3); background: rgba(31, 92, 61, 0.28); }
.cursor.is-book .cursor__dot { transform: scale(9); background: var(--lime); }
.cursor__label {
  position: absolute;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.cursor.is-book .cursor__label { opacity: 1; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem var(--gutter);
  transition: background 0.45s ease, box-shadow 0.45s ease;
}
.nav.is-scrolled {
  background: rgba(246, 243, 234, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav__logo { display: flex; align-items: center; gap: 0.6rem; color: var(--canopy); }
.nav__logo-mark { display: grid; place-items: center; }
.nav__logo-mark img { width: 44px; height: 44px; display: block; object-fit: contain; }
/* One lockup, two places. The mobile menu used to carry its own near-miss copy
   of these rules — different size, different letter-spacing, and "Tropics" not
   even uppercased — so opening the burger swapped the logo for a lookalike.
   Both now share this definition; only the colours differ (see .menu__brand-text). */
.nav__logo-text, .menu__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-text strong, .menu__brand-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.354rem; /* tuned so "TROPICS" spans the "Pest Control" sub-line exactly */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.nav__logo-text em, .menu__brand-text em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--muted);
  margin-top: 0.18rem;
  /* Letter-spacing adds a trailing gap after the final letter, so the sub-line
     optically sits 1px left of TROPICS above it. Nudge it back. */
  padding-left: 1px;
}
.nav__links { display: flex; gap: clamp(1rem, 3vw, 2.4rem); }
.nav__links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--canopy);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover { color: var(--canopy); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sand);
  background: var(--canopy);
  padding: 0.7rem 1.3rem;
  border-radius: 99px;
  transition: transform 0.4s var(--ease), background 0.3s ease;
}
.nav__cta:hover { background: var(--canopy-deep); }
.nav__right { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.6rem); }
.nav__tel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color 0.3s ease;
}
.nav__tel:hover { color: var(--canopy); }
.nav__burger {
  display: none;
  position: relative;
  width: 42px; height: 42px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(246, 243, 234, 0.75);
  cursor: pointer;
}
.nav__burger span { position: absolute; left: 12px; right: 12px; height: 1.6px; background: var(--ink); border-radius: 2px; }
.nav__burger span:first-child { top: 17px; }
.nav__burger span:last-child { top: 23px; }

/* ============ MOBILE MENU OVERLAY ============ */
.menu {
  position: fixed;
  inset: 0;
  z-index: 980;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--sand);
  padding: 1.1rem var(--pad) calc(1.6rem + env(safe-area-inset-bottom));
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0s 0.45s;
  overflow-y: auto;
}
body.menu-open .menu { opacity: 1; pointer-events: auto; visibility: visible; transition: opacity 0.45s ease; }
.menu__top { display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
/* Geometry matches .nav__logo exactly — same gap, same 44px mark — so the logo
   does not jump when the menu opens over the header. */
.menu__brand { display: flex; align-items: center; gap: 0.6rem; }
.menu__brand-mark { width: 44px; height: 44px; object-fit: contain; }
/* Only the colours differ: the menu sits on the dark overlay. */
.menu__brand-text strong { color: var(--sand); }
.menu__brand-text em { color: rgba(246, 243, 234, 0.55); }
.menu__close {
  position: relative;
  width: 44px; height: 44px;
  border: 1px solid rgba(246, 243, 234, 0.28);
  border-radius: 50%;
  background: transparent;
  color: var(--sand);
  cursor: pointer;
}
.menu__close span { position: absolute; left: 13px; right: 13px; top: 50%; height: 1.6px; background: currentColor; border-radius: 2px; }
.menu__close span:first-child { transform: rotate(45deg); }
.menu__close span:last-child { transform: rotate(-45deg); }
.menu__links { display: flex; flex-direction: column; gap: 0.15rem; margin: auto 0; padding: 2rem 0 1.6rem; }
.menu__links a {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 7.4vh, 2.6rem);
  line-height: 1.24;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--sand);
  transition: color 0.3s ease, transform 0.4s var(--ease);
}
.menu__links a:hover, .menu__links a:active { color: var(--lime); transform: translateX(6px); }
/* Section markers. Chevrons rather than 01–06; the CTA below keeps its arrow so
   "go to a section" and "do the thing" still read differently.
   align-self overrides the row's baseline alignment — an SVG has no baseline,
   so it would otherwise hang below the cap-height of the label beside it. */
.menu__links a i {
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--lime);
  flex-shrink: 0;
  align-self: center;
}
.menu__links a i svg { width: 0.82rem; height: 0.82rem; display: block; }
/* The CTA's arrow is text, and its label wraps to two lines — centring it would
   float it in the gap between them. Put it back on the first line's baseline. */
.menu__links .menu__book i { align-self: baseline; }
.menu__links .menu__book { color: var(--lime); }
.menu__contact { display: flex; gap: 0.7rem; flex-shrink: 0; }
.menu__contact .btn { flex: 1; justify-content: center; }
.menu .btn--ghost { color: var(--sand); border-color: rgba(246, 243, 234, 0.3); }
.menu__hours {
  margin-top: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(246, 243, 234, 0.5);
  text-align: center;
  flex-shrink: 0;
}

/* ============ HERO — pinned "bug-clearing" scroll sequence ============ */
.hero-scroll { position: relative; height: 240vh; }
.hero {
  --p: 0;                 /* scroll progress 0→1, set by JS */
  --max-w: 1820px;        /* hero breathes a touch wider than the rest of the page */
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(5rem, 9vh, 6.5rem) var(--gutter) clamp(2.2rem, 5vh, 3.5rem);
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(31, 182, 166, 0.16), transparent 52%),
    radial-gradient(90% 70% at 12% 105%, rgba(182, 233, 74, 0.18), transparent 60%),
    linear-gradient(180deg, #f9f7ef, var(--sand));
}
/* subtle background texture — soft grain + faint dot weave */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(20, 36, 27, 0.08) 1.3px, transparent 1.7px),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 23px 23px, 200px 200px;
  opacity: 0.85;
  mix-blend-mode: multiply;
}

/* expanding "clean zone" — grows as you scroll, pushing the bugs out */
.hero__shield {
  position: absolute;
  left: 50%; top: 50%;
  width: 16px; height: 16px;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.55), rgba(182, 233, 74, 0.10) 58%, transparent 72%);
  transform: translate(-50%, -50%) scale(calc(1 + var(--p) * 200));
  opacity: calc(0.16 + var(--p) * 0.5);
}
/* fading tracks the bugs leave behind */
.hero__trails { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
/* bug field — populated by JS, swept off-screen as --p rises */
.hero__bugs { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero__bug { position: absolute; top: 0; left: 0; color: rgba(20, 36, 27, 0.82); cursor: pointer; pointer-events: auto; will-change: transform, opacity; }
.hero__bug svg { width: 100%; height: 100%; display: block; pointer-events: none; }
/* generous invisible hit area — they're small and they scurry */
.hero__bug::after { content: ""; position: absolute; inset: -12px; }
.hero__bug.is-splat { pointer-events: none; cursor: default; }

/* splat splotches left when a bug is clicked — above the bugs so the carcass is covered */
.hero__splats { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero__splat {
  position: absolute;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(var(--r, 0deg)) scale(0);
  animation: splatIn 0.45s cubic-bezier(0.2, 1.4, 0.45, 1) forwards;
}
.hero__splat svg { width: 100%; height: 100%; display: block; overflow: visible; }
@keyframes splatIn {
  0%   { transform: translate(-50%, -50%) rotate(var(--r, 0deg)) scale(0.1); opacity: 0; }
  60%  { transform: translate(-50%, -50%) rotate(var(--r, 0deg)) scale(1.12); opacity: 1; }
  100% { transform: translate(-50%, -50%) rotate(var(--r, 0deg)) scale(1); opacity: 1; }
}

/* soft tropical colour blobs (depth) */
.hero__blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(44px); will-change: transform; }
.hero__blob--1 { width: 42vw; height: 42vw; top: -14%; right: -6%; background: radial-gradient(closest-side, rgba(31, 182, 166, 0.22), transparent 72%); animation: blobDrift1 27s ease-in-out infinite; }
.hero__blob--2 { width: 36vw; height: 36vw; bottom: -18%; left: -8%; background: radial-gradient(closest-side, rgba(182, 233, 74, 0.26), transparent 72%); animation: blobDrift2 33s ease-in-out infinite; }
.hero__blob--3 { width: 26vw; height: 26vw; top: 32%; right: 26%; background: radial-gradient(closest-side, rgba(31, 92, 61, 0.15), transparent 72%); animation: blobDrift3 23s ease-in-out infinite; }
@keyframes blobDrift1 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-15vw, 13vh) scale(1.18); } 66% { transform: translate(-4vw, 24vh) scale(0.9); } }
@keyframes blobDrift2 { 0%,100% { transform: translate(0,0) scale(1); } 30% { transform: translate(17vw, -11vh) scale(0.86); } 62% { transform: translate(24vw, 7vh) scale(1.18); } }
@keyframes blobDrift3 { 0%,100% { transform: translate(0,0) scale(1); } 38% { transform: translate(-20vw, -15vh) scale(1.24); } 72% { transform: translate(-28vw, 5vh) scale(0.88); } }

/* centred content — pointer-events off so clicks pass through to the bugs beneath;
   the CTAs re-enable themselves via .hero--end .hero__end below */
.hero__inner { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; max-width: 100%; pointer-events: none; }
.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.6rem, 2vw, 1rem);
  font-family: var(--font-mono);
  font-size: clamp(0.56rem, 1.4vw, 0.74rem);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--canopy);
  margin-bottom: clamp(1rem, 2.5vh, 1.8rem);
}
.hero__eyebrow-line { width: clamp(1.4rem, 5vw, 3.4rem); height: 1px; background: var(--canopy); display: inline-block; flex-shrink: 0; }
.hero__eyebrow-text { white-space: nowrap; }
@media (max-width: 600px) {
  .hero__eyebrow-owned { display: none; }   /* one clean line on phones */
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero__line { display: block; overflow: hidden; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.hero__line-inner { display: inline-block; will-change: transform; }
.hero__line--kicker {
  font-size: clamp(1.1rem, 4.6vw, 3rem);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
}
.hero__line--hero { margin-top: 0.04em; }
.hero__word {
  position: relative;
  display: inline-block;
  font-size: clamp(3.2rem, 17.5vw, 15rem);
  line-height: 0.82;
  letter-spacing: -0.03em;
  will-change: transform;
}
.hero__word-base { color: transparent; -webkit-text-stroke: 1.5px var(--canopy); }
.hero__word-fill {
  position: absolute;
  left: 0; top: 0;
  color: var(--canopy);
  -webkit-text-stroke: 0;
  clip-path: inset(0 calc((1 - var(--p)) * 100%) 0 0);
}

/* end-state: fades up near the end of the scroll */
.hero__end {
  --e: clamp(0, (var(--p) - 0.5) * 3, 1);
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(1.6rem, 4vh, 2.8rem);
  opacity: var(--e);
  transform: translateY(calc((1 - var(--e)) * 2.2rem));
  pointer-events: none;
}
.hero--end .hero__end { pointer-events: auto; }
.hero__sub { max-width: 48ch; font-size: clamp(0.9rem, 1.5vw, 1.08rem); color: var(--ink-soft); }
.hero__actions { display: flex; align-items: center; justify-content: center; gap: 0.8rem; flex-wrap: wrap; margin-top: clamp(1.4rem, 3vh, 2rem); }
.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  margin-top: clamp(1rem, 2.4vh, 1.5rem);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.hero__proof i { width: 3px; height: 3px; border-radius: 50%; background: var(--lime-deep); }

/* "approved" stamp — presses onto the top-left of the P once PROTECTED reveals */
.hero__line--hero { overflow: visible; }   /* allow the stamp to sit over the word's corner */
.hero__stamp {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.66rem;
  padding: 0.66rem 1.1rem;
  border: 3px solid var(--canopy);
  border-radius: 11px;
  color: var(--canopy);
  background: rgba(248, 246, 239, 0.9);
  --stamp-tx: -30%;
  --stamp-ty: -52%;
  opacity: 0;
  transform: translate(var(--stamp-tx), var(--stamp-ty)) rotate(-9deg) scale(1.6);
  transform-origin: center;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 12px 28px -16px rgba(20, 36, 27, 0.5);
  transition: opacity 0.35s ease;
}
.hero__stamp::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--canopy);
  border-radius: 7px;
  opacity: 0.5;
}
.hero__stamp-check { width: 1.8rem; height: 1.8rem; flex-shrink: 0; }
.hero__stamp-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  line-height: 1.15;
  text-align: left;
}
.hero--stamped .hero__stamp { animation: heroStamp 0.5s cubic-bezier(0.18, 1.5, 0.5, 1) forwards; }
@keyframes heroStamp {
  0%   { opacity: 0; transform: translate(var(--stamp-tx), var(--stamp-ty)) rotate(-19deg) scale(1.85); }
  55%  { opacity: 1; transform: translate(var(--stamp-tx), var(--stamp-ty)) rotate(-6deg) scale(0.92); }
  100% { opacity: 1; transform: translate(var(--stamp-tx), var(--stamp-ty)) rotate(-9deg) scale(1); }
}

/* scroll cue */
.hero__scrollcue {
  position: absolute;
  bottom: clamp(1.4rem, 5vh, 2.4rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--muted);
  opacity: calc(1 - var(--p) * 3);
  pointer-events: none;
}
.hero__scrollcue-bar { width: 1px; height: 2.8rem; background: var(--line); position: relative; overflow: hidden; }
.hero__scrollcue-bar::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 40%;
  background: var(--canopy);
  animation: scrollbar 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes scrollbar { 0% { transform: translateY(-110%); } 100% { transform: translateY(280%); } }

/* small screens / reduced motion: collapse the pin, show the resolved state */
.hero-scroll.is-static { height: auto; }
.hero-scroll.is-static .hero { position: relative; height: auto; min-height: 100svh; }
.hero-scroll.is-static .hero__bugs,
.hero-scroll.is-static .hero__shield,
.hero-scroll.is-static .hero__scrollcue { display: none; }

/* ============ HIT LIST (one pest at a time, struck off) ============ */
.hitlist {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  background: var(--canopy);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(0.9rem, 2vw, 1.3rem) var(--gutter);
}
.hitlist__kicker,
.hitlist__note {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  white-space: nowrap;
}
.hitlist__kicker { color: var(--lime); }
.hitlist__note { color: rgba(246, 243, 234, 0.55); }
.hitlist__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(2.1rem, 3.8vw, 2.8rem);
  overflow: hidden;
}
.hitlist__item { position: relative; display: inline-block; will-change: transform; }
.hitlist__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.6vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--sand);
  line-height: 1;
  display: inline-block;
}
.hitlist__strike {
  position: absolute;
  left: -3%; right: -3%; top: 52%;
  height: 3px;
  border-radius: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
}
.hitlist__gone {
  position: absolute;
  top: -0.4rem; right: -3rem;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--lime);
  border: 1.5px solid var(--lime);
  border-radius: 4px;
  padding: 0.14rem 0.34rem;
  opacity: 0;
  transform: rotate(-8deg);
  white-space: nowrap;
}
@media (max-width: 680px) {
  .hitlist__note { display: none; }
  .hitlist__gone { right: -2.4rem; font-size: 0.48rem; }
}

/* ============ SECTION HEAD ============ */
.section-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 1.2rem;
  margin-bottom: clamp(2.5rem, 7vw, 5rem);
}
/* signature mark: a little ant scuttles in along the rule, then patrols it —
   darts forward, pauses, turns around, walks back, spins to face forward again */
.section-head__bug { width: 22px; height: 22px; color: var(--canopy); opacity: 0; flex-shrink: 0; }
.section-head__bug svg { width: 100%; height: 100%; display: block; }
.section-head.is-inview .section-head__bug {
  animation:
    bugScuttle 1.1s var(--ease) forwards,
    bugPatrol 8s ease-in-out 1.6s infinite;
}
@keyframes bugScuttle {
  0%   { opacity: 0; transform: translateX(-30px) rotate(97deg); }
  12%  { opacity: 1; }
  30%  { transform: translateX(-19px) rotate(83deg); }
  55%  { transform: translateX(-9px) rotate(96deg); }
  80%  { transform: translateX(-2px) rotate(86deg); }
  100% { opacity: 1; transform: translateX(0) rotate(90deg); }
}
@keyframes bugPatrol {
  0%, 8%   { transform: translateX(0) rotate(90deg); }
  11%      { transform: translateX(0) rotate(270deg); }      /* turn to face away from the heading */
  15%      { transform: translateX(-6px) rotate(263deg); }
  19%      { transform: translateX(-12px) rotate(277deg); }
  23%      { transform: translateX(-17px) rotate(266deg); }
  26%, 42% { transform: translateX(-17px) rotate(270deg); }  /* pause at the rule's edge */
  46%      { transform: translateX(-17px) rotate(90deg); }   /* turn back */
  50%      { transform: translateX(-11px) rotate(96deg); }
  54%      { transform: translateX(-5px) rotate(85deg); }
  58%      { transform: translateX(0) rotate(93deg); }
  61%, 100%{ transform: translateX(0) rotate(90deg); }       /* home, facing the heading */
}
/* rule draws itself in when the section scrolls into view */
.section-head::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease) 0.1s;
}
.section-head.is-inview::after { transform: scaleX(1); }

/* word-split reveal targets */
.word { display: inline-block; transform-origin: 0% 100%; }
.section-head__label {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.inspect .section-head__label { color: var(--sand); }

/* ============ APPROACH ============ */
.approach { padding: clamp(4rem, 10vw, 8rem) var(--gutter); background: var(--sand-2); border-top: 1px solid var(--line); }
.approach__statement {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 4.6vw, 4rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 20ch;
}
.approach__statement em { color: var(--canopy); font-style: normal; }
.approach__statement .word { display: inline-block; }

.approach__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-top: clamp(3rem, 8vw, 6rem);
}
.stat { background: var(--sand); padding: clamp(1.5rem, 3vw, 2.4rem); display: flex; flex-direction: column; gap: 0.8rem; }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1; color: var(--canopy); display: flex; align-items: baseline; }
.stat__num sup { font-size: 0.28em; font-family: var(--font-mono); letter-spacing: 0.06em; color: var(--lime-deep); margin-left: 0.25em; top: -0.1em; }
.stat__label { font-family: var(--font-mono); font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); line-height: 1.8; }

/* ============ PROCESS — call to quiet in four steps ============ */
.process {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) var(--gutter);
  background: linear-gradient(180deg, var(--canopy), var(--canopy-deep));
  color: var(--sand);
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(246, 243, 234, 0.14) 1.2px, transparent 1.6px);
  background-size: 26px 26px;
  opacity: 0.35;
}
.process > * { position: relative; }
.process .section-head__bug { color: var(--lime); }
.process .section-head__label { color: var(--sand); }
.process .section-head::after { background: rgba(246, 243, 234, 0.18); }
.process__lead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 3rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.6rem, 6vw, 4.5rem);
}
.process__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.process__heading em { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: none; color: var(--lime); letter-spacing: 0; }
.process__copy { max-width: 38ch; font-size: clamp(0.92rem, 1.5vw, 1.05rem); color: rgba(246, 243, 234, 0.78); }
.process__track { position: relative; }
.process__rail { position: absolute; left: 8px; right: 8px; top: 7px; height: 2px; border-radius: 2px; background: rgba(246, 243, 234, 0.16); }
.process__line { position: absolute; background: var(--lime); border-radius: 2px; z-index: 1; }
.process__line--h { left: 8px; right: 8px; top: 7px; height: 2px; transform: scaleX(0); transform-origin: left center; }
.process__line--v { display: none; left: 7px; top: 8px; bottom: 8px; width: 2px; transform: scaleY(0); transform-origin: center top; }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); }
.step { position: relative; padding-top: 2.4rem; }
.step__marker {
  position: absolute;
  top: 0; left: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--canopy-deep);
  border: 2px solid rgba(246, 243, 234, 0.45);
  box-sizing: border-box;
  z-index: 2;
}
.step__no { font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--lime); }
.step__icon { display: block; width: 32px; height: 32px; color: var(--lime); margin: 1rem 0 0.85rem; }
.step__icon svg { width: 100%; height: 100%; display: block; }
.step__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 0.6rem;
}
.step__desc { font-size: 0.92rem; line-height: 1.65; color: rgba(246, 243, 234, 0.78); margin-bottom: 1rem; }
.step__meta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(182, 233, 74, 0.9);
  border: 1px solid rgba(182, 233, 74, 0.35);
  border-radius: 99px;
  padding: 0.32rem 0.66rem;
}
.process__cta { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 1.4rem; margin-top: clamp(2.6rem, 6vw, 4rem); }
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { background: var(--sand); }
.process__cta-note { font-family: var(--font-mono); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(246, 243, 234, 0.55); }

/* ============ ESTIMATE ============ */
.estimate { padding: clamp(5rem, 12vw, 9rem) var(--gutter); }
.estimate__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.estimate__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.estimate__heading em { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: none; color: var(--canopy); letter-spacing: 0; }
.estimate__copy { font-size: clamp(0.95rem, 1.6vw, 1.1rem); color: var(--ink-soft); max-width: 40ch; margin-bottom: 2rem; }
.estimate__note { margin-top: 1.2rem; font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }

.estimate__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.ecard {
  position: relative;
  background: var(--sand-2);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: clamp(1.4rem, 3vw, 1.9rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.ecard:hover { transform: translateY(-4px); box-shadow: 0 22px 46px -30px rgba(20, 36, 27, 0.45); }
.ecard--feature { background: var(--canopy); color: var(--sand); border-color: var(--canopy); }
.ecard__top { display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; }
.ecard__label { font-family: var(--font-mono); font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }
.ecard--feature .ecard__label { color: var(--lime); }
.ecard__price { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--ink-soft); white-space: nowrap; }
.ecard--feature .ecard__price { color: var(--sand); }
.ecard__price strong { font-weight: 700; font-size: 1.9rem; color: var(--canopy); }
.ecard--feature .ecard__price strong { color: var(--lime); }
.ecard__price small { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; color: var(--muted); }
.ecard--feature .ecard__price small { color: rgba(246,243,234,0.7); }
.ecard__desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.55; }
.ecard--feature .ecard__desc { color: rgba(246, 243, 234, 0.85); }
.ecard__tag {
  position: absolute;
  top: -0.7rem; right: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
  background: var(--lime);
  padding: 0.35rem 0.7rem;
  border-radius: 99px;
}

/* ============ PLANS ============ */
.plans { padding: clamp(5rem, 12vw, 9rem) var(--gutter); background: var(--sand-2); border-top: 1px solid var(--line); }
.plans__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.plan {
  position: relative;
  background: var(--sand);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: clamp(1.4rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.4s ease;
}
.plan:hover { transform: translateY(-9px); border-color: rgba(31, 92, 61, 0.22); box-shadow: 0 34px 72px -38px rgba(20, 36, 27, 0.48); }
.plan__media { border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 11; margin-bottom: 1.5rem; transition: transform 0.65s var(--ease), box-shadow 0.65s var(--ease); }
.plan:hover .plan__media { transform: scale(1.018); box-shadow: 0 22px 38px -28px rgba(20, 36, 27, 0.65); }
/* over-scaled so the GSAP parallax scrub never exposes edges (no CSS transform transition — GSAP owns it) */
.plan__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.16); will-change: transform; }
.plan__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 0.8rem;
}
.plan__desc { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 1.4rem; }
.plan__points { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.8rem; }
.plan__points li {
  position: relative;
  padding-left: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  line-height: 1.5;
}
.plan__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.15em;
  width: 0.85rem; height: 0.85rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: inset 0 0 0 3px var(--canopy);
}
.plan__link {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--canopy);
  transition: color 0.3s ease, letter-spacing 0.4s var(--ease);
}
.plan__link::after { content: "→"; display: inline-block; margin-left: 0.65rem; transition: transform 0.35s var(--ease); }
.plan__link:hover { color: var(--lime-deep); letter-spacing: 0.2em; }
.plan:hover .plan__link::after { transform: translateX(0.35rem); }
.plan--feature { background: var(--ink); color: var(--sand); border-color: var(--ink); }
.plan--feature::after {
  content: "Most chosen";
  position: absolute;
  top: 1.3rem; right: 1.3rem;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  background: var(--lime);
  padding: 0.3rem 0.65rem;
  border-radius: 99px;
  z-index: 2;
}
.plan--feature .plan__desc { color: rgba(246, 243, 234, 0.82); }
.plan--feature .plan__points li { color: rgba(246, 243, 234, 0.9); }
.plan--feature .plan__link { color: var(--lime); }

/* ============ SERVICE PLEDGE ============ */
/* Lives at the foot of the Free Estimate section. The old "Why Tropics" block
   (heading, credential badges, testimonial carousel) was removed — its claims
   are carried by the hero proof strip and the FAQ answers instead. */
.pledge {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  background: var(--canopy);
  color: var(--sand);
  border-radius: 22px;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  overflow: hidden;
}
.pledge__kicker { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.26em; color: var(--lime); margin-bottom: 0.8rem; }
.guarantee-mark {
  position: relative;
  width: min(190px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: auto;
  color: var(--lime);
  perspective: 750px;
}
.guarantee-mark__scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  will-change: transform;
}
.guarantee-mark__orbit,
.guarantee-mark__disc {
  position: absolute;
  border: 1px solid rgba(182, 233, 74, 0.34);
  border-radius: 46% 54% 52% 48%;
}
.guarantee-mark__orbit--outer { inset: 2%; border-color: rgba(246, 243, 234, 0.2); transform: translateZ(-12px) rotate(18deg); animation: pledgeOrbit 11s linear infinite; }
.guarantee-mark__orbit--inner { inset: 10%; transform: translateZ(4px) rotate(-12deg); animation: pledgeOrbitReverse 8s linear infinite; }
.guarantee-mark__disc {
  inset: 19%;
  border-radius: 50%;
  border-color: rgba(182, 233, 74, 0.22);
  background: radial-gradient(circle at 38% 30%, rgba(182, 233, 74, 0.2), rgba(20, 63, 42, 0.18) 65%);
  box-shadow: inset 0 0 36px rgba(182, 233, 74, 0.08), 0 22px 42px -24px rgba(0, 0, 0, 0.5);
  transform: translateZ(12px);
}
/* height:auto is load-bearing — the mark is 1.08:1, so a fixed height would stretch it.
   The 3px X nudge is optical: the artwork carries slightly more transparent
   padding on its right, so geometric centring reads as sitting left of the rings. */
.guarantee-mark__logo { width: 64%; height: auto; position: relative; z-index: 1; transform: translate3d(3px, 0, 38px); filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.35)); will-change: transform; }
/* impact ring — sits flat in the scene; GSAP expands and fades it on the stamp's landing frame */
.guarantee-mark__shock {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  border: 2px solid rgba(182, 233, 74, 0.5);
  opacity: 0;
  pointer-events: none;
}
@keyframes pledgeOrbit { to { transform: translateZ(-12px) rotate(378deg); } }
@keyframes pledgeOrbitReverse { to { transform: translateZ(4px) rotate(-372deg); } }
.pledge__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 3.4vw, 2.4rem);
  line-height: 1.25;
  max-width: 28ch;
}
.pledge__text em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--lime); }
.pledge__points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-top: 1.5rem; }
.pledge__points li { border-top: 1px solid rgba(246, 243, 234, 0.2); padding-top: 0.85rem; }
.pledge__points strong { display: block; font-family: var(--font-mono); color: var(--lime); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.35rem; }
.pledge__points span { display: block; color: rgba(246, 243, 234, 0.76); font-size: 0.82rem; line-height: 1.5; }

/* ============ FAQ ============ */
.faq { padding: clamp(5rem, 12vw, 9rem) var(--gutter); background: var(--sand-2); border-top: 1px solid var(--line); }
.faq__grid { display: grid; grid-template-columns: 0.85fr 1.4fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.faq__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.faq__heading em { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: none; color: var(--canopy); letter-spacing: 0; }
.faq__copy { font-size: clamp(0.95rem, 1.6vw, 1.05rem); color: var(--ink-soft); max-width: 32ch; margin-bottom: 1.8rem; }
.faq__list { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa__q {
  display: flex;
  align-items: baseline;
  gap: clamp(0.8rem, 2vw, 1.2rem);
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.25rem 0;
  cursor: pointer;
}
.qa__no { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em; color: var(--lime-deep); flex-shrink: 0; }
.qa__text {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(1.02rem, 2.2vw, 1.35rem);
  line-height: 1.28;
  color: var(--ink);
  transition: color 0.3s ease;
}
.qa__q:hover .qa__text { color: var(--canopy); }
.qa__icon {
  position: relative;
  width: 30px; height: 30px;
  flex-shrink: 0;
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 0.5s var(--ease), background 0.3s ease, border-color 0.3s ease;
}
.qa__icon::before, .qa__icon::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px; top: 50%;
  height: 1.5px;
  margin-top: -0.75px;
  background: var(--ink);
  border-radius: 2px;
}
.qa__icon::after { transform: rotate(90deg); }
.qa.is-open .qa__icon { transform: rotate(45deg); background: var(--lime); border-color: var(--lime); }
.qa__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.55s var(--ease); }
.qa.is-open .qa__a { grid-template-rows: 1fr; }
.qa__a-inner { overflow: hidden; min-height: 0; }
.qa__a-inner p {
  padding: 0.1rem 3.2rem 1.45rem clamp(1.9rem, 4vw, 2.4rem);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 64ch;
}

/* ============ SERVICE AREA — stylised island map ============ */
.areas { padding: clamp(5rem, 12vw, 9rem) var(--gutter); background: var(--sand-2); border-top: 1px solid var(--line); }
.areas__grid { display: grid; grid-template-columns: 0.9fr 1.25fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.areas__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.areas__heading em { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: none; color: var(--canopy); letter-spacing: 0; }
.areas__copy { font-size: clamp(0.95rem, 1.6vw, 1.05rem); color: var(--ink-soft); max-width: 38ch; margin-bottom: 1.6rem; }
.areas__list { display: flex; flex-direction: column; border-top: 1px solid var(--line); margin-bottom: 1.4rem; }
.area {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0.8rem 0.2rem;
  cursor: pointer;
  transition: background 0.3s ease, padding-left 0.35s var(--ease);
}
.area:hover, .area.is-active { background: var(--sand-2); padding-left: 0.75rem; }
.area__name {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(0.98rem, 2vw, 1.18rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.area__zone {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 0.3rem 0.6rem;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.area.is-active .area__zone { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.areas__note { font-size: 0.88rem; color: var(--muted); }
.areas__note a { color: var(--canopy); border-bottom: 1px solid rgba(31, 92, 61, 0.35); transition: border-color 0.3s ease; }
.areas__note a:hover { border-color: var(--canopy); }
.areas__map {
  position: relative;
  background: linear-gradient(160deg, var(--canopy), var(--canopy-deep));
  border-radius: 18px;
  padding: clamp(1.2rem, 3vw, 2.2rem) clamp(1.2rem, 3vw, 2.2rem) clamp(3rem, 5vw, 3.6rem);
  overflow: hidden;
}
.areas__map::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(246, 243, 234, 0.13) 1.2px, transparent 1.6px);
  background-size: 24px 24px;
  opacity: 0.4;
}
.areas__svg { position: relative; width: 100%; height: auto; display: block; }
.areas__island { fill: var(--sand); stroke: rgba(20, 36, 27, 0.3); stroke-width: 1.5; filter: drop-shadow(0 16px 26px rgba(10, 24, 16, 0.35)); }
.areas__wave { fill: none; stroke: rgba(246, 243, 234, 0.3); stroke-width: 1.5; stroke-linecap: round; stroke-dasharray: 1 7; }
.areas__compass { color: rgba(246, 243, 234, 0.55); }
.areas__compass text { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; fill: rgba(246, 243, 234, 0.55); }
.areas__maplabel { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.34em; fill: rgba(246, 243, 234, 0.4); }
.areas__pin { cursor: pointer; }
.areas__pin-hit { fill: transparent; }
.areas__pin-dot { fill: rgba(20, 36, 27, 0.32); transition: fill 0.3s ease; }
.areas__pin:hover .areas__pin-dot { fill: var(--canopy); }
.areas__pin-ring {
  fill: none;
  stroke: var(--canopy);
  stroke-width: 2;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.areas__pin.is-active .areas__pin-dot { fill: var(--canopy); }
.areas__pin.is-active .areas__pin-ring { animation: pinPing 1.9s ease-out infinite; }
@keyframes pinPing {
  0% { transform: scale(0.4); opacity: 0.85; }
  80%, 100% { transform: scale(1.7); opacity: 0; }
}
.areas__tag {
  position: absolute;
  left: 22%; top: 38%;
  transform: translate(-50%, -140%);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  background: var(--ink);
  color: var(--sand);
  border-radius: 10px;
  padding: 0.5rem 0.85rem;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 14px 30px -14px rgba(10, 24, 16, 0.7);
  z-index: 2;
}
.areas__tag::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -4px;
  width: 9px; height: 9px;
  background: var(--ink);
  transform: translateX(-50%) rotate(45deg);
}
.areas__tag strong { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.02em; }
.areas__tag span { font-family: var(--font-mono); font-size: 0.52rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--lime); }
.areas__sishint text { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.18em; fill: rgba(246, 243, 234, 0.5); }
.areas__badge {
  position: absolute;
  left: 50%; bottom: 1.1rem;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(246, 243, 234, 0.8);
  background: rgba(20, 36, 27, 0.4);
  border: 1px solid rgba(246, 243, 234, 0.14);
  border-radius: 99px;
  padding: 0.42rem 0.9rem;
  white-space: nowrap;
}

/* --- Sister Islands: monthly service-run banner --- */
.sisters {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem clamp(1.2rem, 2.5vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(120deg, var(--canopy), var(--canopy-deep));
  color: var(--sand);
  border-radius: 18px;
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.4rem, 3.5vw, 2.4rem);
  overflow: hidden;
}
.sisters::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(246, 243, 234, 0.13) 1.2px, transparent 1.6px);
  background-size: 24px 24px;
  opacity: 0.4;
}
.sisters > * { position: relative; }
.sisters__icon { width: clamp(132px, 22vw, 180px); color: #fff; flex-shrink: 0; }
.sisters__icon svg { width: 100%; height: auto; display: block; }
.sisters__text { flex: 1 1 300px; }
.sisters__head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 0.35rem;
}
.sisters__copy { font-size: 0.93rem; line-height: 1.6; color: rgba(246, 243, 234, 0.82); max-width: 58ch; }
.sisters__chip {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--lime);
  border: 1px solid rgba(182, 233, 74, 0.4);
  border-radius: 99px;
  padding: 0.42rem 0.85rem;
  white-space: nowrap;
}

/* ============ INSTAGRAM ============ */
.gram { padding: clamp(5rem, 12vw, 9rem) var(--gutter); background: var(--sand); border-top: 1px solid var(--line); }
.gram__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.gram__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.gram__heading em { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: none; color: var(--canopy); letter-spacing: 0; }
.gram__copy { font-size: clamp(0.95rem, 1.6vw, 1.05rem); color: var(--ink-soft); max-width: 44ch; }
.gram__follow { flex-shrink: 0; }
.gram__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.9rem, 1.8vw, 1.5rem); }
.gram__post {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: var(--sand-2);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.gram__post:hover { transform: translateY(-7px); border-color: rgba(31, 92, 61, 0.22); box-shadow: 0 30px 60px -34px rgba(20, 36, 27, 0.5); }
.gram__post img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gram__post:hover img { transform: scale(1.05); }
.gram__meta {
  position: absolute;
  inset: auto 0.7rem 0.7rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  background: rgba(20, 36, 27, 0.82);
  color: var(--sand);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.gram__post:hover .gram__meta { opacity: 1; transform: translateY(0); }
.gram__meta svg { flex-shrink: 0; color: var(--lime); }
.gram__caption {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 820px) {
  .gram__grid { grid-template-columns: repeat(2, 1fr); }
  .gram__meta { opacity: 1; transform: none; }
}

/* ============ INSPECT ============ */
.inspect { padding: clamp(5rem, 12vw, 9rem) var(--gutter); background: var(--ink); color: var(--sand); }
.inspect .section-head::after { background: rgba(246, 243, 234, 0.16); }
.inspect .section-head__bug { color: var(--lime); }
.inspect .section-head__label { color: var(--sand); }
.inspect__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.inspect__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.inspect__heading em { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: none; color: var(--lime); letter-spacing: 0; }
.inspect__copy { font-size: clamp(0.95rem, 1.6vw, 1.1rem); color: rgba(246, 243, 234, 0.8); max-width: 40ch; margin-bottom: 2.4rem; }
.inspect__direct { display: grid; gap: 0; }
.inspect__direct li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-top: 1px solid rgba(246, 243, 234, 0.16); }
.inspect__direct li:last-child { border-bottom: 1px solid rgba(246, 243, 234, 0.16); }
.inspect__direct-label { font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--lime); }
.inspect__direct a { font-size: 1.1rem; color: var(--sand); transition: color 0.3s ease; }
.inspect__direct a:hover { color: var(--lime); }

.inspect__form {
  background: rgba(246, 243, 234, 0.04);
  border: 1px solid rgba(246, 243, 234, 0.14);
  border-radius: 18px;
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; grid-column: 1 / -1; }
.field--half { grid-column: span 1; }
/* honeypot: display:none on purpose. It was clip-hidden before, and browser
   autofill still filled it (Netlify then binned the lead as spam). Bots that
   POST the raw field list still fill it; that is the case the trap is for. */
.field--hp { display: none !important; }
.field label { font-family: var(--font-mono); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--lime); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--sand);
  background: rgba(246, 243, 234, 0.06);
  border: 1px solid rgba(246, 243, 234, 0.18);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(246, 243, 234, 0.4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
  border-color: var(--lime);
  background: rgba(246, 243, 234, 0.1);
}
/* Invalid state has to be obvious on the dark form: a 2px coral border, a
   tinted fill, the label turning coral, and the focus ring matching — the
   lime ring used to hide the pink border on the very field we'd just focused. */
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea {
  border: 2px solid #ff7a68;
  background: rgba(255, 118, 103, 0.14);
  box-shadow: 0 0 0 4px rgba(255, 118, 103, 0.18);
}
.field.is-invalid input:focus, .field.is-invalid select:focus, .field.is-invalid textarea:focus,
.field.is-invalid input:focus-visible, .field.is-invalid select:focus-visible, .field.is-invalid textarea:focus-visible {
  outline-color: #ff7a68;
  border-color: #ff7a68;
}
.field.is-invalid > label { color: #ff9c8d; }
.field.is-invalid { animation: field-shake 0.4s var(--ease); }
@keyframes field-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-3px); }
}
.field__error { color: #ffb2a9; font-size: 0.8rem; font-weight: 600; line-height: 1.35; }
.inspect__formnote.is-invalid { color: #ff9c8d; }
.field__hint { color: rgba(246, 243, 234, 0.55); font-size: 0.75rem; line-height: 1.35; }
.field select option { color: var(--ink); }
/* "how soon?" + time-slot quick-picks */
.urgency { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sand);
  background: transparent;
  border: 1px solid rgba(246, 243, 234, 0.32);
  border-radius: 99px;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.35s var(--ease);
}
.chip:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-1px); }
.chip.is-on { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.inspect__submit {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  background: var(--lime);
  border: 0;
  border-radius: 99px;
  padding: 1rem 1.4rem;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.3s ease;
}
.inspect__submit:hover { background: var(--sand); }
.inspect__formnote { grid-column: 1 / -1; font-family: var(--font-mono); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(246, 243, 234, 0.5); text-align: center; }
.inspect__formnote.is-ok { color: var(--lime); }
.inspect__formnote.is-error { color: #e0a05a; }
.inspect__formnote.is-error a { color: var(--sand); text-decoration: underline; text-underline-offset: 2px; }

/* ============ FOOTER ============ */
.footer { padding: clamp(4.5rem, 11vw, 8rem) var(--gutter) 2rem; background: var(--canopy-deep); color: var(--sand); overflow: hidden; }
.footer__cta {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 13vw, 12rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
}
.footer__cta-line { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.footer__cta-line span { display: inline-block; transition: color 0.4s ease; }
.footer__cta em { color: transparent; -webkit-text-stroke: 1.6px var(--lime); font-style: normal; }
.footer__cta:hover span { color: var(--lime); }
.footer__cta:hover em { color: var(--lime); -webkit-text-stroke-color: transparent; }

.footer__cols {
  margin-top: clamp(3rem, 8vw, 5.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(246, 243, 234, 0.16);
}
.footer__mark { width: 64px; height: 64px; object-fit: contain; margin-bottom: 1rem; filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.3)); }
.footer__col-head { font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--lime); margin-bottom: 0.9rem; }
.footer__col-body { font-size: 0.92rem; line-height: 1.9; color: rgba(246, 243, 234, 0.82); }
.footer__col-body a { transition: color 0.3s ease; }
.footer__note { font-style: normal; font-family: var(--font-mono); font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--lime); }
.footer__col-body a:hover { color: var(--lime); }

.footer__meta {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(246, 243, 234, 0.16);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(246, 243, 234, 0.6);
}
/* Social icons in the "Reach us" column. 40px circles clear the 24px WCAG
   2.5.8 target minimum without needing the mobile override. */
.footer__social { display: flex; gap: 0.7rem; margin-top: 1rem; list-style: none; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(246, 243, 234, 0.24);
  border-radius: 50%;
  color: inherit;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.footer__social a:hover { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.footer__social svg { width: 18px; height: 18px; display: block; }

.footer__socials { display: flex; gap: 1.5rem; }
.footer__socials a, .footer__top { transition: color 0.3s ease; }
.footer__socials a:hover, .footer__top:hover { color: var(--lime); }

/* ============ STICKY MOBILE ACTION BAR ============ */
.actionbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 950;
  display: none;
  background: rgba(20, 36, 27, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(246, 243, 234, 0.12);
  padding: 0.5rem max(0.5rem, env(safe-area-inset-left)) calc(0.5rem + env(safe-area-inset-bottom));
}
.actionbar__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.55rem 0.3rem;
  color: var(--sand);
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.actionbar__btn svg { color: var(--lime); }
.actionbar__btn--primary { background: var(--lime); color: var(--ink); margin-left: 0.3rem; }
.actionbar__btn--primary svg { color: var(--ink); }
@media (max-width: 820px) {
  .actionbar { display: flex; }
  body { padding-bottom: 4.5rem; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .approach__stats { grid-template-columns: repeat(2, 1fr); }
  .plans__list { grid-template-columns: 1fr; }
  /* One card per row, still stacked: image over copy. This used to be a
     `flex-direction: row` card, but `width: 100%` on the copy wrapped all of
     it below the 220px thumbnail anyway — only the step number ever sat
     beside the image, and its `gap: 1.5rem` was added on top of every child's
     own margin, inflating each internal gap by 24px. Both are gone; the
     card's default column flow and the margins below own the rhythm. */
  .plan__media { aspect-ratio: 21 / 9; }
  .nav__tel { display: none; }
  /* process timeline goes vertical — one column, rail down the left */
  .process__steps { grid-template-columns: 1fr; gap: 2.2rem; }
  .step { padding-top: 0; padding-left: 2.5rem; max-width: 62ch; }
  .step__marker { top: 2px; }
  .process__rail { left: 7px; right: auto; top: 8px; bottom: 8px; width: 2px; height: auto; }
  .process__line--h { display: none; }
  .process__line--v { display: block; }
}
@media (max-width: 920px) {
  .estimate__grid { grid-template-columns: 1fr; }
  .inspect__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .faq__copy { max-width: 46ch; }
  .areas__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .pledge { grid-template-columns: 1fr; text-align: center; }
  .pledge__text { margin-inline: auto; }
}
@media (max-width: 820px) {
  .nav__links { display: none; }
  /* "Pest Control" used to be hidden here, leaving a bare, over-spaced
     "TROPICS". Keep the full lockup on mobile, scaled down — sizes below are
     tuned so the sub-line still spans exactly the width of TROPICS. */
  .nav__logo-text strong, .menu__brand-text strong { font-size: 1.16rem; letter-spacing: 0.03em; }
  .nav__logo-text em, .menu__brand-text em { font-size: 0.46rem; letter-spacing: 0.336em; }
  /* The islands wrap onto their own row at this width, so there is plenty of
     room — at the old size they read as a stray mark rather than a map. */
  .sisters__icon { width: min(66vw, 250px); }
  .nav__burger { display: block; }
  .hero__scrollcue { bottom: 5.75rem; }
  .hero__stamp { --stamp-tx: -8%; }       /* keep the stamp's check inside the viewport */
  .plan__media { aspect-ratio: 16 / 10; margin-bottom: 1.3rem; }
  /* .plan__link is a 44px touch target (below) wrapped around ~17px of text,
     so it carries ~13px of dead space above and below the words. Trim the
     margin before it and the card's bottom padding by about that much, or the
     copy reads as bottom-heavy against the 1.4rem inset at the top. */
  .plan__points { margin-bottom: 1rem; }
  .plan { padding-bottom: 0.9rem; }
  .approach, .process, .plans, .estimate, .faq, .areas, .inspect { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .nav__burger { width: 44px; height: 44px; }
  .urgency .chip { min-height: 44px; }
  /* Touch targets. .footer__links never existed in the markup (the class is
     .footer__col-body), so this rule silently covered nothing there — footer
     links were 20px tall, under the 24px WCAG 2.5.8 minimum. */
  .plan__link,
  .footer__col-body a, .inspect__direct a, .footer__top { min-height: 44px; display: inline-flex; align-items: center; }
  /* Mono micro-labels only. .section-head__label is a display heading, not a
     micro-label — it keeps its own clamp so section headers stay proportionate. */
  .step__no, .step__meta,
  .ecard__label, .qa__no, .field label, .pledge__kicker, .pledge__points strong { font-size: 0.7rem; }
  .plan:hover { transform: none; }
}
@media (max-width: 600px) {
  .hero-scroll { height: 200vh; }
  .hero__stamp { padding: 0.45rem 0.7rem; gap: 0.45rem; border-width: 2px; --stamp-tx: -4%; --stamp-ty: -46%; }
  .hero__stamp::after { inset: 2.5px; }
  .hero__stamp-check { width: 1.3rem; height: 1.3rem; }
  .hero__stamp-label { font-size: 0.6rem; }
}
@media (max-width: 600px) {
  .nav__cta { display: none; }   /* sticky action bar carries the CTA on phones */
}
@media (max-width: 560px) {
  .approach__stats { grid-template-columns: 1fr 1fr; }
  .estimate__cards { grid-template-columns: 1fr; }
  .inspect__form { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1; justify-content: center; }
  /* 20px page gutter + 22.4px card padding was costing 22% of a 375px screen
     to whitespace. Same bottom trim as at 820px, just off a smaller inset. */
  .plan { padding: 1.15rem 1.15rem 0.85rem; }
  .plan__media { margin-bottom: 1.15rem; }
  .qa__a-inner p { padding-right: 0.5rem; }
  .areas__tag { padding: 0.4rem 0.65rem; }
  .areas__tag strong { font-size: 0.72rem; }
  .areas__tag span { font-size: 0.48rem; }
  .areas__badge { font-size: 0.48rem; letter-spacing: 0.12em; max-width: 92%; white-space: normal; text-align: center; line-height: 1.5; }
  .footer__cols { grid-template-columns: 1fr; gap: 1.6rem; }
  .pledge__points { grid-template-columns: 1fr; text-align: left; }
  .pledge { gap: 1.5rem; }
  .guarantee-mark { width: 132px; }
  .preloader::before { width: 118vw; }
  .preloader::after { width: 88vw; }
  .preloader__orbit { width: 88vw; }
}
@media (max-width: 360px) {
  .hero__word { font-size: clamp(2.7rem, 16.5vw, 15rem); }
  .hero__eyebrow { font-size: 0.5rem; letter-spacing: 0.18em; gap: 0.5rem; }
  .hero__eyebrow-line { width: 0.9rem; }
  /* pills may wrap on ultra-narrow screens rather than force overflow */
  .btn { white-space: normal; text-align: center; font-size: 0.66rem; padding: 0.85rem 1.1rem; }
  .qa__q { gap: 0.6rem; }
  .qa__icon { width: 26px; height: 26px; }
  .qa__icon::before, .qa__icon::after { left: 7px; right: 7px; }
  .qa__a-inner p { padding-left: 1.5rem; }
  .area__name { font-size: 0.9rem; }
}

/* ============ FOCUS + ANCHOR POLISH ============ */
:focus-visible { outline: 2px solid var(--lime-deep); outline-offset: 3px; border-radius: 4px; }
section[id], [id="top"] { scroll-margin-top: 4.2rem; }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  .field.is-invalid { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .preloader { display: none; }
}

/* ============ CONSENT CHECKBOX (inspection form) ============ */
/* Required under the Cayman Islands Data Protection Act to evidence that the
   visitor saw the privacy notice before we take their details. */
.field--consent { flex-direction: row; align-items: flex-start; gap: 0.75rem; }
.field--consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.1rem;
  padding: 0;
  border: 1px solid rgba(246, 243, 234, 0.45);
  border-radius: 5px;
  background: rgba(246, 243, 234, 0.06);
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.field--consent input[type="checkbox"]::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 2px;
  background: var(--ink);
  transform: scale(0);
  transition: transform 0.2s var(--ease);
}
.field--consent input[type="checkbox"]:checked { background: var(--lime); border-color: var(--lime); }
.field--consent input[type="checkbox"]:checked::before { transform: scale(1); }
.field--consent input[type="checkbox"]:focus-visible { outline: 2px solid var(--lime); outline-offset: 2px; }
.field--consent .field__consent-label {
  flex: 1 1 0;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(246, 243, 234, 0.78);
  cursor: pointer;
}
.field--consent .field__consent-label a { color: var(--lime); text-decoration: underline; text-underline-offset: 2px; }
.field--consent .field__consent-label a:hover { color: var(--sand); }
.field--consent .field__error { flex-basis: 100%; }
.field--consent.is-invalid input[type="checkbox"] { border: 2px solid #ff7a68; background: rgba(255, 118, 103, 0.14); box-shadow: 0 0 0 4px rgba(255, 118, 103, 0.18); }
.field--consent.is-invalid .field__consent-label { color: #ffb2a9; }
.field--consent.is-invalid input[type="checkbox"]:focus-visible { outline-color: #ff7a68; }
.field--consent { flex-wrap: wrap; }

.footer__legal a { transition: color 0.3s ease; }
.footer__legal a:hover { color: var(--lime); }

/* ============ LEGAL PAGES (privacy.html) ============ */
/* Standalone page: no preloader, cursor or scroll library. Keep it light. */
.legal-page::after { display: none; }
.legal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--gutter);
  border-bottom: 1px solid var(--line-soft);
}
.legal__brand { display: inline-flex; align-items: center; gap: 0.7rem; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em; }
.legal__brand img { width: 40px; height: 40px; }
.legal__back, .legal__foot a { font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-soft); transition: color 0.3s ease; }
.legal__back:hover, .legal__foot a:hover { color: var(--canopy); }
.legal {
  max-width: 72ch;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) var(--pad) clamp(4rem, 10vw, 7rem);
}
.legal__label { font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--canopy); margin-bottom: 1rem; }
.legal__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1; letter-spacing: -0.03em; margin-bottom: 1rem; }
.legal__title em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--canopy); }
.legal__meta { font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 2rem; }
.legal__lead { font-size: 1.08rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: 2rem; }
.legal__toc {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 0.35rem 1.5rem;
  padding: 1.25rem 1.4rem;
  margin-bottom: 3rem;
  background: var(--sand-2);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  font-size: 0.88rem;
}
.legal__toc a { color: var(--ink-soft); transition: color 0.3s ease; }
.legal__toc a:hover { color: var(--canopy); }
.legal section { margin-bottom: 2.75rem; scroll-margin-top: 2rem; }
.legal h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 3vw, 1.7rem); letter-spacing: -0.02em; margin-bottom: 0.8rem; }
.legal h3 { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; margin: 1.2rem 0 0.4rem; color: var(--canopy-deep); }
.legal p { margin-bottom: 0.9rem; color: var(--ink-soft); }
.legal ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 0.9rem; color: var(--ink-soft); }
.legal li { margin-bottom: 0.4rem; }
.legal li strong, .legal p strong { color: var(--ink); }
.legal a { color: var(--canopy); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--canopy-deep); }
.legal__address { font-style: normal; line-height: 1.8; padding: 0.9rem 1.1rem; border-left: 3px solid var(--lime); background: var(--sand-2); border-radius: 0 10px 10px 0; margin-bottom: 0.9rem; }
.legal__table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin: 0.6rem 0 1.1rem; }
.legal__table th, .legal__table td { text-align: left; vertical-align: top; padding: 0.7rem 0.8rem; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.legal__table th { font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--canopy); }
.legal__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 2rem;
  padding: 1.4rem var(--gutter);
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
@media (max-width: 640px) {
  .legal__table, .legal__table thead, .legal__table tbody, .legal__table tr, .legal__table th, .legal__table td { display: block; }
  .legal__table thead { display: none; }
  .legal__table tr { border-bottom: 1px solid var(--line); padding: 0.5rem 0; }
  .legal__table td { border: 0; padding: 0.25rem 0; }
  .legal__table td:first-child { color: var(--ink); font-weight: 600; }
}
