@font-face{font-family:'Geist';font-weight:300 800;font-display:swap;src:url('/fonts/geist.woff2') format('woff2')}@font-face{font-family:'Geist Mono';font-weight:400 600;font-display:swap;src:url('/fonts/geist-mono.woff2') format('woff2')}
:root {
  --brand-primary: #3060B0;
  --brand-accent: #C8202A;
  --ink: #0a0a0a;
  --ink-soft: #1f1f1f;
  --mute: #555;
  --line: rgba(10,10,10,0.08);
  --bg: #ffffff;
  --soft-bg: #f5f6f8;
  color-scheme: light;
}
* { box-sizing: border-box; }
html, body { background: var(--bg); margin: 0; padding: 0; }
body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-feature-settings: 'ss01', 'cv11';
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--brand-primary); outline-offset: 3px; border-radius: 4px; }
.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; }
.container { width: min(1200px, 100% - 48px); margin: 0 auto; }
.section-eyebrow { font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; color: var(--mute); letter-spacing: 0.04em; text-transform: uppercase; }

/* === GLASS PILL NAV (G20) === */
.site-nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 24px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 9999px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 0 0 1px rgba(10,10,10,0.04), 0 8px 24px -8px rgba(10,10,10,0.12), 0 20px 40px -16px rgba(10,10,10,0.1);
  z-index: 100;
  max-width: calc(100% - 32px);
}
.site-nav .nav-logo img { height: 30px; width: auto; }
.site-nav .nav-links { display: flex; gap: 4px; list-style: none; padding: 0; margin: 0; }
.site-nav .nav-links a { padding: 8px 14px; border-radius: 9999px; font-size: 14px; font-weight: 500; color: var(--ink-soft); transition: background .15s; }
.site-nav .nav-links a:hover, .site-nav .nav-links a[aria-current="page"] { background: rgba(10,10,10,0.06); color: var(--ink); }
.site-nav .nav-contact-btn { padding: 9px 18px; border-radius: 9999px; background: var(--brand-primary); color: #fff !important; font-weight: 600; font-size: 14px; transition: background .15s; }
.site-nav .nav-contact-btn:hover { background: #244c8e; }
/* mobile open toggle — witness 2-line icon in a round tap target */
.nav-toggle { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 9999px; background: transparent; color: var(--ink); border: 0; cursor: pointer; transition: background .2s; flex-shrink: 0; }
.nav-toggle:hover, .nav-toggle:focus-visible { background: rgba(10,10,10,0.06); }
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .line { stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
@media (max-width: 880px) {
  .site-nav { gap: 12px; padding: 8px 12px 8px 16px; }
  .site-nav .nav-links { display: none; }
  .site-nav .nav-contact-btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* === MOBILE MENU (witness-the-fitness style) === */
.mobile-menu { position: fixed; inset: 0; z-index: 999; background: #fff; display: flex; flex-direction: column; opacity: 0; pointer-events: none; transition: opacity .3s cubic-bezier(.16,1,.3,1); }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); flex-shrink: 0; }
.mobile-menu-logo img { height: 34px; width: auto; }
.mobile-menu-close { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 9999px; background: var(--soft-bg); color: var(--ink); border: 0; cursor: pointer; transition: background .2s; }
.mobile-menu-close:hover { background: rgba(10,10,10,0.08); }
.mobile-menu-close svg { width: 15px; height: 15px; }
.mobile-menu-body { flex: 1; display: flex; flex-direction: column; padding: 26px 22px 24px; overflow-y: auto; }
.mobile-menu-links { display: flex; flex-direction: column; list-style: none; margin: 0 0 28px; padding: 0; }
.mobile-menu-links li { border-bottom: 1px solid var(--line); }
.mobile-menu-links li:first-child { border-top: 1px solid var(--line); }
.mobile-menu-links a { display: flex; align-items: center; justify-content: space-between; padding: 19px 4px; font-size: 28px; font-weight: 700; letter-spacing: -0.03em; color: var(--ink); line-height: 1; transition: padding .25s, color .2s; }
.mobile-menu-links a .idx { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--mute); font-weight: 400; letter-spacing: 0.04em; }
.mobile-menu-links a:hover, .mobile-menu-links a[aria-current="page"] { padding-left: 10px; color: var(--brand-primary); }
.mobile-menu-foot { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }
.mobile-menu-cta { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-radius: 12px; background: var(--soft-bg); border: 1px solid var(--line); color: var(--ink); font-weight: 500; transition: background .2s, transform .15s; }
.mobile-menu-cta.primary { background: var(--brand-primary); color: #fff; border-color: #244c8e; }
.mobile-menu-cta:not(.primary):hover { background: #eef1f6; }
.mobile-menu-cta.primary:hover { background: #244c8e; }
.mobile-menu-cta .l { display: flex; flex-direction: column; gap: 3px; }
.mobile-menu-cta .t { font-size: 15px; font-weight: 600; }
.mobile-menu-cta .s { font-size: 11px; color: var(--mute); letter-spacing: 0.02em; }
.mobile-menu-cta.primary .s { color: rgba(255,255,255,0.72); }
.mobile-menu-cta svg { width: 14px; height: 14px; opacity: .7; flex-shrink: 0; }
@media (min-width: 881px) { .mobile-menu { display: none; } }
body.menu-open { overflow: hidden; }

/* === DESKTOP NAV BAR (7-star-cleaning style) ===
   On desktop the centered glass pill becomes a full-width frosted top bar: logo flush-left,
   uppercase letter-spaced links, a solid CTA on the right. Mobile (<=880px) is deliberately
   untouched — the base .site-nav pill above + the mobile @media block still drive the mobile nav. */
@media (min-width: 881px) {
  .site-nav {
    top: 0; left: 0; right: 0; transform: none;
    width: auto; max-width: none; height: 68px;
    gap: 0; justify-content: space-between;
    padding: 0 max(28px, calc((100% - 1200px) / 2));
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 0; border-bottom: 1px solid var(--line);
    border-radius: 0; box-shadow: none;
  }
  .site-nav .nav-logo img { height: 34px; }
  .site-nav .nav-links { gap: 30px; }
  .site-nav .nav-links a {
    padding: 0; background: none; border-radius: 0;
    font-size: 13px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--ink-soft); transition: color .2s;
  }
  .site-nav .nav-links a:hover,
  .site-nav .nav-links a[aria-current="page"] { background: none; color: var(--ink); }
  .site-nav .nav-contact-btn {
    border-radius: 6px; padding: 12px 22px;
    font-size: 12.5px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase;
    transition: background .15s, transform .2s;
  }
  .site-nav .nav-contact-btn:hover { transform: translateY(-2px); }
}

/* === HERO (full-bleed photo, glass nav floats over) === */
.hero {
  position: relative; min-height: min(720px, 100vh); margin-top: 0; padding-top: 0;
  overflow: hidden; isolation: isolate; color: #fff;
  display: flex; align-items: flex-end;
}
.hero picture, .hero img.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: -2;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  /* Diagonal scrim — heavy on the bottom-left where the headline + stats sit, transparent
     on the upper-right so the smashing-concrete + branded truck side pops. Plus a soft
     bottom band for stat-strip legibility. */
  background:
    linear-gradient(100deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.42) 28%, rgba(0,0,0,0.12) 55%, rgba(0,0,0,0) 75%),
    linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.45) 100%);
}
@media (max-width: 768px) {
  /* On mobile the hero shows the night-time motion-blur image — already dark, only a
     light bottom band needed behind the headline + stats. Default object-position
     (center) keeps the branded side + light trails in frame. */
  .hero picture, .hero img.hero-photo { object-position: center; }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.35) 70%, rgba(0,0,0,0.6) 100%);
  }
}
.hero-content { padding: 120px 0 80px; }
.hero-eyebrow { font-family: 'Geist Mono', ui-monospace, monospace; font-size: 13px; color: rgba(255,255,255,0.85); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.hero h1 { max-width: 820px; font-size: clamp(40px, 7vw, 110px); line-height: 0.98; margin: 0 0 24px;
  font-weight: 800; letter-spacing: -0.025em; text-wrap: balance;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4);
}
.hero h1 .accent { color: #fff; font-weight: 500; text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.55); }
.hero-sub { font-size: clamp(16px, 1.6vw, 20px); max-width: 560px; color: #fff; font-weight: 500; line-height: 1.5; text-shadow: 0 2px 12px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.5); margin: 0 0 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary, .btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: 9999px; font-weight: 600; font-size: 15px; transition: transform .15s, background .15s; cursor: pointer; border: 0; }
.btn-primary { color: #fff; padding: 14px 18px 14px 26px;
  background: linear-gradient(135deg, #3a6fc4 0%, var(--brand-primary) 55%, #244c8e 100%);
  border: 1px solid rgba(36,76,142,0.5);
  box-shadow: 0 1px 0 rgba(255,255,255,0.26) inset, 0 10px 22px -8px rgba(48,96,176,0.5), 0 2px 6px -2px rgba(10,10,10,0.18);
  transition: transform .15s, box-shadow .2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.32) inset, 0 18px 34px -10px rgba(48,96,176,0.58), 0 4px 10px -2px rgba(10,10,10,0.2); }
.btn-secondary { background: rgba(255,255,255,0.18); color: #fff; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.4); }
.btn-secondary:hover { background: rgba(255,255,255,0.28); }
.hero-stats { margin-top: 48px; display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat { color: rgba(255,255,255,0.95); }
.hero-stat .num { display: block; font-size: clamp(22px, 2.4vw, 32px); font-weight: 700; }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.7); }

/* Mobile: darken hero overlay so text reads cleanly over the bright truck/logo */
@media (max-width: 880px) {
  .hero::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.9) 100%);
  }
  .hero h1 { font-size: clamp(52px, 13vw, 72px); line-height: 0.95; text-shadow: 0 2px 18px rgba(0,0,0,0.75), 0 1px 4px rgba(0,0,0,0.65); }
  .hero-sub { color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,0.75), 0 1px 3px rgba(0,0,0,0.65); }
  .hero-eyebrow { color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.7); }
  .hero-stat { text-shadow: 0 1px 6px rgba(0,0,0,0.7); }
  .hero-stat .label { color: rgba(255,255,255,0.9); }
}

