/* Dark-first web kit styling — depends on ../../colors_and_type.css (.theme-web-dark tokens) */

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

body {
  background: var(--web-bg);
  color: var(--web-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

/* ── header ────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  height: 84px;
  display: flex; align-items: center;
  transition: background 300ms ease-out, height 300ms ease-out, border-color 300ms ease-out, backdrop-filter 300ms ease-out;
}
.site-header.is-scrolled {
  background: rgba(11, 23, 41, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  height: 71px;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header .logo img { height: 26px; width: auto; }
.site-header nav { display: flex; gap: 28px; align-items: center; }
.site-header nav a {
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  color: var(--web-text-secondary);
  text-decoration: none;
}
.site-header nav a.hdr-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 13.5px; color: #fff;
  background: var(--web-accent);
  border-radius: 999px; white-space: nowrap; overflow: hidden;
  max-width: 0; padding: 9px 0; opacity: 0; transform: translateX(12px);
  transition: max-width 300ms ease-out, padding 300ms ease-out, opacity 300ms ease-out, transform 300ms ease-out, background 300ms;
}
.site-header.is-scrolled nav a.hdr-cta { max-width: 240px; padding: 9px 20px; opacity: 1; transform: none; }
.site-header nav a.hdr-cta:hover { background: var(--web-accent-hover); color: #fff; }
.site-header nav a.hdr-cta:hover .btn-arrow { transform: translateX(4px); }
.site-header nav a:hover { color: var(--web-text); }

/* ── buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px; /* addendum: pill or 8px — using pill */
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms cubic-bezier(0.2,0.7,0.2,1), color 200ms;
}
.btn .arrow { font-family: var(--font-mono); font-weight: 500; }
.btn--primary { background: var(--web-accent); color: var(--web-text); }
.btn--primary:hover { background: var(--web-accent-hover); }
.btn--ghost { background: transparent; color: var(--web-text); border-color: var(--web-border); border-radius: 8px; }
.btn--ghost:hover { border-color: var(--web-text-secondary); }
.btn--lg { font-size: 15px; padding: 16px 26px; }

/* ── eyebrow — Mist by default; red reserved for display sizes ── */
.eyebrow {
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.28em;
  color: var(--web-text-secondary);
  line-height: 1;
}
.eyebrow--dash { position: relative; padding-left: 22px; }
.eyebrow--dash::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 14px; height: 2px; background: var(--web-accent);
}

/* ── type ──────────────────────────────────────────────── */
.h-display-xl {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 1.06; letter-spacing: -0.02em;
  text-wrap: balance; margin: 0; color: var(--web-text);
}
.h-display {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1; letter-spacing: -0.02em;
  text-wrap: balance; margin: 0; color: var(--web-text);
}
.h-h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  line-height: 1.15; letter-spacing: -0.01em;
  text-wrap: balance; margin: 0; color: var(--web-text);
}
.lead { font-family: var(--font-body); font-size: clamp(1rem, 1.3vw, 1.125rem); line-height: 1.55; color: var(--web-text-secondary); margin: 0; }
.body { font-size: 1rem; line-height: 1.6; margin: 0; color: var(--web-text-secondary); }
.mono { font-family: var(--font-mono); font-weight: 500; }
.stat-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.02em; line-height: 1; color: var(--web-text);
}
.accent { color: var(--web-accent); font-style: italic; }

/* ── sections ──────────────────────────────────────────── */
section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--raised { background: var(--web-surface); }
.hairline { height: 1px; background: var(--web-border); border: 0; }
.rule-red { height: 2px; background: var(--web-accent); border: 0; width: 56px; }

/* subtle radial gradient — the ONLY gradient allowed */
.glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 20% 0%, rgba(43,70,112,0.35), transparent 60%);
}

