  :root {
    --paper: #F7F4EE;
    --ink: #20231F;
    --brand: #15463E;
    --brand-light: #DCE6DF;
    --accent: #F0641E;
    --accent-text: #BB4E17; /* Real PageSpeed finding, 2026-07-30: --accent as white-on-orange button bg or as direct text color measured 3.21:1, failing WCAG AA (needs 4.5:1) for normal-size text. This darkened variant (same hue, computed via actual luminance formula) measures 4.98:1 against WHITE/light backgrounds - genuinely passing. Original --accent is untouched for icons/borders/hover states, where this requirement doesn't apply the same way. */
    --accent-on-dark: #FF942C; /* Real mistake caught and fixed same day: --accent-text was designed for white backgrounds and actually FAILS (2.13:1) against the dark green footer. This lightened variant (opposite direction, same hue) measures 4.82:1 against var(--brand) footer background specifically - use this one for accent text on dark/brand-colored backgrounds, --accent-text for light backgrounds. */
    --steel: #C7C2B8;
    --verified: #3C8C5D;
    --muted: #5C645D;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
  body {
    margin: 0; background: var(--paper); color: var(--ink);
    font-family: 'Inter', -apple-system, Segoe UI, Roboto, sans-serif;
    line-height: 1.55; -webkit-font-smoothing: antialiased;
    overflow-x: hidden; max-width: 100%; position: relative;
  }
  h1, h2, h3, .brand-font {
    font-family: 'Archivo', 'Inter', sans-serif; font-weight: 800;
    color: var(--brand); letter-spacing: -0.01em; margin: 0;
  }
  .mono { font-family: 'IBM Plex Mono', 'Courier New', monospace; }
  a { color: inherit; }
  a:focus-visible, button:focus-visible, .btn-primary:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
  .wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; }

  /* ---- Top utility bar ---- */
  .top-bar {
    position: sticky; top: 0; z-index: 60;
    background: var(--brand); color: #fff;
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 16px; font-size: 13px;
  }
  .top-bar .loc { display: flex; align-items: center; gap: 6px; }
  .top-bar .btn-call {
    background: var(--accent); color: #fff; text-decoration: none;
    padding: 8px 16px; border-radius: 6px; font-weight: 700; font-size: 13px;
    font-family: 'IBM Plex Mono', monospace; white-space: nowrap;
  }

  /* ---- Site nav ---- */
  .site-nav {
    border-bottom: 1px solid var(--steel); background: #fff;
  }
  .site-nav .wrap { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; }
  .site-nav .logo { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 17px; color: var(--brand); text-decoration: none; }
  .site-nav .logo span { color: var(--accent-text); }
  .site-nav ul { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
  .site-nav a.nav-link { text-decoration: none; font-size: 14px; font-weight: 600; color: var(--ink); }
  .site-nav a.nav-link:hover { color: var(--accent); }
  @media (max-width: 700px) { .site-nav ul { display: none; } }

  /* ---- Nameplate hero (signature element) ---- */
  .nameplate-section { padding: 36px 0 28px; }
  .nameplate {
    border: 2px solid var(--brand); border-radius: 4px; background: #fff;
    padding: 26px 28px; position: relative; overflow: hidden;
    box-shadow: 0 1px 0 var(--steel), 0 8px 24px -16px rgba(21,70,62,0.35);
  }
  .nameplate::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
    background: repeating-linear-gradient(45deg, var(--accent), var(--accent) 8px, var(--brand) 8px, var(--brand) 16px);
  }
  /* corner rivets — sells the "metal plate" metaphor */
  .nameplate .rivet {
    position: absolute; width: 9px; height: 9px; border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff, var(--steel) 60%, #9a9488 100%);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
  }
  .nameplate .rivet.tl { top: 12px; left: 12px; }
  .nameplate .rivet.tr { top: 12px; right: 12px; }
  .nameplate .rivet.bl { bottom: 12px; left: 12px; }
  .nameplate .rivet.br { bottom: 12px; right: 12px; }
  .nameplate-top-row { display: flex; align-items: flex-start; gap: 18px; }
  .nameplate-icon {
    flex-shrink: 0; width: 56px; height: 56px; border-radius: 10px;
    background: var(--brand-light); display: flex; align-items: center; justify-content: center;
  }
  .nameplate-icon svg { width: 30px; height: 30px; }
  .nameplate-eyebrow {
    font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .12em;
    text-transform: uppercase; color: var(--accent-text); font-weight: 700; margin-bottom: 8px;
    display: flex; align-items: center; gap: 7px;
  }
  .pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--verified); position: relative; }
  .pulse-dot::after {
    content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1.5px solid var(--verified);
    animation: pulse 1.8s ease-out infinite;
  }
  @keyframes pulse { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }

  .nameplate h1 { font-size: 27px; line-height: 1.25; margin-bottom: 14px; }
  .nameplate-specs {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    border-top: 1px solid var(--steel); margin-top: 16px;
  }
  .nameplate-specs div {
    padding: 10px 12px 0; border-left: 1px solid var(--steel);
  }
  .nameplate-specs div:first-child { border-left: none; }
  .nameplate-specs .label { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-family: 'IBM Plex Mono', monospace; }
  .nameplate-specs .value { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 15px; color: var(--brand); margin-top: 2px; }
  .hero-sub { font-size: 15.5px; color: var(--muted); margin: 16px 0 18px; max-width: 62ch; }
  .cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: stretch; }
  .btn-primary {
    background: var(--accent-text); color: #fff; text-decoration: none; font-weight: 700;
    padding: 13px 24px; border-radius: 6px; font-size: 15px; display: inline-flex; align-items: center; gap: 8px;
    transition: transform .12s ease, box-shadow .12s ease;
    box-shadow: 0 4px 14px -4px rgba(240,100,30,0.55);
  }
  .btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 18px -4px rgba(240,100,30,0.65); }
  .btn-secondary {
    background: #fff; color: var(--brand); border: 1.5px solid var(--brand);
    text-decoration: none; font-weight: 700; padding: 13px 24px; border-radius: 6px; font-size: 15px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background .12s ease;
  }
  .btn-secondary svg { width: 16px; height: 16px; flex-shrink: 0; }
  .btn-secondary:hover { background: var(--brand-light); }

  @media (max-width: 650px) {
    .nameplate-specs { grid-template-columns: 1fr 1fr; }
    .nameplate-specs div:nth-child(3) { border-left: none; }
    .nameplate-specs div { border-top: 1px solid var(--steel); padding-top: 10px; margin-top: 8px; }
    .nameplate h1 { font-size: 22px; }
    .nameplate-top-row { gap: 12px; }
    .nameplate-icon { width: 44px; height: 44px; }
    .nameplate-icon svg { width: 24px; height: 24px; }
  }

  /* ---- Reveal-on-scroll ---- */
  /* Visible by default — this is the critical part. If JavaScript never runs (blocked,
     errored, slow connection), content must never be invisible. JS below adds the
     .reveal-ready class to opt elements INTO the fade-in animation; without JS, that
     class never gets added, so .reveal elements simply render normally with no animation. */
  .reveal.reveal-ready { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
  .reveal.reveal-ready.in { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) { .reveal.reveal-ready { opacity: 1; transform: none; transition: none; } .pulse-dot::after { animation: none; } }

  /* ---- Process steps ---- */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
  .step { position: relative; padding: 0 16px 0 0; }
  .step:not(:last-child)::after {
    content: ""; position: absolute; top: 19px; left: calc(100% - 8px); width: calc(100% - 0px);
    border-top: 2px dashed var(--steel);
  }
  .step-num {
    width: 38px; height: 38px; border-radius: 50%; background: var(--brand); color: #fff;
    font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 15px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 12px; position: relative; z-index: 2;
  }
  .step h3 { font-size: 15px; color: var(--ink); font-weight: 700; margin-bottom: 5px; }
  .step p { font-size: 13.5px; color: var(--muted); margin: 0; }
  @media (max-width: 700px) {
    .steps { grid-template-columns: 1fr; gap: 22px; }
    .step:not(:last-child)::after { display: none; }
  }

  /* ---- Vertical step list (used inside narrower panels) ---- */
  .steps-v { list-style: none; margin: 0; padding: 0; }
  .steps-v .step-v { display: flex; gap: 12px; position: relative; padding-bottom: 22px; }
  .steps-v .step-v:last-child { padding-bottom: 0; }
  .steps-v .step-v:not(:last-child)::after {
    content: ""; position: absolute; left: 19px; top: 38px; bottom: 0;
    border-left: 2px dashed var(--steel);
  }
  .steps-v .step-num { flex-shrink: 0; }
  .steps-v h3 { font-size: 15px; color: var(--ink); font-weight: 700; margin-bottom: 4px; }
  .steps-v p { font-size: 13.5px; color: var(--muted); margin: 0; }

  /* ---- Sections ---- */
  section { padding: 30px 0; border-bottom: 1px solid var(--steel); }
  h2 { font-size: 19px; margin-bottom: 14px; }
  .section-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-text); font-weight: 700; margin-bottom: 6px; display: block; }

  /* ---- Diagnostic checklist ---- */
  .checklist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 20px; }
  .checklist li { display: flex; align-items: flex-start; gap: 9px; font-size: 14.5px; }
  .checklist .tick {
    flex-shrink: 0; width: 18px; height: 18px; border: 1.5px solid var(--verified); border-radius: 3px;
    display: flex; align-items: center; justify-content: center; color: var(--verified); font-size: 12px; font-weight: 900; margin-top: 1px;
  }
  @media (max-width: 600px) { .checklist { grid-template-columns: 1fr; } }

  /* ---- Spec-sheet pricing table ---- */
  .spec-table { width: 100%; border-collapse: collapse; }
  .spec-table th {
    text-align: left; font-family: 'IBM Plex Mono', monospace; font-size: 11px; text-transform: uppercase;
    letter-spacing: .08em; color: var(--brand); padding: 8px 12px; border-bottom: 2px solid var(--brand);
  }
  .spec-table td { padding: 11px 12px; border-bottom: 1px solid var(--steel); font-size: 14.5px; }
  .spec-table td.price { font-family: 'IBM Plex Mono', monospace; font-weight: 700; color: var(--brand); text-align: right; }
  .price-note { font-size: 13px; color: var(--muted); margin-top: 12px; }

  /* ---- Trust seals ---- */
  .seal-row { display: flex; flex-wrap: wrap; gap: 10px; }
  .seal {
    display: flex; align-items: center; gap: 7px; background: var(--brand-light); color: var(--brand);
    font-size: 12.5px; font-weight: 700; padding: 7px 13px; border-radius: 30px;
    transition: transform .12s ease, box-shadow .12s ease;
  }
  a.seal:hover { transform: translateY(-1px); box-shadow: 0 6px 14px -8px rgba(21,70,62,0.4); }
  .seal svg { width: 15px; height: 15px; flex-shrink: 0; }
  .seal .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--verified); }

  /* ---- Service grid (ServiceTree-style: icon centered above label) ---- */
  .service-grid-lg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; list-style: none; padding: 0; margin: 0; }
  .service-grid-lg a {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
    background: #fff; border: 1px solid var(--steel); border-radius: 12px; padding: 26px 16px;
    text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    width: 100%; height: 100%; box-sizing: border-box;
  }
  .service-grid-lg a:hover { transform: translateY(-3px); box-shadow: 0 14px 26px -18px rgba(21,70,62,0.4); border-color: var(--steel); }
  .service-grid-lg .sg-icon-wrap { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
  .service-grid-lg .sg-icon-wrap svg { width: 26px; height: 26px; }
  .service-grid-lg .sg-name { font-weight: 700; font-size: 14.5px; color: var(--ink); font-family: 'Archivo', sans-serif; }
  @media (max-width: 700px) { .service-grid-lg { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 420px) { .service-grid-lg { grid-template-columns: 1fr; } }
  .brand-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
  .brand-chips span { background: #fff; border: 1px solid var(--steel); padding: 5px 13px; border-radius: 20px; font-size: 13px; }

  /* ---- Cards (service grid, city grid) ---- */
  .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; list-style: none; padding: 0; margin: 0; }
  .card-grid a {
    display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--steel); border-radius: 10px;
    padding: 16px; text-decoration: none; transition: border-color .15s, transform .15s, box-shadow .15s;
  }
  .card-grid a:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 20px -14px rgba(21,70,62,0.4); }
  .card-grid .c-icon { flex-shrink: 0; width: 38px; height: 38px; border-radius: 8px; background: var(--brand-light); display: flex; align-items: center; justify-content: center; }
  .card-grid .c-icon svg { width: 20px; height: 20px; }
  .card-grid .c-name { font-weight: 700; color: var(--brand); font-size: 15px; font-family: 'Archivo', sans-serif; }
  .card-grid .c-meta { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: var(--muted); margin-top: 3px; }
  @media (max-width: 700px) { .card-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .card-grid { grid-template-columns: 1fr; } }

  /* ---- FAQ ---- */
  .faq-item { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--steel); }
  .faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .faq-item h3 { font-size: 15.5px; color: var(--ink); margin-bottom: 5px; font-weight: 700; }
  .faq-item p { margin: 0; font-size: 14.5px; color: var(--muted); }

  /* ---- Footer ---- */
  footer { padding: 32px 0 90px; background: var(--brand); color: #DCE6DF; }
  footer .wrap { display: flex; flex-direction: column; gap: 6px; }
  footer .f-brand { color: #fff; font-weight: 800; font-family: 'Archivo', sans-serif; font-size: 15px; }
  footer a { color: #fff; font-weight: 600; text-decoration: none; }
  footer .f-links { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; margin-top: 6px; }
  footer .f-fine { font-size: 12px; color: #A9BFB6; margin-top: 10px; }

  /* ---- Mobile sticky call CTA ---- */
  .mobile-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
    background: var(--accent-text); padding: 12px 16px;
  }
  .mobile-cta a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    color: #fff; text-decoration: none; font-weight: 800; font-size: 15px; font-family: 'IBM Plex Mono', monospace;
  }
  @media (max-width: 700px) { .mobile-cta { display: block; } }

  /* ================= NEW LAYOUT SYSTEM (v2) ================= */

  /* ---- Top bar v2 (3-segment) ---- */
  .top-bar-v2 {
    background: var(--brand); color: #DCE6DF; font-size: 12.5px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
    padding: 9px 16px; gap: 8px;
  }
  .top-bar-v2 .seg-group { display: flex; gap: 18px; flex-wrap: wrap; row-gap: 6px; align-items: center; }
  .top-bar-v2 .seg { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
  .top-bar-v2 .seg svg { width: 13px; height: 13px; flex-shrink: 0; }
  .top-bar-v2 .btn-call-v2 {
    background: var(--accent-text); color: #fff; text-decoration: none; font-weight: 700;
    padding: 7px 14px; border-radius: 6px; font-size: 12.5px; display: inline-flex; align-items: center; gap: 8px;
    font-family: 'IBM Plex Mono', monospace; white-space: nowrap; flex-shrink: 0;
  }
  .top-bar-v2 .btn-call-v2 svg { width: 15px; height: 15px; flex-shrink: 0; }
  @media (max-width: 760px) {
    .top-bar-v2 { justify-content: center; text-align: center; }
    .top-bar-v2 .seg-group { justify-content: center; width: 100%; gap: 12px; }
    .top-bar-v2 .seg.seg-extra { display: none; }
    .top-bar-v2 .seg:not(.seg-extra) { white-space: normal; text-align: center; justify-content: center; }
    .top-bar-v2 .btn-call-v2 { width: 100%; justify-content: center; padding: 9px 14px; }
  }

  /* ---- Nav v2 ---- */
  .nav-v2 { border-bottom: 1px solid var(--steel); background: #fff; position: sticky; top: 0; z-index: 55; }
  .nav-v2 .wrap { display: flex; justify-content: space-between; align-items: center; padding: 13px 20px; gap: 16px; }
  .nav-v2 .logo { display: flex; align-items: center; gap: 8px; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 17px; color: var(--brand); text-decoration: none; }
  .nav-v2 .logo-mark { width: 30px; height: 30px; border-radius: 6px; background: var(--brand-light); display: flex; align-items: center; justify-content: center; }
  .nav-v2 .logo-mark svg { width: 17px; height: 17px; color: var(--brand); }
  .nav-v2 .logo span { color: var(--accent-text); }
  .nav-v2 ul { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
  .nav-v2 a.nav-link { text-decoration: none; font-size: 14px; font-weight: 600; color: var(--ink); }
  .nav-v2 a.nav-link:hover { color: var(--accent); }
  .nav-v2 .nav-right { display: flex; align-items: center; gap: 10px; }
  .nav-v2 .btn-book { background: var(--brand); color: #fff; text-decoration: none; font-weight: 700; font-size: 13.5px; padding: 10px 18px; border-radius: 6px; white-space: nowrap; }
  .nav-v2 .wa-circle { width: 38px; height: 38px; border-radius: 50%; background: var(--brand-light); display: flex; align-items: center; justify-content: center; color: var(--brand); flex-shrink: 0; }
  .nav-v2 .wa-circle svg { width: 19px; height: 19px; }
  @media (max-width: 860px) {
    #nav-links-desktop { display: none; }
    .nav-hamburger { display: flex; }
  }
  .nav-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid var(--steel);
    color: var(--ink);
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
  }
  .nav-hamburger svg { width: 20px; height: 20px; }
  .nav-mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid var(--steel);
    transition: max-height 0.25s ease;
  }
  .nav-mobile-menu.open { max-height: 400px; }
  .nav-mobile-menu li { border-bottom: 1px solid var(--steel); }
  .nav-mobile-menu a.nav-link { display: block; padding: 13px 20px; text-decoration: none; font-size: 14.5px; font-weight: 600; color: var(--ink); }
  .nav-mobile-menu a.nav-link:hover { color: var(--accent); background: var(--brand-light); }
  @media (max-width: 480px) {
    .nav-v2 .wrap { padding: 11px 14px; gap: 8px; }
    .nav-v2 .logo { font-size: 14px; gap: 6px; }
    .nav-v2 .logo-mark { width: 26px; height: 26px; }
    .nav-v2 .logo-mark svg { width: 14px; height: 14px; }
    .nav-v2 .btn-book { padding: 8px 12px; font-size: 12.5px; }
    .nav-v2 .wa-circle { width: 34px; height: 34px; }
  }

  /* ---- Split hero ---- */
  /* ---- Breadcrumbs ---- */
  .breadcrumb { padding: 10px 0; }
  .breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 12.5px; }
  .breadcrumb li { display: flex; align-items: center; gap: 6px; }
  .breadcrumb li:not(:last-child)::after { content: "/"; color: var(--steel); margin-left: 6px; }
  .breadcrumb a { color: var(--muted); text-decoration: none; }
  .breadcrumb a:hover { color: var(--brand); }
  .breadcrumb li:last-child span { color: var(--brand); font-weight: 600; }

  .hero-split { padding: 38px 0; }
  .hero-split .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: center; }
  .hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--brand-light); color: var(--brand); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 20px; margin-bottom: 16px; }
  .hero-badge svg { width: 13px; height: 13px; }
  .hero-split h1 { font-size: 34px; line-height: 1.2; margin-bottom: 14px; }
  .hero-split h1 .accent { color: var(--accent-text); }
  .feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
  .feature-grid .f-item { display: flex; align-items: center; gap: 9px; background: var(--brand-light); border: none; border-radius: 8px; padding: 10px 12px; }
  .feature-grid .f-icon { color: var(--verified); flex-shrink: 0; }
  .feature-grid .f-icon svg { width: 17px; height: 17px; }
  .feature-grid .f-text { font-size: 13px; font-weight: 600; line-height: 1.3; }

  .hero-visual { position: relative; }
  .hero-visual-frame {
    background: #fff; border: 1px solid var(--steel); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; padding: 24px; min-height: 230px;
  }
  .hero-visual-frame svg { width: 62%; height: auto; }
  .hero-float-card {
    position: relative; margin-top: -50px; margin-left: 24px; margin-right: 24px;
    background: #fff; border: 1px solid var(--steel); border-radius: 12px; padding: 16px 18px;
    box-shadow: 0 14px 30px -18px rgba(21,70,62,0.35);
  }
  .hfc-row { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--steel); }
  .hfc-row:last-child { border-bottom: none; }
  .hfc-row svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
  .hfc-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-family: 'IBM Plex Mono', monospace; }
  .hfc-value { font-size: 14px; font-weight: 700; color: var(--brand); margin-top: 1px; font-family: 'IBM Plex Mono', monospace; }
  @media (max-width: 880px) {
    .hero-split .wrap { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
    .hero-float-card { margin-left: 0; margin-right: 0; }
    .hero-split h1 { font-size: 26px; }
  }

  /* ---- Stat band ---- */
  .stat-band { background: var(--brand); padding: 20px 0; }
  .stat-band .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
  .stat-band .stat { display: flex; align-items: center; gap: 9px; color: #fff; }
  .stat-band .stat svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; }
  .stat-band .stat-value { font-weight: 800; font-size: 14.5px; font-family: 'Archivo', sans-serif; }
  .stat-band .stat-label { font-size: 11.5px; color: #B9CCC2; }

  /* ---- Two-column problems / pricing ---- */
  .two-col { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 20px; align-items: start; }
  @media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
  .panel { background: #fff; border: 1px solid var(--steel); border-radius: 12px; padding: 22px; }
  .panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }

  .tile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .tile { border: 1px solid var(--steel); border-radius: 9px; padding: 13px; display: flex; align-items: flex-start; gap: 10px; }
  .tile svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
  .tile span { font-size: 13.5px; font-weight: 600; line-height: 1.35; }
  @media (max-width: 480px) { .tile-grid { grid-template-columns: 1fr; } }

  /* ---- Brand strip ---- */
  .brand-strip { display: flex; flex-wrap: wrap; gap: 10px; }
  .brand-strip .b-tile { border: 1px solid var(--steel); border-radius: 8px; padding: 12px 20px; font-weight: 700; font-size: 14px; color: var(--brand); background: #fff; }

  /* ---- Testimonials ---- */
  .testi-band { background: #fff; border-top: 1px solid var(--steel); border-bottom: 1px solid var(--steel); padding: 34px 0; }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .testi-card { border: 1px solid var(--steel); border-radius: 10px; padding: 16px; }
  .testi-stars { color: var(--accent); font-size: 13px; margin-bottom: 8px; letter-spacing: 2px; }
  .testi-quote { font-size: 13.5px; color: var(--ink); margin-bottom: 12px; min-height: 60px; }
  .testi-who { display: flex; align-items: center; gap: 9px; }
  .testi-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--brand-light); display: flex; align-items: center; justify-content: center; color: var(--brand); }
  .testi-avatar svg { width: 16px; height: 16px; }
  .testi-name { font-size: 13px; font-weight: 700; color: var(--brand); }
  .testi-loc { font-size: 11.5px; color: var(--muted); }
  .testi-placeholder-note { font-size: 11px; color: var(--muted); margin-top: 14px; font-style: italic; }
  @media (max-width: 800px) { .testi-grid { grid-template-columns: 1fr; } }

  /* ---- FAQ accordion ---- */
  .faq-acc details { border-bottom: 1px solid var(--steel); padding: 13px 0; }
  .faq-acc details:last-child { border-bottom: none; }
  .faq-acc summary { cursor: pointer; font-weight: 700; font-size: 14.5px; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; }
  .faq-acc summary::-webkit-details-marker { display: none; }
  .faq-acc summary::after { content: "+"; font-size: 19px; color: var(--accent); font-weight: 400; }
  .faq-acc details[open] summary::after { content: "–"; }
  .faq-acc details p { font-size: 13.5px; color: var(--muted); margin: 9px 0 0; }

  /* ---- Booking form ---- */
  .book-panel { background: var(--brand); border-radius: 12px; padding: 22px; color: #fff; }
  .book-panel h2 { color: #fff; }
  .book-form { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
  .book-form input, .book-form select {
    width: 100%; padding: 11px 13px; border-radius: 7px; border: none; font-size: 14px;
    font-family: 'Inter', sans-serif; background: #fff; color: var(--ink);
  }
  .book-form .btn-submit {
    background: var(--accent); color: #fff; border: none; padding: 13px; border-radius: 7px;
    font-weight: 700; font-size: 14.5px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .book-form .btn-submit svg { width: 16px; height: 16px; }
  .book-note { font-size: 11.5px; color: #B9CCC2; margin-top: 10px; }

  /* ---- Visually-hidden labels (kept for screen readers, not shown visually) ---- */
  .sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }

  /* ---- FAQ question as heading (resets to look like the original summary text) ---- */
  .faq-acc summary h3 { font: inherit; color: inherit; margin: 0; display: inline; }

  /* ---- Footer v2 ---- */
  .footer-v2 { background: var(--brand); color: #B9CCC2; padding: 38px 0 0; }
  .footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 24px; padding-bottom: 28px; border-bottom: 1px solid #2a5c52; }
  .footer-cols h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; font-family: 'Archivo', sans-serif; }
  .footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
  .footer-cols a { color: #B9CCC2; text-decoration: none; font-size: 13.5px; }
  .footer-cols a:hover { color: #fff; }
  .footer-brand-col .f-brand { color: #fff; font-weight: 800; font-family: 'Archivo', sans-serif; font-size: 16px; margin-bottom: 8px; }
  .footer-brand-col p { font-size: 13px; line-height: 1.5; max-width: 26ch; }
  .footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; }
  .footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; }
  .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 16px 0; font-size: 11.5px; color: #9AB7AB; }
  .footer-cols-5 { grid-template-columns: 1.3fr 0.8fr 0.9fr 0.9fr 1fr; }
  @media (max-width: 980px) { .footer-cols-5 { grid-template-columns: 1fr 1fr 1fr; } }
  @media (max-width: 600px) { .footer-cols-5 { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 420px) { .footer-cols-5 { grid-template-columns: 1fr; } }
