@font-face { font-family: 'Bevan'; src: url('../assets/bevan-regular.ttf') format('truetype'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'Bevan'; src: url('../assets/bevan-italic.ttf') format('truetype'); font-weight: 400; font-style: italic; }
@font-face { font-family: 'Domine'; src: url('../assets/domine-400.ttf') format('truetype'); font-weight: 400; }
@font-face { font-family: 'Domine'; src: url('../assets/domine-600.ttf') format('truetype'); font-weight: 600; }
@font-face { font-family: 'Domine'; src: url('../assets/domine-700.ttf') format('truetype'); font-weight: 700; }
@font-face { font-family: 'Courier Prime'; src: url('../assets/courierprime-400.ttf') format('truetype'); font-weight: 400; }
@font-face { font-family: 'Courier Prime'; src: url('../assets/courierprime-700.ttf') format('truetype'); font-weight: 700; }

:root {
  --color-ink: #241811;
  --color-ink-soft: #2f2018;
  --color-canvas: #f3ead9;
  --color-canvas-white: #faf5ea;
  --color-surface: #e8dcc4;
  --color-surface-soft: #eee2cb;
  --color-brass: #b8925a;
  --color-brass-deep: #93713f;
  --color-brass-hover: #a67e48;
  --color-maroon: #6b2b28;
  --color-maroon-hover: #5a2321;
  --color-white: #faf5ea;
  --color-text-muted: #7d6c58;
  --color-text-muted-dark: #c9b89c;

  --font-display: 'Bevan', Georgia, serif;
  --font-body: 'Domine', Georgia, serif;
  --font-mono: 'Courier Prime', ui-monospace, monospace;

  --text-xs: 0.78rem;
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-lg: 1.2rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.9rem;
  --text-3xl: 2.4rem;
  --text-4xl: 3rem;
  --text-5xl: 3.8rem;
  --text-6xl: 4.8rem;

  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.25rem; --sp-6: 1.5rem; --sp-8: 2rem; --sp-10: 2.5rem;
  --sp-12: 3rem; --sp-16: 4rem; --sp-20: 5rem; --sp-24: 6rem; --sp-32: 8rem;

  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-canvas);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--color-brass); color: var(--color-ink);
  padding: var(--sp-2) var(--sp-4); z-index: 999;
}
.skip-link:focus { left: var(--sp-4); top: var(--sp-4); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-6); }

.display-heading {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-maroon);
  display: block;
  margin-bottom: var(--sp-3);
}
.eyebrow--light { color: var(--color-brass); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-mono); font-weight: 700;
  font-size: var(--text-sm); letter-spacing: 0.05em; text-transform: uppercase;
  padding: var(--sp-4) var(--sp-6);
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 15px; height: 15px; }
.btn--brass { background: var(--color-brass); color: var(--color-ink); }
.btn--brass:hover { background: var(--color-brass-hover); }
.btn--maroon { background: var(--color-maroon); color: var(--color-white); }
.btn--maroon:hover { background: var(--color-maroon-hover); }
.btn--ghost-dark { border: 1.5px solid var(--color-ink); color: var(--color-ink); }
.btn--ghost-dark:hover { background: var(--color-ink); color: var(--color-white); }
.btn--ghost-light { border: 1.5px solid var(--color-white); color: var(--color-white); }
.btn--ghost-light:hover { background: var(--color-white); color: var(--color-ink); }
.btn--link { font-family: var(--font-mono); font-size: var(--text-sm); letter-spacing: 0.04em; text-transform: uppercase; border-bottom: 1.5px solid currentColor; padding: var(--sp-2) 0; }

/* ============================================
   Age gate
   ============================================ */
.age-gate {
  position: fixed; inset: 0; z-index: 200;
  background: var(--color-ink);
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-6);
}
.age-gate[hidden] { display: none; }
.age-gate__card {
  max-width: 460px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-6);
}
.age-gate__logo { width: min(80vw, 380px); }
.age-gate__text { color: var(--color-text-muted-dark); font-size: var(--text-base); }
.age-gate__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; justify-content: center; }
.age-gate__fine { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--color-text-muted-dark); opacity: 0.7; }

/* ============================================
   Nav
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-ink);
  border-bottom: 1px solid rgba(184,146,90,0.25);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-4) 0; gap: var(--sp-4); }
.nav__brand { display: flex; align-items: center; }
.nav__brand svg { height: 34px; width: auto; }
.nav__links { display: none; gap: var(--sp-8); font-family: var(--font-mono); font-size: var(--text-sm); letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-text-muted-dark); }
.nav__links a:hover { color: var(--color-brass); }
.nav__actions { display: flex; align-items: center; gap: var(--sp-4); }
.nav__toggle { color: var(--color-white); }
.nav__toggle svg { width: 24px; height: 24px; }
@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
}
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--color-ink-soft); padding: var(--sp-4) var(--sp-6);
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.04em;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { padding: var(--sp-3) 0; color: var(--color-text-muted-dark); border-bottom: 1px solid rgba(184,146,90,0.15); }
@media (min-width: 900px) { .mobile-menu { display: none !important; } }

/* ============================================
   Hero
   ============================================ */