/* ── footer ────────────────────────────────────────────── */
.site-footer { background: var(--web-bg); color: var(--web-text-secondary); padding: 80px 0 36px; border-top: 1px solid var(--web-border); }
.site-footer .wordmark img { height: 22px; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--web-border); }
.site-footer h3 { font-family: var(--font-body); font-weight: 500; font-size: 11px; text-transform: uppercase; letter-spacing: 0.28em; color: var(--web-text-secondary); margin: 0 0 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: var(--web-text-secondary); text-decoration: none; font-size: 14px; }
.site-footer a:hover { color: var(--web-text); }
.site-footer .endorsement { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--web-text-muted); margin-top: 14px; }
.site-footer .small-print { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-family: var(--font-mono); font-size: 11px; color: var(--web-text-muted); }

/* ── card primitive ────────────────────────────────────── */
.card {
  background: var(--web-surface);
  border: 1px solid var(--web-border);
  border-radius: 6px;
  padding: clamp(20px, 2.5vw, 32px);
  transition: background 200ms cubic-bezier(0.2,0.7,0.2,1), border-color 200ms;
}
.card:hover { background: var(--web-surface-raised); border-color: var(--web-text-secondary); }

/* ── stat ──────────────────────────────────────────────── */
.stat { display: flex; flex-direction: column; gap: 6px; padding-left: 14px; border-left: 2px solid var(--web-accent); }
.stat .label { font-family: var(--font-body); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--web-text-secondary); }

/* ── form ──────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-family: var(--font-body); font-weight: 500; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--web-text-secondary); }
.field input, .field select {
  font-family: var(--font-body); font-size: 15px; padding: 13px 14px;
  background: var(--web-surface); color: var(--web-text);
  border: 1px solid var(--web-border); border-radius: 6px; outline: none;
}
.field input::placeholder { color: var(--web-text-muted); }
.field input:focus, .field select:focus { border-color: var(--web-accent); }

/* ── site additions (multi-page Elevates site) ─────────── */
.new-tag {
  font-family: var(--font-mono); font-size: 9px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--web-accent); background: transparent;
  border: 1px solid var(--web-accent);
  border-radius: 999px; padding: 2px 7px; margin-left: 7px;
  position: relative; top: -1px;
}
.pill-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  color: var(--web-text); text-decoration: none;
  border: 1px solid var(--web-border); border-radius: 999px;
  padding: 12px 22px;
  transition: border-color 200ms cubic-bezier(0.2,0.7,0.2,1);
}
.pill-link:hover { border-color: var(--web-accent); }
.filter-pill {
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  color: var(--web-text-secondary); background: transparent;
  border: 1px solid var(--web-border); border-radius: 999px;
  padding: 9px 18px; cursor: pointer;
  transition: color 200ms, border-color 200ms, background 200ms;
}
.filter-pill:hover { color: var(--web-text); border-color: var(--web-text-secondary); }
.filter-pill.is-active { background: var(--web-accent); border-color: var(--web-accent); color: #fff; position: relative; }
.filter-pill.is-active::after {
  content: ""; position: absolute; inset: -1px; border-radius: 999px;
  border: 1px solid rgba(217,38,58,0.55); pointer-events: none;
  animation: ring-breathe 3.2s cubic-bezier(0.65,0,0.35,1) infinite;
}
@media (max-width: 940px) {
  .site-header nav a:not(.btn):not(.cta-btn):not(.hdr-cta) { display: none !important; }
  .row-2 { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
}

/* row-2 utility */
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }

/* ── carousels ── */
.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.carousel-mask {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.carousel-arrow {
  width: 42px; height: 42px; border-radius: 999px;
  background: transparent; border: 1px solid var(--web-border);
  color: var(--web-text-secondary); font-family: var(--font-mono); font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 200ms cubic-bezier(0.2,0.7,0.2,1), color 200ms;
}
.carousel-arrow:hover { border-color: var(--web-accent); color: var(--web-text); }
.carousel-arrow:disabled { opacity: 0.35; cursor: default; }
.carousel-arrow:disabled:hover { border-color: var(--web-border); color: var(--web-text-secondary); }

/* ── CTA button with crown ── */
@keyframes crown-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes ring-breathe {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(1.12); opacity: 0.6; }
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  background: var(--web-accent); color: #fff; text-decoration: none;
  border: none; border-radius: 999px; padding: 8px 24px 8px 8px;
  white-space: nowrap; cursor: pointer;
  animation: cta-glow 3s cubic-bezier(0.65,0,0.35,1) infinite;
  transition: background 300ms cubic-bezier(0.2,0.7,0.2,1);
}
.cta-btn:hover { background: var(--web-accent-hover); }
.cta-btn--lg { font-size: 15px; padding: 10px 28px 10px 10px; }
.cta-crown {
  position: relative; width: 34px; height: 34px; flex: none;
  border-radius: 999px; background: rgba(11,23,41,0.32);
  display: flex; align-items: center; justify-content: center;
}
.cta-btn--lg .cta-crown { width: 38px; height: 38px; }
.cta-crown img { height: 15px; width: auto; display: block; }
.cta-ring {
  position: absolute; inset: -1px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.65); pointer-events: none;
  animation: ring-breathe 3.2s cubic-bezier(0.65,0,0.35,1) infinite;
}
.cta-btn.in-view .cta-crown img { animation: crown-spin 750ms cubic-bezier(0.2,0.7,0.2,1); }
.cta-btn.in-view .cta-ring { animation: ring-pulse 900ms cubic-bezier(0.2,0.7,0.2,1) 1, ring-breathe 3.2s cubic-bezier(0.65,0,0.35,1) 1.1s infinite; }
.cta-btn:hover .cta-crown img, .cta-btn.in-view:hover .cta-crown img { animation: crown-flip 1100ms linear infinite; }
.play-ring { animation: ring-breathe 3.6s cubic-bezier(0.65,0,0.35,1) infinite; }

