/* Brass & Oak — static barbershop sample.
   Walnut, brass and cognac leather. Mobile-first, no framework. */

/* ---------- Tokens ---------- */
:root {
  --walnut-950: #140d09;
  --walnut-900: #1b120d;
  --walnut-800: #2a1b13;
  --walnut-700: #3b2519;
  --walnut-600: #4e3223;

  --cognac: #8b4a2b;
  --cognac-light: #a85f3b;
  --cognac-deep: #6b3820;

  --gold: #c9a227;
  --gold-light: #e2c56a;
  --gold-deep: #9e7d1c;
  --gold-ink: #7a5f0f;         /* gold for small text on cream — AA */

  --cream: #f4ebdc;
  --cream-2: #ede1cc;
  --paper: #faf5ec;
  --charcoal: #2b2622;
  --charcoal-2: #4a423b;
  --muted: #6b5d52;
  --muted-on-dark: #c9b8a6;
  --cream-on-dark: #f1e6d3;

  --line-gold: rgba(201, 162, 39, 0.38);
  --line-gold-strong: rgba(201, 162, 39, 0.7);
  --line-dark: rgba(43, 38, 34, 0.12);
  --line-light: rgba(244, 235, 220, 0.14);

  --shadow-soft: 0 1px 2px rgba(27, 18, 13, 0.08), 0 24px 48px -28px rgba(27, 18, 13, 0.45);
  --shadow-deep: 0 2px 4px rgba(0, 0, 0, 0.25), 0 40px 80px -30px rgba(0, 0, 0, 0.7);

  --font-display: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 6px;
  --radius-sm: 3px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 220ms;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-color: var(--line-gold-strong); text-underline-offset: 0.18em; }
a:hover { text-decoration-color: currentColor; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
address { font-style: normal; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.9rem); }
h2 { font-size: clamp(2.05rem, 4.3vw, 3.25rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 1.85rem); }
p { margin: 0 0 1em; }
em { font-style: italic; }
small { font-size: 0.8em; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.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;
}

/* Focus — brass ring, visible everywhere */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-dark :focus-visible, .site-header :focus-visible, .hero :focus-visible,
.services :focus-visible, .hours :focus-visible, .site-footer :focus-visible { outline-color: var(--gold-light); }

