/* ── TankAway — style.css  (Linear layout, forest green + cream) ── */

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

/* ─── Tokens ─────────────────────────────────────────────────── */
:root {
  --bg:          #F7F5F1;
  --bg-raised:   #FFFFFF;
  --bg-subtle:   #EDEAE4;
  --bg-overlay:  #E4E0D8;
  --border:      rgba(28,58,28,0.10);
  --border-mid:  rgba(28,58,28,0.16);
  --text:        #162812;
  --text-2:      #3D5C3A;
  --text-3:      #6B8A68;
  --text-4:      #A8BEA5;
  --green:       #1C3A1C;
  --green-mid:   #2A5429;
  --accent:      #F5C518;
  --accent-hover:#FFD43A;
  --accent-dim:  rgba(245,197,24,0.18);
  --whatsapp:    #25D366;
  --danger:      #DC2626;
  --footer-bg:   #162812;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h: 82px;
  --pad-x: 80px;
}
@media (max-width: 900px)  { :root { --pad-x: 24px; } }
@media (max-width: 1200px) { :root { --pad-x: 48px; } }

/* ─── Skip / focus ───────────────────────────────────────────── */
.skip-link {
  position: fixed; left: 16px; top: 16px; z-index: 9999;
  background: var(--green); color: #fff;
  font: 600 0.8rem/1 var(--font); padding: 10px 16px; border-radius: 6px;
  transform: translateY(calc(-100% - 24px)); transition: transform 0.15s;
}
.skip-link:focus { transform: translateY(0); }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
:focus { outline: none; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px;
}
main:focus, main:focus-visible { outline: none; }

/* ─── Base ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font); font-size: 1rem; line-height: 1.6;
  background: var(--bg); color: var(--text-2);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

/* ─── Grain ──────────────────────────────────────────────────── */
.grain { position: relative; }
.grain::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 180px 180px; opacity: 0.22; mix-blend-mode: multiply;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: 500 0.875rem/1 var(--font);
  padding: 10px 20px; border-radius: 999px;
  transition: all 0.18s ease; white-space: nowrap; justify-content: center;
  border: 1px solid transparent; letter-spacing: -0.01em;
}
.btn-primary { background: var(--accent); color: var(--green); font-weight: 600; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); box-shadow: 0 0 0 4px var(--accent-dim); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-mid); }
.btn-outline:hover { background: var(--bg-subtle); border-color: var(--border-mid); }
.btn-ghost { background: transparent; color: var(--text-3); border-color: var(--border); }
.btn-ghost:hover { background: var(--bg-subtle); color: var(--text-2); border-color: var(--border-mid); }
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-mid); box-shadow: 0 0 0 4px rgba(28,58,28,0.12); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; border-color: var(--whatsapp); }
.btn-whatsapp:hover { background: #20ba5a; }
.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-danger:hover { background: #b91c1c; }
.btn-sm { padding: 7px 15px; font-size: 0.8125rem; }

/* ─── Navbar (Vertdure-style: separated pills) ───────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 6px var(--pad-x);
  background: transparent;
  transition: background 0.2s, padding 0.2s;
  pointer-events: none;          /* let the layered pills capture clicks */
}

/* Floating logo — same total height as the nav so flex-centering aligns logo and nav buttons automatically */
.floating-logo {
  position: absolute; top: 0; left: 40px; z-index: 999;
  height: 82px;                                  /* desktop nav height: 6 + 70 + 6 */
  display: flex; align-items: center;
  pointer-events: auto;
}
.floating-logo img { height: 70px; width: auto; display: block; }
#navbar > * { pointer-events: auto; }

.nav-grid {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

/* Standalone logo (no pill) */
.nav-logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.03em;
  color: #fff;
  flex-shrink: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.30);
}
.nav-logo svg { width: 28px; height: 28px; flex-shrink: 0; }
.nav-logo-img { height: 70px; width: auto; display: block; flex-shrink: 0; }

/* Centre pill — desktop nav links */
.nav-links {
  justify-self: end;
  display: inline-flex; align-items: center;
  gap: 2px;
  background: rgba(12,14,18,0.45);
  backdrop-filter: blur(20px) saturate(110%);
  -webkit-backdrop-filter: blur(20px) saturate(110%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  padding: 5px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.18);
}
.nav-links a {
  padding: 8px 16px;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.72);
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: #fff; background: rgba(255,255,255,0.10); }

/* Social + account icon buttons — sit just left of the menu pill */
.nav-social { display: inline-flex; align-items: center; gap: 8px; }
.nav-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(12,14,18,0.45);
  backdrop-filter: blur(20px) saturate(110%);
  -webkit-backdrop-filter: blur(20px) saturate(110%);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.80);
  transition: color 0.15s, background 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.nav-icon-btn:hover { color: #fff; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
.nav-icon-btn svg { display: block; }

/* CTA label swap — desktop default; mobile override below */
.nav-cta-desktop { display: inline; }
.nav-cta-mobile  { display: none; }

/* Right cluster */
.nav-actions {
  display: inline-flex; align-items: center; gap: 8px;
  justify-self: end;
}

.nav-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  font-size: 0.85rem; font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(12,14,18,0.45);
  backdrop-filter: blur(20px) saturate(110%);
  -webkit-backdrop-filter: blur(20px) saturate(110%);
  color: rgba(255,255,255,0.88);
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
  letter-spacing: -0.005em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,0.16);
}
.nav-btn:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}
.nav-btn-menu { display: none; }     /* mobile only */

.nav-btn-cta {
  background: rgba(245,197,24,0.95);
  border-color: rgba(245,197,24,1);
  color: var(--green);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(245,197,24,0.25);
}
.nav-btn-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(245,197,24,0.32);
}

