/* ======================================================================
   Custom Garages Inc. — Stopgap single-page static site
   Rebrand palette (per BRAND-KIT.md §2.1 "Recommended starter"):
     Deep Navy        #1E2A38   (primary — header, hero overlay, footer, dark sections)
     Warm Brown       #8B5A3C   (secondary — accents, kicker, hover)
     Garage Yellow    #F5B82E   (CTA buttons, signal — text on yellow is ALWAYS charcoal)
     Charcoal         #2A2A2A   (body text, CTA button text)
     Cream            #F5F0E8   (page bg, cards)
   Type:
     Headlines  Oswald (300/400/500/600/700)
     Body       Cabin (400/500/600/700, italic 400/500)
   Ported from the 21-page v1 prototype's styles.css — design tokens kept,
   rendered as static semantic HTML (no React).
   ====================================================================== */

:root {
  --navy: #1E2A38;
  --navy-2: #243244;
  --navy-deep: #141d27;
  --charcoal: #2A2A2A;
  --steel: #3A3633;
  --brown: #8B5A3C;
  --brown-light: #A8714F;
  --brown-deep: #6B4329;
  --cream: #F5F0E8;
  --cream-2: #ECE4D6;
  --paper: #FBF7F0;
  --yellow: #F5B82E;
  --yellow-deep: #D99E14;
  --rule: rgba(30,42,56,0.12);
  --rule-cream: rgba(245,240,232,0.18);

  --maxw: 1240px;
  --gutter: 32px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Cabin', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--charcoal);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* anchor sections clear the sticky header */
section[id], footer[id] { scroll-margin-top: 84px; }

/* ─── Typography ──────────────────────────────────────────────────────── */
h1, h2, h3, h4, .display, .kicker {
  font-family: 'Oswald', 'Cabin', sans-serif;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0;
}
.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--brown);
}
.kicker--cream { color: var(--cream); }
.kicker--cream::before { background: var(--cream); }
.kicker--yellow { color: var(--yellow); }
.kicker--yellow::before { background: var(--yellow); }

.section-h2 {
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  font-weight: 600;
  color: var(--navy);
  text-wrap: balance;
}
.section-h2--cream { color: var(--cream); }

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.section-head--dark .section-h2 { color: var(--cream); }
.section-head--dark { color: var(--cream); }

.section-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--steel);
  margin: 0;
  text-wrap: pretty;
  max-width: 60ch;
}
.section-head--dark .section-lede { color: rgba(245,240,232,0.78); }

/* ─── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn--lg { padding: 18px 28px; font-size: 15px; }
/* Primary CTA: Garage Yellow with charcoal text — passes WCAG AA */
.btn--primary {
  background: var(--yellow);
  color: var(--charcoal);
  box-shadow: 0 1px 0 rgba(0,0,0,0.15), 0 8px 22px -8px rgba(245,184,46,0.55);
}
.btn--primary:hover { background: var(--yellow-deep); transform: translateY(-1px); color: var(--navy); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.4);
}
.btn--ghost:hover { border-color: var(--cream); }
.btn--ink {
  background: var(--navy);
  color: var(--cream);
  border: 1.5px solid var(--navy);
}
.btn--ink:hover { background: var(--navy-2); }
.btn--outline-navy {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn--outline-navy:hover { background: var(--navy); color: var(--cream); }

/* ─── Top bar ─────────────────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--cream);
}
.topbar__mark--img {
  object-fit: contain;
  width: 40px; height: 40px;
}
.topbar__name {
  font-family: 'Oswald'; font-weight: 600;
  font-size: 14px; letter-spacing: 0.18em;
}
.topbar__nav {
  display: flex; align-items: center; gap: 22px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.topbar__nav a {
  color: var(--cream); text-decoration: none; opacity: 0.78; white-space: nowrap;
}
.topbar__nav a:hover { opacity: 1; }
.topbar__phone { opacity: 1 !important; color: var(--yellow) !important; }
.topbar__cta {
  background: var(--yellow);
  color: var(--charcoal) !important;
  padding: 10px 16px;
  border-radius: var(--radius);
  opacity: 1 !important;
  font-weight: 600;
}
.topbar__cta:hover { background: var(--yellow-deep); }

/* hamburger toggle — hidden on desktop via checkbox hack */
.nav-toggle { display: none; }
.nav-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--cream); padding: 6px;
}
.nav-burger svg { display: block; }

@media (max-width: 880px) {
  .topbar__name { font-size: 12px; letter-spacing: 0.12em; }
  .nav-burger { display: inline-flex; }
  .topbar__nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: none;
  }
  .nav-toggle:checked ~ .topbar__nav { display: flex; }
  .topbar__nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    opacity: 1;
  }
  .topbar__cta { text-align: center; margin-top: 12px; border-bottom: none !important; }
}

