/* ==========================================================================
   Thor's Barbershop — SITE DESIGN SYSTEM v2.1 "The Shop Sign"
   Brand-aligned to the Thor's logo: teal #194b64, cream, muted stripe.
   Shared across the homepage and all interior pages (source of truth = homepage).
   Homepage components are above; interior components are at the bottom.
   ========================================================================== */

/* ---------- Tokens (from the logo) ---------- */
:root {
  --teal: #194b64;          /* logo background */
  --teal-deep: #123a4e;
  --teal-darker: #0d2b3b;
  --ink: #101820;
  --burgundy: #84324e;      /* logo stripe red */
  --burgundy-bright: #9a3f5d;
  --steel: #4f7f99;         /* logo stripe blue */
  --cream: #f0e7d8;         /* logo lettering */
  --paper: #f7f0e3;
  --chrome: #c9cdd3;
  --muted: #6d6250;
  --muted-dark: rgba(240, 231, 216, 0.68);
  --line: rgba(16, 24, 32, 0.15);
  --line-dark: rgba(240, 231, 216, 0.18);

  --slab: 'Alfa Slab One', 'Rockwell', serif;
  --script: 'Grand Hotel', cursive;
  --sans: 'Archivo', 'Helvetica Neue', Arial, sans-serif;

  --gutter: clamp(20px, 4vw, 48px);
  --maxw: 1280px;
  --header-h: 76px;
  --ease: cubic-bezier(0.32, 0, 0.15, 1);

  --pole: repeating-linear-gradient(
    -45deg,
    var(--burgundy) 0 14px,
    var(--cream) 14px 28px,
    var(--steel) 28px 42px,
    var(--cream) 42px 56px
  );
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.1rem);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--burgundy); outline-offset: 3px; }
::selection { background: var(--teal); color: var(--cream); }
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 10px; top: -64px; z-index: 300; background: var(--ink); color: var(--cream); padding: 10px 18px; font-weight: 600; text-decoration: none; transition: top 0.2s var(--ease); }
.skip-link:focus { top: 10px; }

/* ---------- Type roles ---------- */
.sign {
  font-family: var(--slab);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: 0.015em;
}
.script { font-family: var(--script); font-weight: 400; text-transform: none; }
.label {
  font-family: var(--sans); font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.34em;
}

/* ---------- Pole ribbon ---------- */
.pole-rule { height: 8px; background: var(--pole); background-size: 80px 80px; border-radius: 2px; }
.pole-rule--thin { height: 5px; }
.js .pole-rule.is-live { animation: pole-move 16s linear infinite; }
@keyframes pole-move { from { background-position: 0 0; } to { background-position: 80px 0; } }
@media (prefers-reduced-motion: reduce) { .js .pole-rule.is-live { animation: none; } }
.pole-rail {
  position: fixed; left: 0; top: 0; bottom: 0; width: 7px; z-index: 140;
  background: var(--pole); background-size: 56px 56px; pointer-events: none;
}
.js .pole-rail { animation: pole-rail-move 26s linear infinite; }
@keyframes pole-rail-move { from { background-position: 0 0; } to { background-position: 0 56px; } }
@media (prefers-reduced-motion: reduce) { .js .pole-rail { animation: none; } }
@media (max-width: 900px) { .pole-rail { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--sans); font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.08em; text-decoration: none;
  padding: 1em 1.7em; min-height: 52px; border: 2px solid transparent;
  cursor: pointer; position: relative;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn--book { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); box-shadow: 0 4px 0 0 rgba(0,0,0,0.22); }