/* Scrolled state: subtle backdrop strip behind nav */
#navbar.scrolled {
  background: linear-gradient(to bottom, rgba(8,9,13,0.55), rgba(8,9,13,0));
  padding-top: 4px; padding-bottom: 10px;
}

/* Mobile (≤900px): hamburger, no centre pill, all controls 40px tall, vertically centred in a 60px nav band */
@media (max-width: 900px) {
  #navbar {
    padding: 0 12px;                             /* flex centring handles vertical spacing */
    min-height: 60px;
    display: flex; align-items: center;
  }
  #navbar .nav-grid { width: 100%; }
  .nav-links { display: none; }
  .nav-grid { gap: 8px; }

  /* Every right-hand control is the same 40×40 box, vertically centred by the nav's flex container */
  .nav-btn-cta, .nav-btn-menu, .nav-icon-btn {
    height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .nav-btn-menu { width: 40px; padding: 0; gap: 0; }
  .nav-icon-btn { width: 40px; padding: 0; }
  .nav-btn-cta  { padding: 0 16px; font-size: 0.85rem; }
  .nav-btn-menu-label, .nav-cta-desktop { display: none; }
  .nav-cta-mobile { display: inline; }

  /* Facebook hidden, account icon shown — order reads: account · hamburger · Quote+ */
  .nav-social { display: inline-flex; }
  .nav-icon-fb { display: none; }

  /* Floating logo: scales with viewport so BOTH gaps stay constant —
     16px from left edge, 11px from account button (account is 194px from right edge → right offset 205). */
  .floating-logo {
    top: 0;
    left: 16px;
    right: auto;
    width: calc(100vw - 221px);   /* 16 (left) + 205 (account + gap) */
    height: 60px;
    display: flex; align-items: center;
  }
  .floating-logo img {
    max-width: 100%;
    max-height: 40px;             /* never grow taller than the buttons */
    width: auto;
    height: auto;
    display: block;
  }
}
@media (max-width: 540px) {
  .nav-logo { font-size: 1rem; }
  .nav-logo svg { width: 26px; height: 26px; }
  .nav-logo-img { height: 40px; }
}

/* ─── Mobile menu ─────────────────────────────────────────────── */
.mobile-overlay { display: none; position: fixed; inset: 0; z-index: 2000; }
.mobile-overlay.open { display: flex; }
.mobile-backdrop { position: absolute; inset: 0; background: rgba(22,40,18,0.45); backdrop-filter: blur(4px); }
.mobile-menu {
  position: relative; margin-left: auto; width: min(320px, 90vw); height: 100%;
  display: flex; flex-direction: column; padding: 24px;
  background: var(--bg-raised); border-left: 1px solid var(--border); overflow-y: auto;
}
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-close { color: var(--text-3); padding: 8px; border-radius: 6px; transition: color 0.15s; }
.mobile-close:hover { color: var(--text); }
.mobile-links { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.mobile-links a { font-size: 1rem; color: var(--text-2); padding: 10px 12px; border-radius: 8px; transition: all 0.15s; }
.mobile-links a:hover { color: var(--text); background: var(--bg-subtle); }
.mobile-menu-bottom { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu-bottom .btn { width: 100%; justify-content: center; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; align-items: center; }
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 160px) var(--pad-x) 120px;
  background: var(--bg);
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none; z-index: 0;
}
.hero-blob-1 {
  width: 800px; height: 600px; top: -100px; right: -200px;
  background: radial-gradient(circle, rgba(28,58,28,0.06) 0%, transparent 70%);
}
.hero-blob-2 {
  width: 500px; height: 500px; bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(245,197,24,0.10) 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 2; max-width: 860px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 500; color: var(--text-3);
  letter-spacing: 0.04em; margin-bottom: 40px;
}
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.hero h1 {
  font-size: clamp(3rem, 5.5vw, 72px);
  font-weight: 700; letter-spacing: -0.045em; line-height: 1.02;
  color: var(--text); margin-bottom: 28px;
}
.hero h1 em { font-style: normal; color: var(--green-mid); }
.hero-sub {
  font-size: 1.0625rem; color: var(--text-3); line-height: 1.65;
  max-width: 520px; margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 64px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 28px; }
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8125rem; color: var(--text-3);
}
.hero-trust-item svg { color: var(--green-mid); flex-shrink: 0; }
@media (max-width: 640px) {
  .hero { padding-top: calc(var(--nav-h) + 80px); padding-bottom: 80px; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
}

/* ─── HR divider ─────────────────────────────────────────────── */
.rule { border: none; border-top: 1px solid var(--border); margin: 0 var(--pad-x); }

/* ─── Feature section (2-col: headline left, body right) ─────── */
.feature-section {
  padding: 120px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 860px) {
  .feature-section { grid-template-columns: 1fr; gap: 40px; padding: 72px var(--pad-x); }
}
.feature-left {}
.feature-tag {
  font-size: 0.75rem; font-weight: 500; color: var(--text-3);
  letter-spacing: 0.04em; margin-bottom: 24px; display: block;
}
.feature-h {
  font-size: clamp(2rem, 3.5vw, 52px);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1.05;
  color: var(--text);
}
.feature-h em { font-style: normal; color: var(--green-mid); }
.feature-right { padding-top: 8px; }
.feature-body {
  font-size: 1.0625rem; color: var(--text-3); line-height: 1.7;
  margin-bottom: 32px;
}
.feature-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; color: var(--text-2); font-weight: 500;
  transition: color 0.15s;
}
.feature-link:hover { color: var(--text); }
.feature-link svg { transition: transform 0.15s; }
.feature-link:hover svg { transform: translateX(3px); }

