/* ==========================================================================
   JoCo Barber Company
   1. Fonts
   2. Tokens
   3. Reset + base
   4. Type
   5. Layout primitives
   6. Signature moves
   7. Components
   8. Sections
   9. Pages
   10. Responsive
   11. Motion preferences / print
   ========================================================================== */

/* 1. Fonts ---------------------------------------------------------------- */
@font-face {
  font-family: 'Fraunces';
  src: url('../assets/fonts/fraunces-latin-var.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue';
  src: url('../assets/fonts/bebasneue-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-latin-var.woff2') format('woff2-variations');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}

/* 2. Tokens --------------------------------------------------------------- */
:root {
  --canvas-dark: #0C0C0D;
  --canvas-jet: #000000;
  --canvas-light: #F3EEE3;
  --ink: #171717;
  --bone: #EEE7D6;
  --oxblood: #7A2E24;
  --gold: #C9A44A;

  --dark-soft: #17171A;
  --dark-line: #2A2A2D;
  --light-line: #D9D0BE;
  --ink-soft: #4C4740;
  --cream-soft: rgba(243, 238, 227, 0.66);

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --accent: 'Bebas Neue', 'Arial Narrow', Impact, sans-serif;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;

  --step--1: clamp(0.78rem, 0.76rem + 0.1vw, 0.84rem);
  --step-0: clamp(0.98rem, 0.95rem + 0.15vw, 1.06rem);
  --step-1: clamp(1.12rem, 1.05rem + 0.35vw, 1.32rem);
  --step-2: clamp(1.35rem, 1.2rem + 0.7vw, 1.85rem);
  --step-3: clamp(1.7rem, 1.4rem + 1.4vw, 2.7rem);
  --step-4: clamp(2.1rem, 1.5rem + 2.8vw, 4rem);
  --step-5: clamp(2.6rem, 1.5rem + 4.8vw, 5.75rem);

  --gutter: clamp(1.15rem, 4vw, 3.5rem);
  --stack: clamp(3.5rem, 8vw, 7.5rem);
  --maxw: 1240px;
  --radius: 3px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --bar-h: 3px;
}

/* 3. Reset + base --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas-dark);
  color: var(--canvas-light);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  font-synthesis-weight: none;
}
img, picture, video, svg { max-width: 100%; display: block; }
section { overflow-x: hidden; }
a { color: inherit; }
button { font: inherit; color: inherit; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

::selection { background: var(--gold); color: #000000; }

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -100px;
  z-index: 200;
  background: var(--gold);
  color: #000000;
  padding: 0.7rem 1.1rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: calc(var(--bar-h) + 0.5rem); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* 4. Type ----------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: 'SOFT' 20, 'WONK' 1, 'opsz' 100;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); font-variation-settings: 'SOFT' 20, 'WONK' 0, 'opsz' 40; }
h4 { font-size: var(--step-1); font-variation-settings: 'SOFT' 20, 'WONK' 0, 'opsz' 24; }
p { margin: 0 0 1.1em; max-width: 62ch; text-wrap: pretty; }

.eyebrow {
  font-family: var(--accent);
  font-size: clamp(0.85rem, 0.8rem + 0.3vw, 1.05rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 1rem;
  color: var(--gold);
}
.lede { font-size: var(--step-1); line-height: 1.55; max-width: 46ch; }
.muted { color: var(--cream-soft); }
.light .muted { color: var(--ink-soft); }

/* 5. Layout --------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--stack); position: relative; }
.dark { background: var(--canvas-dark); color: var(--canvas-light); }
.light { background: var(--canvas-light); color: var(--ink); }
.bone { background: var(--bone); color: var(--ink); }
.light a, .bone a { color: var(--ink); }

.grid-2 {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: 1fr;
  align-items: start;
}

/* 6. Signature moves ------------------------------------------------------ */

/* 6.1 barber pole progress bar */
.pole-progress {
  position: fixed; inset: 0 auto auto 0;
  width: 100%; height: var(--bar-h);
  z-index: 120; pointer-events: none;
  background: rgba(255,255,255,0.08);
}
.pole-progress__fill {
  height: 100%; width: 0%;
  background-image: repeating-linear-gradient(
    115deg,
    #B4302A 0 10px,
    #F5F1E8 10px 20px,
    #1F3E7A 20px 30px,
    #F5F1E8 30px 40px
  );
  background-size: 80px 100%;
  animation: pole-slide 1.4s linear infinite;
  will-change: width;
}
@keyframes pole-slide { to { background-position: 80px 0; } }

/* 6.2 shears cursor */
@media (hover: hover) and (pointer: fine) {
  body.shears a, body.shears button, body.shears summary, body.shears [role="button"] {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cg fill='none' stroke='%23C9A44A' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='7' cy='23' r='4'/%3E%3Ccircle cx='19' cy='23' r='4'/%3E%3Cpath d='M9 20 L23 3'/%3E%3Cpath d='M17 20 L3 3'/%3E%3C/g%3E%3C/svg%3E") 4 4, pointer;
  }
}

/* 6.3 roman numeral chapter markers */
.chapter { position: relative; }
.chapter__numeral {
  font-family: var(--display);
  font-variation-settings: 'SOFT' 20, 'WONK' 1, 'opsz' 144;
  font-weight: 400;
  font-size: clamp(2.6rem, 9vw, 4.2rem);
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.9;
  display: block;
  margin-bottom: 0.35em;
}
.chapter__head { position: relative; }

/* 6.4 scissor-cut divider */
.cut {
  display: flex; align-items: center; gap: 1rem;
  padding-inline: var(--gutter);
  max-width: var(--maxw); margin-inline: auto;
}
.cut::before, .cut::after {
  content: ''; flex: 1; height: 1px;
  background: currentColor; opacity: 0.24;
}
.cut::before { background-image: repeating-linear-gradient(90deg, currentColor 0 6px, transparent 6px 12px); background-color: transparent; }
.cut svg { flex: none; width: 26px; height: 26px; color: var(--gold); }
.cut--tight { padding-block: 0; }

/* 6.5 matted photo cards */
.matte {
  background: var(--bone);
  padding: clamp(9px, 1.1vw, 15px);
  border-radius: 2px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.34), 0 2px 5px rgba(0,0,0,0.2);
  display: block;
  overflow: hidden;
}
.light .matte, .bone .matte { box-shadow: 0 14px 30px rgba(23,23,23,0.16), 0 2px 5px rgba(23,23,23,0.1); background: #FBF8F1; }
.matte img { width: 100%; height: auto; background: #DCD4C4; }
.matte--tall img { aspect-ratio: 3 / 4; object-fit: cover; }
.matte--wide img { aspect-ratio: 4 / 3; object-fit: cover; }
.matte figcaption {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 0.7rem;
}

/* 6.6 marquee */
.marquee {
  --marquee-speed: 42s;
  overflow: hidden;
  border-block: 1px solid var(--dark-line);
  background: var(--dark-soft);
  padding-block: clamp(0.8rem, 2vw, 1.4rem);
  white-space: nowrap;
  position: relative;
}
.marquee__track {
  display: inline-flex; gap: 0;
  animation: marquee var(--marquee-speed) linear infinite;
  will-change: transform;
}
.marquee__group { display: inline-flex; align-items: center; gap: 0; flex: none; }
.marquee__item {
  font-family: var(--accent);
  font-size: clamp(1.3rem, 3.4vw, 2.2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-inline: 1.1rem;
  color: var(--canvas-light);
}
.marquee__item:nth-child(even) { color: var(--gold); }
.marquee__dot { color: var(--oxblood); font-size: 1.2rem; }
@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }

/* 6.7 photo essay scroll-snap */
.essay { display: grid; gap: clamp(2.5rem, 6vw, 5rem); }
.essay__item { display: grid; gap: 1rem; scroll-snap-align: center; }
.essay__cap {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-soft);
}

/* 6.8 hover-reveal contact */
.reveal-contact {
  display: inline-flex; align-items: baseline; gap: 0.5rem;
  text-decoration: none;
  border-bottom: 1px dashed rgba(243,238,227,0.45);
  padding-bottom: 2px;
}
.reveal-contact__label { color: var(--gold); font-family: var(--accent); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.95rem; }
.reveal-contact__value {
  max-width: 0; overflow: hidden; white-space: nowrap;
  opacity: 0; transition: max-width 0.45s var(--ease), opacity 0.3s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .reveal-contact:hover .reveal-contact__value,
  .reveal-contact:focus-visible .reveal-contact__value { max-width: 30ch; opacity: 1; }
}
@media (hover: none), (pointer: coarse) {
  .reveal-contact__value { max-width: none; opacity: 1; }
}
/* In the footer the details are the point, so they stay visible. The
   hover-reveal treatment lives on the Visit page. */
.foot__list .reveal-contact { flex-wrap: wrap; }
.foot__list .reveal-contact__value { max-width: none; opacity: 1; }
@media (max-width: 520px) {
  .foot__list .reveal-contact { flex-direction: column; align-items: flex-start; gap: 0.15rem; }
}

/* 6.9 pull quote */
.pullquote { text-align: left; }
.pullquote blockquote {
  margin: 0;
  font-family: var(--display);
  font-variation-settings: 'SOFT' 30, 'WONK' 1, 'opsz' 144;
  font-weight: 400;
  font-size: clamp(2rem, 6.4vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
.pullquote cite {
  display: block; margin-top: 1.6rem;
  font-style: normal; font-family: var(--accent);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--oxblood); font-size: 1rem;
}

/* 6.10 receipt */
.receipt {
  background: #FBF8F1;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.86rem;
  line-height: 1.7;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  max-width: 420px;
  box-shadow: 0 16px 40px rgba(23,23,23,0.16);
  position: relative;
}
.receipt::before, .receipt::after {
  content: ''; position: absolute; left: 0; right: 0; height: 8px;
  background: repeating-linear-gradient(-45deg, #FBF8F1 0 7px, transparent 7px 14px);
}
.receipt::before { top: -7px; transform: scaleY(-1); }
.receipt::after { bottom: -7px; }
.receipt__head { text-align: center; letter-spacing: 0.16em; text-transform: uppercase; }
.receipt__rule { border: 0; border-top: 1px dashed #B9AF9B; margin: 0.9rem 0; }
.receipt__row { display: flex; align-items: baseline; gap: 0.4rem; }
.receipt__row span:first-child { white-space: nowrap; }
.receipt__row .dots { flex: 1; border-bottom: 1px dotted #B9AF9B; transform: translateY(-4px); }
.receipt__row--now { font-weight: 700; }
.receipt__row[data-today="true"] { background: rgba(201,164,74,0.22); }
.receipt__foot { text-align: center; letter-spacing: 0.22em; text-transform: uppercase; }

/* 6.11 video */
.roomvideo { position: relative; overflow: hidden; border-radius: 2px; background: #000; }
.roomvideo video { width: 100%; height: auto; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.roomvideo__overlay {
  position: absolute; inset: auto 0 0 0;
  padding: clamp(1.2rem, 4vw, 2.6rem);
  background: linear-gradient(to top, rgba(15,15,16,0.86), rgba(15,15,16,0));
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem;
  pointer-events: none;
}
.roomvideo__overlay a, .roomvideo__overlay button { pointer-events: auto; }
.roomvideo__play {
  position: absolute; inset: 0; margin: auto; z-index: 2;
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--gold); color: #000000; border: 0;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.roomvideo.is-tap .roomvideo__play { display: flex; }
.roomvideo.is-playing .roomvideo__play { display: none; }
.roomvideo__play:active { transform: scale(0.94); }

/* 6.12 palette bridge strip */
.bridge { height: 60px; width: 100%; }
.bridge--oxblood { background: var(--oxblood); }
.bridge--gold { background: var(--gold); }
.bridge--bone { background: var(--bone); }
.bridge--steel { background: #4A4F55; }

/* 6.13 print-ad stats */
.stats {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border: 2px solid var(--canvas-light);
}
.stats__cell {
  padding: clamp(1.4rem, 3.5vw, 2.4rem) clamp(1rem, 2.5vw, 1.6rem);
  border-bottom: 2px solid var(--canvas-light);
  text-align: center;
}
.stats__cell:last-child { border-bottom: 0; }
.stats__big {
  font-family: var(--accent);
  font-size: clamp(1.8rem, 5.5vw, 3rem);
  line-height: 0.95; letter-spacing: 0.03em;
  display: block;
}
.stats__small {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cream-soft); display: block; margin-top: 0.6rem;
}

/* 6.14 open-now clock */
.clock {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--dark-line);
  background: rgba(255,255,255,0.04);
  padding: 0.55rem 0.9rem; border-radius: 999px;
}
.light .clock, .bone .clock { border-color: var(--light-line); background: rgba(23,23,23,0.04); }
.clock__dot { width: 8px; height: 8px; border-radius: 50%; background: #6B6B6B; flex: none; }
.clock[data-open="true"] .clock__dot { background: #57A65A; box-shadow: 0 0 0 4px rgba(87,166,90,0.2); animation: pulse 2.4s var(--ease) infinite; }
.clock[data-open="false"] .clock__dot { background: var(--oxblood); }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(87,166,90,0); } }

/* 7. Components ----------------------------------------------------------- */

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 48px; padding: 0.85rem 1.5rem;
  font-family: var(--accent); font-size: 1.15rem; letter-spacing: 0.13em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--radius); border: 2px solid transparent;
  transition: transform 0.15s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn--gold { background: var(--gold); color: #000000; border-color: var(--gold); }
.btn--gold:hover { background: #DBB65E; border-color: #DBB65E; }
.btn--ghost { border-color: currentColor; color: inherit; background: transparent; }
.btn--ghost:hover { background: currentColor; color: var(--canvas-dark); }
.light .btn--ghost:hover, .bone .btn--ghost:hover { color: var(--canvas-light); }
.btn:active { transform: scale(0.97); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.textlink {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--accent); letter-spacing: 0.13em; text-transform: uppercase;
  font-size: 1.05rem; text-decoration: none;
  border-bottom: 2px solid var(--gold); padding-bottom: 3px;
  min-height: 44px;
}
.textlink:hover { color: var(--gold); }
.textlink svg { width: 22px; height: 22px; flex: none; transition: transform 0.2s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* nav */
.nav {
  position: sticky; top: var(--bar-h); z-index: 100;
  background: var(--canvas-jet);
  border-bottom: 1px solid rgba(238,231,214,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  color: var(--canvas-light);
}
.nav__inner {
  display: grid; align-items: center; gap: 1rem;
  grid-template-columns: 1fr auto 1fr;
  min-height: 66px; padding-block: 0.55rem;
}
.nav__inner .brand { justify-self: center; grid-column: 2; }
.nav__inner .nav__links { grid-column: 1; justify-self: start; }
.nav__inner .nav__end { grid-column: 3; justify-self: end; }
.brand { display: inline-flex; align-items: center; gap: 0.65rem; text-decoration: none; color: inherit; }
/* Official logo. Black background is part of the artwork, so it only ever
   sits on the dark canvas or inside a .logo-badge. */
.brand__mark { display: block; flex: none; }
.brand__mark img {
  display: block; width: 52px; height: 52px;
  border-radius: 7px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(238,231,214,0.08);
}
@media (min-width: 700px) { .brand__mark img { width: 58px; height: 58px; } }
.brand__mark--lg img { width: 104px; height: 104px; border-radius: 10px; }
@media (min-width: 700px) { .brand__mark--lg img { width: 120px; height: 120px; } }
.brand:hover .brand__mark img { opacity: 0.86; transition: opacity 0.2s var(--ease); }
.logo-badge {
  background: var(--canvas-dark);
  padding: clamp(0.9rem, 2vw, 1.4rem);
  display: inline-block; border-radius: 10px;
}
.nav__links { display: none; gap: 0.25rem; align-items: center; }
.nav__link {
  text-decoration: none; padding: 0.6rem 0.8rem; min-height: 44px;
  display: inline-flex; align-items: center;
  font-family: var(--accent); font-size: 1.05rem; letter-spacing: 0.13em; text-transform: uppercase;
  border-bottom: 2px solid transparent;
}
.nav__link:hover { color: var(--gold); }
.nav__link[aria-current="page"] { border-bottom-color: var(--gold); color: var(--gold); }
.nav__end { display: flex; align-items: center; gap: 0.7rem; }

.pill {
  display: none; align-items: center; gap: 0.45rem;
  border: 1px solid var(--gold); color: var(--gold);
  border-radius: 999px; padding: 0.4rem 0.85rem;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap; min-height: 34px;
}
.pill svg { width: 13px; height: 13px; }
.pill:hover { background: var(--gold); color: #000000; }

.burger {
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--dark-line); border-radius: var(--radius);
}
.burger svg { width: 20px; height: 20px; }

/* bottom sheet nav */
.sheet {
  position: fixed; inset: 0; z-index: 150;
  display: grid; grid-template-rows: 1fr auto;
  pointer-events: none;
}
.sheet__scrim {
  background: rgba(0,0,0,0.6); opacity: 0;
  transition: opacity 0.3s var(--ease);
  grid-area: 1 / 1 / 3 / 2;
}
.sheet__panel {
  grid-area: 2 / 1 / 3 / 2;
  background: var(--canvas-dark);
  border-top: 2px solid var(--gold);
  border-radius: 16px 16px 0 0;
  padding: 0.6rem var(--gutter) calc(1.4rem + env(safe-area-inset-bottom));
  transform: translateY(102%);
  transition: transform 0.36s var(--ease);
  max-height: 88vh; overflow-y: auto;
  position: relative; z-index: 1;
}
.sheet.is-open { pointer-events: auto; }
@media (min-width: 900px) { .sheet { display: none; } }
.sheet.is-open .sheet__scrim { opacity: 1; }
.sheet.is-open .sheet__panel { transform: translateY(0); }
.sheet__grab {
  width: 46px; height: 4px; border-radius: 999px; background: var(--dark-line);
  margin: 0.5rem auto 1.1rem;
}
.sheet__link {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 58px; text-decoration: none;
  border-bottom: 1px solid var(--dark-line);
  font-family: var(--display); font-size: 1.5rem;
  font-variation-settings: 'SOFT' 20, 'WONK' 1, 'opsz' 60;
}
.sheet__link[aria-current="page"] { color: var(--gold); }
.sheet__link span { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; color: var(--cream-soft); text-transform: uppercase; }
.sheet__foot { padding-top: 1.2rem; display: grid; gap: 0.7rem; }
.sheet__close {
  position: absolute; top: 0.7rem; right: var(--gutter);
  width: 44px; height: 44px; background: transparent; border: 0;
}

/* sticky mobile bar */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 110;
  display: none; gap: 0.6rem;
  padding: 0.6rem var(--gutter) calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(15,15,16,0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--dark-line);
  transform: translateY(0);
  transition: transform 0.3s var(--ease);
}
.dock.is-hidden { transform: translateY(130%); }
.dock .btn { flex: 1; min-height: 50px; padding-inline: 0.5rem; font-size: 1.05rem; }
.dock .btn--ghost { color: var(--canvas-light); }

/* skeleton */
.ph { position: relative; background: #DCD4C4; }
.ph img { opacity: 0; transition: opacity 0.5s var(--ease); }
.ph img.is-loaded, .ph img[data-eager] { opacity: 1; }
.ph.is-done { background: transparent; }

/* service tiles / accordion */
.services { display: grid; gap: 1px; background: var(--light-line); border: 1px solid var(--light-line); }
.service {
  background: var(--canvas-light); margin: 0;
}
.service__btn {
  width: 100%; text-align: left; background: transparent; border: 0;
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.15rem clamp(1rem, 3vw, 1.6rem); min-height: 62px;
}
.service__btn svg { width: 26px; height: 26px; flex: none; color: var(--oxblood); }
.service__name { font-family: var(--display); font-size: var(--step-1); font-variation-settings: 'SOFT' 20, 'WONK' 0, 'opsz' 30; font-weight: 600; flex: 1; }
.service__chev { width: 18px; height: 18px; transition: transform 0.25s var(--ease); color: var(--ink-soft); }
.service[open] .service__chev, .service.is-open .service__chev { transform: rotate(180deg); }
.service__body { padding: 0 clamp(1rem, 3vw, 1.6rem) 1.3rem calc(clamp(1rem, 3vw, 1.6rem) + 26px + 0.9rem); }
.service__body p { margin: 0; color: var(--ink-soft); }

/* testimonial columns */
.tcols {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  max-height: 760px; overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}
.tcol { display: grid; gap: 1rem; align-content: start; }
.tcol__track { display: grid; gap: 1rem; animation: tscroll var(--dur, 40s) linear infinite; will-change: transform; }
@keyframes tscroll { to { transform: translateY(-50%); } }
.tcols:hover .tcol__track { animation-play-state: paused; }

.tcard {
  background: #FBF8F1; border: 1px solid var(--light-line);
  padding: 1.3rem 1.4rem; border-radius: 2px;
  box-shadow: 0 4px 14px rgba(23,23,23,0.05);
}
.tcard__stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.9rem; line-height: 1; }
.tcard__text { margin: 0.8rem 0 1rem; font-size: 0.94rem; line-height: 1.6; color: var(--ink); }
.tcard__who { display: flex; align-items: center; gap: 0.7rem; }
.tcard__avatar {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  background: var(--oxblood); color: var(--bone);
  display: grid; place-items: center;
  font-family: var(--accent); font-size: 1rem; letter-spacing: 0.05em;
}
.tcard__name { font-weight: 500; font-size: 0.88rem; line-height: 1.25; }
.tcard__meta { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }

/* barber cards */
.barbers { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.barber {
  border-top: 2px solid var(--oxblood);
  padding-top: 1.1rem;
}
.barber__num {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.24em;
  color: var(--oxblood);
}
.barber__name { font-family: var(--display); font-size: var(--step-2); margin: 0.5rem 0 0.2rem; font-variation-settings: 'SOFT' 20, 'WONK' 1, 'opsz' 60; }
.barber__role { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.8rem; }

/* map */
.mapframe { border: 0; width: 100%; aspect-ratio: 4 / 3; filter: grayscale(1) contrast(1.05) invert(0.9) hue-rotate(180deg); background: #222; }
.light .mapframe, .bone .mapframe { filter: grayscale(1) contrast(1.02); }

/* footer */
.foot { background: var(--canvas-jet); color: var(--canvas-light); padding-block: var(--stack) 2rem; border-top: 1px solid rgba(238,231,214,0.08); text-align: center; box-shadow: 0 -8px 24px rgba(0,0,0,0.5); }
.foot__cta { display: grid; gap: 0.85rem; margin-bottom: clamp(2.5rem, 6vw, 4rem); justify-content: center; }
.foot__mark { display: flex; justify-content: center; margin-bottom: 2rem; }
.foot__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; justify-items: center; }
.foot__grid > div { max-width: 22rem; }
.foot__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.15rem; justify-items: center; }
.foot__list a { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; text-decoration: none; }
.foot__list a:hover { color: var(--gold); }
.foot__soc { gap: 0.55rem; }
.foot__ico { flex: none; opacity: 0.85; transition: opacity 200ms ease, transform 200ms ease; }
.foot__soc:hover .foot__ico { opacity: 1; transform: translateY(-1px); }
.foot__head { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.foot__fine {
  margin-top: clamp(2.5rem, 6vw, 4rem); padding-top: 1.4rem;
  border-top: 1px solid var(--dark-line);
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em;
  color: var(--cream-soft);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: center;
}

/* hero */
.hero { position: relative; padding-block: clamp(2.5rem, 7vw, 5.5rem) clamp(3rem, 7vw, 6rem); }
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: center; }

/* Video hero: full-bleed loop with a dark scrim; content sits on top. */
.hero--video { padding-block: clamp(5rem, 12vw, 9rem) clamp(4rem, 10vw, 7rem); overflow: hidden; isolation: isolate; }
.hero--video .hero__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.25) 100%);
}
.hero--video .hero__content { max-width: 44rem; position: relative; }
.hero--video .hero__content .eyebrow { color: var(--gold); }
.hero--video .hero__content .lede { color: var(--canvas-light); opacity: 0.94; }
.hero--video .hero__note { color: var(--cream-soft); }
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero--video { background: var(--canvas-dark) url('../assets/video/interior-dolly-poster.jpg') center/cover no-repeat; }
}

.hero h1 { margin-bottom: 0.35em; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero__badges { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.6rem; }
.rating {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--dark-line); background: rgba(255,255,255,0.04);
  padding: 0.55rem 0.9rem; border-radius: 999px; text-decoration: none;
}
.rating b { color: var(--gold); font-weight: 400; }
.rating__star { width: 15px; height: 15px; flex: none; color: var(--gold); }
.rating span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero__since {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin: -0.15rem 0 1rem;
}
.hero__ctas { margin-bottom: 1.8rem; }
.hero__note { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-soft); }

/* page header */
.phead { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 5vw, 3.5rem); }
.phead h1 { margin-bottom: 0.3em; }

/* misc blocks */
.card-dark { border: 1px solid var(--dark-line); background: var(--dark-soft); padding: clamp(1.3rem, 3vw, 2rem); border-radius: 2px; }
.card-light { border: 1px solid var(--light-line); background: #FBF8F1; padding: clamp(1.3rem, 3vw, 2rem); border-radius: 2px; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
.checklist li { display: flex; gap: 0.75rem; align-items: start; }
.checklist svg { width: 20px; height: 20px; flex: none; color: var(--gold); margin-top: 3px; }

.embed-frame { width: 100%; min-height: 720px; border: 0; background: #FBF8F1; }

.photo-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); align-items: start; }
.photo-grid figcaption { text-align: center; }
/* Source photos vary in shape, so the grid crops them to one ratio. */
.photo-grid .matte img { aspect-ratio: 4 / 5; object-fit: cover; }

/* 8. Responsive ----------------------------------------------------------- */
@media (min-width: 640px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__cell { border-bottom: 2px solid var(--canvas-light); }
  .stats__cell:nth-child(n+3) { border-bottom: 0; }
  .stats__cell:nth-child(odd) { border-right: 2px solid var(--canvas-light); }
  .foot__cta { grid-auto-flow: column; justify-content: center; }
  .barbers { grid-template-columns: repeat(3, 1fr); }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .tcols { grid-template-columns: repeat(2, 1fr); }
  .pill { display: inline-flex; }
}

@media (min-width: 960px) {
  .nav__links { display: flex; }
  .burger { display: none; }
  .dock { display: none !important; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stats__cell { border-bottom: 0; border-right: 2px solid var(--canvas-light); }
  .stats__cell:last-child { border-right: 0; }
  .stats__cell:nth-child(odd) { border-right: 2px solid var(--canvas-light); }
  .tcols { grid-template-columns: repeat(3, 1fr); }
  .foot__grid { grid-template-columns: repeat(3, minmax(0, 18rem)); justify-content: center; }
  .services { grid-template-columns: repeat(3, 1fr); }
  .service__btn { pointer-events: none; padding-bottom: 0.4rem; }
  .service__chev { display: none; }
  .service__body { display: block !important; height: auto !important; padding-top: 0; }

  /* roman numerals in the left margin on desktop */
  .chapter__head { padding-left: clamp(6.5rem, 11vw, 10.5rem); }
  .chapter__numeral {
    position: absolute; left: 0; top: -0.12em;
    font-size: clamp(3.4rem, 5.4vw, 5.4rem);
    margin: 0;
  }
  /* VII, VIII and IX are the widest numerals, so they get a tighter set */
  .chapter__numeral--wide { font-size: clamp(2.6rem, 4vw, 4rem); letter-spacing: -0.02em; }
  .essay { grid-template-columns: repeat(12, 1fr); align-items: center; }
  .essay__item--a { grid-column: 1 / 8; }
  .essay__item--b { grid-column: 8 / 13; }
  .essay__item--c { grid-column: 2 / 7; }
  .essay__item--d { grid-column: 7 / 13; }
  .essay__item--e { grid-column: 1 / 6; }
  .essay__item--f { grid-column: 6 / 12; }
  .pullquote blockquote { max-width: 16ch; }
}

@media (max-width: 959px) {
  .dock { display: flex; }
  body { padding-bottom: 0; }
  .marquee { --marquee-speed: 84s; }
  .essay {
    scroll-snap-type: y proximity;
    -webkit-overflow-scrolling: touch;
  }
  .service__body[hidden] { display: none; }
  .nav__links { display: none; }
}

@media (min-width: 1280px) {
  .hero { padding-block: clamp(4rem, 6vw, 7rem) clamp(4rem, 7vw, 7rem); }
}

/* stacked photo column */
.stack-photos { display: grid; gap: clamp(1rem, 2.5vw, 1.6rem); }
@media (min-width: 640px) {
  .stack-photos { grid-template-columns: repeat(2, 1fr); }
  .stack-photos > *:first-child { grid-column: 1 / -1; }
}

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }

/* 9. Motion preferences + data saver -------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .tcol__track { animation: none; }
  .pole-progress__fill { animation: none; }
  .roomvideo video { display: none; }
  .roomvideo { background-image: var(--poster); background-size: cover; background-position: center; min-height: 40vh; }
}
@media (prefers-reduced-data: reduce) {
  .roomvideo video { display: none; }
  .marquee__track { animation: none; }
}

/* 10. Print ---------------------------------------------------------------- */
@media print {
  .nav, .dock, .sheet, .pole-progress, .marquee, .roomvideo, .foot__cta { display: none !important; }
  body { background: #fff; color: #000; }
  .receipt { box-shadow: none; border: 1px solid #999; max-width: none; }
  .section { padding-block: 1rem; }
}

/* Signature move: hover-reveal contact list on the homepage Visit block.
   Labels read as a list; the value slides out on hover or keyboard focus.
   Touch devices and the footer show everything outright. */
.contact-reveal {
  list-style: none; margin: 1.6rem 0 0; padding: 0;
  display: grid; gap: 0.7rem; justify-items: start;
}

/* The sticky bar carries three actions, so the labels tighten up. */
.dock .btn { flex: 1; padding-inline: 0.6rem; font-size: 1rem; letter-spacing: 0.08em; }
@media (max-width: 359px) { .dock__dir { display: none; } }
/* Touch targets stay at 44px when the contact values are always visible. */
@media (hover: none), (pointer: coarse) {
  .reveal-contact { min-height: 44px; align-items: center; }
}

/* Cuts we do — numbered chip grid, no photos. Sits on the dark section. */
.styles-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 0.6rem;
}
.style-chip {
  display: flex; align-items: baseline; gap: 0.75rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(238, 231, 214, 0.14);
  background: rgba(238, 231, 214, 0.03);
  border-radius: 2px;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}
.style-chip:hover {
  border-color: var(--gold);
  background: rgba(201, 164, 74, 0.06);
  transform: translateY(-1px);
}
.style-chip__num {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  flex: none;
  min-width: 1.6rem;
}
.style-chip__name {
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: 0.005em;
  color: var(--bone);
  line-height: 1.2;
}
@media (max-width: 480px) {
  .styles-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .style-chip { padding: 0.75rem 0.85rem; }
  .style-chip__name { font-size: 1rem; }
}

/* Book page primary action — big tappable card that opens Square in a new tab. */
.book-card {
  display: flex; align-items: stretch; justify-content: space-between; gap: 1.4rem;
  margin-top: 1.6rem;
  padding: 1.6rem 1.8rem;
  background: var(--canvas-jet, #000);
  color: var(--bone, #EEE7D6);
  border: 1px solid var(--gold);
  border-radius: 2px;
  text-decoration: none;
  transition: background 200ms ease, transform 200ms ease, box-shadow 220ms ease;
  min-height: 132px;
}
.book-card:hover, .book-card:focus-visible {
  background: #0e0e10;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -22px rgba(201, 164, 74, 0.55);
}
.book-card__inner { display: grid; gap: 0.35rem; align-content: center; }
.book-card__title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  margin: 0;
  color: var(--bone);
}
.book-card__note { font-family: var(--body); color: rgba(238, 231, 214, 0.72); margin: 0; }
.book-card__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; flex: none;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  align-self: center;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.book-card__arrow svg { width: 22px; height: 22px; }
.book-card:hover .book-card__arrow { background: var(--gold); color: #000; transform: translateX(2px); }
@media (max-width: 480px) {
  .book-card { padding: 1.25rem 1.35rem; }
  .book-card__arrow { width: 44px; height: 44px; }
}

/* Team photo placeholder — used when staff photos are being refreshed */
.team-placeholder{
  position:relative;
  border-radius:var(--radius, 4px);
  overflow:hidden;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201,164,74,0.10), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(122,46,36,0.18), transparent 55%),
    linear-gradient(180deg, #131313 0%, #0A0A0A 100%);
  border:1px dashed rgba(201,164,74,0.35);
  aspect-ratio:16/6;
  min-height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:2.5rem 1.5rem;
}
.team-placeholder::before,
.team-placeholder::after{
  content:"";
  position:absolute;
  top:1rem;bottom:1rem;
  width:2px;
  background:linear-gradient(180deg, transparent, rgba(201,164,74,0.5), transparent);
}
.team-placeholder::before{left:1.2rem}
.team-placeholder::after{right:1.2rem}
.team-placeholder__inner{max-width:520px}
.team-placeholder__eyebrow{
  font-family: "Bebas Neue", "Inter", sans-serif;
  letter-spacing:0.28em;
  font-size:0.78rem;
  color:var(--gold);
  display:block;
  margin-bottom:0.9rem;
  text-transform:uppercase;
}
.team-placeholder__note{
  font-family:"Fraunces", Georgia, serif;
  font-style:italic;
  font-size:clamp(1.15rem, 1.9vw, 1.5rem);
  color:var(--bone);
  margin:0;
  line-height:1.35;
}
@media (max-width:639px){
  .team-placeholder{aspect-ratio:auto;min-height:180px;padding:2rem 1.2rem}
}

/* Team grid (Tracy / Carmen / Lulu) */
.team-grid{
  display:grid;
  gap:1.6rem;
  grid-template-columns:1fr;
  margin:2.5rem auto 0;
  max-width:1080px;
}
@media (min-width:640px){
  .team-grid{grid-template-columns:repeat(3, minmax(0, 1fr)); gap:1.75rem;}
}
.team-card{
  display:flex;
  flex-direction:column;
  gap:0.85rem;
  min-width:0;
}
.team-card__photo{
  position:relative;
  overflow:hidden;
  aspect-ratio:4 / 5;
  width:100%;
  background:var(--canvas-dark);
  border:1px solid rgba(23,23,23,0.08);
}
.team-card__photo img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 30%;
  display:block;
  transition:transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
@media (hover:hover) and (pointer:fine){
  .team-card:hover .team-card__photo img{transform:scale(1.03);}
}
.team-card__num{
  font-family:var(--mono);
  font-size:0.68rem;
  letter-spacing:0.24em;
  color:var(--oxblood);
  text-transform:uppercase;
}
.team-card__name{
  font-family:var(--display);
  font-size:var(--step-2);
  margin:0.3rem 0 0.35rem;
  font-variation-settings:'SOFT' 20, 'WONK' 1, 'opsz' 60;
  line-height:1.05;
}
.team-card__role{
  font-family:var(--mono);
  font-size:0.7rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--ink-soft);
  margin:0;
}
.team-card__status{
  display:inline-flex;
  align-items:center;
  gap:0.5rem;
  margin-top:0.55rem;
  padding:0.35rem 0.7rem;
  border:1px solid rgba(23,23,23,0.15);
  border-radius:999px;
  font-family:var(--mono);
  font-size:0.62rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--ink);
  background:var(--bone);
  align-self:flex-start;
}
.team-card__status--walkin{
  background:var(--oxblood);
  color:var(--canvas-light);
  border-color:var(--oxblood);
}
.team-card__status--walkin::before{
  content:"";
  width:6px;height:6px;border-radius:50%;
  background:var(--gold);
  display:inline-block;
}
.team-card__status--appointment::before{
  content:"";
  width:6px;height:6px;border-radius:50%;
  background:var(--oxblood);
  display:inline-block;
}

/* First-time-here block on homepage */
.first-time{
  padding:3.5rem 0 3rem;
  border-top:1px solid rgba(238,231,214,0.10);
}
.first-time__head{
  max-width:60ch;
  margin:0 auto 2.5rem;
  text-align:center;
}
.first-time__h{
  font-family:"Fraunces", Georgia, serif;
  font-size:clamp(1.75rem, 3.2vw, 2.5rem);
  color:var(--bone);
  margin:0.4rem 0 0;
  letter-spacing:-0.01em;
}
.first-time__steps{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1.5rem;
}
.first-time__step{
  background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border:1px solid rgba(238,231,214,0.10);
  border-radius:4px;
  padding:1.6rem 1.4rem 1.5rem;
  position:relative;
  transition:border-color 220ms ease, transform 220ms ease;
}
.first-time__step:hover{
  border-color:rgba(201,164,74,0.35);
  transform:translateY(-2px);
}
.first-time__num{
  display:block;
  font-family:"Bebas Neue", "Inter", sans-serif;
  letter-spacing:0.14em;
  color:var(--gold);
  font-size:0.95rem;
  margin-bottom:0.65rem;
}
.first-time__step h3{
  font-family:"Fraunces", Georgia, serif;
  font-size:1.25rem;
  color:var(--bone);
  margin:0 0 0.55rem;
  line-height:1.25;
}
.first-time__step p{
  font-family:"Inter", -apple-system, sans-serif;
  font-size:0.95rem;
  line-height:1.55;
  color:rgba(238,231,214,0.72);
  margin:0;
}
@media (max-width:759px){
  .first-time__steps{grid-template-columns:1fr;gap:1rem}
  .first-time{padding:2.5rem 0 2rem}
}

/* Services page: real haircut gallery */
.cut-gallery{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:220px;
  gap:12px;
}
.cut-gallery__item{
  position:relative;
  margin:0;
  overflow:hidden;
  border-radius:2px;
  background:#0A0A0A;
  border:1px solid rgba(238,231,214,0.06);
}
.cut-gallery__item--tall{grid-row:span 2}
.cut-gallery__item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 550ms ease, filter 300ms ease;
  filter:saturate(0.95);
}
.cut-gallery__item:hover img{
  transform:scale(1.04);
  filter:saturate(1.05);
}
.cut-gallery__item figcaption{
  position:absolute;
  left:0;right:0;bottom:0;
  padding:1rem 0.9rem 0.75rem;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  font-family:"Inter", -apple-system, sans-serif;
  font-size:0.8rem;
  color:var(--bone);
  letter-spacing:0.01em;
  opacity:0;
  transform:translateY(6px);
  transition:opacity 260ms ease, transform 260ms ease;
  pointer-events:none;
}
.cut-gallery__item:hover figcaption{
  opacity:1;
  transform:translateY(0);
}
@media (max-width:959px){
  .cut-gallery{grid-template-columns:repeat(3, 1fr);grid-auto-rows:180px}
}
@media (max-width:639px){
  .cut-gallery{grid-template-columns:repeat(2, 1fr);grid-auto-rows:160px;gap:8px}
  .cut-gallery__item figcaption{
    opacity:1;
    transform:none;
    font-size:0.72rem;
    padding:0.7rem 0.55rem 0.55rem;
  }
}

/* Running-late callout on Visit page */
.running-late{
  background:linear-gradient(180deg, rgba(201,164,74,0.08), transparent);
  border:1px dashed rgba(201,164,74,0.35);
  border-radius:4px;
  padding:1.8rem 1.4rem;
  text-align:center;
}
.running-late__inner h3{
  font-family:"Fraunces", Georgia, serif;
  font-size:clamp(1.15rem, 2vw, 1.5rem);
  color:var(--bone);
  margin:0.4rem 0 1.1rem;
  line-height:1.3;
  font-weight:500;
}
.running-late .btn--gold{margin-top:0}

/* Breadcrumbs on interior pages */
.crumbs{
  background:transparent;
  padding:1.1rem 0 0;
  border-bottom:1px solid rgba(238,231,214,0.06);
}
.crumbs ol{
  list-style:none;
  padding:0 clamp(1rem, 4vw, 2.4rem);
  margin:0 auto;
  max-width:1400px;
  display:flex;
  flex-wrap:wrap;
  gap:0.4rem;
  font-family:"Inter", -apple-system, sans-serif;
  font-size:0.78rem;
  letter-spacing:0.04em;
  color:rgba(238,231,214,0.55);
  text-transform:uppercase;
}
.crumbs li{display:inline-flex;align-items:center;gap:0.4rem}
.crumbs li:not(:last-child)::after{
  content:"/";
  color:rgba(238,231,214,0.28);
  margin-left:0.4rem;
}
.crumbs a{color:rgba(238,231,214,0.7);text-decoration:none;transition:color 180ms ease}
.crumbs a:hover{color:var(--gold)}
.crumbs [aria-current="page"]{color:var(--bone)}

/* FAQ accordion (service pages + visit page) */
.faq{max-width:70ch}
.faq__item{
  border-bottom:1px solid rgba(238,231,214,0.14);
  padding:0;
}
.faq .faq__item:first-child{border-top:1px solid rgba(238,231,214,0.14)}
.faq__item summary{
  cursor:pointer;
  list-style:none;
  padding:1.3rem 2.5rem 1.3rem 0;
  font-family:"Fraunces", Georgia, serif;
  font-size:1.15rem;
  color:var(--bone);
  position:relative;
  transition:color 180ms ease;
}
.faq__item summary::-webkit-details-marker{display:none}
.faq__item summary:hover{color:var(--gold)}
.faq__item summary::after{
  content:"";
  position:absolute;
  right:0.4rem;
  top:50%;
  width:10px;
  height:10px;
  border-right:1.5px solid var(--gold);
  border-bottom:1.5px solid var(--gold);
  transform-origin:60% 60%;
  transition:transform 220ms ease;
  transform:translateY(-70%) rotate(45deg);
}
.faq__item[open] summary::after{
  transform:translateY(-30%) rotate(-135deg);
}
.faq__body{
  padding:0 2.5rem 1.6rem 0;
  animation:faq-in 260ms ease;
}
.faq__body p{
  font-family:"Inter", -apple-system, sans-serif;
  font-size:0.98rem;
  line-height:1.6;
  color:rgba(238,231,214,0.78);
  margin:0;
}
/* Light section variant */
.section.light .faq__item{border-color:rgba(23,23,23,0.12)}
.section.light .faq__item summary{color:var(--ink)}
.section.light .faq__body p{color:rgba(23,23,23,0.75)}
@keyframes faq-in{
  from{opacity:0;transform:translateY(-4px)}
  to{opacity:1;transform:translateY(0)}
}

/* phead title override on new pages (already uses inline style) */
.phead__h{font-weight:500}
