/* ============================================================
   Hull Yeah Detailing — TheWayUp build
   Light theme · navy + gold on white · split-screen pattern (Section 6E)
   Logo (navy+gold on white) sits natively — no tiles/knockouts.
   ============================================================ */

:root {
  /* Palette — tonal light (soft off-white base, white cards) + deep-navy anchors */
  --paper: #f2f5f9;         /* soft off-white page base */
  --paper-2: #e6edf5;       /* pale-blue alternate band (alias of --ink-2) */
  --ink: #0b2145;           /* logo navy — dark anchor zones (hero/CTA/footer) */
  --ink-2: #e6edf5;         /* pale-blue alternate band */
  --navy: #ffffff;          /* white cards / menus / modals — lift off the base */
  --navy-2: #eef3f8;
  --surface: #ffffff;
  --line: rgba(12, 31, 46, 0.12);
  --accent: #c99a3c;        /* logo gold — fills (buttons, chips, handle, focus) */
  --accent-ink: #8a6012;    /* deep gold — gold as TEXT on light (contrast) */
  --accent-dim: #a97f2c;
  --blue: #2e6cb5;          /* logo blue */
  --blue-ink: #235c9e;      /* blue as TEXT / links on light */
  --blue-soft: #cde2fa;     /* light blue — for on-photo / on-navy chrome */
  --foam: #102636;          /* primary text (dark navy) on light zones */
  --mist: #506475;          /* secondary text (slate) on light zones */
  --gold: #8f6410;          /* stars / small gold text on light (AA on white) */
  --error: #cf3a1c;
  --success: #1f9d6b;

  --font-head: "Montserrat", "Archivo Black", system-ui, sans-serif;   /* headlines + wordmark — matches the logo */
  --font-display: "Hanken Grotesk", system-ui, sans-serif;         /* h3, labels, buttons, logo */
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 10px;
  --radius-lg: 18px;
  --header-h: 80px;
  --wrap: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--foam);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Dark anchor zones (hero · closing CTA · footer) ----------
   Re-scope the semantic tokens so all descendant var(--foam/--mist/
   --accent-ink/--blue-ink/--line) usages flip to on-navy values. */
.hero, .band-dark, .site-footer {
  --foam: #eef5fb;
  --mist: #aac2d4;
  --accent-ink: #f0c85f;   /* bright gold TEXT on navy */
  --blue-ink: #cfe3fb;
  --line: rgba(255, 255, 255, 0.15);
  color: var(--foam);
}
.band-dark {
  background:
    radial-gradient(900px 400px at 82% 130%, rgba(201, 154, 60, 0.10), transparent 62%),
    var(--ink);
  border-top: 2px solid var(--accent);
}
.hero .btn-ghost, .band-dark .btn-ghost, .site-footer .btn-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--foam);
}
.hero .btn-ghost:hover, .band-dark .btn-ghost:hover, .site-footer .btn-ghost:hover {
  border-color: var(--accent); color: var(--accent-ink);
}

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
/* Big headlines in Montserrat black caps — matches the logo wordmark */
h1, h2 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.06;
}

h1 { font-size: clamp(2.2rem, 5.8vw, 4.1rem); }
h2 { font-size: clamp(1.75rem, 3.9vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.5rem); }

p { margin: 0 0 1em; }
a { color: var(--blue-ink); }

.wrap { width: min(var(--wrap), 92vw); margin-inline: auto; }

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 14px;
}

.lead { color: var(--mist); font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 62ch; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 30px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f0c76a);
  color: #06232a;
  box-shadow: 0 8px 28px rgba(226, 176, 74, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(226, 176, 74, 0.4); }
.btn-ghost {
  background: transparent;
  color: var(--foam);
  border-color: rgba(12, 31, 46, 0.24);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none !important; }
.btn .spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(6, 35, 42, 0.25);
  border-top-color: #06232a;
  animation: spin 700ms linear infinite;
  display: none;
}
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .btn-label { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 20px rgba(12, 31, 46, 0.05);
  transition: background 300ms var(--ease);
}
.header-inner {
  width: min(var(--wrap), 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--foam);
  font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; letter-spacing: 0.01em;
}
.logo svg { width: 40px; height: 40px; flex: none; }
.logo img { height: 56px; width: auto; flex: none; display: block; }
.logo .wm { display: flex; flex-direction: column; line-height: 1; }
.logo .wm-main {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.18rem;
  letter-spacing: 0.005em;
  color: var(--foam);
}
.logo .wm-main em { font-style: normal; color: var(--accent-ink); }
.logo .wm-sub {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.56rem;
  letter-spacing: 0.44em;
  color: var(--mist);
  margin-top: 4px;
  padding-left: 2px;
}

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a:not(.btn) {
  position: relative;
  color: var(--mist);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 200ms var(--ease);
  padding: 6px 0;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}