/* Sub-grid beneath feature sections */
.feature-sub {
  padding: 0 var(--pad-x) 120px;
  display: grid; gap: 0;
  border-top: 1px solid var(--border);
}
.feature-sub-2 { grid-template-columns: repeat(2, 1fr); }
.feature-sub-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .feature-sub-4 { grid-template-columns: repeat(4, 1fr); } }
.feature-sub-item {
  padding: 36px 0 36px 0;
  border-right: 1px solid var(--border);
  padding-right: 40px; padding-left: 0;
}
.feature-sub-item:first-child { padding-left: 0; }
.feature-sub-item:last-child { border-right: none; padding-right: 0; }
.feature-sub-item + .feature-sub-item { padding-left: 40px; }
.feature-sub-num {
  font-size: 0.75rem; color: var(--text-3); font-weight: 500;
  letter-spacing: 0.04em; margin-bottom: 10px; display: block;
}
.feature-sub-title {
  font-size: 0.9375rem; font-weight: 600; color: var(--text);
  letter-spacing: -0.02em; margin-bottom: 6px;
}
.feature-sub-desc {
  font-size: 0.8125rem; color: var(--text-3); line-height: 1.6;
}
@media (max-width: 700px) {
  .feature-sub-item { border-right: none; padding-right: 0; padding-left: 0 !important; border-bottom: 1px solid var(--border); }
  .feature-sub-item:last-child { border-bottom: none; }
}