.btn--book:hover { background: var(--burgundy-bright); border-color: var(--burgundy-bright); transform: translateY(-2px); box-shadow: 0 6px 0 0 rgba(0,0,0,0.22); }
.btn--book:active { transform: translateY(1px); box-shadow: 0 2px 0 0 rgba(0,0,0,0.28); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(240,231,216,0.45); }
.btn--ghost:hover { border-color: var(--cream); background: rgba(240,231,216,0.08); }
.btn--ghost.on-light { color: var(--ink); border-color: rgba(16,24,32,0.35); }
.btn--ghost.on-light:hover { border-color: var(--ink); background: rgba(16,24,32,0.05); }
.btn--sm { min-height: 42px; padding: 0.6em 1.1em; font-size: 0.8rem; box-shadow: 0 3px 0 0 rgba(0,0,0,0.22); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Header (teal brand bar) ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 200; height: var(--header-h);
  display: flex; align-items: center; color: var(--cream);
  background: transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-solid { background: var(--teal); box-shadow: 0 10px 30px -18px rgba(13,43,59,0.8); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 48px; width: auto; }
/* homepage only: avoid double-branding (hero shows the big logo); interior pages always show it */
.js body.is-home .site-header .brand { opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.js body.is-home .site-header.is-solid .brand, .js body.is-home .site-header:focus-within .brand { opacity: 1; pointer-events: auto; }
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav a {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; padding: 8px 0; position: relative;
}
.nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--cream); transition: right 0.25s var(--ease); }
.nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 48px; height: 48px; background: none; border: 2px solid currentColor; cursor: pointer; align-items: center; justify-content: center; color: inherit; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ''; display: block; width: 20px; height: 2px; background: currentColor; transition: transform 0.25s var(--ease), opacity 0.2s; }
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-2px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 190; background: var(--teal); color: var(--cream);
  padding: calc(var(--header-h) + 24px) var(--gutter) 40px;
  display: flex; flex-direction: column; gap: 2px;
  transform: translateY(-102%); transition: transform 0.35s var(--ease); visibility: hidden;
  border-bottom: 8px solid transparent; border-image: var(--pole) 1;
}
.mobile-menu.is-open { transform: none; visibility: visible; }
.mobile-menu a {
  font-family: var(--slab); font-size: clamp(1.6rem, 6.4vw, 2.2rem); text-transform: uppercase;
  text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--line-dark); line-height: 1;
}
.mobile-menu .cta-row { margin-top: 26px; }
body.menu-open { overflow: hidden; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: max(92vh, 640px);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; color: var(--cream); background: var(--teal-deep);
  overflow: hidden; padding: calc(var(--header-h) + 24px) var(--gutter) 0;
}
.hero-media { position: absolute; inset: -4%; z-index: 0; will-change: transform; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(115% 90% at 50% 32%, rgba(25,75,100,0.30), rgba(18,58,78,0.66) 66%, rgba(13,43,59,0.9)),
    linear-gradient(180deg, rgba(13,43,59,0.6), rgba(13,43,59,0.1) 34%, rgba(11,32,44,0.85) 90%);
}
.hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; width: 100%; }
.hero-logo { width: min(640px, 84vw); height: auto; filter: drop-shadow(0 10px 44px rgba(0,0,0,0.45)); }
.hero-tag { margin: clamp(20px, 3vw, 30px) 0 0; font-size: clamp(1.02rem, 1.5vw, 1.25rem); font-weight: 500; color: var(--muted-dark); max-width: 38ch; }
.hero-tag strong { color: var(--cream); font-weight: 700; }
.hero .cta-row { margin-top: clamp(20px, 3vw, 30px); justify-content: center; }
.hero-strip {
  position: relative; z-index: 2; width: 100%; max-width: var(--maxw);
  margin-top: auto; padding: 18px 0 22px;
  display: flex; flex-wrap: wrap; gap: 10px 34px; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(240,231,216,0.85);
  border-top: 1px solid rgba(240,231,216,0.22);
}
.hero-strip .stars { color: var(--cream); letter-spacing: 3px; }
.hero-strip strong { font-weight: 800; color: var(--cream); }

/* ---------- Marquee (logo tagline) ---------- */
.marquee {
  overflow: hidden; background: var(--paper); border-block: 1px solid var(--line);
  padding: 14px 0; white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 0; }
.marquee span {
  font-family: var(--slab); font-size: clamp(0.95rem, 1.6vw, 1.25rem); text-transform: uppercase;
  color: var(--teal); letter-spacing: 0.14em; padding-right: 0.6em;
}
.marquee .x { color: var(--burgundy); }
.js .marquee-track { animation: marquee 30s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .js .marquee-track { animation: none; } }

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(64px, 9vw, 128px) 0; }
.theme-teal { background: var(--teal); color: var(--cream); }
.theme-ink { background: var(--ink); color: var(--cream); }
.theme-cream { background: var(--paper); color: var(--ink); }
.sec-head { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; margin-bottom: clamp(28px, 4vw, 50px); }
.sec-head .sign { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.sec-head .label { opacity: 0.7; }
.sec-head .pole-rule { flex: 1 1 120px; align-self: center; min-width: 90px; }
.sec-lead { margin: -14px 0 34px; font-weight: 500; max-width: 52ch; }
.theme-teal .sec-lead, .theme-ink .sec-lead { color: var(--muted-dark); }

/* ---------- Services board (teal) ---------- */
.board { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, 1fr); gap: clamp(28px, 4vw, 64px); align-items: stretch; }
.board-list { display: flex; flex-direction: column; border-top: 1px solid var(--line-dark); }
.board-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px;
  padding: clamp(16px, 2.2vw, 22px) 6px; border-bottom: 1px solid var(--line-dark);
  text-decoration: none; position: relative; transition: background 0.2s var(--ease), padding-left 0.25s var(--ease);
}
.board-row::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--pole); background-size: 60px 60px; transition: width 0.25s var(--ease); }
.board-row:hover, .board-row.is-active { background: rgba(240,231,216,0.05); padding-left: 20px; }
.board-row:hover::before, .board-row.is-active::before { width: 6px; }
.board-num { font-family: var(--sans); font-weight: 800; font-size: 0.82rem; color: var(--cream); opacity: 0.5; width: 2.1em; }
.board-name { display: block; font-family: var(--slab); font-size: clamp(1.35rem, 2.6vw, 2rem); text-transform: uppercase; line-height: 1.04; }
.board-sub { display: block; margin: 7px 0 0; font-size: 0.92rem; color: var(--muted-dark); font-weight: 500; max-width: 46ch; line-height: 1.45; }
.board-price { text-align: right; font-family: var(--slab); font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.board-price small { display: block; font-family: var(--sans); font-weight: 700; font-size: 0.66rem; letter-spacing: 0.22em; color: var(--muted-dark); margin-top: 4px; }
.board-note { margin-top: 18px; font-size: 0.92rem; color: var(--muted-dark); font-weight: 500; }
.board-note a { color: var(--cream); }
.board-view { position: relative; min-height: 430px; border: 1px solid var(--line-dark); background: var(--teal-deep); overflow: hidden; }
.board-view figure { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 0.4s var(--ease); }
.board-view figure.is-shown { opacity: 1; }
.board-view img { width: 100%; height: 100%; object-fit: cover; }
.board-view figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 18px;
  background: linear-gradient(0deg, rgba(13,43,59,0.88), transparent);
  font-weight: 700; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream);
}
.board-view .ph {
  position: absolute; inset: 0; display: none; align-items: center; justify-content: center; text-align: center;
  padding: 24px; color: var(--muted-dark); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: repeating-linear-gradient(-45deg, rgba(240,231,216,0.05) 0 18px, transparent 18px 36px);
}
.board-view .ph.is-shown { display: flex; }

/* ---------- Fresh cuts (recent work) ---------- */
.cuts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.6vw, 20px); }
.cut-card { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--line); background: var(--cream); aspect-ratio: 3/4; }
.cut-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.cut-card:hover img { transform: scale(1.045); }
.cut-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 14px 10px;
  background: linear-gradient(0deg, rgba(16,24,32,0.72), transparent);
  color: var(--cream); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase;
}
.cuts-foot { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: space-between; }
.cuts-foot p { margin: 0; color: var(--muted); font-weight: 500; }
.cuts-foot p a { color: var(--ink); font-weight: 700; }