/* ─── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 720px;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center 38%;
  filter: saturate(0.92) contrast(1.04);
  z-index: 0;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,29,39,0.55) 0%, rgba(20,29,39,0.3) 30%, rgba(20,29,39,0.9) 100%),
    linear-gradient(90deg, rgba(20,29,39,0.82) 0%, rgba(20,29,39,0.4) 50%, rgba(20,29,39,0.18) 100%);
}
.hero__inner {
  position: relative; z-index: 3;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 90px var(--gutter) 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.hero__eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--yellow);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  font-weight: 500;
}
.hero__eyebrow-dot {
  width: 8px; height: 8px; background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245,184,46,0.2);
}
.hero__h1 {
  font-size: clamp(44px, 6.8vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
  text-wrap: balance;
}
.hero__h1 em {
  font-style: italic;
  font-family: 'Cabin', serif;
  font-weight: 500;
  color: var(--yellow);
}
.hero__sub {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(245,240,232,0.85);
  max-width: 60ch;
  margin: 0;
}
.hero__cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 6px;
}
.hero__strip {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  border-top: 1px solid rgba(245,240,232,0.18);
  padding-top: 22px;
}
.hero__strip > div {
  display: flex; flex-direction: column; gap: 4px;
  padding-right: 20px;
  border-right: 1px solid rgba(245,240,232,0.14);
}
.hero__strip > div:last-child { border-right: none; }
.hero__strip b {
  font-family: 'Oswald'; font-size: 18px; letter-spacing: 0.02em;
  color: var(--cream); font-weight: 600;
}
.hero__strip span {
  font-size: 13px; color: rgba(245,240,232,0.6);
}

@media (max-width: 700px) {
  .hero { min-height: 560px; }
  .hero__inner { padding: 48px 22px 40px; }
  .hero__h1 { font-size: 44px; }
  .hero__sub { font-size: 16px; }
  .hero__strip { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero__strip > div { border-right: none; padding: 0; }
}

/* ─── Use cases / service cards ───────────────────────────────────────── */
.cases {
  background: var(--paper);
  padding: 110px var(--gutter);
}
.cases__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.case {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
.case:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -22px rgba(30,42,56,0.22); }
.case__photo {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--navy);
  overflow: hidden;
}
.case__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.case:hover .case__photo img { transform: scale(1.04); }
.case__body {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.case__num {
  font-family: 'Oswald', sans-serif;
  font-size: 13px; letter-spacing: 0.16em;
  color: var(--brown); font-weight: 600;
}
.case__title {
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--navy);
}
.case__copy {
  font-size: 15.5px; line-height: 1.6; color: var(--steel); margin: 0;
  text-wrap: pretty;
}
.case__chips {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.case__chips li {
  font-family: 'Oswald'; font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--cream-2);
  color: var(--navy);
  padding: 5px 10px;
  border-radius: 3px;
  font-weight: 500;
}
.cases__cta {
  margin: 56px auto 0;
  text-align: center;
  display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.cases__cta-sub { color: var(--steel); font-size: 14px; }
.cases__cta-sub a { color: var(--navy); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--rule); }

@media (max-width: 700px) {
  .cases { padding: 64px 18px; }
  .cases__grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ─── Process ─────────────────────────────────────────────────────────── */
.proc {
  background: var(--navy);
  color: var(--cream);
  padding: 110px var(--gutter);
  position: relative;
}
.proc::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 4px; background: var(--yellow);
}
.proc__list {
  list-style: none; padding: 0; margin: 0 auto;
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.proc__step {
  padding: 36px 28px 0;
  border-left: 1px solid var(--rule-cream);
  display: flex; flex-direction: column; gap: 14px;
}
.proc__step:first-child { border-left: none; padding-left: 0; }
.proc__n {
  font-family: 'Oswald'; font-size: 64px; line-height: 1;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: -0.02em;
}
.proc__title {
  font-size: 28px;
  font-family: 'Oswald';
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.proc__body {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(245,240,232,0.78);
  margin: 0;
}
.proc__cta { text-align: center; margin-top: 64px; }

@media (max-width: 700px) {
  .proc { padding: 64px 18px; }
  .proc__list { grid-template-columns: 1fr; gap: 8px; }
  .proc__step { border-left: none; border-top: 1px solid var(--rule-cream); padding: 24px 0 0; }
  .proc__step:first-child { border-top: none; }
  .proc__n { font-size: 44px; }
}

/* ─── Portfolio ───────────────────────────────────────────────────────── */
.port {
  background: var(--cream);
  padding: 110px var(--gutter);
}
.port__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 232px;
  gap: 14px;
}
.port__tile {
  position: relative; margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--navy);
}
.port__tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .3s ease;
  filter: saturate(0.95);
}
.port__tile:hover img { transform: scale(1.05); filter: saturate(1.05); }
.port__tile figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(30,42,56,0.85));
  color: var(--cream);
  font-family: 'Oswald';
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.port__tile-cat {
  position: absolute; top: 10px; left: 10px;
  background: var(--yellow); color: var(--charcoal);
  font-family: 'Oswald'; font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 8px; border-radius: 3px;
  font-weight: 600;
}
/* Mosaic feature tile — 2x2 hero, top-left. On a 3-col grid this fills cleanly:
   feature (cols1-2, rows1-2) + two stacked tiles (col3) + three across the bottom row. No empty cells. */