/* ─── Stats row ──────────────────────────────────────────────── */
.stats-row {
  padding: 80px var(--pad-x);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
@media (min-width: 700px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-cell {
  padding: 40px 0;
  border-right: 1px solid var(--border);
  padding-right: 48px;
}
.stat-cell:first-child { padding-left: 0; }
.stat-cell:last-child { border-right: none; padding-right: 0; }
.stat-cell + .stat-cell { padding-left: 48px; }
.stat-num {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.05em; line-height: 1;
  color: var(--text); margin-bottom: 8px;
}
.stat-num .unit { font-size: 0.45em; font-weight: 600; color: var(--text-3); letter-spacing: 0; }
.stat-label { font-size: 0.875rem; font-weight: 600; color: var(--text-2); margin-bottom: 4px; }
.stat-desc { font-size: 0.8125rem; color: var(--text-3); line-height: 1.55; }
@media (max-width: 700px) {
  .stat-cell { border-right: none; padding-right: 0; padding-left: 0 !important; border-bottom: 1px solid var(--border); }
  .stat-cell:last-child { border-bottom: none; }
}

/* ─── Coverage section ───────────────────────────────────────── */
.coverage-section {
  padding: 120px var(--pad-x);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
@media (max-width: 860px) { .coverage-section { grid-template-columns: 1fr; gap: 40px; padding: 72px var(--pad-x); } }
.coverage-tag { font-size: 0.75rem; font-weight: 500; color: var(--text-3); letter-spacing: 0.04em; margin-bottom: 24px; display: block; }
.coverage-h {
  font-size: clamp(2rem, 3.5vw, 52px);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1.05; color: var(--text);
}
.coverage-right { padding-top: 8px; }
.coverage-body { font-size: 1.0625rem; color: var(--text-3); line-height: 1.7; margin-bottom: 32px; }
.postcode-form { display: flex; gap: 8px; flex-wrap: wrap; }
.postcode-input-wrap { flex: 1; min-width: 180px; position: relative; }
.postcode-input-wrap svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-3); pointer-events: none;
}
.postcode-input {
  width: 100%; padding: 11px 14px 11px 42px;
  background: var(--bg-raised); border: 1px solid var(--border-mid);
  border-radius: 999px; color: var(--text);
  font-size: 0.9375rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; outline: none; transition: border-color 0.18s;
}
.postcode-input::placeholder { color: var(--text-4); font-weight: 400; letter-spacing: 0; text-transform: none; }
.postcode-input:focus { border-color: var(--border-mid); box-shadow: 0 0 0 3px var(--accent-dim); }
.postcode-result { margin-top: 20px; }
.postcode-result-inner { padding: 20px 24px; border-radius: 12px; border: 1px solid var(--border); background: var(--bg-raised); }
.postcode-result-inner.covered   { border-color: rgba(28,58,28,0.25); background: rgba(28,58,28,0.03); }
.postcode-result-inner.uncovered { }
.postcode-result-inner.notified  { border-color: rgba(245,197,24,0.35); background: rgba(245,197,24,0.04); }
.postcode-result h3 { font-size: 0.9375rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.postcode-result p  { font-size: 0.875rem; color: var(--text-3); margin-bottom: 14px; }
.postcode-reset { font-size: 0.8125rem; color: var(--text-3); transition: color 0.15s; }
.postcode-reset:hover { color: var(--text-2); }
.notify-form { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.notify-input {
  flex: 1; min-width: 160px; padding: 10px 14px;
  background: var(--bg-subtle); border: 1px solid var(--border-mid);
  border-radius: 999px; color: var(--text); font-size: 0.875rem; outline: none;
}
.notify-input::placeholder { color: var(--text-4); }
.hidden { display: none !important; }

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials-section {
  padding: 120px var(--pad-x);
  border-top: 1px solid var(--border);
}
.testimonials-header { margin-bottom: 56px; }
.testimonials-header .section-tag { font-size: 0.75rem; font-weight: 500; color: var(--text-3); letter-spacing: 0.04em; display: block; margin-bottom: 16px; }
.testimonials-header h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; letter-spacing: -0.04em; color: var(--text); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 700px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 20px;
}
.testimonial-card:last-child { border-right: none; }
.testimonial-card + .testimonial-card { padding-left: 40px; }
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars svg { color: var(--accent); }
.testimonial-quote { font-size: 0.9375rem; color: var(--text-2); line-height: 1.7; flex: 1; }
.testimonial-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.testimonial-loc  { font-size: 0.8rem; color: var(--text-3); margin-top: 2px; }
@media (max-width: 700px) {
  .testimonial-card { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-left: 0 !important; }
  .testimonial-card:last-child { border-bottom: none; }
}

/* ─── CTA ────────────────────────────────────────────────────── */
.cta-section {
  padding: 140px var(--pad-x);
  border-top: 1px solid var(--border);
}
.cta-section h2 {
  font-size: clamp(2.4rem, 5vw, 72px);
  font-weight: 700; letter-spacing: -0.05em; line-height: 1.02;
  color: var(--text); margin-bottom: 24px; max-width: 680px;
}
.cta-section h2 em { font-style: normal; color: var(--green-mid); }
.cta-section p { font-size: 1.0625rem; color: var(--text-3); margin-bottom: 40px; max-width: 480px; line-height: 1.65; }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.cta-phone { font-size: 0.875rem; color: var(--text-3); display: flex; align-items: center; gap: 6px; }
.cta-phone svg { color: var(--green-mid); flex-shrink: 0; }
.cta-phone a { color: var(--text-2); font-weight: 500; transition: color 0.15s; }
.cta-phone a:hover { color: var(--text); }

/* ─── Footer ─────────────────────────────────────────────────── */
footer { background: var(--footer-bg); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner {
  padding: 72px var(--pad-x) 56px;
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 640px)  { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer-inner { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer .nav-logo { color: #fff; }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 240px; margin: 16px 0 24px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer-contact a:hover { color: rgba(255,255,255,0.75); }
.footer-contact svg { color: var(--accent); flex-shrink: 0; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px; padding: 6px 10px;
}
.footer-badge svg { color: var(--accent); }
.footer-col h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer-col a:hover { color: rgba(255,255,255,0.75); }
.footer-col-desc { font-size: 0.875rem; color: rgba(255,255,255,0.35); line-height: 1.6; margin-bottom: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); }
.footer-bottom-inner {
  padding: 20px var(--pad-x);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-bottom-inner p, .footer-bottom-inner a { font-size: 0.8125rem; color: rgba(255,255,255,0.22); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }

/* ════════════════════════════════════════════════════════════════
   BRANCH-MIRROR LAYOUT (homepage v3 — production grade)
   ════════════════════════════════════════════════════════════════ */

:root {
  --pad-x-md: clamp(24px, 4vw, 64px);
  --bg-sand:    #F2EDE4;
  --bg-sand-2:  #E9E1D2;
  --tint-blue:  #DDE7E4;   /* sage-blue (production replacement for Branch's powder blue) */
  --shadow-card:  0 1px 2px rgba(28,58,28,0.04), 0 4px 16px rgba(28,58,28,0.04);
  --shadow-cta:   0 8px 24px rgba(28,58,28,0.15);
  --hairline:     rgba(28,58,28,0.08);
}

/* shared section header */
.bx-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.bx-head .bx-eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 14px;
}
.bx-head h2 {
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.08;
  color: var(--text); margin-bottom: 18px;
}
.bx-head h2 em { font-style: normal; color: var(--green-mid); }
.bx-head p { font-size: 1rem; color: var(--text-3); line-height: 1.65; max-width: 580px; margin: 0 auto; }
@media (max-width: 640px) { .bx-head { margin-bottom: 40px; } }

/* ─── HERO — full-bleed editorial (Vertdure-pattern) ─────────────── */
.bx-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  background: #08090d;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
  display: flex; flex-direction: column;
}

/* Desktop: halve hero side padding; align nav padding to match so logo and headline line up */
@media (min-width: 901px) {
  .bx-hero { --pad-x: 40px; }
  /* Nav pill is centered to the logo's vertical midpoint (logo height 70 + top 6 → midpoint y=41) */
  #navbar { padding: 6px 40px; min-height: 82px; display: flex; align-items: center; }
  #navbar .nav-grid { width: 100%; }
  .bx-hero-inner { padding-top: calc(var(--nav-h) - 1px); }
}

/* Background image layer */
.bx-hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.bx-hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: grayscale(1) brightness(0.72) contrast(0.82);
}
/* Top + bottom darkening for legibility — not a full veil */
.bx-hero-veil {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(8,9,13,0.55) 0%,
      rgba(8,9,13,0.00) 18%,
      rgba(8,9,13,0.00) 55%,
      rgba(8,9,13,0.42) 100%),
    linear-gradient(90deg,
      rgba(8,9,13,0.35) 0%,
      rgba(8,9,13,0.00) 50%);
}

/* Content stack */
.bx-hero-inner {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column;
  padding-top: calc(var(--nav-h) + 12px);
}
/* Mobile: marquee sits tight under the 60px mobile nav (overrides the desktop-sized base padding above) */
@media (max-width: 900px) {
  .bx-hero-inner { padding-top: 66px; }
}

/* ── Top promo marquee (text-only, no bar) ──────────────────────── */
.bx-topbar {
  display: flex; align-items: center; gap: 10px;
  height: 42px; flex-shrink: 0;
  margin: 0 var(--pad-x);
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  text-shadow: 0 1px 4px rgba(0,0,0,0.55);
}

.bx-topbar-track-wrap {
  flex: 1; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 16px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 16px), transparent 100%);
}
.bx-topbar-track {
  display: flex; align-items: center;
  animation: topbar-scroll 22s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
/* Social-proof item content */
.bx-tb-item {
  display: inline-flex; align-items: baseline; gap: 7px;
  flex-shrink: 0;
}
.bx-tb-stars {
  color: var(--accent);
  letter-spacing: 1px;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.bx-tb-quote {
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.bx-tb-by {
  color: rgba(255,255,255,0.45);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.bx-tb-sep {
  color: rgba(255,255,255,0.18);
  padding: 0 18px;
  font-weight: 400;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Live status indicator (non-button) */
.bx-topbar-live {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 14px 0 12px;
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.bx-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 0 0 rgba(52,199,89,0.55);
  animation: live-pulse 2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(52,199,89,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(52,199,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,199,89,0); }
}
@media (max-width: 720px) {
  .bx-tb-by { display: none; }
  .bx-tb-quote { font-size: 0.92rem; }
  .bx-tb-sep { padding: 0 12px; }
  .bx-topbar-live { display: none; }   /* drop the live indicator + green dot entirely on mobile */
}
@keyframes topbar-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 12-col layout: heading-left, card-right ────────────────────── */
.bx-hero-cols {
  flex: 1; min-height: 0;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 32px;
  padding: 0 var(--pad-x);
  padding-top: clamp(40px, 6vh, 80px);
  padding-bottom: clamp(48px, 7vh, 88px);
  width: 100%;
  align-items: end;
}

.bx-hero-left {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: clamp(28px, 4vh, 44px);
}

/* Two-line split heading */
.bx-hero-h1 {
  display: flex; flex-direction: column;
  margin: 0;
}
.bx-h1-alt,
.bx-h1-bold {
  display: block;
  font-size: clamp(3.4rem, 9vw, 8.5rem);
  line-height: 0.92;
  color: #fff;
  letter-spacing: -0.03em;
}
.bx-h1-alt {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  padding-left: 0.02em;
  margin-bottom: -0.04em;
}
.bx-h1-bold {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.045em;
}

/* CTA */
.bx-hero-cta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.btn-hero-primary {
  background: var(--green); color: #fff;
  border: 1px solid var(--green);
  padding: 15px 30px; font-size: 0.95rem; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(8,9,13,0.32);
  transition: all 0.2s ease;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.btn-hero-primary:hover {
  background: var(--green-mid); border-color: var(--green-mid);
  box-shadow: 0 14px 36px rgba(8,9,13,0.38);
  transform: translateY(-1px);
}
.btn-hero-ghost {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 14px 24px; font-size: 0.9rem; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.18s ease;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.34);
}

/* Right column */
.bx-hero-right {
  display: flex; justify-content: flex-end; align-items: flex-end;
  align-self: end;
}

/* ── Booking form (in hero card) ──────────────────────────── */
.bx-hero-form {
  position: relative;
  width: min(420px, 100%);
  background: rgba(14,16,20,0.55);
  backdrop-filter: blur(22px) saturate(120%);
  -webkit-backdrop-filter: blur(22px) saturate(120%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 20px 20px 18px;
  display: flex; flex-direction: column; gap: 11px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.32);
}
.bx-hero-form::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(155deg,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.00) 55%);
  pointer-events: none;
}
.bx-hero-form > * { position: relative; z-index: 1; }

.bx-hero-form-head { margin-bottom: 2px; }
.bx-hero-form-title {
  font-size: 1.05rem; font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.bx-hero-form-sub {
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
  letter-spacing: -0.005em;
}

.bx-hero-field {
  display: flex; flex-direction: column; gap: 5px;
}
.bx-hero-field-label {
  font-size: 0.68rem; font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bx-hero-field input,
.bx-hero-field select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.875rem; font-weight: 500;
  padding: 11px 13px;
  border-radius: 9px;
  outline: none;
  font-family: var(--font);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  width: 100%;
  letter-spacing: -0.005em;
}
.bx-hero-field input::placeholder { color: rgba(255,255,255,0.34); font-weight: 400; }
.bx-hero-field input:focus,
.bx-hero-field select:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.18);
}
.bx-hero-field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.55)' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
  cursor: pointer;
}
.bx-hero-field select option { background: #14171c; color: #fff; }
.bx-hero-field input:autofill,
.bx-hero-field input:-webkit-autofill {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px rgba(255,255,255,0.06) inset;
  caret-color: #fff;
}

.bx-hero-form-btn {
  margin-top: 4px;
  padding: 13px 18px;
  background: var(--accent);
  color: var(--green);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 0.92rem; font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  font-family: var(--font);
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.bx-hero-form-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 10px 26px rgba(245,197,24,0.34), 0 0 0 4px rgba(245,197,24,0.16);
  transform: translateY(-1px);
}
.bx-hero-form-btn:disabled { opacity: 0.6; cursor: wait; transform: none; box-shadow: none; }

.bx-hero-form-foot {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.42);
  text-align: center;
  margin-top: 1px;
  letter-spacing: -0.005em;
}
.bx-hero-form .form__error {
  display: none;
  font-size: 0.78rem;
  color: #ffb4b4;
  background: rgba(255,80,80,0.10);
  border: 1px solid rgba(255,80,80,0.28);
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 2px;
}
.bx-hero-form .form__error:not(:empty) { display: block; }
.bx-hero-card {
  position: relative;
  width: min(340px, 100%);
  background: rgba(14,16,20,0.45);
  backdrop-filter: blur(22px) saturate(120%);
  -webkit-backdrop-filter: blur(22px) saturate(120%);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  padding: 22px 22px 20px;
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.bx-hero-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(155deg,
    rgba(255,255,255,0.09) 0%,
    rgba(255,255,255,0) 55%);
  pointer-events: none;
}
.bx-hero-card:hover {
  background: rgba(14,16,20,0.55);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.bx-hero-card-text {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.85); line-height: 1.5;
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.bx-hero-card-foot {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px;
  position: relative; z-index: 1;
}
.bx-hero-card-logo {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.8125rem; font-weight: 700;
  color: #fff; letter-spacing: -0.02em;
}
.bx-hero-card-logo svg { width: 22px; height: 22px; flex-shrink: 0; }
.bx-hero-card-icon {
  display: flex; align-items: flex-end;
  background: rgba(245,197,24,0.10);
  border: 1px solid rgba(245,197,24,0.30);
  border-radius: 10px;
  padding: 6px 10px;
}
.bx-hero-card-icon svg { width: 64px; height: auto; display: block; }
.bx-hero-card-link {
  position: absolute; inset: 0; z-index: 2; border-radius: inherit;
}

/* Scroll indicator */
.bx-hero-scroll {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  transition: color 0.18s, border-color 0.18s;
  animation: scroll-bounce 2.4s ease-in-out infinite;
}
.bx-hero-scroll:hover { color: #fff; border-color: rgba(255,255,255,0.42); }
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(5px); }
}