/* ---------- Shop ---------- */
.shop-grid { display: grid; grid-template-columns: 1.6fr 1fr; grid-template-rows: auto auto; gap: clamp(14px, 1.8vw, 22px); }
.shop-photo { position: relative; overflow: hidden; background: var(--cream); border: 1px solid var(--line); }
.shop-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.shop-photo:hover img { transform: scale(1.03); }
.shop-photo--main { grid-row: 1 / 3; min-height: 430px; }
.shop-photo--sub { min-height: 205px; }
.shop-photo .tag {
  position: absolute; left: 0; bottom: 0; background: var(--paper); color: var(--ink);
  font-weight: 700; font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase;
  padding: 8px 14px; border-top: 4px solid; border-image: var(--pole) 1;
}
.shop-copy { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); margin-top: clamp(30px, 4vw, 52px); }
.shop-step .label { color: var(--burgundy); display: block; margin-bottom: 10px; }
.shop-step h3 { font-family: var(--slab); font-size: 1.18rem; text-transform: uppercase; margin-bottom: 8px; line-height: 1.12; }
.shop-step p { margin: 0; color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.parking-card {
  margin-top: clamp(30px, 4vw, 48px); background: var(--cream); border: 1px solid var(--line);
  border-left: 8px solid; border-image: var(--pole) 1; padding: clamp(18px, 3vw, 26px) clamp(20px, 3vw, 32px);
  display: flex; flex-wrap: wrap; gap: 12px 30px; align-items: center; justify-content: space-between;
}
.parking-card p { margin: 0; font-weight: 600; max-width: 56ch; }
.parking-card .label { color: var(--burgundy); }

/* ---------- Craft break ---------- */
.craft { position: relative; overflow: hidden; background: var(--teal-darker); color: var(--cream); }
.craft-media { position: absolute; inset: 0; }
.craft-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.38; filter: saturate(0.85) contrast(1.05); }
.craft::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, var(--teal-darker), rgba(13,43,59,0.2) 32%, rgba(13,43,59,0.2) 68%, var(--teal-darker)); }
.craft-inner { position: relative; z-index: 2; padding: clamp(90px, 13vw, 180px) 0; text-align: center; }
.craft-line { font-size: clamp(1.9rem, 5.2vw, 4.2rem); max-width: 17ch; margin-inline: auto; line-height: 1.14; }
.craft-line em { font-style: normal; color: var(--cream); text-decoration: underline; text-decoration-color: var(--burgundy-bright); text-decoration-thickness: 0.07em; text-underline-offset: 0.13em; text-decoration-skip-ink: none; }
.craft-sub { margin-top: 22px; color: var(--muted-dark); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.8rem; }

/* ---------- Reviews ---------- */
.rev-head { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 20px 50px; margin-bottom: clamp(30px, 4vw, 50px); }
.rev-score { display: flex; align-items: baseline; gap: 18px; }
.rev-score .num { font-family: var(--slab); font-size: clamp(4rem, 8vw, 6.4rem); line-height: 0.9; color: var(--teal); }
.rev-score .of { font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.8rem; color: var(--muted); }
.rev-score .stars { color: var(--burgundy); font-size: 1.3rem; letter-spacing: 4px; display: block; margin-bottom: 8px; }
.rev-count { font-weight: 600; color: var(--muted); }
.rev-count a { color: var(--ink); font-weight: 700; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.rev-card {
  background: #fffdf6; border: 1px solid var(--line); padding: 26px 26px 22px; margin: 0;
  border-top: 6px solid; border-image: var(--pole) 1;
  box-shadow: 0 14px 34px -26px rgba(16,24,32,0.4);
  display: flex; flex-direction: column; gap: 14px;
}
.rev-card blockquote { margin: 0; font-size: 1.02rem; font-weight: 500; line-height: 1.55; }
.rev-card .who { margin-top: auto; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.rev-card .who::before { content: ''; width: 22px; height: 2px; background: var(--burgundy); }

/* ---------- Location ---------- */
.loc { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 4.5vw, 70px); align-items: start; }
.loc-map { position: relative; border: 1px solid var(--line); overflow: hidden; display: block; }
.loc-map img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; transition: transform 0.6s var(--ease); }
.loc-map:hover img { transform: scale(1.02); }
.loc-map .tag { position: absolute; right: 0; top: 0; background: var(--teal); color: var(--cream); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; padding: 9px 14px; }
.loc-addr { font-family: var(--slab); font-size: clamp(1.5rem, 2.6vw, 2.1rem); text-transform: uppercase; line-height: 1.1; color: var(--teal); }
.loc-meta { margin: 18px 0 26px; display: grid; gap: 8px; font-weight: 600; }
.loc-meta a { text-decoration-color: var(--burgundy); text-underline-offset: 4px; }
.hours { border-top: 1px solid var(--line); }
.hours-row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 2px; border-bottom: 1px solid var(--line); font-weight: 600; }
.hours-row .d { letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem; }
.hours-row .t { font-variant-numeric: tabular-nums; }
.hours-row .closed { color: var(--burgundy); font-weight: 700; }
.hours-row.is-today { background: var(--cream); outline: 1px solid var(--line); padding-inline: 10px; }
.loc-worth { margin-top: 22px; color: var(--muted); font-weight: 500; }
.loc-worth a { font-weight: 700; color: var(--ink); }

/* ---------- Final CTA ---------- */
.final { text-align: center; }
.final .pole-rule { width: min(360px, 60vw); margin: 0 auto clamp(24px, 3.6vw, 38px); }
.final .script-line { font-family: var(--script); font-size: clamp(2rem, 4.6vw, 3.2rem); color: var(--muted-dark); display: block; margin-bottom: 6px; }
.final .sign { font-size: clamp(2.6rem, 7vw, 5.4rem); }
.final p { margin: 16px auto 0; color: var(--muted-dark); font-weight: 500; max-width: 44ch; }
.final .cta-row { justify-content: center; margin-top: clamp(24px, 3.6vw, 36px); }
.final .tel-note { margin-top: 22px; font-weight: 600; letter-spacing: 0.1em; font-size: 0.85rem; text-transform: uppercase; }
.final .tel-note a { color: var(--cream); text-decoration-color: var(--burgundy-bright); text-underline-offset: 5px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); border-top: 8px solid; border-image: var(--pole) 1; padding: clamp(40px, 6vw, 68px) 0 clamp(40px, 6vw, 68px); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 34px; }
.foot-brand img { width: min(240px, 70%); height: auto; }
.foot-brand p { color: var(--muted-dark); font-weight: 500; font-size: 0.92rem; max-width: 30ch; margin-top: 14px; }
.site-footer h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted-dark); margin: 0 0 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-weight: 500; }
.site-footer a { color: var(--cream); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; text-decoration-color: var(--burgundy-bright); text-underline-offset: 4px; }
.foot-legal { margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: 0.82rem; color: var(--muted-dark); font-weight: 500; }

/* ---------- Sticky mobile bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 180; display: none;
  grid-template-columns: 1fr 1.5fr; gap: 10px;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(13,43,59,0.97); border-top: 4px solid; border-image: var(--pole) 1;
  transform: translateY(110%); transition: transform 0.3s var(--ease);
}
.mobile-bar.is-visible { transform: none; }
.mobile-bar .btn { width: 100%; min-height: 50px; }
.mobile-bar .btn--ghost { color: var(--cream); border-color: rgba(240,231,216,0.4); }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .board { grid-template-columns: 1fr; }
  .board-view { min-height: 300px; }
  .cuts-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .shop-photo--main { grid-column: 1 / 3; grid-row: auto; min-height: 320px; }
  .shop-copy { grid-template-columns: 1fr; gap: 22px; }
  .rev-grid { grid-template-columns: 1fr; }
  body:not(.is-home) .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .loc { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body:not(.is-home) .rev-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1000px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 680px) {
  .mobile-bar { display: grid; }
  /* no body padding: the footer's own bottom padding reserves space for the sticky bar,
     so there is no paper-colored gap below the dark footer */
  .site-footer { padding-bottom: calc(120px + env(safe-area-inset-bottom)); }
  .hero { min-height: 88vh; }
  .hero .cta-row { width: 100%; }
  .hero .cta-row .btn { flex: 1 1 100%; max-width: 360px; }
  .hero-strip { gap: 8px 18px; font-size: 0.72rem; }
  .board-sub { display: none; }
  .board-row { gap: 12px; }
  .shop-grid { grid-template-columns: 1fr; }
  .shop-photo--main { grid-column: auto; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
  .brand img { height: 42px; }
  .header-actions .btn--book { display: none; }
}
@media (max-width: 460px) {
  .cuts-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cut-card figcaption { font-size: 0.58rem; letter-spacing: 0.18em; }
}

/* ==========================================================================
   INTERIOR PAGE COMPONENTS
   ========================================================================== */

/* ---------- Page hero (compact teal masthead) ---------- */
.page-hero {
  position: relative; background: var(--teal); color: var(--cream); overflow: hidden;
  padding: calc(var(--header-h) + clamp(46px, 8vw, 92px)) 0 clamp(40px, 6vw, 74px);
}
.page-hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 8px; background: var(--pole); background-size: 80px 80px; }
.js .page-hero::after { animation: pole-move 16s linear infinite; }
@media (prefers-reduced-motion: reduce) { .js .page-hero::after { animation: none; } }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--slab); text-transform: uppercase; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: 0.015em; }
.page-hero .lead { margin: 16px 0 0; font-size: clamp(1.05rem, 1.5vw, 1.28rem); font-weight: 500; color: var(--muted-dark); max-width: 46ch; }
.page-hero .kicker { display: inline-block; font-family: var(--script); font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--cream); opacity: 0.9; margin-bottom: 2px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 18px; padding: 0; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-dark); }
.breadcrumbs a { color: var(--cream); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; text-underline-offset: 3px; }
.breadcrumbs li::after { content: '/'; margin-left: 8px; opacity: 0.5; }
.breadcrumbs li:last-child::after { content: ''; }

/* ---------- Prose ---------- */
.prose { max-width: 68ch; }
.prose p { margin: 0 0 1.05em; color: var(--ink); }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { font-family: var(--slab); text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.08; margin: 1.6em 0 0.55em; }
.prose h3 { font-family: var(--slab); text-transform: uppercase; font-size: 1.12rem; margin: 1.4em 0 0.45em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose .includes, .prose .accordion { margin: 1.05em 0; }
.prose strong { font-weight: 700; }
.prose a { color: var(--teal); text-decoration-color: var(--burgundy); text-underline-offset: 3px; }
/* buttons inside prose keep their own colors (beat the .prose a link color) */
.prose a.btn { text-decoration: none; }
.prose a.btn--book, .prose a.btn--book:hover { color: var(--cream); }
.prose a.btn--ghost.on-light { color: var(--ink); }
.prose ul { margin: 0; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 26px; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 12px; height: 4px; background: var(--pole); background-size: 40px 40px; }
.lead-note { font-size: 1.15rem; font-weight: 600; color: var(--teal); }

/* two-column interior layout */
.split-2 { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.split-2--even { grid-template-columns: 1fr 1fr; align-items: center; }

/* ---------- Price / booking card (service detail) ---------- */
.price-card {
  position: sticky; top: calc(var(--header-h) + 16px);
  background: var(--teal); color: var(--cream); border: 1px solid var(--teal-deep);
  border-top: 8px solid transparent; border-image: var(--pole) 1;
  padding: clamp(22px, 3vw, 30px); display: grid; gap: 14px;
}
.price-card .amount { font-family: var(--slab); font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; }
.price-card .amount small { display: block; font-family: var(--sans); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.22em; color: var(--muted-dark); margin-top: 8px; }
.price-card .btn { width: 100%; }
.price-card .fine { font-size: 0.85rem; color: var(--muted-dark); font-weight: 500; margin: 0; }
.price-card hr { border: 0; border-top: 1px solid var(--line-dark); margin: 4px 0; }

/* includes checklist */
.includes { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.includes li { position: relative; padding-left: 30px; font-weight: 500; }
.includes li::before { content: ''; position: absolute; left: 0; top: 0.15em; width: 18px; height: 18px; border-radius: 50%; background: var(--teal); }
.includes li::after { content: ''; position: absolute; left: 6px; top: 0.42em; width: 6px; height: 3px; border-left: 2px solid var(--cream); border-bottom: 2px solid var(--cream); transform: rotate(-45deg); }

/* ---------- FAQ accordion ---------- */
.accordion { border-top: 1px solid var(--line); max-width: 860px; }
.faq-group-title { font-family: var(--sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.74rem; color: var(--burgundy); margin: 34px 0 6px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 44px 20px 0; position: relative; font-family: var(--slab); text-transform: uppercase; font-size: clamp(1rem, 1.8vw, 1.25rem); line-height: 1.2; color: var(--ink); }
.faq-q::after { content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-weight: 700; font-size: 1.6rem; color: var(--burgundy); transition: transform 0.2s var(--ease); }
.faq-q[aria-expanded="true"]::after { content: '\2212'; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.3s var(--ease); }
.faq-a-inner { padding: 0 0 22px; color: var(--muted); max-width: 68ch; font-weight: 500; }
.faq-a-inner p { margin: 0; }
@media (prefers-reduced-motion: reduce) { .faq-a { transition: none; } }

/* ---------- Gallery grid ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 20px); grid-auto-flow: dense; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; border: 1px solid var(--line); background: var(--cream); aspect-ratio: 1 / 1; }
.gallery-grid figure.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery-grid figure.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.045); }
.gallery-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 10px; background: linear-gradient(0deg, rgba(16,24,32,0.72), transparent); color: var(--cream); font-weight: 700; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; }
.gallery-note { margin-top: 22px; color: var(--muted); font-weight: 500; }
.gallery-note a { color: var(--ink); font-weight: 700; }

/* ---------- Cross-links (more services) ---------- */
.crosslinks { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 20px); }
.crosslink { display: block; text-decoration: none; color: var(--cream); background: var(--teal); border: 1px solid var(--teal-deep); padding: 22px; position: relative; overflow: hidden; transition: background 0.2s var(--ease), transform 0.2s var(--ease); }
.crosslink:hover { background: var(--teal-deep); transform: translateY(-2px); }
.crosslink::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--pole); background-size: 40px 40px; }
.crosslink .n { font-family: var(--sans); font-weight: 800; font-size: 0.74rem; opacity: 0.6; letter-spacing: 0.1em; }
.crosslink h3 { font-family: var(--slab); text-transform: uppercase; font-size: 1.15rem; margin: 6px 0 6px; }
.crosslink p { margin: 0; color: var(--muted-dark); font-size: 0.85rem; font-weight: 500; }

/* ---------- Areas served ---------- */
.areas-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 18px); }
.area-card { border: 1px solid var(--line); background: var(--cream); padding: 20px 22px; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.area-card .city { font-family: var(--slab); text-transform: uppercase; font-size: 1.1rem; color: var(--teal); }
.area-card .drive { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ---------- Simple content section head on light ---------- */
.theme-cream .page-hero { }

/* ---------- Responsive (interior) ---------- */
@media (max-width: 1023px) {
  .split-2 { grid-template-columns: 1fr; }
  .split-2--even { grid-template-columns: 1fr; }
  .price-card { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .crosslinks { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure.wide { grid-column: span 2; }
  .gallery-grid figure.tall { grid-row: span 1; aspect-ratio: 1 / 1; }
  .areas-list { grid-template-columns: 1fr; }
}

/* ---------- Print ---------- */
@media print { .site-header, .mobile-bar, .pole-rail, .hero-media { display: none !important; } }