.nav-links a:not(.btn):hover, .nav-links a[aria-current="page"] { color: var(--foam); }
.nav-links a:not(.btn):hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links .btn { min-height: 44px; padding: 10px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 20px; height: 2px; background: var(--foam);
  transition: transform 260ms var(--ease), opacity 200ms var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(12, 31, 46, 0.12);
    padding: 10px 4vw 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 280ms var(--ease), opacity 280ms var(--ease);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: 0; padding-top: 14px; }
  .nav-links a:not(.btn) { display: block; padding: 15px 4px; font-size: 1.05rem; }
  .nav-links .btn { width: 100%; }
}
@media (max-width: 400px) {
  .logo { font-size: 0.98rem; gap: 8px; }
  .logo img { height: 46px; }
}

/* ---------- Hero (before/after split) ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(40px, 7vw, 86px)) 0 clamp(56px, 8vw, 104px);
  background:
    radial-gradient(1200px 520px at 88% -20%, rgba(201, 154, 60, 0.10), transparent 62%),
    var(--ink);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero .trust-strip {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin-top: 30px; padding: 0; list-style: none;
  color: var(--mist); font-size: 0.92rem;
}
.hero .trust-strip li { display: flex; align-items: center; gap: 8px; }
.hero .trust-strip svg { width: 17px; height: 17px; color: var(--accent-ink); flex: none; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Full-bleed boat hero (homepage) — signature, boat-first */
.hero.hero-photo {
  min-height: min(90vh, 860px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 110px));
  padding-bottom: clamp(84px, 12vw, 150px);
  background-color: #0b2145;
  background-image:
    linear-gradient(180deg, rgba(11, 33, 69, 0.40), rgba(11, 33, 69, 0.52)),
    linear-gradient(96deg, rgba(9, 22, 50, 0.95) 3%, rgba(9, 22, 50, 0.62) 40%, rgba(9, 22, 50, 0.16) 72%, transparent),
    url("/assets/photos/hero-george-detailing-v2.webp");
  background-size: cover;
  background-position: center 34%;
  background-repeat: no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 44px));
}
.hero-photo-inner { max-width: 660px; }
.hero-photo .trust-strip { margin-top: 26px; }
@media (max-width: 620px) {
  .hero.hero-photo {
    min-height: min(82vh, 720px);
    background-position: 56% 20%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 26px));
  }
}

/* ---------- Before/After comparison slider ---------- */
.ba {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(12, 31, 46, 0.16);
  user-select: none;
  touch-action: pan-y;
  background: var(--navy);
}
.ba-wide { aspect-ratio: 16 / 10; }
.ba img, .ba .ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba .ba-before-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
  width: 50%;
  border-right: 2px solid rgba(234, 244, 250, 0.9);
}
.ba .ba-before-wrap > * { width: 100%; height: 100%; }
.ba .ba-before-wrap img, .ba .ba-before-wrap .ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 44px;
  margin-left: -22px;
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize;
  z-index: 3;
  background: transparent;
  border: 0;
  padding: 0;
}
.ba-handle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 8px; }
.ba-handle .grip {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #0c1f2e;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  transition: transform 200ms var(--ease);
}
.ba-handle:hover .grip { transform: scale(1.08); }
.ba-tag {
  position: absolute;
  bottom: 14px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(8, 20, 32, 0.78);
  color: #eef4fa;
  backdrop-filter: blur(6px);
}
.ba-tag-before { left: 14px; color: var(--blue-soft); border: 1px solid rgba(46, 108, 181, 0.5); }
.ba-tag-after { right: 14px; color: var(--accent); border: 1px solid rgba(226, 176, 74, 0.45); }
.ba-caption { margin-top: 14px; color: var(--mist); font-size: 0.94rem; }
.ba-caption strong { color: var(--foam); }