/* Responsive */
@media (max-width: 960px) {
  .bx-hero {
    height: auto;
    min-height: 100svh;
  }
  .bx-hero-cols {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vh, 40px);
    padding-bottom: clamp(56px, 8vh, 96px);
    align-items: start;
  }
  .bx-hero-left { align-self: start; }
  .bx-hero-right { justify-content: flex-start; }
  .bx-hero-card,
  .bx-hero-form { width: 100%; max-width: 460px; }
  .bx-hero-scroll { display: none; }
}
@media (max-width: 720px) {
  .bx-hero { min-height: 0; }
  .bx-topbar { height: 38px; }
  .bx-topbar-track span { font-size: 0.72rem; }
  .bx-topbar-badge { font-size: 0.62rem; padding: 6px 11px; letter-spacing: 0.08em; }
  .bx-h1-alt, .bx-h1-bold { font-size: clamp(2.5rem, 12vw, 4rem); }
  .bx-hero-cols {
    padding-top: clamp(24px, 3.5vh, 40px);
    padding-bottom: clamp(56px, 8vh, 96px);
    gap: 20px;
  }
  .bx-hero-left { gap: 18px; }
  .btn-hero-primary { padding: 13px 26px; font-size: 0.9rem; }
  .bx-hero-card { padding: 18px; }
  .bx-hero-card-text { font-size: 0.8125rem; margin-bottom: 16px; }
  .bx-hero-form { padding: 14px 16px 14px; gap: 7px; }
  .bx-hero-form-title { font-size: 0.95rem; }
  .bx-hero-form-sub { font-size: 0.72rem; margin-top: 2px; }
  .bx-hero-form .bx-hero-field { gap: 3px; }
  .bx-hero-form .bx-hero-field-label { font-size: 0.62rem; }
  .bx-hero-form .bx-hero-field input,
  .bx-hero-form .bx-hero-field select { padding: 9px 12px; font-size: 0.84rem; }
  .bx-hero-form-btn { padding: 11px 18px; font-size: 0.88rem; }
  .bx-hero-form-foot { font-size: 0.72rem; margin-top: 2px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .bx-topbar-track,
  .bx-hero-scroll { animation: none; }
}

/* ─── HOME MARQUEE — dark band below hero ──────────────────────── */
.bx-home-marquee {
  background: var(--green);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0;
  user-select: none;
}
.bx-mq-row {
  overflow: hidden;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.bx-mq-row:last-child { border-bottom: none; }
.bx-mq-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: mq-fwd var(--mq-dur, 90s) linear infinite;
  animation-delay: var(--mq-delay, 0s);
}
.bx-mq-track.bx-mq-rev { animation-name: mq-rev; }
@keyframes mq-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes mq-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.bx-mq-item {
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-weight: 700; letter-spacing: -0.025em;
  padding: 0 clamp(22px, 2.8vw, 44px);
  position: relative;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.bx-mq-item a {
  position: absolute; inset: 0; display: block;
}
.bx-mq-item:hover { opacity: 0.65; }
.bx-mq-item.--yellow { color: var(--accent); }
.bx-mq-item.--white  { color: #fff; }
.bx-mq-item.--cream  { color: rgba(255,255,255,0.50); }
.bx-mq-item.--green  { color: #6B8A68; }
.bx-mq-item.--serif  { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; letter-spacing: -0.005em; }
.bx-mq-logo {
  padding: 0 clamp(16px, 2vw, 32px);
  display: inline-flex; align-items: center;
  opacity: 0.28;
  flex-shrink: 0;
}
.bx-mq-logo svg,
.bx-mq-logo img { width: 26px; height: auto; display: block; }
@media (prefers-reduced-motion: reduce) {
  .bx-mq-track { animation: none; }
}

/* ─── DIFFERENCE — 4-icon grid ─────────────────────────────────── */
.bx-difference {
  padding: clamp(64px, 9vw, 120px) var(--pad-x);
  background: var(--bg);
  position: relative;
}
.bx-difference::before {
  content: ''; position: absolute; left: var(--pad-x); right: var(--pad-x); top: 0;
  border-top: 1px solid var(--hairline);
}
.bx-diff-head {
  text-align: center; max-width: 600px; margin: 0 auto 64px;
}
.bx-diff-head h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  font-weight: 700; letter-spacing: -0.03em; color: var(--text);
}
.bx-diff-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 32px;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 800px) { .bx-diff-grid { grid-template-columns: repeat(4, 1fr); } }
.bx-diff-cell { text-align: center; padding: 0 4px; }
.bx-diff-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bg-raised);
  border: 1px solid var(--hairline);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green-mid); margin-bottom: 22px;
  box-shadow: 0 1px 2px rgba(28,58,28,0.04);
}
.bx-diff-cell h3 {
  font-size: 0.9375rem; font-weight: 700; color: var(--text);
  letter-spacing: -0.01em; margin-bottom: 10px; line-height: 1.3;
}
.bx-diff-cell p { font-size: 0.84rem; color: var(--text-3); line-height: 1.6; max-width: 220px; margin: 0 auto; }

/* ─── DARK-GREEN STRIP (featured + trusted) ───────────────────── */
.bx-strip {
  background: var(--green);
  padding: 28px var(--pad-x);
  text-align: center;
  position: relative;
}
.bx-strip-eyebrow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.bx-strip-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 24px 56px;
}
.bx-strip-row span {
  font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.92);
  letter-spacing: -0.005em;
}
.bx-strip-row .sep {
  color: rgba(255,255,255,0.25); font-weight: 400; margin: 0 -28px;
}
@media (max-width: 640px) {
  .bx-strip-row { gap: 14px 28px; }
  .bx-strip-row span { font-size: 0.85rem; }
  .bx-strip-row .sep { display: none; }
}

/* ─── ELEVATE INTRO ─────────────────────────────────────────────── */
.bx-elevate {
  padding: clamp(72px, 9vw, 110px) var(--pad-x) clamp(40px, 5vw, 72px);
  background: var(--bg);
}
.bx-elevate-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.bx-elevate h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.1;
  color: var(--text); margin-bottom: 22px;
}
.bx-elevate h2 em { font-style: normal; color: var(--green-mid); }
.bx-elevate p { font-size: 1.0625rem; color: var(--text-3); line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* ─── SERVICE PANELS — flush meet, outer-rounded ───────────────── */
.bx-svc {
  padding: clamp(20px, 3vw, 32px) var(--pad-x);
  background: var(--bg);
}
.bx-svc-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;                             /* flush — no gap between image & text */
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;                   /* outer rounding clips both halves */
  box-shadow: var(--shadow-card);
}
@media (max-width: 860px) { .bx-svc-grid { grid-template-columns: 1fr; border-radius: 14px; } }