/* ── FAQ accordion animation ── */
.faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 320ms cubic-bezier(0.2,0.7,0.2,1); }
.faq-body.open { grid-template-rows: 1fr; }
.faq-body > div { overflow: hidden; }

/* ── mega menu entrance ── */
@keyframes menu-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.mega-in { animation: menu-in 240ms cubic-bezier(0.2,0.7,0.2,1); }

/* ── logo marquee ── */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; gap: clamp(52px, 6.5vw, 96px); width: max-content; animation: marquee 42s linear infinite; }
.marquee-logo { opacity: 0.66; }

/* Paragraphs/list items with no explicit colour must inherit the themed (light) colour,
   not fall back to the design-system's dark base text colour on navy. Inline colours still win. */
.theme-web-dark p, .theme-web-dark li { color: inherit; }

/* ── horizontal service carousel ── */
.hs-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
.hs-track::-webkit-scrollbar { display: none; }
.hs-track > * { scroll-snap-align: start; flex: 0 0 auto; }
.hs-mask { -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
.hs-dots { display: flex; gap: 0; align-items: center; justify-content: center; }
.hs-dot { width: 24px; height: 24px; padding: 0; border: 0; background: transparent; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.hs-dot::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: rgba(180,187,201,0.32); transition: background 200ms ease, width 200ms ease; }
.hs-dot:hover::before { background: rgba(180,187,201,0.6); }
.hs-dot.is-active::before { width: 24px; background: var(--web-accent); }
.svc-card { position: relative; display: block; width: clamp(280px, 27vw, 380px); aspect-ratio: 3/4; border-radius: 10px; overflow: hidden; text-decoration: none; background: #0D1B30; }
.svc-card img.svc-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(0.2,0.7,0.2,1); }
.svc-card:hover img.svc-photo { transform: scale(1.04); }
.svc-arrow { position: absolute; left: 20px; bottom: 20px; width: 44px; height: 44px; border-radius: 999px; background: var(--web-accent); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(8px); transition: opacity 220ms ease, transform 220ms ease, background 160ms ease; }
.svc-card:hover .svc-arrow { opacity: 1; transform: translateY(0); }
.svc-card:hover .svc-arrow { background: var(--web-accent-hover); }

/* ── card lift ── */
.lift-card { transition: transform 260ms cubic-bezier(0.2,0.7,0.2,1), border-color 260ms, background 260ms; }
.lift-card:hover { transform: translateY(-4px); border-color: var(--web-text-secondary) !important; }

/* ── placeholder media tile — tone-on-tone double-E geometry ── */
.media-tile {
  background: var(--web-surface);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 20px;
  min-height: 220px;
}
.media-tile svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.media-tile .cap {
  position: relative; z-index: 1;
  font-family: var(--font-mono); font-size: 11px; color: var(--web-text-secondary);
  text-transform: uppercase; letter-spacing: 0.18em;
}

/* ── booking form ── */
.f-label {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--font-body); font-weight: 500; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--web-text-secondary);
}
.f-req { color: var(--web-accent); font-size: 13px; line-height: 1; }
.f-input {
  width: 100%; box-sizing: border-box;
  background: rgba(20, 37, 63, 0.55);
  border: 1px solid var(--web-border); border-radius: 4px;
  padding: 13px 16px;
  font-family: var(--font-body); font-size: 15px; color: var(--web-text);
  transition: border-color 200ms cubic-bezier(0.2,0.7,0.2,1), background 200ms;
}
.f-input::placeholder { color: var(--web-text-muted); }
.f-input:focus { outline: none; border-color: var(--web-accent); background: rgba(20, 37, 63, 0.85); }
.f-input--err { border-color: var(--web-accent); }
textarea.f-input { resize: vertical; min-height: 110px; line-height: 1.55; }
.f-err {
  font-family: var(--font-body); font-size: 12.5px; color: var(--web-text-secondary);
}
.f-err::before { content: "— "; color: var(--web-accent); font-weight: 700; }

