/* ============================================================
   UNMOULD DESIGN SYSTEM  ·  unmould.com.au
   Single source of truth for tokens + reusable components.
   Every marketing page links this file, then adds only its
   own page-specific section CSS.

   PALETTES (set on .page via data-p):
     A · Forest + Walnut      B · Olive + Terracotta
   BRAND CTA: --cta #AD4E1D (rust) — every primary button.
   FONTS: DM Sans (body/headings) · Space Grotesk (technical labels).
   ICONS: inline SVG, class "i", stroke=currentColor (Feather style).
   ============================================================ */

/* ---------- Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', system-ui, sans-serif; color: var(--ink); }
/* display:flow-root establishes a block formatting context. Without it the
   nav's 18px top margin collapses out through .page, shifting the cream box
   down and exposing a white strip of <body> above the menu bar. */
.page { --cream:#f4efe6; --card:#ffffff; background: var(--cream); display: flow-root; }

/* ---------- Palettes ---------- */
.page[data-p="A"] { --ink:#25301f; --primary:#3d5a3a; --accent:#8a6d4b; --primary-text:#4a6b40; --sub:#4d5544; --ghost:#5a4632; --cta:#AD4E1D;
  --imgbg: linear-gradient(150deg, #4a6b40 0%, #34502f 50%, #2a3a22 100%);
  --imgglow: radial-gradient(circle at 75% 20%, rgba(255,255,255,0.16), transparent 45%), radial-gradient(circle at 20% 90%, rgba(160,140,90,0.4), transparent 50%); }
.page[data-p="B"] { --ink:#2e2b18; --primary:#6b6233; --accent:#b5673a; --primary-text:#8a6b2e; --sub:#56503a; --ghost:#8a4a2e; --cta:#AD4E1D;
  --imgbg: linear-gradient(150deg, #7d7440 0%, #5c5530 45%, #3d3a20 100%);
  --imgglow: radial-gradient(circle at 75% 25%, rgba(255,255,255,0.14), transparent 45%), radial-gradient(circle at 18% 88%, rgba(181,103,58,0.5), transparent 52%); }

/* ---------- Layout primitives ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
section { transition: background .25s; }
svg.i { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; display: block; }

/* ---------- Typography ---------- */
h1 { font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; font-size: 60px; color: var(--ink); }
h1 em { font-style: normal; color: var(--primary-text); }
h2 { font-weight: 600; letter-spacing: -0.025em; line-height: 1.08; font-size: 42px; color: var(--ink); }
h2 em { font-style: normal; color: var(--primary-text); }
.lead { font-size: 18px; line-height: 1.6; color: var(--sub); max-width: 600px; }

/* ---------- Eyebrow (glass pill label) ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; padding: 8px 16px 8px 13px; border-radius: 999px; color: var(--primary); background: rgba(255,255,255,0.45); -webkit-backdrop-filter: blur(14px) saturate(150%); backdrop-filter: blur(14px) saturate(150%); border: 1px solid rgba(255,255,255,0.7); box-shadow: 0 8px 22px -10px rgba(40,45,33,0.28), inset 0 1px 0 rgba(255,255,255,0.6); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cta); }
.eyebrow .i { width: 15px; height: 15px; color: var(--cta); }
/* on a dark / image background */
.eyebrow.on-dark { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.28); box-shadow: 0 8px 22px -10px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.25); }
.eyebrow.on-dark .dot { background: var(--cta); }
.eyebrow.on-dark .i { color: #fff; }

/* ---------- Buttons ---------- */
.btn { padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: 16px; text-decoration: none; display: inline-flex; align-items: center; gap: 9px; cursor: pointer; border: none; transition: box-shadow .25s ease, background-color .18s ease; }
.btn-solid { background: var(--cta); color: #fff; box-shadow: 0 4px 12px -8px color-mix(in srgb, var(--cta) 55%, transparent); }
.btn-ghost { background: transparent; color: var(--ghost); border: 1.5px solid color-mix(in srgb, var(--ghost) 32%, transparent); }
.btn .i { width: 18px; height: 18px; transition: transform .18s ease; }
.btn:hover .i { transform: translateX(3px); }
.btn-solid:hover { background: color-mix(in srgb, var(--cta) 88%, #000); box-shadow: 0 16px 30px -10px color-mix(in srgb, var(--cta) 65%, transparent); }
.btn-ghost:hover { background: color-mix(in srgb, var(--ghost) 8%, transparent); border-color: color-mix(in srgb, var(--ghost) 50%, transparent); }

/* ---------- Nav (glass pill, sticky) ---------- */
.nav { display: flex; justify-content: space-between; align-items: center; padding: 11px 14px 11px 26px; max-width: 1120px; margin: 18px auto 0;
  background: rgba(255,255,255,0.55); -webkit-backdrop-filter: blur(16px) saturate(160%); backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7); border-radius: 999px;
  box-shadow: 0 10px 30px -14px rgba(40,45,33,0.3), inset 0 1px 0 rgba(255,255,255,0.65);
  position: sticky; top: 14px; z-index: 60; }
.nav .logo { font-weight: 500; font-size: 22px; letter-spacing: -0.03em; color: var(--ink); text-decoration: none; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav .links { display: flex; gap: 4px; align-items: center; font-size: 15px; font-weight: 500; }
.nav .links a { text-decoration: none; color: var(--ink); opacity: 0.85; padding: 9px 15px; border-radius: 999px; transition: opacity .18s ease, color .18s ease, background-color .18s ease; }
.nav .links a:hover { opacity: 1; color: var(--cta); background: color-mix(in srgb, var(--cta) 10%, transparent); }
.nav .links a.active { color: var(--cta); opacity: 1; }

/* ---------- Mega dropdown ---------- */
/* The parent label is a link and the chevron is a separate button, so the panel
   opens on hover, on keyboard focus AND on tap — a touch user is never trapped
   waiting for a hover state their device cannot produce, and "Services" stays
   reachable as a page in its own right.
   .navitem is intentionally NOT position:relative — the panel is positioned
   against .nav so it spans the whole nav rather than hanging off one label. */
.nav .navitem { display: flex; align-items: center; }
.nav .navitem > a { padding-right: 6px; }
.nav .subtoggle { display: inline-flex; align-items: center; justify-content: center; background: transparent; border: none; cursor: pointer; color: var(--ink); opacity: 0.7; padding: 9px 12px 9px 3px; border-radius: 999px; transition: opacity .18s ease, color .18s ease; }
.nav .subtoggle .i { width: 15px; height: 15px; transition: transform .25s ease; }
.nav .subtoggle:hover { opacity: 1; color: var(--cta); }
.nav .navitem:hover > a, .nav .navitem:focus-within > a { color: var(--cta); opacity: 1; }
.nav .navitem:hover > .subtoggle .i,
.nav .navitem:focus-within > .subtoggle .i,
.nav .navitem.open > .subtoggle .i { transform: rotate(180deg); }

.nav .mega { position: absolute; top: calc(100% + 10px); left: 0; right: 0;
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 34px;
  padding: 30px 34px 32px;
  background: rgba(253,251,247,0.97); -webkit-backdrop-filter: blur(20px) saturate(160%); backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.85); border-radius: 26px;
  box-shadow: 0 34px 70px -26px rgba(40,45,33,0.42);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s; }
/* Bridges the gap between the nav pill and the panel so the hover does not drop
   out as the pointer travels down to it. */
.nav .mega::before { content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 12px; }
.nav .navitem:hover > .mega,
.nav .navitem:focus-within > .mega,
.nav .navitem.open > .mega { opacity: 1; visibility: visible; transform: translateY(0); }

.nav .mega-h { font-family: 'Space Grotesk', sans-serif; font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sub); opacity: 0.65; margin-bottom: 14px; }
.nav .mega a { padding: 0; border-radius: 0; opacity: 1; background: none; }
.nav .mega a:hover { background: none; }

/* Lead row — "All services". Sits above the list, not lost at the bottom of it. */
.nav .mega-lead { display: block; padding: 13px 16px !important; border-radius: 14px !important;
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 14%, transparent);
  margin-bottom: 6px; transition: background-color .18s ease; }
.nav .mega-lead:hover { background: color-mix(in srgb, var(--primary) 14%, transparent) !important; }
.nav .mega-lead .t { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--primary-text); }
.nav .mega-lead .i { width: 15px; height: 15px; transition: transform .18s ease; }
.nav .mega-lead:hover .i { transform: translateX(3px); }
.nav .mega-lead .s { display: block; font-size: 13px; color: var(--sub); margin-top: 2px; }

.nav .mega-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.nav .mega-list a { display: block; padding: 11px 16px !important; border-radius: 14px !important; transition: background-color .18s ease; }
.nav .mega-list a:hover { background: rgba(255,255,255,0.9) !important; box-shadow: 0 6px 16px -10px rgba(40,45,33,0.3); }
.nav .mega-list .t { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.nav .mega-list .s { display: block; font-size: 12.5px; line-height: 1.4; color: var(--sub); margin-top: 3px; }
.nav .mega-list a[aria-current], .nav .mega-lead[aria-current] .t { color: var(--cta); }

/* Aside — the only image-led column, because these photos are of the actual
   machines. Everything else on the left stays text until real job photos exist. */
.nav .mega-aside { border-left: 1px solid color-mix(in srgb, var(--ink) 10%, transparent); padding-left: 34px; display: flex; flex-direction: column; }
.nav .mega-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.nav .mega-cards a { display: block; }
.nav .mega-cards .thumb { display: block; aspect-ratio: 1; border-radius: 14px; overflow: hidden; background: var(--card); border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent); }
.nav .mega-cards img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.nav .mega-cards a:hover img { transform: scale(1.05); }
.nav .mega-cards .t { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-top: 9px; line-height: 1.35; }
.nav .mega-cards a:hover .t, .nav .mega-cards a[aria-current] .t { color: var(--cta); }
.nav .mega-all { display: inline-flex !important; align-items: center; gap: 7px; margin-top: auto; padding-top: 18px !important; font-size: 13.5px; font-weight: 600; color: var(--primary-text); }
.nav .mega-all .i { width: 15px; height: 15px; transition: transform .18s ease; }
.nav .mega-all:hover .i { transform: translateX(3px); }
.nav .phone { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 600; font-size: 14px; text-decoration: none; white-space: nowrap; transition: color .18s ease; }
.nav .phone .i { width: 17px; height: 17px; color: var(--cta); }
.nav .phone:hover { color: var(--cta); }
.nav .cta { padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: 14px; background: var(--cta); color: #fff; text-decoration: none; white-space: nowrap; box-shadow: 0 4px 12px -8px color-mix(in srgb, var(--cta) 55%, transparent); transition: box-shadow .25s ease, background-color .18s ease; }
.nav .cta:hover { background: color-mix(in srgb, var(--cta) 88%, #000); box-shadow: 0 12px 22px -9px color-mix(in srgb, var(--cta) 65%, transparent); }
.nav-toggle { display: none; background: transparent; border: none; cursor: pointer; color: var(--ink); padding: 4px; transition: opacity .15s ease; }
.nav-toggle:hover { opacity: 0.6; }
.nav-toggle .i { width: 26px; height: 26px; }
@media (prefers-reduced-motion: reduce) {
  .btn, .btn .i, .nav .links a, .nav .cta, .nav .phone { transition: none; }
}

/* ---------- Standards trust strip ---------- */
.strip { background: color-mix(in srgb, var(--primary) 6%, var(--cream)); color: var(--ink); overflow: hidden; border-block: 1px solid color-mix(in srgb, var(--ink) 9%, transparent); }
.strip-track { display: flex; width: max-content; animation: strip-scroll 120s linear infinite; }
.strip:hover .strip-track { animation-play-state: paused; }
.strip-group { display: flex; align-items: center; gap: 38px; padding: 18px 40px; flex-shrink: 0; }
.strip .s-lab { font-family: 'Space Grotesk', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sub); white-space: nowrap; }
.strip .s-item { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; color: var(--ink); white-space: nowrap; }
.strip .s-item .i { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.strip .s-sep { width: 1px; height: 16px; background: color-mix(in srgb, var(--ink) 14%, transparent); flex-shrink: 0; }
@keyframes strip-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* ---------- CTA reassurance microline ---------- */
.cta-micro { font-size: 13px; color: var(--sub); margin: 14px 0 0; letter-spacing: 0.01em; }

/* ---------- Promise band (slim) ---------- */
.promise { background: var(--card); padding: 30px 0; border-top: 1px solid color-mix(in srgb, var(--ink) 8%, transparent); }
.promise .wrap { display: flex; align-items: center; gap: 14px 34px; flex-wrap: wrap; justify-content: center; }
.promise .p-lab { font-family: 'Space Grotesk', sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); font-weight: 600; }
.promise .p-item { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 500; color: var(--ink); }
.promise .p-item .i { width: 17px; height: 17px; color: var(--primary); }

/* ---------- Booking section (shared CTA block) ---------- */
.book { background: var(--imgbg); position: relative; overflow: hidden; padding: 86px 0; color: #fff; }
.book .glow { position: absolute; inset: 0; background: var(--imgglow); }
.book .wrap { position: relative; z-index: 2; }
.book-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.book-head h2 { color: #fff; margin: 16px 0 0; font-size: 40px; }
.book-head p { color: rgba(255,255,255,0.82); font-size: 18px; line-height: 1.55; margin-top: 14px; }
.book-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: start; }
.book-info { display: flex; flex-direction: column; gap: 24px; padding-top: 4px; }
.bnext { display: flex; flex-direction: column; gap: 18px; }
.bn-item { display: flex; gap: 14px; align-items: flex-start; }
.bn-item .bn-n { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.22); display: grid; place-items: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.bn-item h4 { font-size: 15.5px; font-weight: 600; margin-bottom: 3px; }
.bn-item p { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.72); }
.bcall { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; padding: 20px 22px; }
.bcall .bc-lab { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.bcall .bc-num { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: 23px; font-weight: 700; letter-spacing: -0.01em; text-decoration: none; }
.bcall .bc-num .i { width: 21px; height: 21px; color: var(--cta); }
.bcall .bc-sub { font-size: 12.5px; color: rgba(255,255,255,0.6); margin-top: 8px; line-height: 1.45; }
.bperson { display: flex; gap: 16px; align-items: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; padding: 18px 20px; }
.bperson .bp-photo { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; object-position: center 20%; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.85); box-shadow: 0 0 0 1px rgba(0,0,0,0.12), 0 6px 16px rgba(0,0,0,0.25); }
.bperson .bp-lab { font-family: 'Space Grotesk', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); display: block; margin-bottom: 5px; }
.bperson .bp-name { font-size: 16px; font-weight: 700; color: #fff; line-height: 1.3; }
.bperson .bp-name span { display: block; font-weight: 500; font-size: 13px; color: rgba(255,255,255,0.68); margin-top: 1px; }
.bperson .bp-quote { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.8); margin-top: 8px; font-style: italic; }
.bform { background: #fff; border-radius: 20px; padding: 30px 30px 26px; box-shadow: 0 30px 60px -28px rgba(0,0,0,0.45); }
.bf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bf-field { display: flex; flex-direction: column; gap: 6px; }
.bf-field.full { grid-column: 1 / -1; }
.bf-field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.bf-field input, .bf-field select, .bf-field textarea { font-family: inherit; font-size: 15px; color: var(--ink); padding: 12px 14px; border: 1.5px solid color-mix(in srgb, var(--ink) 14%, transparent); border-radius: 11px; background: #fbfaf7; outline: none; transition: border-color .15s; width: 100%; }
.bf-field input:focus, .bf-field select:focus, .bf-field textarea:focus { border-color: var(--cta); }
.bf-field textarea { resize: vertical; min-height: 74px; }
.bform .btn-solid { width: 100%; justify-content: center; margin-top: 20px; }
.bf-micro { text-align: center; font-size: 12.5px; color: var(--sub); margin-top: 12px; }
.bf-error { text-align: center; font-size: 13.5px; font-weight: 500; color: #b3261e; margin-top: 12px; }
.bf-error[hidden] { display: none; }
.bsuccess { display: none; background: #fff; border-radius: 20px; padding: 50px 36px; text-align: center; box-shadow: 0 30px 60px -28px rgba(0,0,0,0.45); }
.bsuccess.show { display: block; }
.bsuccess .bs-ic { width: 60px; height: 60px; border-radius: 50%; background: color-mix(in srgb, var(--primary) 14%, transparent); color: var(--primary); display: grid; place-items: center; margin: 0 auto 20px; }
.bsuccess .bs-ic .i { width: 30px; height: 30px; }
.bsuccess h3 { font-size: 24px; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
.bsuccess p { font-size: 15px; color: var(--sub); line-height: 1.55; max-width: 360px; margin: 0 auto; }

/* ---------- Section header ---------- */
.shead { max-width: 680px; margin-bottom: 44px; }
.shead.center { text-align: center; margin-left: auto; margin-right: auto; }
.shead h2 { margin-top: 16px; }
.shead .lead { margin-top: 14px; }
.shead.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Feature card grid ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat { background: var(--card); border-radius: 16px; padding: 30px 26px; border: 1px solid color-mix(in srgb, var(--ink) 7%, transparent); }
.feat .fic { width: 46px; height: 46px; border-radius: 12px; background: color-mix(in srgb, var(--primary) 12%, transparent); color: var(--primary); display: grid; place-items: center; margin-bottom: 16px; }
.feat h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 7px; color: var(--ink); }
.feat p { font-size: 14.5px; line-height: 1.55; color: var(--sub); }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: var(--card); border-radius: 18px; padding: 32px 28px; border: 1px solid transparent; box-shadow: 0 18px 40px -26px rgba(40,45,33,0.45); counter-increment: step; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.step:hover { transform: translateY(-4px); box-shadow: 0 26px 52px -26px rgba(40,45,33,0.5); }
.step::before { content: counter(step, decimal-leading-zero); position: absolute; top: 8px; right: 22px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 62px; line-height: 1; color: color-mix(in srgb, var(--primary) 13%, transparent); pointer-events: none; }
.step .sic { width: 52px; height: 52px; border-radius: 14px; background: var(--primary); color: #fff; display: grid; place-items: center; margin-bottom: 18px; box-shadow: 0 8px 18px -8px color-mix(in srgb, var(--primary) 60%, transparent); }
.step .num { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: var(--cta); letter-spacing: 0.1em; }
.step h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.015em; margin: 6px 0 9px; color: var(--ink); }
.step p { font-size: 14.5px; line-height: 1.55; color: var(--sub); }
/* connector arrows between cards (desktop 3-col only) */
@media (min-width: 921px) {
  .step:not(:last-child)::after { content: ''; position: absolute; top: 58px; right: -16px; width: 11px; height: 11px; border-top: 2px solid color-mix(in srgb, var(--primary) 32%, transparent); border-right: 2px solid color-mix(in srgb, var(--primary) 32%, transparent); transform: translateY(-50%) rotate(45deg); }
}
/* hide oversized watermark number in compact mobile rows */
@media (max-width: 480px) {
  .step::before { display: none; }
}

/* ---------- Checklist ---------- */
.rlist { display: flex; flex-direction: column; gap: 15px; }
.ritem { display: flex; gap: 14px; align-items: flex-start; }
.ritem .tick { width: 26px; height: 26px; border-radius: 50%; background: color-mix(in srgb, var(--primary) 14%, transparent); color: var(--primary); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.ritem .tick .i { width: 15px; height: 15px; }
.ritem .rt { font-size: 16px; font-weight: 600; color: var(--ink); }
.ritem .rs { font-size: 14px; color: var(--sub); line-height: 1.5; }

/* ---------- Report preview card ---------- */
.doc { background: #fff; border-radius: 14px; box-shadow: 0 30px 60px -28px rgba(40,45,33,0.45); border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent); overflow: hidden; }
.doc .dtop { background: var(--imgbg); padding: 24px 24px; color: #fff; }
.doc .dtop .dk { font-family: 'Space Grotesk', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.8; }
.doc .dtop .dh { font-size: 21px; font-weight: 700; margin-top: 6px; letter-spacing: -0.01em; }
.doc .dbody { padding: 20px 24px; }
.doc .drow { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eee; font-size: 13px; }
.doc .drow:last-child { border-bottom: none; }
.doc .drow .dl { color: #777; }
.doc .drow .dv { font-weight: 600; color: var(--ink); }
.doc .pill { display: inline-block; font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 999px; letter-spacing: 0.04em; }
.doc .pill.aff { background: #fdecec; color: #c0392b; }
.doc .pill.el { background: #fff3df; color: #b9770e; }
.doc .dstd { padding: 14px 24px 20px; font-size: 11px; color: #999; border-top: 1px solid #eee; }
.doc .dstd b { color: #555; font-weight: 600; }

/* ---------- Pricing reveal ---------- */
.price { background: var(--card); padding: 88px 0; }
.price-card { max-width: 900px; margin: 0 auto; border-radius: 22px; overflow: hidden; display: grid; grid-template-columns: 1fr 0.9fr; border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent); }
.price-card .left { padding: 46px 44px; background: var(--cream); }
.price-card .eyebrow { margin-bottom: 16px; }
.price-card h2 { font-size: 32px; }
.price-card .pnum { font-size: 56px; font-weight: 700; letter-spacing: -0.03em; color: var(--primary-text); margin: 16px 0 4px; }
.price-card .pnum span { font-size: 19px; font-weight: 500; color: var(--sub); }
.price-card .pnote { font-size: 14px; color: var(--sub); line-height: 1.55; max-width: 330px; }
.price-card .right { background: var(--imgbg); position: relative; overflow: hidden; padding: 44px 40px; color: #fff; }
.price-card .right .rbg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.price-card .right .rtint { position: absolute; inset: 0; background: linear-gradient(150deg, rgba(74,107,64,0.78) 0%, rgba(52,80,47,0.84) 50%, rgba(42,58,34,0.9) 100%); }
.price-card .right .glow { position: absolute; inset: 0; background: var(--imgglow); }
.price-card .right .inc { position: relative; z-index: 2; }
.price-card .right .inc-t { font-family: 'Space Grotesk', sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; margin-bottom: 16px; }
.price-card .right .inc-row { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.45; margin-bottom: 13px; }
.price-card .right .inc-row .i { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: #fff; }
.price-card .cta-row { margin-top: 26px; }

/* ---------- FAQ (native accordion, no JS) ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin: 0 auto; }
.faq details { background: var(--card); border: 1px solid color-mix(in srgb, var(--ink) 8%, transparent); border-radius: 14px; padding: 0 22px; }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; font-size: 16.5px; font-weight: 600; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .fq-ic { width: 22px; height: 22px; flex-shrink: 0; color: var(--cta); transition: transform .2s; }
.faq details[open] summary .fq-ic { transform: rotate(45deg); }
.faq .fa { padding: 0 0 20px; font-size: 14.5px; line-height: 1.6; color: var(--sub); max-width: 660px; }

/* ---------- Footer ---------- */
.foot { background: #1c1f17; color: #cfd2c6; padding: 50px 0 34px; }
.foot .frow { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; }
.foot .logo { font-weight: 500; font-size: 22px; letter-spacing: -0.03em; color: #fff; }
.foot .fcol { font-size: 14px; line-height: 1.9; }
.foot a { color: #cfd2c6; text-decoration: none; }
.foot .fbot { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12.5px; opacity: 0.6; }

/* ---------- Shared responsive (nav + base type + booking) ---------- */
@media (max-width: 900px) {
  .book-grid, .price-card { grid-template-columns: 1fr; }
  .feat-grid, .steps { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 42px; } h2 { font-size: 30px; }
  .nav-toggle { display: inline-flex; }
  .nav-right { gap: 12px; }
  .nav .phone span { display: none; }
  .nav .links { display: none; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(255,255,255,0.97); -webkit-backdrop-filter: blur(16px) saturate(150%); backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255,255,255,0.8); border-radius: 22px; padding: 10px 22px;
    box-shadow: 0 24px 50px -22px rgba(40,45,33,0.45); }
  .nav.open .links { display: flex; }
  /* Pin the page behind the open menu. The JS stashes and restores the scroll
     offset via body{top:-Npx}; position:fixed is what actually stops iOS Safari,
     which ignores overflow:hidden on body. */
  body.nav-open { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }
  /* With the page locked, the panel must scroll itself — the services menu is
     taller than a phone viewport, and page scroll is no longer available to
     reach the bottom of it. overscroll-behavior stops the scroll chaining back
     out to the locked page at either end. */
  .nav.open .links { max-height: calc(100dvh - 132px); overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
  .nav .links > a { padding: 12px 0; font-size: 16px; opacity: 1; border-bottom: 1px solid rgba(40,45,33,0.07); }
  .nav .links > a:last-child { border-bottom: none; }

  /* Mega panel becomes an inline accordion — same rows, same subtitles, same
     thumbnails, just restacked. Hover is explicitly NOT an open trigger here:
     on touch the first tap would otherwise both open the panel and follow the
     link underneath it. */
  .nav .navitem { display: block; border-bottom: 1px solid rgba(40,45,33,0.07); }
  .nav .navitem:last-child { border-bottom: none; }
  .nav .navitem > a { display: inline-block; padding: 12px 0 !important; font-size: 16px; }
  .nav .subtoggle { float: right; padding: 12px 0 12px 16px; }
  .nav .subtoggle .i { width: 20px; height: 20px; }

  /* display, not opacity: the panel is in normal flow here, so a merely
     invisible one would still reserve its full height and leave a dead gap in
     the closed menu. */
  .nav .mega { position: static; display: none; padding: 0 0 14px;
    background: none; -webkit-backdrop-filter: none; backdrop-filter: none;
    border: none; border-radius: 0; box-shadow: none;
    opacity: 1; visibility: visible; transform: none; transition: none; }
  .nav .navitem:hover > .mega, .nav .navitem:focus-within > .mega { display: none; }
  .nav .navitem.open > .mega { display: block; }
  /* Hover and focus do NOT open the panel here, so they must not flip the
     chevron either — after a tap the button keeps focus, and the arrow would
     otherwise point up over a closed panel. Only .open moves it. */
  .nav .navitem:hover > .subtoggle .i,
  .nav .navitem:focus-within > .subtoggle .i { transform: none; }
  .nav .navitem.open > .subtoggle .i { transform: rotate(180deg); }
  .nav .mega-h { display: none; }
  .nav .mega-list { grid-template-columns: 1fr; }
  .nav .mega-lead, .nav .mega-list a { padding: 11px 14px !important; }
  .nav .mega-aside { border-left: none; padding-left: 0; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(40,45,33,0.09); }
  .nav .mega-cards { grid-template-columns: 1fr; gap: 2px; }
  .nav .mega-cards a { display: flex; align-items: center; gap: 14px; padding: 8px 14px; border-radius: 14px; }
  .nav .mega-cards .thumb { width: 46px; flex-shrink: 0; border-radius: 10px; }
  .nav .mega-cards .t { margin-top: 0; font-size: 14.5px; }
  .nav .mega-all { padding: 12px 14px 0 !important; }
}
@media (max-width: 560px) {
  .bf-grid, .feat-grid, .steps { grid-template-columns: 1fr; }
}

/* ---------- Global mobile rhythm (applies site-wide) ---------- */
@media (max-width: 620px) {
  /* Type + gutters */
  .wrap { padding: 0 20px; }
  h1 { font-size: 33px; line-height: 1.08; }
  h2 { font-size: 25px; }
  .lead { font-size: 15.5px; }
  .eyebrow { font-size: 11.5px; padding: 7px 14px 7px 11px; }

  /* Section heads sit closer */
  .shead h2 { margin-top: 12px; }

  /* Trust marquee — tighter */
  .strip-group { gap: 26px; padding: 14px 22px; }
  .strip .s-item, .strip .s-lab { font-size: 13px; }

  /* Promise band */
  .promise { padding: 24px 0; }
  .promise .wrap { gap: 12px 22px; }

  /* Booking section */
  .book { padding: 56px 0; }
  .book-head h2 { font-size: 27px; }
  .book-head p { font-size: 15.5px; }

  /* FAQ rows */
  .faq summary { padding: 17px 0; font-size: 15.5px; }

  /* Steps + feature cards → compact icon-left rows (halves height, nothing hidden) */
  .steps, .feat-grid { gap: 11px; }
  .step, .feat { display: grid; grid-template-columns: 44px 1fr; column-gap: 15px; align-items: start; padding: 16px 18px; }
  .step .sic, .feat .fic { width: 44px; height: 44px; margin-bottom: 0; grid-row: 1 / 4; align-self: start; }
  .step .num { align-self: center; }
  .step h3 { font-size: 17px; margin: 2px 0 4px; }
  .feat h3 { font-size: 16px; margin-bottom: 3px; }
  .step p, .feat p { font-size: 13px; line-height: 1.5; }
}

/* ---------- Product-photo placeholder ---------- */
/* .ph is the "Product photo" fallback inside .eq-photo / .bb-photo. It has
   opacity < 1, which creates a stacking context, so it paints ON TOP of the
   absolutely-positioned <img> rather than behind it — reading as a watermark
   once a real photo exists. The <img> carries onerror="this.remove()", so the
   adjacent-sibling selector only matches while an image is actually present:
   image loads -> placeholder hidden; image missing -> img removed, this rule
   stops matching, placeholder returns. */
.eq-photo img + .ph,
.bb-photo img + .ph { display: none; }