/* The wrapper's height IS the scrub distance: 90 frames over 420vh is roughly
   one frame per 47px of scroll, which reads smooth without dragging. */
/* `padding: 0` overrides the global `section` padding — left on, it offsets
   the sticky child from the wrapper's top and desyncs the scrub math. */
.hero-scroll { position: relative; height: 420vh; padding: 0; background: var(--color-ink); }

.hero {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: hidden;
  background: var(--color-ink);
  display: flex; align-items: center; justify-content: center;
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%; display: block;
}
/* Brass hatching from the original hero, kept over the footage. */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image: repeating-linear-gradient(115deg, rgba(184,146,90,0.05) 0, rgba(184,146,90,0.05) 2px, transparent 2px, transparent 34px);
  pointer-events: none;
}
/* Left-weighted so the copy has a dark bed while the Georgia pin — which sits
   around 58% across frame — stays unobscured. */
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to right, rgba(10,8,8,0.88) 0%, rgba(10,8,8,0.55) 34%, transparent 58%),
    linear-gradient(180deg, rgba(10,8,8,0.65) 0%, transparent 26%, transparent 66%, rgba(10,8,8,0.85) 100%);
}

.hero__content {
  position: absolute; z-index: 2;
  text-align: left;
  display: flex; flex-direction: column; align-items: flex-start;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(calc(-50% + var(--drift, 0px)));
  will-change: opacity, transform;
}
.hero__content--land {
  align-items: center; text-align: center;
  top: auto; bottom: var(--sp-20);
  transform: translateY(var(--drift, 0px));
  opacity: 0; pointer-events: none;
}

.hero__wordmark { width: min(92vw, 560px); margin-bottom: var(--sp-8); }
.hero__sub {
  max-width: 46ch; color: var(--color-text-muted-dark);
  font-size: var(--text-lg); margin-bottom: var(--sp-8);
  text-shadow: 0 2px 18px rgba(0,0,0,0.9);
}
.hero__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; justify-content: center; }
.hero__meta {
  display: flex; gap: var(--sp-8); flex-wrap: wrap;
  font-family: var(--font-mono); font-size: var(--text-sm); color: var(--color-brass);
  letter-spacing: 0.03em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.9);
}
.hero__meta span { display: flex; align-items: center; gap: var(--sp-2); }
.hero__meta svg { width: 16px; height: 16px; }

.hero__cue {
  margin-top: var(--sp-12);
  font-family: var(--font-mono); font-size: var(--text-sm);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-text-muted-dark);
}
.hero__land-kicker {
  font-family: var(--font-mono); font-size: var(--text-sm);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-brass); margin-bottom: var(--sp-6);
  text-shadow: 0 2px 14px rgba(0,0,0,0.9);
}

@media (max-width: 820px) {
  .hero-scroll { height: 340vh; }
  /* No clear left column on narrow screens, so the copy re-centres above
     where the pin sits. */
  .hero__content {
    top: 12vh; transform: translateY(var(--drift, 0px));
    text-align: center; align-items: center;
  }
  /* Portrait crops the globe so the city lights sit directly behind the copy.
     The gradient alone left the brass meta line unreadable, so the upper band
     is held near-opaque and only clears below the text block. */
  .hero__scrim {
    background: linear-gradient(180deg,
      rgba(10,8,8,0.94) 0%, rgba(10,8,8,0.88) 42%,
      rgba(10,8,8,0.62) 62%, rgba(10,8,8,0.25) 78%, rgba(10,8,8,0.9) 100%);
  }
  .hero__wordmark { width: min(86vw, 420px); margin-bottom: var(--sp-6); }
  .hero__sub {
    font-size: var(--text-base); max-width: 34ch;
    margin-bottom: var(--sp-6);
  }
  .hero__meta {
    justify-content: center; flex-direction: column;
    gap: var(--sp-3); align-items: center;
  }
  .hero__cue { margin-top: var(--sp-8); }
  .hero__content--land { bottom: var(--sp-16); }
}