.skip-link {
  position: absolute; left: 1rem; top: -100%;
  background: var(--gold); color: var(--walnut-900);
  padding: 0.6rem 1rem; border-radius: var(--radius); font-weight: 600; z-index: 100;
  text-decoration: none;
}
.skip-link:focus { top: 0.75rem; }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-ink); margin: 0 0 1.1rem;
}
.eyebrow .rule { width: 2.25rem; height: 1px; background: var(--gold); flex: none; }
.eyebrow-light { color: var(--gold-light); }
.eyebrow-light .rule { background: var(--gold-light); }
.lede, .section-lede { font-size: clamp(1.05rem, 1.35vw, 1.2rem); line-height: 1.65; }
.section-lede { max-width: 56ch; color: var(--muted); }
.on-dark .section-lede, .services .section-lede, .hours .section-lede { color: var(--muted-on-dark); }
.text-link {
  display: inline-flex; gap: 0.5rem; align-items: center;
  font-weight: 600; color: var(--gold-ink); text-decoration: none;
  border-bottom: 1px solid var(--line-gold-strong); padding-bottom: 0.15rem;
  transition: border-color var(--dur) var(--ease-out), gap var(--dur) var(--ease-out);
}
.text-link:hover { border-color: var(--gold-ink); gap: 0.8rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.6rem; min-height: 3rem;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em;
  border-radius: var(--radius); border: 1px solid transparent;
  text-decoration: none; white-space: nowrap;
  transition: transform var(--dur) var(--ease-out), background var(--dur), border-color var(--dur), box-shadow var(--dur), color var(--dur);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  color: var(--walnut-900);
  border-color: rgba(158, 125, 28, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 245, 210, 0.6), 0 10px 24px -14px rgba(201, 162, 39, 0.9);
}
.btn-gold:hover { box-shadow: inset 0 1px 0 rgba(255, 245, 210, 0.7), 0 14px 28px -14px rgba(201, 162, 39, 1); }
.btn-ghost {
  background: transparent; color: var(--cream-on-dark);
  border-color: var(--line-gold-strong);
}
.btn-ghost:hover { background: rgba(201, 162, 39, 0.1); border-color: var(--gold-light); }
.booking .btn-ghost { color: var(--charcoal); border-color: var(--line-gold-strong); }
.booking .btn-ghost:hover { background: rgba(201, 162, 39, 0.12); }
.btn-small { padding: 0.6rem 1.1rem; min-height: 2.4rem; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ---------- Sample bar ---------- */
.sample-bar {
  background: var(--walnut-950); color: var(--gold-light);
  font-size: 0.78rem; letter-spacing: 0.02em; text-align: center;
  padding: 0.45rem var(--gutter);
  border-bottom: 1px solid var(--line-gold);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(27, 18, 13, 0.82);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-gold);
  color: var(--cream-on-dark);
  transition: box-shadow var(--dur), background var(--dur);
}
.site-header[data-scrolled="true"] { background: rgba(20, 13, 9, 0.94); box-shadow: 0 12px 30px -20px rgba(0, 0, 0, 0.8); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 4.25rem;
}
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1; padding: 0.4rem 0; }
.brand-word {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.55rem; letter-spacing: 0.03em; color: var(--cream);
}
.brand-word .amp { font-style: italic; color: var(--gold); font-weight: 400; margin: 0 0.06em; }
.brand-sub {
  font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-light); margin-top: 0.3rem; padding-left: 0.1em;
}
.nav-toggle {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; border: 1px solid var(--line-gold-strong); color: var(--cream-on-dark);
  border-radius: var(--radius); padding: 0.5rem 0.85rem; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
}
.nav-toggle .bars { position: relative; width: 18px; height: 12px; display: inline-block; }
.nav-toggle .bars::before, .nav-toggle .bars::after, .nav-toggle .bars {
  border-radius: 1px;
}
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--gold);
  transition: transform var(--dur) var(--ease-out), top var(--dur) var(--ease-out);
}
.nav-toggle .bars::before { top: 1px; }
.nav-toggle .bars::after { top: 10px; }
.nav-toggle[aria-expanded="true"] .bars::before { top: 5.5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { top: 5.5px; transform: rotate(-45deg); }

.site-header[data-menu-open="true"] { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--walnut-950); }
.site-nav {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%; z-index: 1;
  background: var(--walnut-950);
  border-bottom: 1px solid var(--line-gold);
  padding: 0.75rem var(--gutter) 1.25rem;
  flex-direction: column; gap: 0.25rem;
  box-shadow: 0 30px 50px -30px rgba(0, 0, 0, 0.8);
}
.site-nav[data-open="true"] { display: flex; }
.site-nav a {
  text-decoration: none; font-weight: 500; font-size: 1.05rem;
  padding: 0.75rem 0.25rem; color: var(--cream-on-dark);
  border-bottom: 1px solid var(--line-light);
}
.site-nav a:not(.btn):hover { color: var(--gold-light); }
.site-nav .btn { margin-top: 0.75rem; border-bottom: 0; justify-content: center; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex; position: static; flex-direction: row; align-items: center; gap: 1.9rem;
    background: transparent; border: 0; padding: 0; box-shadow: none;
  }
  .site-nav a { font-size: 0.92rem; padding: 0.4rem 0; border: 0; position: relative; letter-spacing: 0.01em; }
  .site-nav a:not(.btn)::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform var(--dur) var(--ease-out);
  }
  .site-nav a:not(.btn):hover::after, .site-nav a:not(.btn)[aria-current="true"]::after { transform: scaleX(1); }
  .site-nav .btn { margin: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--walnut-900); color: var(--cream-on-dark);
  min-height: min(92svh, 900px);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-bg, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg img { object-fit: cover; object-position: 62% 50%; z-index: -2; }
.hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(70% 90% at 78% 40%, rgba(201, 162, 39, 0.14), transparent 60%),
    linear-gradient(90deg, rgba(20, 13, 9, 0.96) 0%, rgba(20, 13, 9, 0.9) 34%, rgba(27, 18, 13, 0.62) 62%, rgba(27, 18, 13, 0.4) 100%),
    linear-gradient(180deg, rgba(20, 13, 9, 0.25) 0%, rgba(20, 13, 9, 0.1) 40%, rgba(20, 13, 9, 0.85) 100%);
}
.hero-inner {
  display: grid; gap: 2.5rem;
  padding-block: clamp(3rem, 8vw, 6.5rem) clamp(2.5rem, 6vw, 4.5rem);
  flex: 1; align-content: center;
}
.hero-copy { max-width: 40rem; }
.hero h1 { color: var(--cream); margin-bottom: 1.1rem; }
.hero h1 em { color: var(--gold-light); font-weight: 400; }
.hero .lede { color: var(--muted-on-dark); max-width: 36rem; margin-bottom: 1.8rem; }
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow .rule { background: var(--gold-light); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.25rem; }
.hero-facts {
  display: flex; flex-wrap: wrap; gap: 1.75rem 2.5rem;
  border-top: 1px solid var(--line-gold); padding-top: 1.4rem; max-width: 36rem;
}
.hero-facts li { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-facts strong { font-family: var(--font-display); font-weight: 500; font-size: 1.55rem; line-height: 1; color: var(--cream); }
.hero-facts span { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-on-dark); }