/* Result media card (pairs beside the before/after slider) */
.result-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(12, 31, 46, 0.16);
  aspect-ratio: 4 / 3;
}
.result-media img { width: 100%; height: 100%; object-fit: cover; }
.result-tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  padding: 6px 14px; border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(8, 20, 32, 0.78); color: var(--accent);
  border: 1px solid rgba(201, 154, 60, 0.5);
  backdrop-filter: blur(6px);
}

/* ---------- Split-screen chapters (primary pattern) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}
.split.flip .split-media { order: 2; }
@media (max-width: 900px) {
  .split, .split.flip { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
}
.split-media { position: relative; }
.split-media .ba { aspect-ratio: 4 / 3; }
.split-copy .price-line {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--font-display);
  margin: 18px 0 6px;
}
.price-line .from { color: var(--mist); font-size: 0.9rem; font-weight: 500; }
.price-line .price { font-size: 1.9rem; font-weight: 800; color: var(--accent-ink); }
.tick-list { list-style: none; padding: 0; margin: 18px 0 26px; display: grid; gap: 10px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--mist); }
.tick-list svg { width: 20px; height: 20px; color: var(--accent-ink); flex: none; margin-top: 3px; }

/* ---------- Pricing tables ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0 8px;
  font-size: 0.98rem;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
}
.price-table th {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 700;
}
.price-table td:last-child { text-align: right; font-family: var(--font-display); font-weight: 700; color: var(--accent-ink); white-space: nowrap; }
.price-note { color: var(--mist); font-size: 0.88rem; }

/* Price tables reflow to stacked blocks on mobile (no horizontal overflow) */
@media (max-width: 600px) {
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table thead { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
  .price-table tr { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .price-table tr:last-child { border-bottom: 0; }
  .price-table td { padding: 1px 0; border: 0; }
  .price-table td:first-child { font-family: var(--font-display); font-weight: 700; color: var(--foam); font-size: 1rem; }
  .price-table td:not(:first-child):not(:last-child) { color: var(--mist); font-size: 0.92rem; margin-top: 2px; }
  .price-table td:last-child { text-align: left; white-space: normal; font-size: 1.06rem; margin-top: 5px; }
}

/* Pricing cards (car packages) */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin: 24px 0 8px;
}
.price-cards.price-cards--two { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-inline: auto; }
@media (max-width: 820px) { .price-cards { grid-template-columns: 1fr; } .price-cards.price-cards--two { grid-template-columns: 1fr; } }
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: 0 12px 30px rgba(12, 31, 46, 0.05);
}
.price-card--featured {
  border-color: var(--accent);
  box-shadow: 0 20px 46px rgba(201, 154, 60, 0.20);
}
.pc-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: #0b2145;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 8px;
}
.pc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--paper-2); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pc-icon svg { width: 24px; height: 24px; }
.price-card h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.12rem; letter-spacing: -0.005em; margin: 0 0 2px; }
.pc-tagline { color: var(--mist); font-size: 0.9rem; margin: 0 0 14px; }
.pc-from { display: flex; align-items: baseline; gap: 8px; margin: 0 0 16px; }
.pc-from span { color: var(--mist); font-size: 0.85rem; }
.pc-from strong { font-family: var(--font-head); font-size: 2rem; color: var(--foam); line-height: 1; }
.pc-feats { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 9px; }
.pc-feats li { display: flex; gap: 9px; align-items: flex-start; color: var(--mist); font-size: 0.92rem; }
.pc-feats svg { width: 18px; height: 18px; color: var(--accent-ink); flex: none; margin-top: 2px; }
.pc-sizes {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.86rem; color: var(--foam);
}

/* Icon in pricing-table headers */
.pt-head { display: inline-flex; align-items: center; gap: 8px; }
.pt-head svg { width: 16px; height: 16px; color: var(--accent-ink); flex: none; }

/* Icon in "why" trust cards */
.step-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--paper-2); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step-icon svg { width: 24px; height: 24px; }

/* Slim service cards (homepage) */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 28px); }
@media (max-width: 820px) { .service-cards { grid-template-columns: 1fr; } }
.service-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; text-decoration: none; color: var(--foam);
  box-shadow: 0 12px 30px rgba(12, 31, 46, 0.05);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 22px 46px rgba(12, 31, 46, 0.12); }
