:root {
  --bg: #F5F3EF;
  --surface: #FFFFFF;
  --text: #242220;
  --muted: #66625B;
  --primary: #0F6E56;
  --primary-text: #F5F3EF;
  --accent: #8C3D22;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Work Sans', sans-serif;
  --radius: 10px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; color: var(--text); }
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: .75em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: .8em 1.4em;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.13); }
.btn--primary { background: var(--primary); color: var(--primary-text); }
.btn--ghost { background: transparent; border-color: currentColor; }
.btn--small { padding: .5em 1em; font-size: .9rem; }
.btn--large { padding: 1em 1.8em; font-size: 1.05rem; }

/* ============================================================
   HAMBURGER
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: inherit;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .22s ease, opacity .22s ease;
}
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HEADER — base + topbar/transparent (fallback)
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 10; background: var(--surface); border-bottom: 1px solid rgba(128,128,128,.15); }
.header--transparent { position: absolute; width: 100%; background: transparent; border: none; }
.header--transparent .brand, .header--transparent .nav-link { color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.4); }
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: .5rem; }
.brand-logo { max-height: 60px; width: auto; }
.brand-text { display: inline-block; }
.nav { display: flex; gap: 1.4rem; margin-left: auto; flex-wrap: wrap; align-items: center; }
.nav-link { text-decoration: none; font-size: .95rem; opacity: .85; transition: opacity .12s; }
.nav-link.active, .nav-link:hover { opacity: 1; border-bottom: 2px solid var(--primary); padding-bottom: 1px; }
.header-cta { flex-shrink: 0; }

/* stacked variant */
.header--stacked { text-align: center; }
.header-inner--stacked { flex-direction: column; gap: .6rem; padding-bottom: .6rem; }
.header--stacked .nav { margin-left: 0; justify-content: center; }
.header--stacked .brand { font-size: 1.6rem; }
.header--stacked .brand-logo { max-height: 120px; }
.header-stacked-cta { display: block; text-align: center; border-radius: 0; padding: .6em; background: var(--accent); color: #fff; text-decoration: none; font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; }
.hero--bleed {
  min-height: 78vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.hero-bleed-inner { max-width: var(--max); margin: 0 auto; padding: 4rem 1.5rem; }
.hero--bleed .eyebrow { color: rgba(255,255,255,.8); }
.hero--bleed h1 { color: #fff; }
.hero-rating { margin-bottom: 1.2em; font-size: .95rem; }
.hero-tagline { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--muted); margin: 0 0 1em; max-width: 40ch; }
.hero--bleed .hero-tagline { color: rgba(255,255,255,.88); }
.stars { color: var(--accent); letter-spacing: .05em; }

.hero--split {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-media img, .hero-media-placeholder { border-radius: var(--radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--surface); }
.hero-media-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; color: var(--primary); }
.hero-media-placeholder svg { width: 72px; height: 72px; }
.hero-media-placeholder span { font-size: .85rem; color: var(--muted); letter-spacing: .03em; }
.hero--bleed-no-photo { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); }
.gallery-empty-state { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.25rem; padding: 3rem 1.5rem; background: var(--surface); border-radius: var(--radius); }
.gallery-empty-state svg { width: 80px; height: 80px; color: var(--primary); }
.gallery-empty-state p { color: var(--muted); max-width: 36ch; margin: 0; }
.hero-sub { color: var(--muted); max-width: 40ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { max-width: var(--max); margin: 0 auto; padding: var(--section-pad, 4rem) 1.5rem; }
.section h2 { margin-bottom: 1em; }

/* About */
.about-inner { display: flex; gap: 3rem; flex-wrap: wrap; align-items: flex-start; }
.about-copy { flex: 2; min-width: 260px; }
.about-facts { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 1.2rem; }
.fact { display: flex; flex-direction: column; padding: 1rem; background: var(--surface); border-radius: var(--radius); }
.fact-value { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.2; }
.fact-value--long { font-family: var(--font-body); font-size: .88rem; line-height: 1.5; }
.fact-label { color: var(--muted); font-size: .82rem; margin-top: .25rem; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.4rem;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  border-color: var(--primary);
}
.service-price { display: inline-block; margin-top: .6em; color: var(--primary); font-weight: 700; }
.services-viewall { margin-top: 1.5rem; }

/* Menu */
.menu-group { margin-bottom: 2rem; }
.menu-items { list-style: none; margin: 0; padding: 0; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: .2rem 1rem; padding: .8rem 0; border-bottom: 1px dashed rgba(128,128,128,.3); }
.menu-item-name { font-weight: 600; }
.menu-item-desc { grid-column: 1; color: var(--muted); font-size: .9rem; }
.menu-item-price { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--primary); font-weight: 700; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .8rem; }
.gallery-grid img { border-radius: var(--radius); width: 100%; height: 220px; object-fit: cover; }
.gallery-grid--masonry { grid-template-rows: masonry; }
.gallery-grid--masonry img:nth-child(3n+1) { height: 300px; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.review-card { background: var(--surface); border-radius: var(--radius); padding: 1.4rem; }
.review-author { display: block; margin-top: .8em; color: var(--muted); font-size: .9rem; }
.quote-stack { display: flex; flex-direction: column; gap: 1.6rem; }
.quote { margin: 0; border-left: 3px solid var(--primary); padding-left: 1.2rem; }
.quote footer { margin-top: .6em; color: var(--muted); font-size: .9rem; }

/* CTA — full primary-colour band so it pops from surrounding sections */
.section.cta {
  text-align: center;
  background: var(--primary);
  color: var(--primary-text);
  border-radius: var(--radius);
}
.cta h2 { color: var(--primary-text); margin-bottom: .4em; }
.cta p { color: var(--primary-text); opacity: .85; margin-bottom: 1.4em; }
.cta .btn--primary { background: var(--primary-text); color: var(--primary); }
.cta .btn--ghost { border-color: var(--primary-text); color: var(--primary-text); }
.cta .hero-actions { justify-content: center; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-label { font-size: .88rem; font-weight: 600; color: var(--text); letter-spacing: .01em; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; max-width: 480px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .75em 1em;
  border-radius: var(--radius);
  border: 1px solid rgba(128,128,128,.35);
  background: var(--surface);
  color: var(--text);
  width: 100%;
  transition: border-color .15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--primary); outline: none; }
.form-status { color: var(--accent); min-height: 1.2em; font-size: .9rem; font-weight: 600; }
.form-row { display: flex; gap: .8rem; flex-wrap: wrap; }
.form-row .form-group { flex: 1; min-width: 140px; }
.form-disclaimer {
  max-width: 480px;
  color: var(--muted);
  font-size: .82rem;
  font-style: italic;
  padding: .75rem 1rem;
  border: 1px dashed rgba(128,128,128,.28);
  border-radius: var(--radius);
  margin-top: .25rem;
}

/* Contact layout */
.contact-grid { display: flex; gap: 3rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.contact-info, .contact-hours { flex: 1; min-width: 220px; }
.contact-line { margin-bottom: .5em; }
.social-links a { margin-right: 1rem; }
.hours-row { display: flex; justify-content: space-between; padding: .3rem 0; border-bottom: 1px dashed rgba(128,128,128,.25); }

/* Transaction embed */
.transaction-embed { text-align: center; }
.transaction-embed--link p { color: var(--muted); }
.embed-widget { max-width: 640px; margin: 0 auto; }

/* ============================================================
   AVAILABILITY / CALENDAR SECTION
   ============================================================ */
.availability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: .75rem;
  margin-bottom: 2rem;
}
.availability-day {
  background: var(--surface);
  border-radius: var(--radius);
  padding: .9rem .75rem;
  text-align: center;
  border-top: 3px solid var(--accent);
}
.availability-day--closed { opacity: .38; border-top-color: rgba(128,128,128,.25); }
.availability-day-name { font-weight: 700; font-size: .82rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; }
.availability-day-time { font-size: .8rem; color: var(--muted); margin-top: .3rem; line-height: 1.35; }
.calendar-link-out {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(128,128,128,.15);
}
.calendar-link-out p { color: var(--muted); margin-bottom: 1.2rem; }
.calendar-embed-wrapper { max-width: 720px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; }
.calendar-tier-note {
  padding: 1.1rem 1.4rem;
  background: var(--surface);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}
.calendar-tier-note strong { color: var(--text); display: block; margin-bottom: .2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid rgba(128,128,128,.15); padding: 2rem 1.5rem; text-align: center; color: var(--muted); font-size: .9rem; }
.footer-inner { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: .5em; }
.footer-note { margin: 0; font-size: .8rem; }

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-page { max-width: 740px; }
.privacy-page h3 { font-size: 1.15rem; margin-top: 1.8em; margin-bottom: .4em; }
.privacy-page h4 { font-size: .95rem; font-weight: 700; margin-top: 1.2em; margin-bottom: .25em; color: var(--text); }
.privacy-page ul { padding-left: 1.4em; margin-bottom: 1em; }
.privacy-page ul li { margin-bottom: .35em; line-height: 1.5; }
.privacy-rule { border: none; border-top: 1px solid rgba(128,128,128,.18); margin: 1.8rem 0; }
.privacy-footer-note { color: var(--muted); font-size: .85rem; font-style: italic; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw-steps { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 1.5rem; }
.hiw-step { display: flex; gap: 1.5rem; align-items: flex-start; }
.hiw-number { font-size: 2rem; font-weight: 800; color: var(--primary); opacity: .25; line-height: 1; min-width: 2.5rem; }
.hiw-title { font-size: 1.1rem; font-weight: 700; margin-bottom: .3rem; }
.hiw-desc { color: var(--muted); line-height: 1.6; margin: 0; }
@media (min-width: 640px) {
  .hiw-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
  .hiw-step { flex-direction: column; gap: .75rem; }
  .hiw-number { font-size: 2.5rem; }
}

/* ============================================================
   404 PAGE
   ============================================================ */
.not-found-page { text-align: center; padding: 5rem 1.5rem; }
.not-found-inner { max-width: 480px; margin: 0 auto; }
.not-found-code { font-size: clamp(5rem, 18vw, 9rem); font-weight: 800; line-height: 1; color: var(--primary); opacity: .18; margin-bottom: -.5rem; }
.not-found-page h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: .75rem; }
.not-found-page p { color: var(--muted); margin-bottom: 1.75rem; }
.not-found-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.not-found-phone { font-size: .95rem; color: var(--muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 720px) {
  .hero--split { grid-template-columns: 1fr; }
  .header-inner { gap: .75rem; }

  /* Make brand take available space so CTA+hamburger sit right */
  .brand { flex: 1; min-width: 0; }
  .brand-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 180px; }

  /* Hamburger visible on mobile */
  .hamburger { display: flex; }

  /* Nav hidden by default, toggled by JS */
  .nav {
    display: none;
    order: 10;
    width: 100%;
    flex-direction: column;
    margin-left: 0;
    padding: .5rem 0 .75rem;
    gap: 0;
  }
  .nav.nav--open { display: flex; }
  .nav-link {
    padding: .55rem 0;
    opacity: 1;
    border-bottom: 1px solid rgba(128,128,128,.12);
    border-top: none;
  }
  .nav-link:last-of-type { border-bottom: none; }
  .nav-link.active, .nav-link:hover { border-bottom-width: 2px; border-bottom-color: var(--primary); padding-bottom: calc(.55rem - 1px); }

  /* Inline CTA that lives inside nav on some variants — show it full-width */
  .nav .btn--small { margin-top: .5rem; display: block; text-align: center; }

  /* side-nav collapses to a top bar */
  .header--side-nav {
    position: static;
    width: auto;
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    padding: 1rem 1.5rem;
    gap: .75rem;
  }
  body.has-side-nav { padding-left: 0; }
  .header--side-nav .nav--vertical {
    display: none;
    order: 10;
    width: 100%;
    flex-direction: column;
    padding: .5rem 0;
    gap: 0;
  }
  .header--side-nav .nav--vertical.nav--open { display: flex; }

  /* stacked: switch from column to row on mobile */
  .header--stacked .header-inner--stacked { flex-direction: row; flex-wrap: wrap; gap: .75rem; align-items: center; }
  .header--stacked .brand { font-size: 1.3rem; flex: 1; }
  .header--stacked .nav { justify-content: flex-start; }

  /* bold-wordmark: column → row on mobile */
  .header--bold-wordmark .header-inner--wordmark { flex-direction: row; flex-wrap: wrap; align-items: center; gap: .75rem; }
  .header--bold-wordmark .brand--oversized { font-size: 1.3rem; flex: 1; }

  /* ribbon: hide utility bar on small screens */
  .ribbon-utility { display: none; }

  /* pill-nav: pills expand to full-width rows like regular nav */
  .nav--pill { background: none; border-radius: 0; padding: 0; }
  .nav--pill .nav-link { border-radius: 0; padding: .55rem 0; border-bottom: 1px solid rgba(128,128,128,.12) !important; }
  .nav--pill .nav-link.active { background: none; color: var(--primary); padding-bottom: calc(.55rem - 1px); }

  /* footer grids: single column */
  .footer-hours-grid, .footer-map-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-map-info { text-align: center; }
  .footer-mega-inner { grid-template-columns: 1fr 1fr; }

  /* availability: tighter columns */
  .availability-grid { grid-template-columns: repeat(auto-fit, minmax(88px, 1fr)); gap: .5rem; }

  /* form rows stack */
  .form-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; box-shadow: none; }
  .service-card:hover { transform: none; box-shadow: none; }
  .hamburger-bar { transition: none; }
}

/* ============================================================
   HEADER STYLES (7 additional — topbar/stacked/transparent above)
   ============================================================ */

.header--split-bordered { border-bottom: 2px solid var(--primary); }
.nav--split { gap: 2rem; }

.header--side-nav {
  position: fixed; top: 0; left: 0; bottom: 0; width: 220px;
  background: var(--surface); border-right: 1px solid rgba(128,128,128,.15);
  display: flex; flex-direction: column; gap: 2rem; padding: 2rem 1.5rem;
  z-index: 10; overflow-y: auto;
}
.nav--vertical { display: flex; flex-direction: column; gap: 1rem; margin-left: 0; }
body.has-side-nav { padding-left: 220px; }

.header--bold-wordmark { padding: 1.5rem 0; }
.header-inner--wordmark { flex-direction: column; align-items: flex-start; gap: .8rem; }
.brand--oversized { font-size: clamp(2rem, 5vw, 3rem); }
.nav--compact { gap: 1rem; align-items: center; }

.header--glass {
  position: absolute; width: 100%; background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.header--glass .brand, .header--glass .nav-link { color: #fff; }

/* underline-accent: uses page bg (not transparent) so text is always legible */
.header--underline-accent { background: var(--bg); border-bottom: 3px solid var(--accent); box-shadow: none; }

.header--boxed-framed { background: transparent; border: none; padding: 1rem 1.5rem 0; }
.header-frame {
  background: var(--surface); border-radius: var(--radius);
  padding: 1rem 1.5rem; max-width: var(--max); margin: 0 auto;
  box-shadow: 0 2px 14px rgba(0,0,0,.08);
}

.header--icon-compact { padding: .6rem 0; }
.header-inner--compact { gap: 1rem; }
.brand--compact { font-size: 1.05rem; }
.nav--condensed { gap: 1rem; font-size: .85rem; }

/* ribbon: thin utility strip above main nav */
.header--ribbon { padding: 0; }
.ribbon-utility {
  background: var(--primary);
  color: var(--primary-text);
  font-size: .8rem;
  padding: .35rem 1.5rem;
}
.ribbon-utility-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  align-items: center;
}
.ribbon-utility a { color: var(--primary-text); text-decoration: none; opacity: .9; }
.ribbon-utility a:hover { opacity: 1; }
.ribbon-main .header-inner { padding: .75rem 1.5rem; }

/* pill-nav: capsule-shaped nav links */
.header--pill-nav { background: var(--bg); }
.nav--pill { background: var(--surface); border-radius: 99px; padding: .3rem; gap: .15rem; }
.nav--pill .nav-link {
  padding: .38em .9em;
  border-radius: 99px;
  font-size: .9rem;
  border-bottom: none !important;
  opacity: 1;
  transition: background .14s ease, color .14s ease;
}
.nav--pill .nav-link:hover { background: var(--bg); opacity: 1; padding-bottom: .38em; }
.nav--pill .nav-link.active { background: var(--primary); color: var(--primary-text); padding-bottom: .38em; }

/* ============================================================
   FOOTER STYLES (9 additional — simple-bar is the default)
   ============================================================ */

.footer--multi-column { text-align: left; padding: 3rem 1.5rem 1.5rem; }
.footer-columns { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; text-align: left; }
.footer-col h4 { font-family: var(--font-display); margin-bottom: .6em; }
.footer-col a, .footer-col p { display: block; margin-bottom: .4em; color: var(--muted); text-decoration: none; }
.footer--multi-column .footer-note { text-align: center; margin-top: 2rem; }

.footer--cta-band { background: var(--primary); color: var(--primary-text); border: none; padding: 4rem 1.5rem; }
.footer-cta-inner { max-width: 560px; margin: 0 auto; }
.footer--cta-band h3 { color: var(--primary-text); }
.footer--cta-band .footer-note { color: var(--primary-text); opacity: .8; }

.footer--map { text-align: left; }
.footer-map-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.footer-map-placeholder { background: var(--surface); border-radius: var(--radius); aspect-ratio: 16/9; }
.footer-map-info p, .footer-map-info a { color: var(--muted); }

.footer--minimal-line { display: flex; justify-content: space-between; padding: 1.2rem 1.5rem; flex-wrap: wrap; gap: .5rem; }
.footer--minimal-line .footer-note { margin: 0; }

.footer--newsletter { text-align: left; }
.footer-newsletter-inner {
  max-width: var(--max); margin: 0 auto 1.5rem; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem; background: var(--surface); border-radius: var(--radius); padding: 1.5rem;
}
.footer-newsletter-form { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }
.footer-newsletter-form input { padding: .7em 1em; border-radius: var(--radius); border: 1px solid rgba(128,128,128,.35); background: var(--bg); color: var(--text); font-family: var(--font-body); }

.footer--split { text-align: left; }
.footer-split-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-split-brand p { color: var(--muted); margin: .3em 0 0; }
.footer-split-links { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.footer-split-links a { color: var(--muted); text-decoration: none; }

.footer--inverted-dark { background: #14120F; color: #F2ECE1; border: none; }
.footer--inverted-dark .footer-note { color: #A8A093; }

.footer--hours-focused { text-align: left; }
.footer-hours-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-hours-table { background: var(--surface); border-radius: var(--radius); padding: 1.2rem 1.5rem; }
.footer-hours-table h4 { margin-bottom: .6em; }

.footer--social-trust { text-align: center; }
.footer-trust-inner h4 { margin-bottom: .4em; }
.footer-trust-rating { margin-bottom: .8em; }
.footer-social-icons a { margin: 0 .6rem; text-decoration: none; color: var(--primary); font-weight: 600; }

/* mega-footer: four-column comprehensive grid */
.footer--mega { text-align: left; padding: 3.5rem 1.5rem 1.5rem; }
.footer-mega-inner {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-mega-brand h4 { margin-bottom: .35em; }
.footer-mega-brand p { color: var(--muted); font-size: .9rem; margin: 0; }
.footer-mega-brand img { margin-bottom: .6rem; }
.footer-mega-col h4 {
  margin-bottom: .6em;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.footer-mega-col a,
.footer-mega-col p { display: block; margin-bottom: .4em; color: var(--muted); text-decoration: none; font-size: .9rem; }
.footer-mega-col a:hover { color: var(--text); }
.footer-mega-col .hours-row { border-bottom-color: rgba(128,128,128,.15); font-size: .88rem; }
.footer--mega .footer-note { text-align: center; max-width: var(--max); margin: 0 auto; }

/* branded-minimal: centered logo, tagline, phone */
.footer--branded-minimal { padding: 3rem 1.5rem 2rem; text-align: center; }
.footer-brand-minimal { display: flex; flex-direction: column; align-items: center; gap: .5rem; margin-bottom: 1.5rem; }
.footer-brand-logo { max-height: 52px; width: auto; margin: 0 auto .2rem; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; }
.footer-brand-tagline { color: var(--muted); font-size: .95rem; margin: 0; }
.footer-brand-phone { font-size: 1.1rem; font-weight: 700; color: var(--primary); text-decoration: none; margin-top: .25rem; }
.footer-brand-phone:hover { opacity: .8; }

/* ============================================================
   BODY LAYOUT STYLES
   ============================================================ */

.page-body--banded .section:nth-of-type(even) {
  background: var(--surface);
  margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%);
  padding-left: max(1.5rem, calc(50vw - 50% + 1.5rem));
  padding-right: max(1.5rem, calc(50vw - 50% + 1.5rem));
  width: 100vw;
}

.page-body--full-bleed-alternating .section:nth-of-type(even) {
  background: color-mix(in srgb, var(--primary) 10%, var(--surface));
  margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%);
  padding-left: max(1.5rem, calc(50vw - 50% + 1.5rem));
  padding-right: max(1.5rem, calc(50vw - 50% + 1.5rem));
  width: 100vw;
}

.page-body--boxed-cards .section {
  background: var(--surface); border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,.08); margin: 1.5rem auto; padding: 3rem 2rem;
}
.page-body--boxed-cards .hero { border-radius: var(--radius); overflow: hidden; margin: 1.5rem; }

.page-body--asymmetric-offset .section:nth-of-type(odd) h2 { text-align: left; }
.page-body--asymmetric-offset .section:nth-of-type(even) h2 { text-align: right; }

body.page-body--dense { --section-pad: 2.2rem; }
body.page-body--dense .section h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
body.page-body--airy { --section-pad: 6rem; }
body.page-body--airy .services-grid, body.page-body--airy .review-grid { gap: 2rem; }

.page-body--wave-dividers .section:not(:last-of-type) { position: relative; }
.page-body--wave-dividers .section:not(:last-of-type)::after {
  content: ""; display: block; height: 32px; margin-top: 2rem;
  background: var(--bg); border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.page-body--bordered-sections .section { border-top: 1px solid rgba(128,128,128,.2); }
.page-body--bordered-sections .section:first-of-type { border-top: none; }

/* Sidebar layout */
.page-with-sidebar { max-width: var(--max); margin: 0 auto; padding: 2rem 1.5rem; display: flex; gap: 2.5rem; align-items: flex-start; }
.page-sidebar { flex: 0 0 260px; position: sticky; top: 90px; }
body.has-side-nav .page-sidebar { top: 1.5rem; }
.sidebar-card { background: var(--surface); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.sidebar-cta { text-align: center; }
.sidebar-hours h4 { margin-bottom: .5em; }
.page-main { flex: 1; min-width: 0; }
.page-main .section { max-width: none; margin: 0; padding: 2rem 0; }
.page-main .hero { margin: 0 0 1rem; }
/* Contain the bleed hero height inside the sidebar column */
.page-main .hero--bleed { min-height: 45vh; }

/* magazine: editorial character — accent-ruled headings, surface sections */
.page-body--magazine .section {
  background: var(--surface);
  border-bottom: 1px solid rgba(128,128,128,.1);
}
.page-body--magazine .section > h2 {
  border-left: 4px solid var(--accent);
  padding-left: .75rem;
  margin-left: -.25rem;
}
.page-body--magazine .section.cta { border-left: none; }
.page-body--magazine .section.cta h2 { border-left: none; padding-left: 0; margin-left: 0; }

/* centered-narrow: tight editorial column */
.page-body--centered-narrow .section { max-width: 780px; }
.page-body--centered-narrow .hero--split,
.page-body--centered-narrow .hero--bleed { max-width: var(--max); }

@media (max-width: 900px) {
  .page-with-sidebar { flex-direction: column; }
  .page-sidebar { position: static; width: 100%; flex: none; }
}
