/* ============================================================
   Burgerooze: design tokens
   ============================================================ */
/* Brand faces. Each ships a single weight, so the @font-face weight ranges cover
   every weight the CSS asks for and stop the browser faking a bold. */
@font-face {
  font-family: 'SK Merih';
  src: url('../font/SKMerih-SemiBold.woff2') format('woff2'),
       url('../font/SKMerih-SemiBold.woff') format('woff');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura Md BT';
  src: url('../font/Futura-Medium.woff2') format('woff2'),
       url('../font/Futura-Medium.woff') format('woff');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura Md BT';
  src: url('../font/Futura-MediumItalic.woff2') format('woff2'),
       url('../font/Futura-MediumItalic.woff') format('woff');
  font-weight: 400 600;
  font-style: italic;
  font-display: swap;
}

:root {
  --brand: #18503C;
  --brand-dark: #11382A;
  --gold: #d9bd85;
  --ink: #373435;
  --ink-soft: #35473e;
  --muted: #55635b;
  --line: #ded5c0;
  --paper: #f7f2e4;
  --paper-2: #efe7d3;
  --white: #fffcf5;
  --open: #2f7d55;
  --closed: #a4442f;

  --font-display: 'SK Merih', 'Oswald', 'Arial Narrow', sans-serif;
  /* Futura's x-height is ~15% shorter than Inter's, hence the body size bump below. */
  --font-sans: 'Futura Md BT', 'Futura', 'Century Gothic', -apple-system, BlinkMacSystemFont, sans-serif;

  --tracking: 0.18em;
  --shell: 1280px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

/* ============================================================
   Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -120%);
  z-index: 200; background: var(--brand); color: var(--paper);
  padding: 0.75rem 1.25rem; font-size: 0.8rem;
  letter-spacing: var(--tracking); text-transform: uppercase; text-decoration: none;
}
.skip-link:focus { transform: translate(-50%, 0); }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* On the green surfaces the brand outline disappears, so lift it to gold. */
.hero :focus-visible,
.page-hero :focus-visible,
.section--ink :focus-visible,
.cta-band :focus-visible,
.footer :focus-visible {
  outline-color: var(--gold);
}

/* ============================================================
   Layout primitives
   ============================================================ */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(4rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--paper2 { background: var(--paper-2); }
.section--ink { background: var(--brand); color: var(--paper); }
.section--ink .eyebrow { color: var(--gold); }
.section--ink .lede { color: rgba(247, 242, 228, 0.72); }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: '';
  width: 2rem; height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* Sized for SK Merih SemiBold, which is denser than the face this scale was
   originally tuned for — keep an eye on the top end if the display font changes. */
.h-display { font-size: clamp(2.8rem, 7vw, 5.25rem); }
.h-section { font-size: clamp(2.05rem, 4.4vw, 3.4rem); }
.h-sub     { font-size: clamp(1.5rem, 2.6vw, 2rem); }

.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  color: var(--ink-soft);
  max-width: 62ch;
}

.measure { max-width: 66ch; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .lede { margin-inline: auto; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border: 1px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn--solid { --btn-bg: var(--brand); --btn-fg: var(--paper); --btn-bd: var(--brand); }
.btn--solid:hover { --btn-bg: var(--ink); --btn-bd: var(--ink); --btn-fg: var(--paper); }
.btn--ghost:hover { --btn-bg: var(--brand); --btn-fg: var(--paper); --btn-bd: var(--brand); }
.btn--light { --btn-fg: var(--paper); --btn-bd: rgba(247,242,228,0.5); }
.btn--light:hover { --btn-bg: var(--paper); --btn-fg: var(--ink); --btn-bd: var(--paper); }
.btn--sm { padding: 0.7rem 1.15rem; font-size: 0.66rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled,
body.nav-open .header {
  background: rgba(247, 242, 228, 0.94);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
/* Pages without a dark hero need a readable bar from the start. */
.header--solid {
  background: var(--paper);
  border-bottom-color: var(--line);
}

/* Over the hero the bar is transparent, so invert everything to light. */
body:not(.nav-open) .header--overlay:not(.is-scrolled) { color: var(--paper); }
body:not(.nav-open) .header--overlay:not(.is-scrolled) .brand__logo { color: inherit; }
body:not(.nav-open) .header--overlay:not(.is-scrolled) .btn--solid {
  --btn-bg: transparent;
  --btn-fg: var(--paper);
  --btn-bd: rgba(247, 242, 228, 0.5);
}
body:not(.nav-open) .header--overlay:not(.is-scrolled) .btn--solid:hover {
  --btn-bg: var(--paper);
  --btn-fg: var(--ink);
  --btn-bd: var(--paper);
}

.header__inner {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 0 var(--gutter);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
/* Single-colour logo painted via mask, so it inherits the surrounding text colour. */
.brand__logo,
.footer__logo {
  display: block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
/* Header carries the full lockup; below ~34px tall the "Bar & Grill" line stops being legible. */
.brand__logo {
  aspect-ratio: 497.3594 / 123.61;
  height: 42px;
  color: var(--brand);
  -webkit-mask-image: url('../img/logo-bar-grill.svg');
  mask-image: url('../img/logo-bar-grill.svg');
}
.footer__logo {
  aspect-ratio: 497.3594 / 123.61;
  -webkit-mask-image: url('../img/logo-bar-grill.svg');
  mask-image: url('../img/logo-bar-grill.svg');
}
@media (max-width: 560px) {
  /* Logo, CTA and burger share one 320px row, so everything tightens together. */
  .brand__logo { height: 32px; }
  .header__inner { gap: 0.6rem; }
  .header__actions { gap: 0.35rem; }
  .header__actions .btn { padding: 0.8rem; font-size: 0.6rem; letter-spacing: 0.1em; }
  .burger { width: 34px; }
}
@media (max-width: 360px) {
  .brand__logo { height: 30px; }
  .header__actions .btn { padding-inline: 0.6rem; }
}

.nav { margin-inline: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 0;
  padding: 0.25rem 0;
  font-family: var(--font-sans);
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

/* Download Menu dropdown */
.menu-dd { position: relative; }
.menu-dd__caret { width: 9px; height: 6px; transition: transform 0.3s var(--ease); }
.menu-dd__toggle[aria-expanded='true'] .menu-dd__caret { transform: rotate(180deg); }

.menu-panel {
  position: absolute;
  top: calc(100% + 1.15rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 250px;
  margin: 0;
  padding: 0.4rem 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 45px rgba(4, 26, 18, 0.12);
  z-index: 20;
}
.menu-panel::before {
  content: '';
  position: absolute;
  inset: -1.15rem 0 100% 0;
}
.menu-panel a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.25rem;
  text-decoration: none;
  /* The panel is always light, so it must not inherit the header's inverted
     text colour when the bar is transparent over the hero. */
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: background 0.2s var(--ease);
}
.menu-panel a:hover { background: var(--paper-2); }
.menu-panel__hint {
  font-size: 0.6rem;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  color: var(--muted);
}

/* Burger */
.burger {
  display: none;
  width: 40px; height: 40px;
  padding: 0;
  border: 0;
  background: none;
  /* Without this the UA button colour wins and the bars stay black. */
  color: inherit;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.burger__bar {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.burger.is-open .burger__bar:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger.is-open .burger__bar:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* Drawer */
.drawer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 1.5rem var(--gutter) 2.25rem;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.drawer__list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}
.drawer__list > li { border-bottom: 1px solid var(--line); }
.drawer__list .nav__link { padding: 0.95rem 0; width: 100%; justify-content: space-between; }
.drawer__list .nav__link::after { display: none; }
.drawer .menu-panel {
  position: static;
  transform: none;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0 0 0.75rem 1rem;
  border-left: 1px solid var(--line);
  margin-left: 0.25rem;
}
.drawer .menu-panel a { padding: 0.5rem 0; }
.drawer__foot { display: grid; gap: 1rem; justify-items: center; }
.drawer__contact {
  font-size: 0.75rem;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}

/* Below 1140 the six nav items wrap onto three rows beside the wordmark. */
@media (max-width: 1139px) {
  .nav { display: none; }
  .burger { display: flex; }
  /* .nav carried the auto margin that pushed the actions right. */
  .header__actions { margin-left: auto; }
}
@media (min-width: 1140px) {
  .drawer { display: none !important; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  min-height: min(100svh, 900px);
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  /* The venue shot is bright, so the mid-band needs more weight than a dark stock image did. */
  background: linear-gradient(to bottom, rgba(4,26,18,0.6) 0%, rgba(4,26,18,0.45) 35%, rgba(4,26,18,0.88) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding: calc(var(--header-h) + 4rem) var(--gutter) clamp(3rem, 7vw, 5.5rem);
}
.hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 242, 228, 0.72);
  margin: 0 0 1.5rem;
}
.hero__title {
  font-size: clamp(3.25rem, 10.5vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
  margin: 0 0 1.5rem;
}
.hero__title em { color: var(--gold); font-style: normal; }
.hero__copy {
  max-width: 46ch;
  color: rgba(247, 242, 228, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  margin-bottom: 0.85rem;
}
.hero__kicker {
  max-width: 46ch;
  color: var(--paper);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  margin: 0 0 2.25rem;
}
.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3rem, 7vw, 5.5rem);
  writing-mode: vertical-rl;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 242, 228, 0.6);
}
@media (max-width: 900px) { .hero__scroll { display: none; } }

/* Page hero for interior pages */
.page-hero {
  background: var(--brand);
  color: var(--paper);
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero__title { font-size: clamp(2.6rem, 6.2vw, 4.5rem); margin-bottom: 1.25rem; }
.page-hero__copy { color: rgba(247, 242, 228, 0.72); max-width: 60ch; }

/* ============================================================
   Split / feature
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
/* `height: auto` on every cropped image: the markup carries width/height attributes
   for aspect-ratio hinting, and without this the height attribute wins as a
   presentational hint and blows the box out to the intrinsic pixel height. */
.split__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.split__media--wide img { aspect-ratio: 5 / 4; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.stat__num { font-family: var(--font-display); font-size: 2.8rem; line-height: 1; display: block; }
.stat__label {
  font-size: 0.68rem;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  color: var(--muted);
}
/* The paper-tuned rule and label grey both fall below AA on the green section. */
.section--ink .stat-row { border-top-color: rgba(247, 242, 228, 0.16); }
.section--ink .stat__label { color: rgba(247, 242, 228, 0.72); }

/* ============================================================
   Awards
   ============================================================ */
.awards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(247, 242, 228, 0.16);
}
.award {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(247, 242, 228, 0.16);
}
.award__year {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}
.award__title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.award__body {
  font-size: 0.68rem;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  color: rgba(247, 242, 228, 0.55);
  text-align: right;
}
@media (max-width: 720px) {
  .award { grid-template-columns: 60px 1fr; gap: 0.4rem 1rem; }
  .award__body { grid-column: 2; text-align: left; }
}
/* The last award's rule already closes the list, so the stats must not draw a second one. */
.awards + .stat-row { border-top: 0; padding-top: 0; }

/* ============================================================
   Status pill + hours
   ============================================================ */
/* The card body is a flex column, so without align-self the chip stretches the
   full card width and reads as an alert banner. */
.status {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem 0.3rem 0.55rem;
  border-radius: 100px;
  white-space: nowrap;
}
.status.is-open { color: var(--open); background: rgba(47, 125, 85, 0.1); }
.status.is-closed { color: var(--closed); background: rgba(164, 68, 47, 0.1); }
.status__detail { letter-spacing: 0.06em; opacity: 0.72; }
.status__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.status.is-open .status__dot { animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 125, 85, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(47, 125, 85, 0); }
}

.hours {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.85rem;
}
.hours th, .hours td {
  text-align: left;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}
.hours td { text-align: right; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--ink); font-weight: 600; }

/* ============================================================
   Location cards
   ============================================================ */
.grid-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
/* Four locations: pin the preview to one clean row on desktop. */
@media (min-width: 1100px) {
  .grid-locations { grid-template-columns: repeat(4, 1fr); }
}
.grid-locations[data-locations='detailed'] {
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
}
/* Exactly four locations: 2x2 keeps the last card from being orphaned. */
@media (min-width: 1100px) {
  .grid-locations[data-locations='detailed'] { grid-template-columns: repeat(2, 1fr); }
}

.loc-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  scroll-margin-top: calc(var(--header-h) + 2rem);
}
.loc-card__media { overflow: hidden; }
.loc-card__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.loc-card:hover .loc-card__media img { transform: scale(1.04); }
.loc-card__body {
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.loc-card__name { font-size: 2.1rem; margin: 0.9rem 0 0.5rem; }
.loc-card__address { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 0.75rem; }
.loc-card__blurb { color: var(--muted); font-size: 0.9rem; }
/* The email carries a <wbr> after the @, so it wraps there rather than mid-domain. */
.loc-card__contact { display: grid; justify-items: start; gap: 0.3rem; font-size: 0.82rem; margin-bottom: 1.25rem; }
.loc-card__contact a { text-decoration: none; border-bottom: 1px solid var(--line); }
.loc-card__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
/* Preview cards are too narrow for side-by-side buttons. */
.grid-locations:not([data-locations='detailed']) .loc-card__actions {
  display: grid;
  gap: 0.5rem;
}
/* Sitting 4-up, the pill's nowrap width forced the 1fr tracks apart and left the
   cards different widths. State only here; the time stays on the Locations page. */
.grid-locations:not([data-locations='detailed']) .status__detail { display: none; }

/* ============================================================
   Order tiles
   ============================================================ */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}
.tile {
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.tile:hover { border-color: var(--ink); transform: translateY(-4px); }
.tile__media { display: block; overflow: hidden; }
.tile__media img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
.tile__body { display: block; padding: 1.5rem; }
.tile__name {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0.8rem 0 0.35rem;
}
.tile__address { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.tile__cta {
  display: block;
  font-size: 0.68rem;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  color: var(--brand);
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}
.gallery__item { display: block; margin: 0; overflow: hidden; }
.gallery__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }

/* Stacked, the six squares made a screen-and-a-half of scrolling on a phone,
   so below the grid breakpoint the gallery becomes a snap carousel. */
@media (max-width: 760px) {
  .gallery {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(76%, 300px);
    gap: 0.5rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    padding-inline: var(--gutter);
    scrollbar-width: none;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery__item { scroll-snap-align: start; }
  .gallery__item img { aspect-ratio: 4 / 5; }
}

.gallery__hint {
  display: none;
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 760px) {
  .gallery__hint { display: block; }
}

/* ============================================================
   Prose blocks
   ============================================================ */
.prose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}
/* Body face, uppercase: the display cut is too heavy for a supporting subhead. */
.prose-block h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.prose-block p { color: var(--ink-soft); font-size: 0.96rem; }

.list-plain { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.list-plain li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.list-plain li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.72em;
  width: 8px; height: 1px;
  background: var(--brand);
}

/* ============================================================
   Forms
   ============================================================ */
.form {
  display: grid;
  gap: 1.1rem;
}
.form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}
.field { display: grid; gap: 0.4rem; }
.field > span {
  font-size: 0.66rem;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  color: var(--muted);
}
.field > span.field__hint {
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
}

input, select, textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.25s var(--ease);
}
input:focus, select:focus, textarea:focus { border-color: var(--ink); }
textarea { min-height: 150px; resize: vertical; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%236a645b' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  padding-right: 2.5rem;
}
.was-validated :invalid { border-color: var(--closed); }

.form__status { font-size: 0.85rem; margin: 0; min-height: 1.4em; }
.form__status.is-error { color: var(--closed); }
.form__status.is-success { color: var(--open); }

/* Bait for bots. Off-screen rather than display:none, which some crawlers skip. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.75rem, 4vw, 3rem);
}

.field--check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
  cursor: pointer;
}
.field--check input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  padding: 0;
  accent-color: var(--brand);
}
.field--check > span {
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
}
.field--check a { color: var(--ink); }

/* ============================================================
   Long-form legal copy
   ============================================================ */
.legal { max-width: 68ch; display: grid; gap: 2.5rem; }
.legal > div { display: grid; gap: 0.9rem; }
.legal p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; line-height: 1.75; }
.legal li { font-size: 0.96rem; line-height: 1.6; }
.legal__updated {
  font-size: 0.66rem;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--brand);
  color: var(--paper);
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.5rem;
}
.footer a { color: inherit; text-decoration: none; }
.footer a:hover { color: var(--gold); }

.footer > * {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.footer__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(1.75rem, 3vw, 2.25rem);
}
.footer__logo { width: 190px; align-self: center; }

.footer__heading {
  margin: 0 0 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 242, 228, 0.5);
}
.footer__nav, .footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.footer__contact { color: rgba(247, 242, 228, 0.72); }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-top: clamp(1rem, 2vw, 1.25rem);
  border-top: 1px solid rgba(247, 242, 228, 0.16);
}

.footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  /* Pulls the round hit areas back into line with the text baseline edges. */
  margin-right: -0.6rem;
}
/* Outranks `.footer a { color: inherit }`, which would otherwise force full cream. */
.footer .social {
  display: grid;
  place-items: center;
  /* Icon is 20px, but the hit area stays a comfortable 44px. */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: rgba(247, 242, 228, 0.75);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.social svg { width: 20px; height: 20px; fill: currentColor; }
.footer .social:hover { color: var(--gold); background: rgba(247, 242, 228, 0.08); }
.footer__legal {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 242, 228, 0.72);
  margin: 0;
}

@media (max-width: 760px) {
  /* The header already carries the wordmark and a Locations link, so both are
     dropped here rather than lengthening the footer. */
  .footer__logo, .footer__col--venues { display: none; }
  .footer__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 2rem 1.5rem;
    text-align: center;
  }
  .footer__nav, .footer__contact { white-space: normal; }
  .footer__bar { flex-direction: column-reverse; justify-content: center; gap: 0.75rem; }
  .footer__social { margin-right: 0; }
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: var(--brand);
  color: var(--paper);
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.cta-band .h-section { margin-bottom: 1rem; }
.cta-band p { color: rgba(247, 242, 228, 0.68); margin-bottom: 2rem; }
.cta-band .btn-row { justify-content: center; }

/* The band is the same green as the footer, so the two paddings met as a block
   of empty colour. Collapse the seam and mark it with a hairline instead. */
main:has(> .cta-band:last-child) + .footer {
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid rgba(247, 242, 228, 0.16);
}
@media (max-width: 760px) {
  .cta-band { padding-block: clamp(3rem, 7vw, 4rem); }
}