/* === GOOGLE REVIEWS CAROUSEL (G4) === */
.reviews { padding: 96px 0; background: #fff; }
.reviews-header { max-width: 720px; margin-bottom: 32px; }
.reviews-headline { font-size: clamp(40px, 5vw, 80px); line-height: 1.0; margin: 16px 0 24px; }
.reviews-headline .ink { color: var(--ink); font-weight: 700; }
.reviews-headline .mute { color: #9a9a9a; font-weight: 300; }
.reviews-sub { color: var(--mute); max-width: 560px; }
.reviews-summary-card { display: flex; align-items: center; gap: 16px; padding: 20px 24px; border: 1px solid var(--line); border-radius: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.reviews-summary-card .g-logo { width: 36px; height: 36px; }
.reviews-summary-card .summary-rating { flex: 1; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.reviews-summary-card .rating-num { font-size: 32px; font-weight: 700; }
.reviews-summary-card .stars { color: #fbbc04; font-size: 18px; letter-spacing: 1px; }
.reviews-summary-card .reviews-meta { color: var(--mute); font-size: 14px; margin-left: auto; }
.see-all-pill { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border: 1px solid rgba(10,10,10,0.12); border-radius: 9999px; font-size: 14px; color: var(--ink); }
.see-all-pill:hover { background: rgba(10,10,10,0.04); }

.reviews-carousel {
  overflow: hidden; position: relative; padding-bottom: 16px;
  mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}
.reviews-track { display: flex; width: max-content; animation: reviews-marquee 90s linear infinite; will-change: transform; }
.reviews-track:hover, .reviews-track:focus-within { animation-play-state: paused; }
@keyframes reviews-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .reviews-track { animation: none; } }
.review-card { flex: 0 0 380px; width: 380px; margin-right: 16px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; box-shadow: 0 1px 2px rgba(10,10,10,0.04); }
.review-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.review-head .avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; font-size: 14px; flex-shrink: 0; }
.review-meta { flex: 1; display: flex; flex-direction: column; }
.reviewer-name { font-size: 15px; font-weight: 600; }
.review-time { font-size: 13px; color: var(--mute); }
.review-head .card-g-logo { width: 18px; height: 18px; flex-shrink: 0; }
.stars-row { color: #fbbc04; margin-bottom: 12px; letter-spacing: 1px; }
.review-text { color: var(--ink-soft); line-height: 1.6; font-size: 14px; margin: 0; }
@media (max-width: 640px) {
  .review-card { flex: 0 0 calc(100vw - 64px); width: calc(100vw - 64px); }
  .reviews-track { animation-duration: 110s; }
}

/* === MOBILE STICKY CTA (G8) === */
.mobile-sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; display: flex; height: 60px; z-index: 200; box-shadow: 0 -4px 14px rgba(0,0,0,0.14); }
.mobile-sticky-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; font-weight: 600; font-size: 16px; }
.mobile-sticky-cta .mobile-cta-call { background: var(--brand-primary); color: #fff; }
.mobile-sticky-cta .mobile-cta-book { background: #0a0a0a; color: #fff; }
@media (min-width: 880px) { .mobile-sticky-cta { display: none; } }
/* Clear the fixed 60px bar so it never covers the footer bottom on mobile */
@media (max-width: 879.98px) { body { padding-bottom: 60px; } }

/* === SECTIONS === */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-soft { background: var(--soft-bg); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark .section-eyebrow { color: rgba(255,255,255,0.6); }
h2.section-headline { font-size: clamp(32px, 4vw, 64px); line-height: 1.05; margin: 16px 0 24px; font-weight: 700; letter-spacing: -0.02em; max-width: 760px; }
h2.section-headline .mute { color: #9a9a9a; font-weight: 300; }
.section-dark h2.section-headline .mute { color: rgba(255,255,255,0.45); }
p.section-sub { color: var(--mute); max-width: 560px; font-size: 17px; }

/* === FEATURE GRID === */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
.feature { padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.feature .feat-eyebrow { font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--brand-primary); letter-spacing: 0.04em; }
.feature h3 { font-size: 22px; margin: 12px 0 12px; line-height: 1.2; font-weight: 600; }
.feature p { color: var(--mute); margin: 0; font-size: 15px; line-height: 1.55; }
.section-dark .feature { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.section-dark .feature p { color: rgba(255,255,255,0.7); }

/* === STEPS — animated connected timeline (scroll-reveal) === */
.steps { position: relative; margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.steps::before { content: ''; position: absolute; top: 27px; left: 8%; right: 8%; height: 2px; z-index: 0;
  background: linear-gradient(90deg, var(--brand-primary) 0%, rgba(48,96,176,0.55) 60%, rgba(48,96,176,0.12) 100%);
  transform: scaleX(0); transform-origin: left center; transition: transform .9s cubic-bezier(.16,1,.3,1) .1s; }
.steps.in::before { transform: scaleX(1); }
.step { position: relative; z-index: 1; opacity: 0; transform: translateY(26px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.step.in { opacity: 1; transform: none; }
.step:nth-child(1) { transition-delay: .05s; } .step:nth-child(2) { transition-delay: .15s; }
.step:nth-child(3) { transition-delay: .25s; } .step:nth-child(4) { transition-delay: .35s; } .step:nth-child(5) { transition-delay: .45s; }
.step-node { width: 56px; height: 56px; border-radius: 9999px; background: #fff; border: 2px solid var(--brand-primary); color: var(--brand-primary);
  display: flex; align-items: center; justify-content: center; font-family: 'Geist Mono', monospace; font-weight: 600; font-size: 18px;
  margin-bottom: 22px; box-shadow: 0 8px 20px -8px rgba(48,96,176,0.45); transition: transform .28s cubic-bezier(.16,1,.3,1), background .28s, color .28s, box-shadow .28s; }
.step:hover .step-node { transform: translateY(-4px) scale(1.06); background: var(--brand-primary); color: #fff; box-shadow: 0 14px 28px -10px rgba(48,96,176,0.6); }
.step h3 { font-size: 19px; font-weight: 700; line-height: 1.22; margin: 0 0 10px; letter-spacing: -0.01em; }
.step p { font-size: 14.5px; line-height: 1.62; color: var(--mute); margin: 0; }
.section-dark .step-node { background: rgba(255,255,255,0.06); }
.section-dark .step p { color: rgba(255,255,255,0.7); }
@media (prefers-reduced-motion: reduce) {
  .step, .steps::before { transition: none; }
  .step { opacity: 1; transform: none; } .steps::before { transform: none; }
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 0; margin-top: 44px; }
  .steps::before { left: 27px; right: auto; top: 8px; bottom: 8px; width: 2px; height: auto;
    background: linear-gradient(180deg, var(--brand-primary), rgba(48,96,176,0.12)); transform: scaleY(0); transform-origin: top center; }
  .steps.in::before { transform: scaleY(1); }
  .step { padding-left: 78px; min-height: 56px; padding-bottom: 34px; }
  .step:last-child { padding-bottom: 0; }
  .step-node { position: absolute; left: 0; top: 0; margin-bottom: 0; }
}

/* === SUB-BRAND BAR === */
.subbrand-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 64px; border-radius: 20px; overflow: hidden; }
.subbrand-cell { padding: 48px 32px; color: #fff; display: flex; flex-direction: column; gap: 20px; min-height: 240px; justify-content: space-between; }
.subbrand-cell.blue { background: var(--brand-primary); }
.subbrand-cell.dark { background: #0a0a0a; }
.subbrand-cell.red { background: var(--brand-accent); }
.subbrand-cell.grey { background: #5e6573; }
.subbrand-cell h3 { font-size: clamp(24px, 2vw, 32px); margin: 0; line-height: 1.15; font-weight: 700; }
.subbrand-cell p { margin: 0; font-size: 15px; opacity: 0.85; line-height: 1.5; }
.subbrand-cell .btn { align-self: flex-start; padding: 12px 24px; border-radius: 9999px; font-weight: 600; font-size: 14px; background: rgba(255,255,255,0.95); color: var(--ink); }
.subbrand-cell .btn:hover { background: #fff; }
@media (max-width: 880px) { .subbrand-bar { grid-template-columns: 1fr; } }

/* === LOCATIONS GRID === */
.locations-region { margin-bottom: 48px; }
.locations-region h3 { font-size: 22px; margin: 0 0 16px; font-weight: 600; }
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.location-pill { padding: 16px 20px; border: 1px solid var(--line); border-radius: 12px; background: #fff; transition: border-color .15s, transform .15s; display: flex; flex-direction: column; gap: 4px; }
.location-pill:hover { border-color: var(--brand-primary); transform: translateY(-1px); }
.location-pill .name { font-weight: 600; color: var(--ink); }
.location-pill .post { font-size: 13px; color: var(--mute); font-family: 'Geist Mono', monospace; }

/* === FAQ ACCORDION === */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 880px; margin-top: 32px; }
.faq-item { border-top: 1px solid var(--line); padding: 24px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: clamp(17px, 1.3vw, 20px); list-style: none; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.faq-item summary::after { content: '+'; font-weight: 300; font-size: 26px; line-height: 1; flex-shrink: 0; transition: transform .2s; color: var(--brand-primary); }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer { padding-top: 16px; }
.faq-answer p { color: var(--ink-soft); line-height: 1.65; font-size: 16px; margin: 0 0 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* === CTA BAND — floating image pill (sits on a white band, rounded card with a
   branded photo behind a dark-blue scrim) === */
.cta-band { padding: 40px 0 88px; background: #fff; color: #fff; }
.cta-band .cta-grid {
  position: relative; overflow: hidden; border-radius: 28px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  padding: 60px 56px;
  background-image:
    linear-gradient(100deg, rgba(12,26,54,0.92) 0%, rgba(16,34,68,0.82) 38%, rgba(22,46,92,0.62) 66%, rgba(30,62,120,0.42) 100%),
    url("/img/etr-ocean.jpg");
  background-size: cover; background-position: 32% center; background-repeat: no-repeat;
  box-shadow: 0 30px 60px -28px rgba(10,10,10,0.45), 0 2px 6px -2px rgba(10,10,10,0.12);
}
.cta-band h2 { font-size: clamp(30px, 3.6vw, 52px); margin: 0; line-height: 1.05; font-weight: 700; max-width: 680px; text-shadow: 0 2px 14px rgba(0,0,0,0.45); }
.cta-band .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 26px; border-radius: 9999px; font-weight: 600; transition: transform .15s, box-shadow .2s, background .2s; }
.cta-band .btn-white { background: #fff; color: var(--brand-primary); padding: 13px 16px 13px 26px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 12px 26px -10px rgba(0,0,0,0.5); }
.cta-band .btn-white:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 18px 32px -10px rgba(0,0,0,0.55); }
.cta-band .btn-white .cta-arrow { background: rgba(48,96,176,0.14); }
.cta-band .btn-white:hover .cta-arrow { background: rgba(48,96,176,0.22); transform: translateX(3px); }
.cta-band .btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
@media (max-width: 880px) {
  .cta-band { padding: 8px 0 72px; }
  .cta-band .cta-grid { grid-template-columns: 1fr; padding: 40px 28px; border-radius: 22px; gap: 24px; }
}

/* === New primary-CTA treatment — gradient + glow + circular sliding arrow === */
.cta-arrow { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.2); flex-shrink: 0; transition: transform .18s, background .18s; }
.cta-arrow svg { width: 14px; height: 14px; display: block; }
.btn-primary:hover .cta-arrow { transform: translateX(3px); background: rgba(255,255,255,0.32); }

/* === FOOTER === */
.site-footer { background: #0a0a0a; color: rgba(255,255,255,0.85); padding: 64px 0 28px; margin-top: 0; }
.site-footer .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr 1fr; gap: 28px; margin-bottom: 48px; }
.site-footer .footer-brand img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.site-footer .footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; max-width: 320px; line-height: 1.55; }
.site-footer h4 { font-size: 13px; font-family: 'Geist Mono', monospace; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); margin: 0 0 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer ul a { color: rgba(255,255,255,0.85); font-size: 14px; }
.site-footer ul a:hover { color: #fff; text-decoration: underline; }
.site-footer .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.6); }
.site-footer .footer-credit a { color: rgba(255,255,255,0.85); text-decoration: underline; }
.site-footer .nap-block { color: rgba(255,255,255,0.85); font-style: normal; line-height: 1.6; font-size: 14px; }
@media (max-width: 1180px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px; } .site-footer .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 720px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 480px) { .site-footer .footer-grid { grid-template-columns: 1fr; } }

/* === Bottom padding so the sticky CTA never overlaps content === */

/* === CONTACT PAGE LAYOUT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* === MISC === */
.text-section { max-width: 720px; }
.text-section p { color: var(--ink-soft); font-size: 17px; line-height: 1.65; margin: 0 0 16px; }
.text-section h2 { font-size: clamp(28px, 3vw, 44px); margin: 32px 0 16px; line-height: 1.15; font-weight: 700; }
.text-section h3 { font-size: clamp(20px, 2vw, 26px); margin: 24px 0 12px; font-weight: 600; }
.lead { font-size: clamp(20px, 1.8vw, 24px); color: var(--ink-soft); line-height: 1.55; margin: 0 0 24px; font-weight: 500; }

/* === CONTACT FORM === */
.contact-form { display: grid; gap: 16px; max-width: 600px; }
.contact-form label { display: flex; flex-direction: column; font-size: 13px; color: var(--mute); font-weight: 500; gap: 6px; }
.contact-form input, .contact-form textarea, .contact-form select { padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; font-family: inherit; font-size: 16px; background: #fff; color: var(--ink); resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: 0; border-color: var(--brand-primary); box-shadow: 0 0 0 3px rgba(48, 96, 176, 0.15); }
.contact-form .contact-submit { padding: 16px 32px; border: 0; border-radius: 9999px; background: var(--brand-primary); color: #fff; font-weight: 700; font-size: 16px; cursor: pointer; align-self: flex-start; }
.contact-form .contact-submit:hover { background: #244c8e; }
.contact-disclaimer { font-size: 13px; color: var(--mute); }

/* === MOBILE: collapse inline-styled multi-column grids to single column === */
@media (max-width: 880px) {
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  /* Disable sticky sidebars on mobile — they cause headings to float over content when columns collapse */
  [style*="position:sticky"], [style*="position: sticky"] {
    position: static !important;
    top: auto !important;
  }
}

/* Locations hero (smaller than home hero) */
.page-hero { background: var(--ink); color: #fff; padding: 160px 0 80px; }
.page-hero .eyebrow { font-family: 'Geist Mono', monospace; font-size: 13px; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; text-transform: uppercase; }
.page-hero h1 { font-size: clamp(40px, 6vw, 88px); line-height: 1.0; margin: 16px 0 24px; font-weight: 800; letter-spacing: -0.02em; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: clamp(16px, 1.5vw, 19px); max-width: 640px; margin: 0; line-height: 1.55; }

/* Photo hero — used on About, Truck Size, Locations, Booking */
.photo-hero { position: relative; width: 100%; min-height: 460px; overflow: hidden; background: #0a0a0a; display: flex; flex-direction: column; justify-content: flex-end; }
.photo-hero picture, .photo-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.5) 45%, rgba(10,10,10,0.78) 100%); pointer-events: none; }
.photo-hero .container { position: relative; z-index: 2; padding-bottom: 56px; padding-top: 120px; }
.photo-hero .eyebrow { font-family: 'Geist Mono', monospace; font-size: 13px; color: rgba(255,255,255,0.85); letter-spacing: 0.06em; text-transform: uppercase; text-shadow: 0 1px 6px rgba(0,0,0,0.55); }
.photo-hero h1 { font-size: clamp(40px, 6vw, 88px); line-height: 1.0; margin: 16px 0 20px; font-weight: 800; letter-spacing: -0.02em; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,0.45); }
.photo-hero p { color: rgba(255,255,255,0.92); font-size: clamp(16px, 1.5vw, 19px); max-width: 640px; margin: 0; line-height: 1.55; text-shadow: 0 1px 6px rgba(0,0,0,0.55); }
@media (max-width: 768px) { .photo-hero { min-height: 380px; } .photo-hero .container { padding-bottom: 36px; padding-top: 100px; } }
@media (max-width: 480px) { .photo-hero { min-height: 340px; } }

/* === BOOKING SECTION (RCM iframe) === */
.section-book {
  background:
    radial-gradient(900px 420px at 85% 0%, rgba(48,96,176,0.10), transparent 70%),
    radial-gradient(700px 360px at 10% 100%, rgba(48,96,176,0.06), transparent 70%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}
.booking-frame {
  margin-top: 40px;
  padding: 14px;
  border: 1px solid rgba(48,96,176,0.14);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 24px 60px -24px rgba(48,96,176,0.28),
    0 8px 24px -8px rgba(10,10,10,0.08);
}
.booking-frame iframe { display: block; width: 100%; border: 0; min-height: 780px; border-radius: 12px; }
@media (max-width: 880px) {
  .booking-frame { margin-top: 24px; padding: 10px; border-radius: 18px; }
  .booking-frame iframe { min-height: 780px; border-radius: 10px; }
}

/* === BRANCH BOOKING (right-column iframe on location pages) === */
.branch-info-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.branch-booking { position: sticky; top: 96px; }
.branch-booking-frame {
  position: relative;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 24px rgba(15,30,60,0.08);
}
.branch-booking-frame iframe { width: 100%; height: 780px; border: 0; border-radius: 8px; display: block; }
@media (max-width: 1023px) {
  .branch-info-grid { grid-template-columns: 1fr; gap: 40px; }
  .branch-booking { position: static; }
  .branch-booking-frame { padding: 10px; }
  .branch-booking-frame iframe { height: 720px; }
}
@media (max-width: 600px) {
  .branch-booking-frame iframe { height: 680px; }
}

/* Deals ticker — thin clickable marquee band under the hero */
.deals-ticker {
  display: block;
  position: relative;
  background: linear-gradient(90deg, #24488a 0%, var(--brand-primary) 55%, #24488a 100%);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  padding: 13px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
  transition: filter .25s ease;
}
.deals-ticker:hover { filter: brightness(1.12); }
.deals-ticker:focus-visible { outline: 3px solid #fff; outline-offset: -3px; -webkit-mask-image: none; mask-image: none; }
.deals-ticker-track {
  display: flex;
  width: max-content;
  animation: dt-scroll 36s linear infinite;
}
.deals-ticker:hover .deals-ticker-track { animation-play-state: paused; }
.dt-group {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 0 0 auto;
  padding-right: 28px;
  white-space: nowrap;
}
.dt-chip {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #fff;
  color: var(--brand-primary);
  border-radius: 999px;
  padding: 4px 12px;
  flex: 0 0 auto;
}
.dt-item {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(255,255,255,.92);
  flex: 0 0 auto;
}
.dt-item strong { font-weight: 700; color: #fff; }
.dt-per { font-size: 12px; color: rgba(255,255,255,.65); }
.dt-arrow { display: inline-block; margin-left: 8px; transition: transform .25s ease; }
.deals-ticker:hover .dt-arrow { transform: translateX(4px); }
.dt-sep {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  flex: 0 0 auto;
}
@keyframes dt-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .deals-ticker-track { animation: none; }
  .deals-ticker { -webkit-mask-image: none; mask-image: none; }
}
@media (max-width: 768px) {
  .deals-ticker { padding: 11px 0; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%); }
  .deals-ticker-track { animation-duration: 26s; }
  .dt-group { gap: 20px; padding-right: 20px; }
  .dt-item { font-size: 13.5px; }
}

.post-featured{display:block;width:100%;height:auto;max-height:420px;object-fit:cover;border-radius:14px;margin:0 0 28px;border:1px solid var(--line);}