.hero-portrait { margin: 0; justify-self: center; width: min(100%, 30rem); }
.portrait-frame {
  position: relative; border-radius: var(--radius); overflow: visible;
  box-shadow: var(--shadow-deep);
}
.portrait-frame::before {
  content: ""; position: absolute; inset: -0.85rem; border: 1px solid var(--line-gold-strong);
  border-radius: calc(var(--radius) + 6px); pointer-events: none;
  transform: translate(0.55rem, 0.55rem);
}
.portrait-frame img {
  border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%;
  outline: 1px solid rgba(201, 162, 39, 0.25); outline-offset: -1px;
  filter: saturate(0.94) contrast(1.02);
}
.hero-portrait figcaption {
  display: flex; flex-direction: column; gap: 0.15rem; margin-top: 1.5rem; padding-left: 0.1rem;
}
.cap-name { font-family: var(--font-display); font-size: 1.35rem; color: var(--cream); line-height: 1.1; }
.cap-role { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); }

.materials {
  position: relative; border-top: 1px solid var(--line-gold);
  background: rgba(20, 13, 9, 0.7); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.materials-inner {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.75rem 1.1rem;
  padding-block: 0.95rem;
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.06em; color: var(--muted-on-dark);
}
.materials .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex: none; }

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); align-items: center; gap: clamp(2rem, 5vw, 5rem); }
  .hero-portrait { justify-self: end; width: 100%; max-width: 34rem; transform: translateY(1.5rem); }
  .portrait-frame img { aspect-ratio: 4 / 3; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section-head { margin-bottom: clamp(2.25rem, 5vw, 3.75rem); max-width: 60rem; }
.section-head h2 { margin-bottom: 0.7rem; }

/* Paper grain on cream sections — subtle, static */
.about, .gallery, .booking {
  background-color: var(--cream);
  background-image:
    radial-gradient(1200px 500px at 90% -10%, rgba(201, 162, 39, 0.08), transparent 60%),
    repeating-linear-gradient(0deg, rgba(43, 38, 34, 0.012) 0 1px, transparent 1px 3px);
}
.gallery { background-color: var(--paper); }

/* ---------- About ---------- */
.about-grid { display: grid; gap: 2.75rem; align-items: center; }
.about-photo { margin: 0; position: relative; }
.about-photo img {
  border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; object-position: 45% 40%; width: 100%;
  box-shadow: var(--shadow-soft);
}
.about-photo::after {
  content: ""; position: absolute; left: -0.9rem; top: 1.25rem; bottom: -0.9rem; width: 40%;
  border: 1px solid var(--line-gold-strong); border-right: 0; border-radius: var(--radius) 0 0 var(--radius);
  pointer-events: none;
}
.about-photo figcaption {
  margin-top: 1rem; font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--muted);
}
.about-copy h2 { margin-bottom: 1.1rem; }
.about-copy p { color: var(--charcoal-2); max-width: 56ch; }
.stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem;
  margin: 2rem 0 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--line-gold);
}
.stats dt { font-family: var(--font-display); font-size: clamp(1.3rem, 1.8vw, 1.65rem); line-height: 1.05; color: var(--charcoal); }
.stats dd { margin: 0.25rem 0 0; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

@media (min-width: 900px) {
  .about-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(3rem, 6vw, 6rem); }
  .about-photo { max-width: 30rem; }
}