.sc-media { aspect-ratio: 16 / 11; overflow: hidden; }
.sc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.service-card:hover .sc-media img { transform: scale(1.05); }
.sc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.sc-body h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.15rem; letter-spacing: -0.005em; margin: 0 0 8px; }
.sc-body p { color: var(--mist); font-size: 0.95rem; margin: 0 0 16px; }
.sc-link { margin-top: auto; font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--accent-ink); }

/* Prominent service-area community list */
.areas-list {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem); line-height: 1.95;
  color: var(--foam); margin: 6px 0 4px; text-wrap: balance;
}
.areas-list a { color: var(--foam); text-decoration: none; transition: color 160ms var(--ease); }
.areas-list a:hover { color: var(--accent-ink); }

/* ---------- Gallery ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 8px 0 38px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--mist);
  border-radius: 10px;
  padding: 11px 22px;
  min-height: 44px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 220ms var(--ease);
}
.filter-btn:hover { color: var(--foam); border-color: rgba(226, 176, 74, 0.5); }
.filter-btn[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #06232a; }

.gallery-flow {
  columns: 2;
  column-gap: clamp(26px, 4vw, 44px);
}
@media (max-width: 640px) { .gallery-flow { columns: 1; } }
.gallery-item { break-inside: avoid; margin: 0 0 clamp(26px, 4vw, 44px); }
.gallery-item.hidden { display: none; }
.gallery-cat {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-ink); margin-bottom: 5px;
}
.gallery-cat svg { width: 15px; height: 15px; flex: none; }
.gallery-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 450ms var(--ease);
}
.gallery-photo:hover img { transform: scale(1.035); }
.pull-quote {
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 26px;
  margin: 0;
  max-width: 720px;
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--foam);
}
.pull-quote cite { color: var(--mist); font-style: normal; font-size: 0.95rem; }
.pull-quote .stars { color: var(--gold); letter-spacing: 3px; }

/* Google reviews strip */
.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 20px; margin-top: 14px;
  box-shadow: 0 10px 26px rgba(12, 31, 46, 0.06);
}
.google-badge .stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.google-badge strong { font-family: var(--font-head); font-size: 1.5rem; color: var(--foam); line-height: 1; }
.google-badge .gb-sub { color: var(--mist); font-size: 0.9rem; }
@media (max-width: 460px) { .google-badge { flex-wrap: wrap; justify-content: center; gap: 8px 10px; } }
.review-card {
  margin: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px 24px;
  box-shadow: 0 12px 30px rgba(12, 31, 46, 0.05);
}
.review-card .stars { color: var(--gold); letter-spacing: 3px; display: block; margin-bottom: 12px; }
.review-card p { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; line-height: 1.4; color: var(--foam); margin: 0 0 12px; }
.review-card cite { color: var(--mist); font-style: normal; font-size: 0.92rem; }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 26px 22px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f1f5fa);
  box-shadow: 0 10px 30px rgba(12, 31, 46, 0.05);
}
.step .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
}
.step h3 { font-size: 1.08rem; margin: 10px 0 8px; }
.step p { color: var(--mist); font-size: 0.94rem; margin: 0; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: none; border: 0;
  padding: 20px 4px;
  color: var(--foam);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  min-height: 44px;
}
.faq-q .chev { transition: transform 260ms var(--ease); flex: none; color: var(--accent); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 340ms var(--ease);
}
.faq-a p { color: var(--mist); padding: 0 4px 22px; margin: 0; }

/* ---------- Forms (Section 7b — fully branded, zero native UI) ---------- */
.field { margin-bottom: 20px; }
.field > label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 8px;
}
.field .req { color: var(--accent-ink); }
.input {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--foam);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
textarea.input { min-height: 120px; resize: vertical; }
.input::placeholder { color: rgba(80, 100, 117, 0.6); }
.input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(226, 176, 74, 0.18); }
.field.has-error .input { border-color: var(--error); box-shadow: 0 0 0 3px rgba(255, 143, 122, 0.14); }
.field-error {
  display: none;
  color: var(--error);
  font-size: 0.85rem;
  margin-top: 7px;
}
.field.has-error .field-error { display: flex; align-items: center; gap: 6px; }