/* ── CTA glow + crown flip ── */
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 14px rgba(217,38,58,0.28), 0 0 30px rgba(217,38,58,0.14); }
  50% { box-shadow: 0 0 22px rgba(217,38,58,0.52), 0 0 46px rgba(217,38,58,0.26); }
}
@keyframes crown-flip { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }
.cta-glow { animation: cta-glow 3s cubic-bezier(0.65,0,0.35,1) infinite; }
.btn-crown { height: 15px; width: auto; aspect-ratio: 330 / 409; display: block; flex: none; }
.cta-glow:hover .btn-crown { animation: crown-flip 1100ms linear infinite; }

/* ── hero v2: pill buttons ── */
.btn-arrow { display: inline-block; transition: transform 200ms cubic-bezier(0.2,0.7,0.2,1); }
.btn-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  border-radius: 999px; padding: 16px 30px;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background 300ms cubic-bezier(0.2,0.7,0.2,1), border-color 300ms, color 300ms;
}
.btn-pill--solid { background: var(--web-accent); color: #fff; border: 1px solid transparent; }
.btn-pill--solid:hover { background: var(--web-accent-hover); }
.btn-pill--solid:hover .btn-arrow { transform: translateX(4px); }
.btn-pill--ghost { background: transparent; border: 1px solid var(--web-border); color: var(--web-text-secondary); }
.btn-pill--ghost:hover { border-color: var(--web-text); color: var(--web-text); }

/* ── hero v2: entrance + kinetic word ── */
@keyframes rise-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.rise { animation: rise-in 340ms cubic-bezier(0.2,0.7,0.2,1) both; }
@keyframes word-in { from { transform: translateY(0.72em); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes word-out { from { transform: none; opacity: 1; } to { transform: translateY(-1em); opacity: 0; } }

/* ── hero v2: client name marquee ── */
@keyframes hero-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.hero-strip { border-top: 1px solid var(--web-border); overflow: hidden; }
.hero-strip-track { display: flex; align-items: center; width: max-content; padding: 17px 0; animation: hero-marquee 30s linear infinite; }
.hero-strip:hover .hero-strip-track { animation-play-state: paused; }
.hero-client {
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--web-text-muted); white-space: nowrap;
}
.hero-sep { color: var(--web-text-muted); font-size: 12px; line-height: 1; padding: 0 26px; }

@media (prefers-reduced-motion: reduce) {
  .rise { animation: none; }
  .hero-strip-track, .marquee-track { animation: none; }
  .cta-glow, .cta-btn { animation: none; }
}

/* ── mobile (390px mockup pages) ── */
.m-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60; height: 64px;
  display: flex; align-items: center;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background 300ms ease-out, border-color 300ms ease-out;
}
.m-header.is-scrolled {
  background: rgba(11, 23, 41, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.m-burger {
  width: 44px; height: 44px; flex: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.m-burger span { display: block; width: 20px; height: 1.5px; background: var(--web-text); }
.m-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  color: #fff; background: var(--web-accent); text-decoration: none;
  border-radius: 999px; white-space: nowrap; overflow: hidden;
  max-width: 0; padding: 8px 0; opacity: 0; transform: translateX(10px);
  transition: max-width 300ms ease-out, padding 300ms ease-out, opacity 300ms ease-out, transform 300ms ease-out, background 200ms;
}
.m-header.is-scrolled .m-cta { max-width: 170px; padding: 8px 16px; opacity: 1; transform: none; }
.m-cta:hover { background: var(--web-accent-hover); }
@keyframes m-menu-in { from { opacity: 0; } to { opacity: 1; } }
.m-menu {
  position: fixed; inset: 0; z-index: 70; background: var(--web-bg);
  display: flex; flex-direction: column; overflow-y: auto;
  animation: m-menu-in 220ms cubic-bezier(0.2,0.7,0.2,1);
}
.m-menu a { text-decoration: none; }
@keyframes m-item-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.m-menu .mi { animation: m-item-in 260ms cubic-bezier(0.2,0.7,0.2,1) both; }
@media (prefers-reduced-motion: reduce) {
  .m-menu, .m-menu .mi { animation: none; }
}

/* ── Mobile fixes: heroes served from desktop pages ── */
@media (max-width: 720px) {
  .hero-sec { min-height: auto !important; }
  .hero-sec .container { padding-top: 40px !important; padding-bottom: 48px !important; }
  .hero-h1 { font-size: clamp(32px, 9.7vw, 38px) !important; }
  .hero-ctas { flex-wrap: wrap !important; }
  .hero-ctas .btn-pill { flex: 1 1 auto; justify-content: center; text-align: center; }
  .booking-grid { grid-template-columns: 1fr !important; }
}

/* ── Responsive collapse fixes (must come after the .row-2 base rule) ── */
@media (max-width: 940px) {
  .row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .grid-collapse { grid-template-columns: 1fr !important; }
}

/* ── GHL form loading skeleton (shows until the iframe paints) ── */
.form-shell { position: relative; }
.form-shell::before {
  content: "Loading form\2026";
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--web-text-muted);
  background: linear-gradient(100deg, #0D1B30 40%, #16263F 50%, #0D1B30 60%) 0 0 / 200% 100%;
  animation: form-shimmer 1.6s linear infinite;
}
.form-shell iframe { position: relative; z-index: 1; }
@keyframes form-shimmer { to { background-position: -200% 0; } }

/* ── two-row logo marquee ── */
@keyframes marquee-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.marquee-track--rev { animation-name: marquee-rev; animation-duration: 42s; }
@media (prefers-reduced-motion: reduce) { .marquee-track--rev { animation: none; } }

/* ── a11y: lift muted text to >=4.5:1 on the dark background (WCAG AA) ── */
.theme-web-dark { --web-text-muted: #74829C; --web-accent-soft: #F4636B; }