/* ---------- Services (walnut) ---------- */
.services {
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(139, 74, 43, 0.35), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(201, 162, 39, 0.12), transparent 60%),
    var(--walnut-900);
  color: var(--cream-on-dark);
  border-top: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold);
}
.services h2 { color: var(--cream); }
.menu-grid { display: grid; gap: 2.25rem; }
.menu-group {
  padding: 1.75rem 1.5rem 1.4rem;
  background: rgba(244, 235, 220, 0.035);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  position: relative;
}
.menu-group::before {
  content: ""; position: absolute; inset: 6px; border: 1px solid rgba(201, 162, 39, 0.16); border-radius: 3px; pointer-events: none;
}
.menu-group h3 {
  color: var(--gold-light); font-weight: 500; letter-spacing: 0.02em;
  margin-bottom: 1.1rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--line-gold);
}
.menu li + li { margin-top: 1.1rem; }
.menu .item { display: flex; align-items: baseline; gap: 0.6rem; }
.menu .name { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.15; color: var(--cream); }
.menu .name small { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-on-dark); margin-left: 0.3rem; }
.menu .leader { flex: 1; border-bottom: 1px dotted rgba(201, 162, 39, 0.55); transform: translateY(-0.35em); min-width: 1.5rem; }
.menu .price { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-light); font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu .desc { margin: 0.3rem 0 0; font-size: 0.92rem; color: var(--muted-on-dark); line-height: 1.5; max-width: 40ch; }
.menu-note {
  margin: 2.5rem auto 0; text-align: center; color: var(--muted-on-dark); font-size: 0.98rem; max-width: 48ch;
}
.menu-note strong { color: var(--cream); font-weight: 600; }

@media (min-width: 720px) { .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.6rem; } .menu-group { padding: 2rem 1.75rem 1.6rem; } }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid; gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 42vw;
  grid-auto-flow: dense;
}
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--walnut-800); box-shadow: var(--shadow-soft);
  outline: 1px solid var(--line-gold); outline-offset: -1px;
}
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms var(--ease-out), filter 900ms var(--ease-out);
  filter: saturate(0.96);
}
.tile:hover img { transform: scale(1.035); filter: saturate(1.02); }
.tile-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.25rem 1rem 0.85rem;
  background: linear-gradient(180deg, transparent, rgba(20, 13, 9, 0.78));
  color: var(--cream); font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.03em;
}
/* Mobile: 2 columns — wide tile spans both, the tall tile spans two rows, the rest fill in. */
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }
.credits-line { margin-top: 1.25rem; font-size: 0.8rem; color: var(--muted); }
.credits-line a { color: var(--gold-ink); }

@media (min-width: 720px) {
  /* Desktop: a fixed 3×3 composition, no holes. */
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: clamp(180px, 22vw, 300px);
    grid-template-areas:
      "tall wide wide"
      "tall n1   n2"
      "n3   w2   w2";
    gap: 1rem;
  }
  .g-tall { grid-area: tall; } .g-wide { grid-area: wide; } .g-n1 { grid-area: n1; }
  .g-n2 { grid-area: n2; } .g-n3 { grid-area: n3; } .g-w2 { grid-area: w2; }
  .tile-cap { font-size: 1.15rem; padding-inline: 1.25rem; }
}

/* ---------- Hours + location (cognac walnut) ---------- */
.hours {
  background:
    radial-gradient(900px 600px at 100% 0%, rgba(139, 74, 43, 0.5), transparent 60%),
    linear-gradient(180deg, var(--walnut-800), var(--walnut-900));
  color: var(--cream-on-dark);
  border-top: 1px solid var(--line-gold);
}
.hours h2 { color: var(--cream); font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 1.25rem; }
.hours-grid { display: grid; gap: 1.5rem; align-items: start; }
.hours-card, .location-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(20, 13, 9, 0.55);
  border: 1px solid var(--line-gold); border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
}
.hours-table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.hours-table th, .hours-table td { padding: 0.7rem 0; border-bottom: 1px solid var(--line-light); text-align: left; }
.hours-table th { font-weight: 500; color: var(--cream); font-family: var(--font-display); font-size: 1.15rem; }
.hours-table td { text-align: right; font-variant-numeric: tabular-nums; color: var(--cream-on-dark); }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.closed { color: var(--muted-on-dark); font-style: italic; font-family: var(--font-display); font-size: 1.05rem; }
.hours-note { margin: 1.25rem 0 0; font-size: 0.92rem; color: var(--muted-on-dark); }
.hours-note em { color: var(--gold-light); }
.location-card address { line-height: 1.7; font-size: 1.02rem; margin-bottom: 1.25rem; }
.location-card address strong { color: var(--cream); font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
.location-card address a { color: var(--gold-light); text-decoration-color: var(--line-gold-strong); }
.location-facts li { position: relative; padding-left: 1.4rem; margin-bottom: 0.6rem; color: var(--muted-on-dark); font-size: 0.95rem; }
.location-facts li::before {
  content: ""; position: absolute; left: 0; top: 0.65em; width: 0.7rem; height: 1px; background: var(--gold);
}
.fine-print { margin: 1.25rem 0 0; font-size: 0.78rem; color: var(--muted-on-dark); opacity: 0.8; }

@media (min-width: 900px) { .hours-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 2rem; } }