/* image panel */
.bx-svc-image {
  position: relative;
  aspect-ratio: 5/4;
  min-height: 380px;
  background: var(--bg-sand);
  overflow: hidden;
}
.bx-svc-image .bx-image-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}

/* text panel — light cream variant */
.bx-svc-text {
  padding: clamp(40px, 5vw, 64px) clamp(28px, 5vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg-sand);
  position: relative;
}
.bx-svc-text h3 {
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
  font-weight: 700; letter-spacing: -0.035em; color: var(--text);
  margin-bottom: 4px; line-height: 1.05;
}
.bx-svc-from {
  font-size: 0.95rem; font-weight: 500; color: var(--text-3);
  letter-spacing: -0.005em; margin-bottom: 22px;
}
.bx-svc-text p {
  font-size: 0.9375rem; color: var(--text-2); line-height: 1.65;
  margin-bottom: 32px; max-width: 420px;
}
.bx-svc-cta { align-self: flex-start; }

/* dark-green text panel (Conference variant) */
.bx-svc-text--dark { background: var(--green); }
.bx-svc-text--dark h3 { color: #fff; }
.bx-svc-text--dark .bx-svc-from { color: rgba(255,255,255,0.55); }
.bx-svc-text--dark p { color: rgba(255,255,255,0.78); }
.btn-outline-light {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.08); border-color: #fff;
}

@media (max-width: 860px) {
  .bx-svc-image { min-height: 240px; aspect-ratio: 5/3; }
  .bx-svc-text { padding: 36px 28px; }
}

/* ─── COMPARE TABLE — outline highlight column ─────────────────── */
.bx-compare {
  padding: clamp(80px, 10vw, 120px) var(--pad-x);
  background: var(--bg);
}
.bx-compare-table {
  max-width: 920px; margin: 0 auto;
  position: relative;
}
.bx-compare-row {
  display: grid; grid-template-columns: minmax(220px, 1.7fr) 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--hairline);
}
.bx-compare-row:first-child { border-bottom-width: 2px; border-bottom-color: var(--text); }
.bx-compare-row:last-child  { border-bottom: none; }
.bx-compare-row.head .bx-compare-cell {
  font-size: 0.78rem; font-weight: 600; color: var(--text-3);
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 18px;
}
.bx-compare-cell { padding: 18px 18px; font-size: 0.9rem; color: var(--text-2); }
.bx-compare-cell.label { color: var(--text); font-weight: 500; }
.bx-compare-cell.center { text-align: center; }

/* highlighted column — 2px green outline drawn with pseudo */
.bx-compare-col-us { position: relative; }
.bx-compare-col-us-head {
  color: var(--green) !important;
  font-weight: 700 !important;
  letter-spacing: -0.005em !important;
  text-transform: none !important;
  font-size: 0.92rem !important;
}
/* draw the green outline as a single absolutely-positioned element */
.bx-compare-outline {
  position: absolute; top: 0; bottom: 0;
  left: calc((100% - 220px) * 0 / 1.7 + 220px / 1 * 0); /* placeholder, computed below */
  pointer-events: none;
  border: 2px solid var(--green);
  border-radius: 8px;
}
/* simpler approach: outline rendered on the column cells via box-shadow inset */
.bx-compare-row .bx-compare-col-us {
  box-shadow:
    inset 2px 0 0 var(--green),
    inset -2px 0 0 var(--green);
}
.bx-compare-row.head .bx-compare-col-us {
  box-shadow:
    inset 2px 2px 0 var(--green),
    inset -2px 2px 0 var(--green);
  border-radius: 8px 8px 0 0;
}
.bx-compare-row:last-child .bx-compare-col-us {
  box-shadow:
    inset 2px -2px 0 var(--green),
    inset -2px -2px 0 var(--green);
  border-radius: 0 0 8px 8px;
}
.bx-tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%; background: var(--green-mid); color: #fff;
}
.bx-dash { color: var(--text-4); font-size: 1.1rem; opacity: 0.5; }
@media (max-width: 720px) {
  .bx-compare-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .bx-compare-cell { padding: 12px 8px; font-size: 0.78rem; }
  .bx-compare-row.head .bx-compare-cell { padding: 12px 8px; font-size: 0.68rem; }
  .bx-compare-col-us-head { font-size: 0.78rem !important; }
}