/* Custom dropdown */
.dropdown { position: relative; }
.dropdown-toggle {
  width: 100%;
  min-height: 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--foam);
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
  text-align: left;
}
.dropdown-toggle:focus-visible { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(226, 176, 74, 0.18); }
.dropdown-toggle .placeholder { color: rgba(80, 100, 117, 0.65); }
.dropdown-toggle .chev { transition: transform 240ms var(--ease); color: var(--accent); flex: none; }
.dropdown.open .dropdown-toggle .chev { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px); left: 0; right: 0;
  z-index: 30;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(12, 31, 46, 0.16);
  padding: 6px;
  margin: 0;
  list-style: none;
  max-height: 280px;
  overflow: auto;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}
.dropdown.open .dropdown-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dropdown-menu li {
  padding: 12px 14px;
  border-radius: 7px;
  cursor: pointer;
  color: var(--mist);
  transition: background 160ms var(--ease), color 160ms var(--ease);
}
.dropdown-menu li:hover, .dropdown-menu li.focused { background: rgba(226, 176, 74, 0.12); color: var(--foam); }
.dropdown-menu li[aria-selected="true"] { color: var(--accent-ink); font-weight: 600; }

/* Choice chips (radios) */
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; }
.chip input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  margin: 0;
  cursor: pointer;
}
.chip span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--mist);
  font-size: 0.95rem;
  transition: all 200ms var(--ease);
}
.chip input:checked + span { background: var(--accent); border-color: var(--accent); color: #06232a; font-weight: 600; }
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(226, 176, 74, 0.3); }
.chip:hover span { border-color: rgba(226, 176, 74, 0.5); }