.port__tile--0 { grid-column: span 2; grid-row: span 2; }
.port__cta { text-align: center; margin-top: 56px; }

/* Finish swatches inside portfolio */
.finishes__head { max-width: var(--maxw); margin: 72px auto 28px; text-align: center; }
.finishes__head .section-h2 { font-size: clamp(26px, 3vw, 40px); }
.finishes__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
.finish {
  background: #fff; border: 1px solid var(--rule); border-radius: 6px;
  overflow: hidden; display: flex; flex-direction: column;
}
.finish__swatch { aspect-ratio: 1/1; background: var(--cream-2); }
.finish__swatch img { width: 100%; height: 100%; object-fit: cover; }
.finish__name {
  padding: 12px 14px; font-family: 'Oswald';
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); font-weight: 600;
}

@media (max-width: 700px) {
  .port { padding: 64px 18px; }
  .port__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 8px; }
  .port__tile--0 { grid-column: span 1; grid-row: span 1; }
  .finishes__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Why us / about ──────────────────────────────────────────────────── */
.why {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 110px var(--gutter);
}
.why__head {
  max-width: var(--maxw);
  margin: 0 auto 48px;
  display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
}
.why__lede { font-size: 17px; line-height: 1.6; color: rgba(245,240,232,0.78); margin: 0; max-width: 62ch; }
.why__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-cream);
}
.why__cell {
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--rule-cream);
  display: flex; flex-direction: column; gap: 10px;
}
.why__cell:last-child { border-right: none; }
.why__stat {
  font-family: 'Oswald'; font-size: 28px; font-weight: 600;
  color: var(--yellow); letter-spacing: -0.01em;
}
.why__label {
  font-size: 15px; color: rgba(245,240,232,0.78); line-height: 1.55;
}

@media (max-width: 700px) {
  .why { padding: 56px 18px; }
  .why__grid { grid-template-columns: 1fr; }
  .why__cell { border-right: none; border-bottom: 1px solid var(--rule-cream); padding: 22px 0; }
  .why__cell:last-child { border-bottom: none; }
}

/* ─── Testimonials ────────────────────────────────────────────────────── */
.quotes {
  background: var(--paper);
  padding: 110px var(--gutter);
}
.quotes__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 32px 30px;
  display: flex; flex-direction: column; gap: 18px;
  margin: 0;
}
.quote__mark { color: var(--brown); flex-shrink: 0; }
.quote blockquote {
  font-family: 'Cabin', serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--navy);
  margin: 0;
  font-weight: 500;
  text-wrap: pretty;
}
.quote figcaption {
  display: flex; flex-direction: column; gap: 2px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.quote figcaption strong {
  font-family: 'Oswald';
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--navy);
  font-weight: 600;
}
.quote figcaption span {
  font-size: 13px;
  color: var(--steel);
}

@media (max-width: 880px) {
  .quotes { padding: 56px 18px; }
  .quotes__grid { grid-template-columns: 1fr; }
}

/* ─── About prose intro ──────────────────────────────────────────────── */
.about-intro {
  background: var(--paper);
  padding: 96px var(--gutter) 0;
}
.about-intro__inner {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 18px; text-align: center; align-items: center;
}
.about-intro__lede { font-size: 19px; line-height: 1.65; color: var(--charcoal); margin: 0; }
@media (max-width: 700px) { .about-intro { padding: 56px 18px 0; } }

/* ─── Contact form ───────────────────────────────────────────────────── */
.contact {
  background: var(--cream);
  padding: 110px var(--gutter);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: var(--maxw);
  margin: 0 auto;
  align-items: start;
}
.contact__col-l { display: flex; flex-direction: column; gap: 18px; }
.contact__lede { font-size: 16px; color: var(--steel); line-height: 1.55; margin: 0; }
.contact__bullets {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 15px;
}
.contact__bullets li::before {
  content: "→"; color: var(--brown); margin-right: 8px; font-weight: 700;
}
.contact__bullets a { color: var(--navy); border-bottom: 1px solid var(--rule); text-decoration: none; }
.contact__form {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.contact__form label {
  display: flex; flex-direction: column; gap: 6px;
  font-family: 'Oswald';
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 500;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  font-family: 'Cabin', sans-serif;
  font-size: 15px;
  padding: 11px 12px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper);
  color: var(--navy);
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus { outline: 2px solid var(--brown); border-color: var(--brown); }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact__note {
  font-size: 12px; color: var(--steel); margin: 4px 0 0;
  font-style: italic; opacity: 0.7;
}
.contact__status {
  display: none;
  padding: 12px 14px; border-radius: 4px;
  font-size: 14px; line-height: 1.45;
}
.contact__status.is-ok { display: block; background: rgba(74,164,133,0.14); color: #1f6b52; border: 1px solid rgba(74,164,133,0.4); }
.contact__status.is-err { display: block; background: rgba(200,60,40,0.1); color: #9a2c1c; border: 1px solid rgba(200,60,40,0.3); }
/* honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

@media (max-width: 880px) {
  .contact { padding: 56px 18px; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── Scheduler ───────────────────────────────────────────────────────── */
.sched {
  background: var(--paper);
  padding: 96px var(--gutter);
}
.sched__head {
  max-width: 760px;
  margin: 0 auto 40px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: center; text-align: center;
}
.sched__h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-weight: 600;
  color: var(--navy);
  text-wrap: balance;
}
.sched__sub {
  font-size: 17px; color: var(--steel); margin: 0; line-height: 1.55;
  max-width: 60ch;
}
.sched__frame {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(30,42,56,0.25);
}
.sched__frame iframe { display: block; width: 100%; border: 0; }
.sched__fallback {
  padding: 14px 22px;
  border-top: 1px solid var(--rule);
  background: var(--cream-2);
  font-size: 14px;
  color: var(--steel);
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  justify-content: center;
}
.sched__fallback a { color: var(--brown-deep); font-weight: 600; }
@media (max-width: 700px) { .sched { padding: 56px 18px; } }

/* ─── Footer ─────────────────────────────────────────────────────────── */
.foot {
  background: var(--navy);
  color: var(--cream);
  padding: 64px var(--gutter) 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1fr;
  gap: 36px;
  align-items: start;
}
.foot__brand { display: flex; gap: 14px; align-items: center; }
.foot__mark--img {
  object-fit: contain;
  width: 56px; height: 56px;
}
.foot__name {
  font-family: 'Oswald'; font-weight: 600;
  letter-spacing: 0.14em; font-size: 14px;
}
.foot__tag {
  font-size: 13px; color: rgba(245,240,232,0.6); margin-top: 4px;
}
.foot__col h4 {
  font-family: 'Oswald'; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--yellow);
  margin: 0 0 12px;
  font-weight: 500;
}
.foot__col p {
  font-size: 14px; line-height: 1.55; color: rgba(245,240,232,0.78); margin: 0;
}
.foot__col a { color: var(--cream); text-decoration: none; border-bottom: 1px solid var(--rule-cream); }
.foot__col a:hover { color: var(--yellow); border-bottom-color: var(--yellow); }
.foot__cta {
  align-self: center;
  background: var(--yellow);
  color: var(--charcoal);
  padding: 14px 18px;
  border-radius: 4px;
  font-family: 'Oswald';
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.foot__cta:hover { background: var(--yellow-deep); }
.foot__legal {
  grid-column: 1 / -1;
  border-top: 1px solid var(--rule-cream);
  padding-top: 24px;
  font-size: 12px;
  color: rgba(245,240,232,0.4);
}
.foot__legal a { color: rgba(245,240,232,0.55); text-decoration: none; }
.foot__legal a:hover { color: var(--yellow); }

@media (max-width: 880px) {
  .foot {
    grid-template-columns: 1fr 1fr;
    padding: 48px 18px 24px;
    gap: 24px;
  }
}
@media (max-width: 540px) {
  .foot { grid-template-columns: 1fr; }
}

/* ─── Sticky bottom CTA ──────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  box-shadow: 0 14px 36px -10px rgba(0,0,0,0.5);
  padding: 6px;
  display: flex;
  width: min(calc(100% - 28px), 480px);
}
.sticky-cta__inner {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
}
.sticky-cta__phone {
  flex: 1;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  color: var(--cream);
  text-decoration: none;
  font-family: 'Cabin';
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
}
.sticky-cta__phone:hover { background: rgba(255,255,255,0.05); }
.sticky-cta__phone-num { white-space: nowrap; }
.sticky-cta__book {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow);
  color: var(--charcoal);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'Oswald';
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sticky-cta__book:hover { background: var(--yellow-deep); }

/* leave room for sticky bar */
body { padding-bottom: 80px; }