/* ─── TESTIMONIALS — refined rhythm ─────────────────────────────── */
.bx-reviews {
  padding: clamp(80px, 10vw, 120px) var(--pad-x);
  background: var(--bg);
  border-top: 1px solid var(--hairline);
}
.bx-reviews-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 44px 36px;
}
@media (min-width: 700px)  { .bx-reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .bx-reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.bx-review { text-align: center; padding: 0 12px; }
.bx-review-stars {
  display: inline-flex; gap: 2px; margin-bottom: 14px; color: var(--accent);
}
.bx-review-stars svg { fill: currentColor; width: 12px; height: 12px; }
.bx-review-quote {
  font-size: 0.875rem; color: var(--text-2); line-height: 1.65;
  margin-bottom: 16px; max-width: 320px; margin-left: auto; margin-right: auto;
}
.bx-review-name { font-size: 0.8125rem; font-weight: 700; color: var(--text); letter-spacing: -0.005em; }
.bx-review-role { font-size: 0.75rem; color: var(--text-3); margin-top: 3px; }
.bx-reviews-cta { display: flex; justify-content: center; margin-top: 56px; }
.bx-reviews-cta .btn { padding: 12px 32px; }

/* ─── OPERATOR PANEL — soft sage tint (replaces yellow) ─────────── */
.bx-operator {
  padding: 0 var(--pad-x);
  background: var(--bg);
}
.bx-operator-panel {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1.15fr);
  gap: 0; align-items: stretch;
  background: var(--tint-blue);
  border-radius: 18px; overflow: hidden;
}
@media (max-width: 860px) { .bx-operator-panel { grid-template-columns: 1fr; } }
.bx-operator-photo {
  position: relative; min-height: 380px;
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(28,58,28,0.18), transparent 60%),
    linear-gradient(140deg, #c9d6d3 0%, #b8c8c5 100%);
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 22px;
  overflow: hidden;
}
.bx-operator-photo .bx-image-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.bx-operator-photo-meta {
  position: relative; z-index: 2;
  background: var(--bg-raised);
  padding: 12px 16px; border-radius: 8px;
  font-size: 0.85rem; color: var(--text-2);
  box-shadow: 0 4px 12px rgba(28,58,28,0.10);
  border: 1px solid var(--hairline);
}
.bx-operator-photo-meta strong { font-weight: 700; color: var(--text); display: block; font-size: 0.95rem; letter-spacing: -0.01em; }
.bx-operator-photo-tag {
  font-size: 0.72rem; color: var(--text-3); margin-top: 1px;
}
.bx-operator-text {
  padding: clamp(40px, 5vw, 64px) clamp(28px, 5vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
}
.bx-operator-text h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.035em; color: var(--text);
  margin-bottom: 18px; line-height: 1.1;
}
.bx-operator-text p {
  font-size: 0.9375rem; color: var(--text-2); line-height: 1.65;
  margin-bottom: 28px; max-width: 460px;
}
.bx-operator-text .btn { align-self: flex-start; }

/* ─── TRUSTED-BY BAND ───────────────────────────────────────────── */
.bx-trusted { margin-top: clamp(72px, 9vw, 100px); }

/* ─── FAQ ─────────────────────────────────────────────────────── */
.bx-faq {
  padding: clamp(80px, 10vw, 120px) var(--pad-x);
  background: var(--bg);
}
.bx-faq-list {
  max-width: 920px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--text);
  border-top-width: 1.5px;
}
.bx-faq-row {
  display: grid; grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.6fr);
  gap: 32px; padding: 26px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
}
@media (max-width: 720px) {
  .bx-faq-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
}
.bx-faq-q {
  font-size: 0.9375rem; font-weight: 600; color: var(--text);
  letter-spacing: -0.01em; line-height: 1.4;
  display: flex; gap: 10px;
}
.bx-faq-q-num {
  font-size: 0.85rem; color: var(--text-3); font-weight: 500;
  flex-shrink: 0;
}
.bx-faq-a { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }
.bx-faq-cta { display: flex; justify-content: center; margin-top: 48px; }
.bx-faq-cta .btn { padding: 12px 32px; }

/* ─── FINAL CTA ─────────────────────────────────────────────────── */
.bx-final {
  padding: clamp(64px, 8vw, 96px) var(--pad-x) clamp(64px, 8vw, 96px);
  background: var(--bg-sand);
  border-top: 1px solid var(--hairline);
}
.bx-final-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(180px, 0.55fr) minmax(280px, 1fr);
  gap: 48px; align-items: center;
}
@media (max-width: 720px) { .bx-final-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; } }
.bx-final-illus { display: flex; justify-content: center; }
.bx-final-illus svg { width: 100%; max-width: 260px; height: auto; color: var(--text-2); opacity: 0.85; }
.bx-final-text h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700; letter-spacing: -0.03em; color: var(--text);
  margin-bottom: 24px; line-height: 1.2; max-width: 420px;
}
@media (max-width: 720px) {
  .bx-final-text h2 { margin-left: auto; margin-right: auto; }
  .bx-final-text .btn { display: inline-flex; }
}