/* Branded file upload */
.file-field { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.file-field input[type="file"] {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.file-btn {
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1.5px dashed rgba(201, 154, 60, 0.55);
  background: #ffffff;
  color: var(--foam);
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease);
}
.file-btn svg { width: 20px; height: 20px; color: var(--accent-ink); flex: none; }
.file-btn:hover { border-color: var(--accent); background: rgba(201, 154, 60, 0.06); color: var(--accent-ink); }
.file-field input[type="file"]:focus-visible + .file-btn { outline: 2px solid var(--accent); outline-offset: 2px; }
.file-status { color: var(--mist); font-size: 0.92rem; }
.file-status.has-files { color: var(--accent-ink); font-weight: 600; }

/* Custom date picker */
.datepicker { position: relative; }
.dp-panel {
  position: absolute;
  top: calc(100% + 8px); left: 0;
  z-index: 30;
  width: min(340px, 88vw);
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(12, 31, 46, 0.16);
  padding: 16px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}
.datepicker.open .dp-panel { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.dp-head .dp-month { font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; }
.dp-nav {
  width: 40px; height: 40px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--foam);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 180ms var(--ease);
}
.dp-nav:hover { border-color: var(--accent); color: var(--accent-ink); }
.dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.dp-dow {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--mist);
  padding: 6px 0;
  text-transform: uppercase;
}
.dp-day {
  aspect-ratio: 1;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--foam);
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 160ms var(--ease), color 160ms var(--ease);
}
.dp-day:hover:not([disabled]) { background: rgba(226, 176, 74, 0.15); }
.dp-day[disabled] { color: rgba(80, 100, 117, 0.38); cursor: not-allowed; }
.dp-day.selected { background: var(--accent); color: #06232a; font-weight: 700; }
.dp-day.today { box-shadow: inset 0 0 0 1px var(--accent); }

/* Booking stepper */
.stepper {
  display: flex; align-items: center; gap: 0;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  counter-reset: st;
}
.stepper li {
  flex: 1;
  display: flex; align-items: center; gap: 10px;
  color: var(--mist);
  font-size: 0.82rem;
  font-weight: 600;
}
.stepper li::before {
  counter-increment: st;
  content: counter(st);
  width: 34px; height: 34px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 700;
  transition: all 240ms var(--ease);
}
.stepper li:not(:last-child)::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  margin-inline: 10px;
}
.stepper li.active { color: var(--foam); }
.stepper li.active::before { background: var(--accent); border-color: var(--accent); color: #06232a; }
.stepper li.done::before { background: rgba(226, 176, 74, 0.22); border-color: var(--accent); color: var(--accent-ink); content: "✓"; }
@media (max-width: 700px) {
  .stepper li span { display: none; }
  .stepper li.active span { display: inline; }
}

.book-step { display: none; }
.book-step.active { display: block; animation: fadeUp 360ms var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.book-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 30px; }

.summary-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #eef3f8);
  box-shadow: 0 14px 40px rgba(12, 31, 46, 0.07);
  padding: 24px;
}
.summary-card dl { margin: 0; display: grid; gap: 12px; }
.summary-card .row { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.summary-card .row:last-child { border-bottom: 0; padding-bottom: 0; }
.summary-card dt { color: var(--mist); font-size: 0.88rem; }
.summary-card dd { margin: 0; font-weight: 600; text-align: right; }

/* ---------- Modal + toast (branded — no alert()) ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  z-index: 90;
  background: rgba(10, 24, 36, 0.5);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 5vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  width: min(560px, 100%);
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(12, 31, 46, 0.28);
  padding: 34px;
  transform: translateY(14px) scale(0.98);
  transition: transform 260ms var(--ease);
  position: relative;
  max-height: 86vh;
  overflow: auto;
}
.modal-overlay.open .modal { transform: none; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--foam);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 180ms var(--ease);
}
.modal-close:hover { border-color: var(--accent); color: var(--accent); }
.modal .success-mark {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(94, 224, 184, 0.14);
  color: var(--success);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.toast {
  position: fixed;
  left: 50%; bottom: 90px;
  transform: translate(-50%, 16px);
  z-index: 95;
  background: var(--navy);
  border: 1px solid rgba(226, 176, 74, 0.4);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(12, 31, 46, 0.2);
  padding: 15px 22px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease), transform 280ms var(--ease);
  max-width: 88vw;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast svg { color: var(--success); flex: none; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: none;
  gap: 10px;
  padding: 12px 4vw calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(12, 31, 46, 0.08);
}
.mobile-cta .btn { flex: 1; min-height: 50px; padding-inline: 10px; font-size: 0.92rem; }
@media (max-width: 760px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 78px; }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: var(--ink);
  padding: clamp(44px, 6vw, 72px) 0 32px;
  color: var(--mist);
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--foam);
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: var(--mist); text-decoration: none; transition: color 180ms var(--ease); }
.site-footer a:hover { color: var(--accent-ink); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.85rem;
  color: rgba(233, 240, 246, 0.6);
}
.footer-tagline { font-family: var(--font-display); font-style: italic; color: var(--foam); font-size: 1.05rem; margin: 14px 0; }
.footer-areas { margin-top: 6px; gap: 8px; }
.footer-areas a { padding: 8px 13px; min-height: 0; font-size: 0.82rem; }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: 10px;
  color: var(--mist);
  transition: color 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}
.social-links a:hover { color: var(--accent-ink); border-color: var(--accent); }

/* ---------- Area pages ---------- */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  position: relative;
  background: var(--navy);
}
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-facade {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background:
    radial-gradient(500px 240px at 60% 30%, rgba(226, 176, 74, 0.12), transparent 65%),
    var(--navy);
  cursor: pointer;
  border: 0;
  color: var(--foam);
  font-family: var(--font-body);
  width: 100%;
}
.map-facade svg { color: var(--accent); }
.area-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.area-links a {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 18px;
  min-height: 44px;
  color: var(--mist);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 200ms var(--ease);
}
.area-links a:hover { border-color: var(--accent); color: var(--accent-ink); }

/* ---------- IG strip ---------- */
.ig-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 760px) { .ig-strip { grid-template-columns: repeat(2, 1fr); } }
.ig-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  display: block;
}
.ig-tile img, .ig-tile .ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.ig-tile:hover img, .ig-tile:hover .ba-img { transform: scale(1.045); }
.ig-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 20, 32, 0.65));
  opacity: 0;
  transition: opacity 300ms var(--ease);
}
.ig-tile:hover::after { opacity: 1; }

/* ---------- 404 ---------- */
.page-404 {
  min-height: 72vh;
  display: flex; align-items: center;
  text-align: left;
}
.code-404 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 16vw, 11rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(226, 176, 74, 0.7);
}

/* ---------- Reveal animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 480ms var(--ease), transform 480ms var(--ease);
  }
  .reveal.in { opacity: 1; transform: none; }
  .reveal-d1 { transition-delay: 90ms; }
  .reveal-d2 { transition-delay: 180ms; }
  .reveal-d3 { transition-delay: 270ms; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
@media (max-width: 800px) { .grid-2 { grid-template-columns: 1fr; } }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute;
  top: -48px; left: 12px;
  z-index: 100;
  background: var(--accent);
  color: #06232a;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: top 200ms var(--ease);
}
.skip-link:focus { top: 12px; }
