: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-menu-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; color: var(--ink); border-radius: 8px; }
.mobile-menu-toggle:focus-visible { background: rgba(10,10,10,0.06); }
@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; }
  .mobile-menu-toggle { display: inline-flex; }
}
.mobile-menu { display: none; position: fixed; inset: 0; background: #fff; z-index: 999; padding: 88px 32px 40px; overflow-y: auto; flex-direction: column; gap: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu nav a { font-size: 24px; font-weight: 600; color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .contact-block { border-top: 2px solid var(--ink); padding-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu .contact-block a { color: var(--ink); font-weight: 600; }
.mobile-menu-close { position: fixed; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 9999px; background: var(--ink); color: #fff; border: 0; font-size: 22px; cursor: pointer; z-index: 1000; }
body.menu-open { overflow: hidden; }

/* === 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 { background: var(--brand-primary); color: #fff; }
.btn-primary:hover { background: #244c8e; transform: translateY(-1px); }
.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; gap: 16px; 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; 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); }
  .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; } }

/* === 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); }

/* === 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 === */
.cta-band { padding: 80px 0; background: var(--brand-primary); color: #fff; }
.cta-band .cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.cta-band h2 { font-size: clamp(32px, 4vw, 56px); margin: 0; line-height: 1.05; font-weight: 700; max-width: 720px; }
.cta-band .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn { padding: 14px 28px; border-radius: 9999px; font-weight: 600; }
.cta-band .btn-white { background: #fff; color: var(--brand-primary); }
.cta-band .btn-white:hover { background: rgba(255,255,255,0.92); }
.cta-band .btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.12); }
@media (max-width: 880px) { .cta-band .cta-grid { grid-template-columns: 1fr; } }

/* === 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 === */
@media (max-width: 880px) { body { padding-bottom: 60px; } }

/* === 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%; height: 460px; overflow: hidden; background: #0a0a0a; }
.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; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; 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 { height: 380px; } .photo-hero .container { padding-bottom: 36px; padding-top: 100px; } }
@media (max-width: 480px) { .photo-hero { 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; }
}