/* ---------- Booking ---------- */
.booking-grid { display: grid; gap: 2.5rem; align-items: start; }
.booking-copy p { color: var(--charcoal-2); max-width: 52ch; }
.booking-points { margin: 1.5rem 0; }
.booking-points li { position: relative; padding-left: 1.5rem; margin-bottom: 0.7rem; color: var(--charcoal-2); }
.booking-points li::before { content: ""; position: absolute; left: 0; top: 0.75em; width: 0.8rem; height: 1px; background: var(--gold-deep); }
.demo-flag {
  display: inline-block; padding: 0.7rem 1rem; border-radius: var(--radius);
  background: rgba(201, 162, 39, 0.12); border: 1px solid var(--line-gold); font-size: 0.9rem; color: var(--charcoal);
}

.booking-form {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--paper);
  border: 1px solid var(--line-gold-strong); border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.booking-form::before {
  content: ""; position: absolute; inset: 7px; border: 1px solid var(--line-gold); border-radius: 3px; pointer-events: none;
}
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--charcoal-2); margin-bottom: 0.45rem; }
.field label .optional { text-transform: none; letter-spacing: 0; font-weight: 500; color: var(--muted); margin-left: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 0.95rem;
  background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius-sm);
  color: var(--charcoal); transition: border-color var(--dur), box-shadow var(--dur);
}
.field input::placeholder, .field textarea::placeholder { color: #9a8b7d; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(43, 38, 34, 0.28); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.28);
}
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3 5l4 4 4-4' fill='none' stroke='%239e7d1c' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem;
}
.field textarea { resize: vertical; min-height: 5.5rem; }
.field-row { display: grid; gap: 1rem; }
.field [aria-invalid="true"] { border-color: #a5432a; box-shadow: 0 0 0 3px rgba(165, 67, 42, 0.15); }
.error { margin: 0.4rem 0 0; font-size: 0.82rem; color: #8f3a22; }
.form-fine { margin: 0.9rem 0 0; font-size: 0.78rem; color: var(--muted); text-align: center; }

.booking-form[data-state="done"] > :not(.confirmation) { display: none; }
.confirmation { text-align: center; padding: 1rem 0.25rem 0.5rem; }
.confirmation:focus-visible { outline: none; }
.confirmation-mark { color: var(--gold-deep); display: flex; justify-content: center; margin-bottom: 1rem; }
.confirmation h3 { margin-bottom: 0.6rem; }
.confirmation p { color: var(--charcoal-2); max-width: 40ch; margin-inline: auto; }
.confirmation-demo { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; }
.confirmation .btn { margin-top: 0.75rem; }

@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .booking-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(3rem, 6vw, 5.5rem); } .booking-copy { position: sticky; top: 6rem; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--walnut-950); color: var(--muted-on-dark);
  border-top: 1px solid var(--line-gold);
  padding-block: 3rem 2rem;
  font-size: 0.9rem;
}
.footer-grid { display: grid; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line-light); }
.footer-brand .brand-word { font-size: 1.8rem; display: block; margin-bottom: 0.4rem; }
.footer-brand p { margin: 0; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a, .footer-contact a { text-decoration: none; color: var(--cream-on-dark); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-legal { padding-top: 1.5rem; font-size: 0.8rem; line-height: 1.6; }
.footer-legal p { max-width: 90ch; }
.footer-legal a { color: var(--gold-light); }
.footer-legal strong { color: var(--cream-on-dark); }
.copyright { margin: 0.5rem 0 0; opacity: 0.8; }

@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 0.8fr 1.2fr; } }

/* ---------- Scroll reveals ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .js .reveal { opacity: 1; transform: none; }
  .tile:hover img { transform: none; }
  .btn:hover { transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .sample-bar, .site-header, .hero-bg, .hero-shade, .booking-form, .materials { display: none !important; }
  body, .hero, .services, .hours, .site-footer { background: #fff !important; color: #000 !important; }
  .js .reveal { opacity: 1; transform: none; }
}