/* Reduced motion: unpin, stack both layers, hold frame 0. */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll { height: auto; }
  .hero {
    position: relative; height: auto; min-height: 100vh;
    flex-direction: column; justify-content: center;
    padding: var(--sp-24) 0 var(--sp-20);
  }
  .hero__content {
    position: relative; top: auto; bottom: auto;
    transform: none !important; opacity: 1 !important;
    align-items: center; text-align: center;
  }
  .hero__content--land { pointer-events: auto !important; margin-top: var(--sp-12); }
  .hero__meta { justify-content: center; }
  .hero__cue { display: none; }
}

/* ============================================
   Ticker
   ============================================ */
.ticker { background: var(--color-brass); color: var(--color-ink); padding: var(--sp-4) 0; overflow: hidden; }
.ticker__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); flex-wrap: wrap; }
.ticker__inner strong { font-family: var(--font-display); font-weight: 400; font-size: var(--text-lg); }
.ticker__mid { font-family: var(--font-mono); letter-spacing: 0.04em; text-transform: uppercase; font-size: var(--text-sm); opacity: 0.85; }

/* ============================================
   Section shared
   ============================================ */
section { padding: var(--sp-24) 0; }
.section--surface { background: var(--color-surface); }
.section--dark { background: var(--color-ink); color: var(--color-white); }

/* ============================================
   01 / Story
   ============================================ */
.story__grid { display: grid; gap: var(--sp-12); }
@media (min-width: 900px) { .story__grid { grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: var(--sp-16); } }
.story__badge {
  font-family: var(--font-mono); font-size: var(--text-sm); letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-brass-deep); border: 1px solid var(--color-brass-deep); border-radius: 999px;
  padding: var(--sp-2) var(--sp-4); display: inline-block;
}
.story__art { display: flex; align-items: center; justify-content: center; }
.story__icon { width: min(70%, 260px); opacity: 0.9; }

/* Owner portrait. The source file is only 349x640, so it is capped at 380px
   wide - scaling it past its native size would go visibly soft. Replace with a
   higher-resolution original when one is available and this cap can lift. */
.story__photo { margin: 0; width: min(100%, 380px); }
.story__photo img {
  display: block; width: 100%; height: auto;
  border-radius: 2px;
  border: 1px solid rgba(184, 146, 90, 0.45);
  box-shadow: 0 18px 40px rgba(26, 20, 16, 0.22);
}
.story__photo figcaption {
  font-family: var(--font-mono); font-size: var(--text-xs);
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-brass-deep);
  margin-top: var(--sp-3); text-align: center;
}
.story__title { font-size: var(--text-4xl); margin: var(--sp-4) 0 var(--sp-6); color: var(--color-maroon); }
.story__title em { font-style: italic; color: var(--color-brass-deep); }
.story__text { color: var(--color-text-muted); font-size: var(--text-lg); margin-bottom: var(--sp-4); max-width: 60ch; }
.story__text strong { color: var(--color-ink); }
.story__quote {
  margin-top: var(--sp-6); padding-left: var(--sp-6); border-left: 3px solid var(--color-brass);
  font-family: var(--font-display); font-style: italic; font-size: var(--text-xl); color: var(--color-maroon);
}

/* ============================================
   02 / What We Carry
   ============================================ */
.carry__head { text-align: center; max-width: 640px; margin: 0 auto var(--sp-16); }
.carry__title { font-size: var(--text-4xl); margin-top: var(--sp-3); }
.carry__grid { display: grid; gap: var(--sp-6); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.carry__card {
  background: var(--color-canvas-white); border: 1px solid rgba(107,43,40,0.12);
  padding: var(--sp-8); border-radius: 4px;
  display: flex; flex-direction: column; gap: var(--sp-3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.carry__card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(36,24,17,0.12); }
.carry__num { font-family: var(--font-mono); color: var(--color-brass-deep); font-size: var(--text-sm); }
.carry__card h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--text-xl); color: var(--color-maroon); }
.carry__card p { color: var(--color-text-muted); font-size: var(--text-sm); }

/* ============================================
   03 / Reviews marquee
   ============================================ */
.reviews__head { text-align: center; margin-bottom: var(--sp-12); }

/* ---------- Awards ----------
   Sits on the dark reviews band, where the aggregate star line used to be.
   Two laurel-free plaques: a brass hairline over a stacked label/year, so the
   year carries the weight and the qualifier stays quiet underneath. */
