/* ============================================================================
   Who's Ya Barber Hair Studio — "The Neighborhood Cut"
   CNR Digital concept build.

   The idea: a neighbourhood shop sign, not a salon template. A light chalk
   ground, one very large ink masthead, a horizontal contact sheet of the
   work, and thin rules doing the organising. Red and blue appear only as
   small barber-pole references — never as large fills behind text.

   Everything is a rectangle except buttons (5px). No cards, no arches, no
   gradients, no glass, no gold.
   ========================================================================= */

:root {
  --chalk: #F6F6F2;
  --paper: #FFFFFF;
  --ink: #202326;
  --ink-soft: #55595C;   /* 6.6:1 on chalk */
  --red: #A82D32;        /* 6.4:1 on chalk, 5.9:1 as white-on-red */
  --red-deep: #8E2429;   /* hover/active */
  --blue: #295A73;       /* 7.4:1 on chalk */
  --rule: #D8DBDA;
  --rule-strong: #B9BEBC;

  --font-display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --measure: 68ch;
  --max: 1400px;
  --sheet-gap: 6px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --speed: 160ms;
}

*, *::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;
  background: var(--chalk);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;   /* belt-and-braces: no element may cause a sideways scroll */
}

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

::selection { background: var(--blue); color: #fff; }

/* Focus: one visible, high-contrast ring everywhere, never removed. */
:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 2px;
}

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 0; top: 0; z-index: 100;
  transform: translateY(-120%);
  background: var(--ink); color: #fff; padding: 0.75rem 1.25rem;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

/* ── typography ─────────────────────────────────────────────────────────── */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 0.75rem;
}
.eyebrow--ink { color: var(--ink-soft); }

.section-head {
  font-size: clamp(2rem, 5.2vw, 3.75rem);
  text-transform: uppercase;
}

.lede { font-size: clamp(1.125rem, 1.9vw, 1.375rem); line-height: 1.5; max-width: 46ch; color: var(--ink); }
.body-copy { max-width: var(--measure); color: var(--ink-soft); }
.small { font-size: 0.875rem; }
.fine { font-size: 0.8125rem; line-height: 1.5; color: var(--ink-soft); }

/* ── buttons ────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px;                    /* exceeds the 44px target minimum */
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--speed) var(--ease), border-color var(--speed) var(--ease), color var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.btn:active { transform: translateY(1px); }
@media (prefers-reduced-motion: reduce) { .btn { transition: none; } .btn:active { transform: none; } }

.btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover { background: var(--red-deep); border-color: var(--red-deep); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--chalk); }

.btn--quiet { background: transparent; color: var(--blue); border-color: var(--rule-strong); }
.btn--quiet:hover { border-color: var(--blue); }

.btn--block { width: 100%; }

.textlink {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.textlink:hover { text-decoration-thickness: 2px; }

/* ── concept banner ─────────────────────────────────────────────────────── */

.concept-bar {
  background: var(--ink);
  color: var(--chalk);
  font-size: 0.8125rem;
  line-height: 1.4;
  padding: 0.5rem 0;
}
.concept-bar__inner { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; align-items: baseline; }
.concept-bar strong { font-family: var(--font-display); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.6875rem; color: #fff; }
.concept-bar a { color: #fff; }

/* ── header ─────────────────────────────────────────────────────────────── */

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--chalk) 92%, transparent);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--rule);
}
@supports not (backdrop-filter: blur(1px)) { .site-header { background: var(--chalk); } }

.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 62px;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.wordmark::before {
  /* Barber-pole reference: a 3px stack of red / chalk / blue. Stands in for
     the real logo, and is replaced the moment a usable asset is supplied. */
  content: "";
  width: 5px; height: 26px;
  background: linear-gradient(180deg, var(--red) 0 33%, var(--rule) 33% 66%, var(--blue) 66% 100%);
}

.nav { display: none; }
@media (min-width: 62rem) {
  .nav { display: flex; align-items: center; gap: 1.75rem; }
}
.nav a {
  font-family: var(--font-display);
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--speed) var(--ease);
}
.nav a:hover { border-bottom-color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }
/* 44px is the minimum comfortable tap target, so the header buttons are
   compact but never smaller than that. */
.header-actions .btn { min-height: 44px; padding: 0.5rem 1rem; font-size: 0.875rem; }

.menu-toggle { display: inline-flex; }
@media (min-width: 62rem) { .menu-toggle { display: none; } }

/* Mobile menu: a plain disclosure panel, no overlay trickery. */
.mobile-nav { display: none; border-bottom: 1px solid var(--rule); background: var(--chalk); }
.mobile-nav[data-open="true"] { display: block; }
@media (min-width: 62rem) { .mobile-nav { display: none !important; } }
.mobile-nav ul { list-style: none; margin: 0; padding: 0.5rem 0 1rem; }
.mobile-nav a {
  display: block; padding: 0.875rem 0; min-height: 48px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.9375rem;
  color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--rule);
}

/* ── hero ───────────────────────────────────────────────────────────────── */

.hero { padding-top: clamp(1.75rem, 4vw, 3.25rem); padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }

.hero__label {
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue);
  display: flex; align-items: center; gap: 0.625rem;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}
.hero__label::after { content: ""; height: 1px; background: var(--rule-strong); flex: 1; }

/* The masthead. Sized to fill the measure at every width; it reflows to two
   lines under 48rem rather than shrinking to a caption. */
.masthead {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.88;
  font-size: clamp(3.25rem, 9.1vw, 9.5rem);
  margin: 0;
}
.masthead .line { display: inline; }
@media (max-width: 48rem) {
  .masthead { font-size: 17vw; line-height: 0.92; }
  .masthead .line { display: block; }
}

.hero__support {
  margin: clamp(1rem, 2.2vw, 1.5rem) 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.125rem, 2.3vw, 1.6rem);
  letter-spacing: -0.01em;
  color: var(--red);
}
.hero__copy { margin: 0.75rem 0 0; max-width: 52ch; color: var(--ink-soft); }

/* Hero is a flex column so the booking strip can sit ABOVE the contact sheet
   on small screens (order:1) and below it on large ones. The primary CTA is
   never buried under a tall stack of images on a phone. */
.hero__flow { display: flex; flex-direction: column; }
.hero__intro { order: 0; }
.booking-strip { order: 1; }
.contact-sheet { order: 2; }
@media (min-width: 48rem) {
  .contact-sheet { order: 1; }
  .booking-strip { order: 2; }
}

.booking-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.5rem;
  padding: clamp(1rem, 2.2vw, 1.25rem) 0;
  margin-top: clamp(1.25rem, 3vw, 2rem);
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}
.booking-strip__where { font-size: 0.9375rem; color: var(--ink-soft); flex: 1 1 14rem; }
.booking-strip__where strong { color: var(--ink); font-weight: 600; }

/* Contact sheet: a barber's proof sheet. Narrow gutters, hard rectangles.
   Mobile shows one strong frame then two smaller, per the art direction. */
.contact-sheet {
  display: grid;
  gap: var(--sheet-gap);
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(1.25rem, 3vw, 2rem);
}
.contact-sheet > * :where(img, svg) { width: 100%; }
.contact-sheet__item:first-child { grid-column: span 2; }
@media (min-width: 48rem) {
  .contact-sheet { grid-template-columns: repeat(3, 1fr); }
  .contact-sheet__item:first-child { grid-column: auto; }
}
.contact-sheet__item { margin: 0; }
.contact-sheet__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.contact-sheet__item:first-child .contact-sheet__frame { aspect-ratio: 3 / 2; }
@media (min-width: 48rem) {
  .contact-sheet__item:first-child .contact-sheet__frame { aspect-ratio: 4 / 5; }
}
.contact-sheet__frame img { width: 100%; height: 100%; object-fit: cover; }
.contact-sheet figcaption {
  font-size: 0.75rem; letter-spacing: 0.04em; color: var(--ink-soft);
  padding-top: 0.5rem;
}

/* ── image placeholder ──────────────────────────────────────────────────── */

/* Used wherever an approved original photo has not been supplied. It reads
   as a labelled empty frame on purpose: it must never be mistaken for a
   photograph of this shop, its staff or its clients. */
.slot {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; text-align: center; padding: 1rem;
  background:
    repeating-linear-gradient(135deg, transparent 0 11px, rgba(32,35,38,0.035) 11px 22px),
    var(--paper);
}
.slot__mark { width: 6px; height: 34px; background: linear-gradient(180deg, var(--red) 0 33%, var(--rule) 33% 66%, var(--blue) 66% 100%); }
.slot__label {
  font-family: var(--font-display); font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
}
.slot__hint { font-size: 0.75rem; color: var(--ink-soft); max-width: 22ch; line-height: 1.4; }

/* ── generic section ────────────────────────────────────────────────────── */

.section { padding-block: clamp(3rem, 7vw, 6rem); }
.section--rule { border-top: 1px solid var(--rule); }
.section__head { margin-bottom: clamp(1.5rem, 3.5vw, 2.75rem); }
.section__head p { margin: 0.75rem 0 0; }

/* ── work gallery ───────────────────────────────────────────────────────── */

.gallery { display: grid; gap: var(--sheet-gap); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 48rem) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery__item { margin: 0; }
.gallery__frame { position: relative; aspect-ratio: 1 / 1; border: 1px solid var(--rule); background: var(--paper); overflow: hidden; }
.gallery__frame img { width: 100%; height: 100%; object-fit: cover; }
.gallery figcaption { font-size: 0.75rem; color: var(--ink-soft); padding-top: 0.5rem; }

/* Lightbox: a real <dialog>, so Escape and focus containment come from the
   platform rather than being re-implemented. */
dialog.lightbox {
  border: none; padding: 0; max-width: min(92vw, 60rem); max-height: 92vh;
  background: var(--paper); color: var(--ink);
}
dialog.lightbox::backdrop { background: rgba(32, 35, 38, 0.82); }
.lightbox__body { padding: 0.75rem; }
.lightbox__frame { position: relative; aspect-ratio: 4 / 5; max-height: 74vh; background: var(--chalk); }
.lightbox__frame img { width: 100%; height: 100%; object-fit: contain; }
.lightbox__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 0.625rem; }

/* ── barbers ────────────────────────────────────────────────────────────── */

.roster { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 52rem) { .roster { grid-template-columns: repeat(2, 1fr); } }

.barber { display: grid; grid-template-columns: 1fr; gap: 1rem; border-top: 2px solid var(--ink); padding-top: 1.25rem; }
@media (min-width: 34rem) { .barber { grid-template-columns: 9.5rem 1fr; gap: 1.25rem; } }
.barber__portrait { position: relative; aspect-ratio: 4 / 5; border: 1px solid var(--rule); background: var(--paper); overflow: hidden; }
.barber__portrait img { width: 100%; height: 100%; object-fit: cover; }
.barber__name { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; text-transform: uppercase; letter-spacing: -0.01em; margin: 0; }
.barber__spec { display: flex; flex-wrap: wrap; gap: 0.375rem; margin: 0.625rem 0 0; padding: 0; list-style: none; }
.barber__spec li { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); border: 1px solid var(--rule-strong); padding: 0.2rem 0.5rem; }
.barber__intro { margin: 0.75rem 0 0; color: var(--ink-soft); font-size: 0.9375rem; }
.barber__work { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 0.875rem; }
.barber__work .gallery__frame { aspect-ratio: 1 / 1; }
.barber__cta { margin-top: 1rem; }

/* ── notices ────────────────────────────────────────────────────────────── */

/* A flat, bordered block. Used for "this needs confirming" states — honest,
   not decorative, and deliberately not styled like a promotional callout. */
.notice { border: 1px solid var(--rule-strong); border-left: 4px solid var(--blue); background: var(--paper); padding: clamp(1rem, 2.5vw, 1.5rem); }
.notice--pending { border-left-color: var(--red); }
.notice h3 { font-size: 1.125rem; text-transform: none; letter-spacing: 0; margin-bottom: 0.5rem; }
.notice p { margin: 0 0 0.625rem; color: var(--ink-soft); font-size: 0.9375rem; }
.notice p:last-child { margin-bottom: 0; }
.notice ul { margin: 0.5rem 0 0; padding-left: 1.1rem; color: var(--ink-soft); font-size: 0.9375rem; }
.notice li { margin-bottom: 0.3rem; }

/* ── services ───────────────────────────────────────────────────────────── */

.services { border-top: 2px solid var(--ink); }
.service {
  display: grid; gap: 0.25rem 1.5rem;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: clamp(1rem, 2.4vw, 1.5rem) 0;
  border-bottom: 1px solid var(--rule);
}
.service__name { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.25rem, 2.4vw, 1.75rem); text-transform: uppercase; letter-spacing: -0.01em; }
.service__price { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.125rem, 2vw, 1.5rem); white-space: nowrap; }
.service__meta { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 0.35rem 1rem; align-items: baseline; color: var(--ink-soft); font-size: 0.9375rem; }
.service__duration { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); }
.services__foot { padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ── signup band ────────────────────────────────────────────────────────── */

/* Narrow by design: this is a band between two larger sections, not a
   full-bleed promotional panel. */
.band { background: var(--ink); color: var(--chalk); }
.band .eyebrow { color: #9FC3D6; }
.band h2 { color: #fff; }
.band__inner { display: grid; gap: clamp(1.5rem, 4vw, 3rem); padding-block: clamp(2.5rem, 6vw, 4.5rem); }
@media (min-width: 58rem) { .band__inner { grid-template-columns: 0.85fr 1.15fr; align-items: start; } }
.band__copy p { color: #C9CDCF; max-width: 38ch; }

/* ── forms ──────────────────────────────────────────────────────────────── */

.form { display: grid; gap: 1rem; }
.field { display: grid; gap: 0.375rem; }
.field > label { font-family: var(--font-display); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.field .hint { font-size: 0.8125rem; color: var(--ink-soft); }
.band .field .hint { color: #A7ACAF; }

.input, .textarea, .select {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.875rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  transition: border-color var(--speed) var(--ease);
}
.textarea { min-height: 7.5rem; resize: vertical; }
.input:focus, .textarea:focus, .select:focus { border-color: var(--blue); }
.input[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: var(--red); border-width: 2px; }

.field__error { font-size: 0.875rem; color: var(--red); font-weight: 600; }
.band .field__error { color: #F0A7AA; }
.field__error:empty { display: none; }

.field-row { display: grid; gap: 1rem; }
@media (min-width: 34rem) { .field-row { grid-template-columns: 1fr 1fr; } }

.checkline { display: grid; grid-template-columns: auto 1fr; gap: 0.625rem; align-items: start; padding: 0.5rem 0; }
.checkline input[type="checkbox"] { width: 22px; height: 22px; margin: 2px 0 0; accent-color: var(--red); }
.checkline label { font-size: 0.9375rem; line-height: 1.45; }

.prefs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pref {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--rule-strong); padding: 0.55rem 0.75rem; min-height: 44px;
  font-size: 0.875rem; cursor: pointer; border-radius: 4px;
}
.band .pref { border-color: #4A5054; }
.pref input { width: 18px; height: 18px; accent-color: var(--red); }
.pref:has(input:checked) { border-color: var(--red); }

/* Honeypot — off-screen, not display:none, so bots that check visibility
   still fill it. Never announced to assistive tech. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { margin: 0; font-size: 0.9375rem; }
.form-status[data-state="error"] { color: var(--red); font-weight: 600; }
.band .form-status[data-state="error"] { color: #F0A7AA; }
.form-status[data-state="ok"] { color: var(--ink); font-weight: 600; }
.band .form-status[data-state="ok"] { color: #fff; }

.success-panel { border: 1px solid var(--rule-strong); background: var(--paper); color: var(--ink); padding: clamp(1.25rem, 3vw, 1.75rem); }
.success-panel h3 { font-size: 1.375rem; margin-bottom: 0.5rem; text-transform: none; letter-spacing: 0; }
.success-panel p { color: var(--ink-soft); margin: 0 0 0.75rem; }

/* ── shop + reviews ─────────────────────────────────────────────────────── */

.split { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); }
@media (min-width: 56rem) { .split { grid-template-columns: 1.1fr 0.9fr; } }

.storefront { position: relative; aspect-ratio: 3 / 2; border: 1px solid var(--rule); background: var(--paper); overflow: hidden; }
.storefront img { width: 100%; height: 100%; object-fit: cover; }

.review-block { border-top: 2px solid var(--ink); padding-top: 1.25rem; }
.review-block h3 { font-size: clamp(1.5rem, 3vw, 2rem); text-transform: uppercase; }
.review-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }

/* ── visit ──────────────────────────────────────────────────────────────── */

.visit-grid { display: grid; gap: clamp(1.75rem, 4vw, 3rem); }
@media (min-width: 56rem) { .visit-grid { grid-template-columns: 0.9fr 1.1fr; } }

.factlist { margin: 0; }
.factlist div { display: grid; grid-template-columns: 8rem 1fr; gap: 0.5rem 1rem; padding: 0.875rem 0; border-bottom: 1px solid var(--rule); }
.factlist dt { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.factlist dd { margin: 0; }
@media (max-width: 34rem) { .factlist div { grid-template-columns: 1fr; gap: 0.2rem; } }

.hours { margin: 0; padding: 0; list-style: none; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.45rem 0; border-bottom: 1px solid var(--rule); font-size: 0.9375rem; }
.hours li[data-closed="true"] { color: var(--ink-soft); }

/* ── footer ─────────────────────────────────────────────────────────────── */

.site-footer { background: var(--ink); color: #C9CDCF; padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.site-footer a { color: #fff; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 48rem) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer .wordmark { color: #fff; font-size: 1.0625rem; }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 0.5rem; }
.footer-list a { text-decoration: none; }
.footer-list a:hover { text-decoration: underline; }
.footer-head { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin: 0 0 0.75rem; }
.footer-bottom { border-top: 1px solid #3A4044; margin-top: 2rem; padding-top: 1.25rem; font-size: 0.8125rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }

/* ── sticky mobile booking ──────────────────────────────────────────────── */

/* Appears only after the hero CTA has scrolled away, sits above the safe
   area, and is hidden whenever a form field has focus so it can never cover
   what someone is typing. */
.sticky-book {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  padding: 0.625rem var(--gutter) calc(0.625rem + env(safe-area-inset-bottom, 0px));
  background: color-mix(in srgb, var(--chalk) 95%, transparent);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--rule-strong);
  transform: translateY(110%);
  transition: transform 200ms var(--ease);
}
.sticky-book[data-show="true"] { transform: translateY(0); }
body.form-focus .sticky-book { transform: translateY(110%); }
@media (prefers-reduced-motion: reduce) { .sticky-book { transition: none; } }
@media (min-width: 48rem) { .sticky-book { display: none; } }
/* Keeps the last section clear of the bar. */
body[data-sticky="on"] { padding-bottom: 4.5rem; }
@media (min-width: 48rem) { body[data-sticky="on"] { padding-bottom: 0; } }

/* ── reveal ─────────────────────────────────────────────────────────────── */

/* Content is visible by default; JS adds .reveal-ready only if motion is
   allowed. Nothing essential depends on animation running. */
.reveal-ready [data-reveal] { opacity: 0; transform: translateY(10px); transition: opacity 200ms var(--ease), transform 200ms var(--ease); }
.reveal-ready [data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── content pages ──────────────────────────────────────────────────────── */

.prose { max-width: var(--measure); }
.prose h2 { font-size: clamp(1.375rem, 3vw, 1.875rem); margin-top: 2.5rem; text-transform: none; letter-spacing: -0.01em; }
.prose h3 { font-size: 1.125rem; margin-top: 1.75rem; text-transform: none; letter-spacing: 0; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.15rem; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { color: var(--ink); }

.page-head { padding-block: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 3vw, 2rem); border-bottom: 1px solid var(--rule); }
.page-head h1 { font-size: clamp(2.25rem, 6vw, 4rem); text-transform: uppercase; }

/* Utility */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.stack-sm > * + * { margin-top: 0.75rem; }
.stack > * + * { margin-top: 1.25rem; }
.stack-lg > * + * { margin-top: 2rem; }
.row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* ── added with the shop's own photography ──────────────────────────────── */

.booking-strip__note {
  flex: 1 0 100%;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

/* The gallery tiles are buttons that open the viewer, so they need the
   frame's appearance without a button's default chrome. */
.gallery__button {
  padding: 0;
  border: 1px solid var(--rule);
  background: var(--paper);
  cursor: zoom-in;
  width: 100%;
  display: block;
}
.gallery__button img { transition: transform 200ms var(--ease); }
.gallery__button:hover img { transform: scale(1.03); }
@media (prefers-reduced-motion: reduce) {
  .gallery__button img, .gallery__button:hover img { transition: none; transform: none; }
}

.team-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--rule);
  background: var(--paper);
  overflow: hidden;
}
.team-frame img { width: 100%; height: 100%; object-fit: cover; }

.storefront img { width: 100%; height: 100%; object-fit: cover; }

/* ── contact strip ──────────────────────────────────────────────────────── */

/* Quiet and secondary to booking by design: a single rule, no card, no form,
   no panel. It is a way to reach a person, not a competing call to action. */
.contact-strip {
  border-top: 1px solid var(--rule);
  background: var(--chalk);
}
.contact-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-block: clamp(1.75rem, 4vw, 2.5rem);
}
.contact-strip__head {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}
.contact-strip__copy {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9375rem;
}

/* With the questions form gone the visit section is a single column, so the
   details are held to a readable measure rather than stretched. */
.visit-grid--single { grid-template-columns: minmax(0, 34rem); }
@media (min-width: 56rem) { .visit-grid--single { grid-template-columns: minmax(0, 34rem); } }