.awards {
  list-style: none; margin: var(--sp-8) 0 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--sp-6);
}
.award {
  position: relative;
  flex: 0 1 260px;
  padding: var(--sp-6) var(--sp-5) var(--sp-5);
  border: 1px solid rgba(184, 146, 90, 0.34);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(184,146,90,0.07), rgba(184,146,90,0));
  text-align: center;
}
/* Short brass bar breaking the top edge — the plaque cue, no clip-art. */
.award__rule {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 2px; background: var(--color-brass);
}
.award__label {
  display: block;
  font-family: var(--font-mono); font-size: var(--text-xs);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-brass);
}
.award__year {
  display: block;
  font-family: var(--font-display); font-size: 2.6rem; line-height: 1;
  color: var(--color-white);
  margin: var(--sp-2) 0 var(--sp-3);
}
.award__detail {
  display: block;
  font-family: var(--font-body); font-size: var(--text-sm);
  line-height: 1.5; color: var(--color-text-muted-dark);
}
@media (max-width: 560px) {
  .award { flex: 1 1 100%; }
  .award__year { font-size: 2.2rem; }
}
.reviews__title { font-size: var(--text-3xl); color: var(--color-white); margin-top: var(--sp-3); }
.reviews__stars { color: var(--color-brass); font-family: var(--font-mono); font-size: var(--text-sm); margin-top: var(--sp-2); }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: var(--sp-6); width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card {
  background: var(--color-ink-soft); border: 1px solid rgba(184,146,90,0.18);
  border-radius: 4px; padding: var(--sp-6); width: 320px; flex: none;
}
.review-card__stars { color: var(--color-brass); font-size: var(--text-sm); margin-bottom: var(--sp-3); }
.review-card p { color: var(--color-text-muted-dark); font-size: var(--text-sm); margin-bottom: var(--sp-4); }
.review-card__name { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-brass); }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; overflow-x: auto; } }

/* Link out to the full review set, centred under the marquee. */
.reviews__more { text-align: center; margin-top: var(--sp-10); }
.reviews__more a {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-mono); font-size: var(--text-sm);
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--color-brass);
  border-bottom: 1px solid rgba(184, 146, 90, 0.4);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.reviews__more a:hover { color: var(--color-gold-lit, #e3c98a); border-bottom-color: var(--color-brass); }
.reviews__more svg { width: 14px; height: 14px; flex: none; }

/* ============================================
   04 / Visit
   ============================================ */
.visit__grid { display: grid; gap: var(--sp-12); }
@media (min-width: 900px) { .visit__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-16); } }
.visit__title { font-size: var(--text-4xl); margin-bottom: var(--sp-6); color: var(--color-maroon); }
.visit__row { display: flex; gap: var(--sp-4); padding: var(--sp-4) 0; border-bottom: 1px solid rgba(107,43,40,0.12); }
.visit__row svg { width: 22px; height: 22px; flex: none; color: var(--color-brass-deep); margin-top: 2px; }
.visit__row h4 { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); margin-bottom: var(--sp-1); }
.visit__row p, .visit__row a { font-size: var(--text-base); }
.visit__row a:hover { color: var(--color-maroon); }

.hours-table { width: 100%; border-collapse: collapse; font-family: var(--font-mono); font-size: var(--text-sm); }
.hours-table td { padding: var(--sp-2) 0; border-bottom: 1px solid rgba(107,43,40,0.1); }
.hours-table td:last-child { text-align: right; }
.hours-table tr.is-today td { color: var(--color-maroon); font-weight: 700; }
.hours-table tr.is-closed td { color: var(--color-text-muted); }

.visit__map {
  border-radius: 4px; overflow: hidden; border: 1px solid rgba(107,43,40,0.15);
  aspect-ratio: 4 / 3; background: var(--color-surface);
}
.visit__map iframe { width: 100%; height: 100%; border: 0; }

/* ============================================
   Footer
   ============================================ */
.footer { background: var(--color-ink); color: var(--color-text-muted-dark); padding: var(--sp-16) 0 var(--sp-8); }
.footer__grid { display: grid; gap: var(--sp-10); margin-bottom: var(--sp-12); }
/* Four columns since the Follow block was added - the brand column keeps the
   extra width so its blurb still sets on two comfortable lines. */
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1.2fr 0.8fr; } }

.footer__social a { display: inline-flex; align-items: center; gap: var(--sp-2); }
/* Sized in em so the glyph tracks the link text instead of standing taller
   than it - at a fixed 17px these read as oversized next to 0.9rem labels. */
.footer__social svg { width: 0.95em; height: 0.95em; flex: none; }
.footer__brand svg { height: 30px; width: auto; margin-bottom: var(--sp-4); }
.footer__brand p { font-size: var(--text-sm); max-width: 34ch; }
.footer h5 { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-brass); margin-bottom: var(--sp-4); }
.footer li { font-size: var(--text-sm); margin-bottom: var(--sp-2); }
.footer a:hover { color: var(--color-brass); }
.footer__bottom {
  border-top: 1px solid rgba(184,146,90,0.15); padding-top: var(--sp-6);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-4);
  font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.03em;
}

[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }
