/* Flat River Spirits — styles. Mobile-first, no build step. */
:root {
  --bg: #12100e;
  --bg-2: #1a1613;
  --bg-3: #231d18;
  --ink: #0a0908;
  --line: rgba(232, 200, 160, 0.13);
  --cream: #f5ecdf;
  --muted: #bdae9b;
  --amber: #d99a3d;
  --amber-2: #f0b865;
  --copper: #b8703f;
  --gold: #d8b36a;
  --gold-2: #f3dca0;
  --gold-3: #a8823f;
  --radius: 18px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1240px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0; background: var(--bg); color: var(--cream);
  font-family: var(--sans); font-size: 1.0625rem; line-height: 1.7;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
body.gate-open, body.lb-open { overflow: hidden; }
img { max-width: 100%; display: block; }
picture { display: contents; }
a { color: var(--amber-2); }
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.04; margin: 0 0 .5em; letter-spacing: -.015em; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 10vw, 6.2rem); font-weight: 800; }
h2 { font-size: clamp(2.3rem, 6vw, 4rem); }
h3 { font-size: 1.45rem; letter-spacing: -.005em; }
h1 em, h2 em { font-style: italic; font-weight: 600; color: var(--amber-2); }
p { margin: 0 0 1em; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5.5rem 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font: 600 .74rem/1.2 var(--sans); letter-spacing: .26em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7; }
.eyebrow--gold { color: var(--gold); }
.gold-text {
  background: linear-gradient(100deg, var(--gold-3) 0%, var(--gold-2) 35%, var(--gold) 55%, #fff3cf 70%, var(--gold-3) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic; white-space: nowrap; padding-right: .06em;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.6rem; border-radius: 999px;
  font: 600 .95rem/1 var(--sans); letter-spacing: .01em; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible { outline: 2px solid var(--amber-2); outline-offset: 3px; }
.btn--primary { background: linear-gradient(135deg, var(--amber-2), var(--copper)); color: #1a120b; box-shadow: 0 10px 30px rgba(217,154,61,.25); }
.btn--primary:hover { box-shadow: 0 14px 38px rgba(217,154,61,.38); }
.btn--gold { background: linear-gradient(135deg, var(--gold-2), var(--gold) 50%, var(--gold-3)); color: #17110a; box-shadow: 0 10px 30px rgba(216,179,106,.22); }
.btn--gold:hover { box-shadow: 0 14px 40px rgba(216,179,106,.4); }
.btn--ghost { border-color: rgba(245, 236, 223, .32); color: var(--cream); background: rgba(255,255,255,.02); backdrop-filter: blur(4px); }
.btn--ghost:hover { border-color: var(--amber-2); color: var(--amber-2); }

/* Brand */
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--cream); text-decoration: none; }
.brand__mark { width: 34px; height: 34px; color: var(--amber); flex: none; }
.brand__text { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; letter-spacing: -.005em; }
.brand__text em { font-style: italic; font-weight: 600; color: var(--amber-2); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(18, 16, 14, .78);
  backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-nav {
  position: absolute; top: 68px; left: 0; right: 0; display: none; flex-direction: column;
  background: var(--bg-2); border-bottom: 1px solid var(--line); padding: .5rem 1.25rem 1rem;
}
.site-nav.is-open { display: flex; }
.site-nav a { color: var(--cream); text-decoration: none; padding: .85rem 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.site-nav a:last-child { border-bottom: 0; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--amber-2); }

/* Hero */
.hero { position: relative; min-height: min(92vh, 860px); display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -1; background: var(--bg-3); }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 40%; transform: scale(1.04); animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(216,179,106,.12), transparent 55%),
    linear-gradient(180deg, rgba(18,16,14,.38) 0%, rgba(18,16,14,.32) 55%, var(--bg) 100%),
    linear-gradient(90deg, rgba(12,10,9,.92) 0%, rgba(12,10,9,.62) 48%, rgba(12,10,9,.12) 100%);
}
.hero__content { padding-top: 5.5rem; padding-bottom: 6rem; }
.hero h1 { max-width: 11ch; margin-bottom: .35em; }
.hero h1 em { display: inline; }
.hero__lede { font-size: 1.15rem; color: #d8cbb9; max-width: 36rem; margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__status { margin-top: 1.9rem; font-size: .92rem; color: var(--muted); min-height: 1.5em; display: flex; align-items: center; gap: .55rem; }
.hero__status .dot { width: 9px; height: 9px; border-radius: 50%; background: #6fbf73; box-shadow: 0 0 0 4px rgba(111,191,115,.18); }
.hero__status.is-closed .dot { background: #c9774d; box-shadow: 0 0 0 4px rgba(201,119,77,.18); }
.hero__scroll { position: absolute; left: 50%; bottom: 1.6rem; width: 26px; height: 42px; margin-left: -13px; border: 1.5px solid rgba(245,236,223,.35); border-radius: 14px; display: none; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--gold); animation: scrollDot 2s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Top Shelf (premium) ---------- */
.topshelf {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 40% at 15% 0%, rgba(216,179,106,.10), transparent 70%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(184,112,63,.10), transparent 70%),
    var(--ink);
  border-top: 1px solid rgba(216,179,106,.25); border-bottom: 1px solid rgba(216,179,106,.25);
}
.topshelf::before { /* fine gold hairline pattern */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(90deg, rgba(216,179,106,.035) 0 1px, transparent 1px 120px);
}
.topshelf .container { position: relative; }
.topshelf__head { display: grid; gap: 1.5rem; margin-bottom: 3rem; }
.topshelf__title { font-size: clamp(3rem, 11vw, 6.5rem); margin: 0; }
.topshelf__intro p { color: #cdbfad; font-size: 1.1rem; max-width: 34rem; }
.topshelf__ask { font-family: var(--serif); font-style: italic; font-size: 1.45rem !important; color: var(--gold-2) !important; margin: 0; }

.bento-ts { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.ts-tile {
  position: relative; margin: 0; overflow: hidden; border-radius: var(--radius);
  border: 1px solid rgba(216,179,106,.28); background: var(--bg-3);
  aspect-ratio: 4 / 3; isolation: isolate;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7);
  transition: border-color .35s, box-shadow .35s, transform .35s var(--ease);
}
.ts-tile--tall { aspect-ratio: 4 / 5; }
.ts-tile--wide { aspect-ratio: 4 / 3; }
.ts-tile--wide img { object-position: 20% 50%; }
.ts-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .5s; filter: saturate(.95) brightness(.92); }
.ts-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(8,7,6,.35) 60%, rgba(8,7,6,.92) 100%); z-index: 1; }
.ts-tile::before { /* gold inner frame on hover */
  content: ""; position: absolute; inset: 10px; z-index: 2; border: 1px solid rgba(243,220,160,0); border-radius: calc(var(--radius) - 8px);
  transition: border-color .4s, inset .4s var(--ease); pointer-events: none;
}
.ts-tile figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 1.3rem 1.4rem 1.4rem; display: grid; gap: .2rem; }
.ts-tile__kicker { font: 600 .7rem/1.2 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.ts-tile figcaption strong { font: 700 1.6rem/1.1 var(--serif); color: var(--cream); }
.ts-tile figcaption span:last-child { color: #d5c7b4; font-size: .93rem; line-height: 1.5; max-width: 32rem; }
.ts-tile:hover { border-color: rgba(243,220,160,.6); box-shadow: 0 40px 80px -24px rgba(0,0,0,.8), 0 0 0 1px rgba(216,179,106,.25), 0 0 40px rgba(216,179,106,.12); }
.ts-tile:hover img { transform: scale(1.06); filter: saturate(1.05) brightness(1); }
.ts-tile:hover::before { border-color: rgba(243,220,160,.45); inset: 14px; }

.brands { margin-top: 3.5rem; padding: 2rem 0 0; border-top: 1px solid rgba(216,179,106,.2); }
.brands__label { font: 600 .74rem/1.2 var(--sans); letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.brands__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .55rem; }
.brands__list li {
  font: 600 .98rem/1 var(--serif); font-style: italic; color: var(--gold-2);
  padding: .6rem 1rem; border-radius: 999px; border: 1px solid rgba(216,179,106,.28);
  background: linear-gradient(180deg, rgba(216,179,106,.08), rgba(216,179,106,.02));
  transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.brands__list li:hover { border-color: rgba(243,220,160,.7); background: rgba(216,179,106,.14); transform: translateY(-2px); }
.brands__note { margin: 1.2rem 0 0; font-size: .85rem; color: var(--muted); }
.topshelf__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.5rem; }

/* Framed photo */
.photo { margin: 0; }
.photo img { width: 100%; height: auto; }
.photo--framed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 30px 70px -20px rgba(0,0,0,.6); }

/* About */
.about { background: var(--bg-2); }
.about__grid { display: grid; gap: 2.5rem; align-items: center; }
.about__text p:not(.eyebrow) { color: var(--muted); font-size: 1.07rem; }
.about__text h2 { max-width: 16ch; }

/* Selection */
.selection { background: var(--bg); }
.section__head { max-width: 44rem; margin-bottom: 3rem; }
.section__head p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; }
.cards { display: grid; gap: 1.1rem; }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: border-color .3s, transform .35s var(--ease), box-shadow .35s;
}
.card__img { overflow: hidden; }
.card__img img { width: 100%; aspect-ratio: 4 / 3; height: auto; object-fit: cover; transition: transform .8s var(--ease); }
.card__body { padding: 1.35rem 1.45rem 1.6rem; }
.card p { color: var(--muted); margin: 0; font-size: .97rem; }
.card:hover { border-color: rgba(217,154,61,.45); transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(0,0,0,.7); }
.card:hover .card__img img { transform: scale(1.06); }

/* Home-page gallery teaser */
.peek { background: var(--bg); padding-top: 1rem; }
.peek__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem 2rem; margin-bottom: 2.2rem; }
.peek__head h2 { margin-bottom: 0; }
.peek__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.peek__tile { display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.peek__tile img { width: 100%; aspect-ratio: 3 / 4; height: auto; object-fit: cover; transition: transform .8s var(--ease), filter .4s; }
.peek__tile:hover img { transform: scale(1.06); filter: brightness(1.06); }

/* Hours */
.hours { background: var(--bg-2); border-top: 1px solid var(--line); }
.hours__grid { display: grid; gap: 2rem; align-items: center; }
.hours__grid > div > p:not(.eyebrow) { color: var(--muted); }
.hours__card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.4rem .9rem; box-shadow: 0 30px 60px -30px rgba(0,0,0,.7); }
.hours__table { width: 100%; border-collapse: collapse; }
.hours__table th, .hours__table td { padding: .85rem .5rem; border-bottom: 1px solid var(--line); text-align: left; font-size: .98rem; }
.hours__table th { font-weight: 500; }
.hours__table td { text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.hours__table tr:last-child th, .hours__table tr:last-child td { border-bottom: 0; }
.hours__table tr.is-today th, .hours__table tr.is-today td { color: var(--amber-2); font-weight: 600; }
.hours__table tr.is-today th::after { content: "Today"; margin-left: .6rem; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; padding: .2rem .5rem; border-radius: 999px; background: rgba(217,154,61,.15); vertical-align: middle; }
.hours__fine { font-size: .82rem; color: var(--muted); margin: .9rem .5rem .25rem; }

/* Visit */
.visit { background: var(--bg); border-top: 1px solid var(--line); }
.visit__grid { display: grid; gap: 2.5rem; }
.visit__address { font-style: normal; font-size: 1.15rem; line-height: 1.7; margin: .5rem 0 1.5rem; }
.visit__address strong { font-family: var(--serif); font-size: 1.55rem; color: var(--amber-2); font-weight: 700; }
.visit__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.25rem; }
.visit__contact { border-left: 2px solid var(--copper); padding-left: 1.1rem; }
.visit__contact p { color: var(--muted); margin: 0; }
.visit__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 320px; background: var(--bg-3); }
.visit__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; filter: grayscale(.25) contrast(1.05); }

/* Footer */
.site-footer { background: var(--ink); border-top: 1px solid var(--line); padding: 3.5rem 0 2rem; }
.site-footer__inner { display: grid; gap: 1.5rem; }
.site-footer p { color: var(--muted); margin: .35rem 0 0; font-size: .92rem; }
.site-footer__hours strong { color: var(--cream); font-weight: 600; display: inline-block; min-width: 6.5rem; }
.site-footer__legal { position: relative; margin-top: 2rem; padding-top: 1.5rem; }
.site-footer__legal::before { content: ""; position: absolute; top: 0; left: 1.25rem; right: 1.25rem; height: 1px; background: var(--line); }
.site-footer__legal p { font-size: .82rem; }

/* Age gate */
.age-gate {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1.25rem;
  background: radial-gradient(ellipse at 50% 30%, rgba(90,58,32,.55), rgba(10,9,8,.97) 70%), rgba(10,9,8,.92);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.age-gate[hidden] { display: none; }
.age-gate__card {
  width: 100%; max-width: 440px; text-align: center;
  background: var(--bg-2); border: 1px solid rgba(216,179,106,.35); border-radius: 22px;
  padding: 2.6rem 1.75rem 2.1rem; box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.age-gate__card .eyebrow::before { display: none; }
.age-gate__card .brand__mark { width: 52px; height: 52px; margin: 0 auto .75rem; }
.age-gate__card h2 { font-size: 2.3rem; }
.age-gate__note { color: var(--muted); }
.age-gate__actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.age-gate__actions .btn { min-width: 9rem; }
.age-gate__denied { margin-top: 1.25rem; color: var(--amber-2); font-size: .95rem; }

/* ---------- Gallery page ---------- */
.page-head { padding: 4rem 0 1.5rem; }
.page-head h1 { font-size: clamp(2.8rem, 9vw, 5.4rem); margin-bottom: .3em; }
.page-head p:not(.eyebrow) { color: var(--muted); max-width: 40rem; font-size: 1.1rem; }
.chips-bar { position: sticky; top: 68px; z-index: 20; padding: .85rem 0; margin-bottom: 1.25rem; background: rgba(18,16,14,.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.chips { display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding: 2px; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none; display: inline-flex; align-items: center; gap: .45rem; cursor: pointer;
  font: 600 .88rem/1 var(--sans); color: var(--cream); background: rgba(255,255,255,.03);
  border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1rem;
  transition: background .2s, border-color .2s, color .2s;
}
.chip small { font-size: .72rem; color: var(--muted); font-weight: 500; }
.chip:hover { border-color: rgba(217,154,61,.5); }
.chip[aria-pressed="true"] { background: linear-gradient(135deg, var(--amber-2), var(--copper)); color: #1a120b; border-color: transparent; }
.chip[aria-pressed="true"] small { color: rgba(26,18,11,.7); }
.chip--premium { color: var(--gold-2); border-color: rgba(216,179,106,.4); }
.chip--premium[aria-pressed="true"] { background: linear-gradient(135deg, var(--gold-2), var(--gold) 50%, var(--gold-3)); color: #17110a; }

/* Bento / masonry-style grid. Row unit = 1/6 of a column width, so a 3:4 photo spans 8 rows and a 4:3 photo spans ~4.5. */
.bento-wrap { container-type: inline-size; }
.bento {
  --cols: 2; --gap: 8px;
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(var(--cols), 1fr); column-gap: var(--gap);
  grid-auto-rows: calc((100cqi - (var(--cols) - 1) * var(--gap)) / var(--cols) / 6);
  grid-auto-flow: dense;
}
.bento > li { grid-row: span 8; padding-bottom: var(--gap); min-height: 0; }
.bento > li.is-land { grid-row: span 5; }
.bento > li.is-feature { grid-column: span 2; grid-row: span 16; }
.bento > li.is-feature.is-land { grid-row: span 9; }
.bento > li[hidden] { display: none; }
.bento a { position: relative; display: block; height: 100%; border-radius: 12px; overflow: hidden; background: var(--bg-3); border: 1px solid var(--line); isolation: isolate; }
.bento img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .5s, opacity .5s; }
.bento a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(8,7,6,.85)); opacity: 0; transition: opacity .4s; }
.bento .cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: .9rem 1rem; font-size: .86rem; line-height: 1.4; color: var(--cream); transform: translateY(8px); opacity: 0; transition: opacity .35s, transform .45s var(--ease); }
.bento .tag { position: absolute; top: .6rem; left: .6rem; z-index: 2; font: 600 .62rem/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--cream); background: rgba(12,10,9,.62); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border: 1px solid rgba(245,236,223,.14); padding: .38rem .55rem; border-radius: 999px; }
.bento .tag--premium { color: var(--gold-2); border-color: rgba(216,179,106,.45); }
.bento a:hover img, .bento a:focus-visible img { transform: scale(1.07); }
.bento a:hover::after, .bento a:focus-visible::after { opacity: 1; }
.bento a:hover .cap, .bento a:focus-visible .cap { opacity: 1; transform: none; }
.bento li.is-in { animation: tileIn .5s var(--ease) both; }
@keyframes tileIn { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }
.gallery-end { padding: 3rem 0 5rem; color: var(--muted); font-size: 1.05rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 90; display: grid; grid-template-rows: auto 1fr auto;
  background: rgba(8,7,6,.94); backdrop-filter: blur(18px) saturate(.8); -webkit-backdrop-filter: blur(18px) saturate(.8);
  touch-action: pan-y pinch-zoom; animation: lbIn .3s var(--ease);
}
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox[hidden] { display: none; }
.lightbox__bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .8rem 1rem; }
.lightbox__count { font: 600 .8rem/1 var(--sans); letter-spacing: .18em; color: var(--muted); font-variant-numeric: tabular-nums; }
.lightbox__progress { flex: 1; height: 2px; background: rgba(245,236,223,.1); border-radius: 2px; overflow: hidden; max-width: 320px; }
.lightbox__progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--amber-2)); transition: width .35s var(--ease); }
.lightbox__stage { position: relative; display: grid; place-items: center; min-height: 0; padding: 0 .75rem; overflow: hidden; }
.lightbox__stage img {
  max-width: 100%; max-height: calc(100vh - 11.5rem); max-height: calc(100dvh - 11.5rem); width: auto; height: auto; object-fit: contain;
  border-radius: 10px; box-shadow: 0 40px 100px rgba(0,0,0,.6); user-select: none; -webkit-user-drag: none;
  transition: opacity .3s, transform .35s var(--ease);
}
.lightbox__stage img.is-loading { opacity: 0; transform: scale(.985); }
.lightbox__stage img.from-right { transform: translateX(30px); opacity: 0; }
.lightbox__stage img.from-left { transform: translateX(-30px); opacity: 0; }
.lightbox__caption { margin: 0 auto; padding: 1rem 1.25rem 1.4rem; text-align: center; max-width: 46rem; min-height: 4.5rem; }
.lightbox__caption .lb-tag { display: block; font: 600 .68rem/1.2 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: .35rem; }
.lightbox__caption .lb-text { color: var(--cream); font-size: .98rem; }
.lb-btn { background: rgba(245,236,223,.07); border: 1px solid rgba(245,236,223,.16); color: var(--cream); width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; transition: background .2s, border-color .2s, transform .2s; }
.lb-btn:hover { background: rgba(216,179,106,.22); border-color: var(--gold); transform: scale(1.05); }
.lb-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.lightbox__prev, .lightbox__next { position: absolute; top: 50%; margin-top: -24px; z-index: 2; }
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
@media (max-width: 639px) {
  .lightbox__prev, .lightbox__next { top: auto; bottom: .75rem; margin-top: 0; background: rgba(18,16,14,.75); }
  .lightbox__stage { padding: 0 0 4.5rem; }
  .lightbox__stage img { max-height: calc(100vh - 16.5rem); max-height: calc(100dvh - 16.5rem); }
}

/* ---------- Scroll reveal (only with JS, and only if motion is OK) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
  .js .reveal.is-in { opacity: 1; transform: none; }
}

/* ---------- Larger screens ---------- */
@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .bento { --cols: 3; --gap: 12px; }
  .bento-ts { grid-template-columns: repeat(2, 1fr); }
  .ts-tile--tall { grid-row: span 2; aspect-ratio: auto; min-height: 100%; }
  .ts-tile--wide { grid-column: span 1; aspect-ratio: 4 / 3; }
}
@media (min-width: 900px) {
  body { font-size: 1.075rem; }
  .container { padding: 0 2.5rem; }
  .section { padding: 8rem 0; }
  .nav-toggle { display: none; }
  .site-nav { position: static; display: flex; flex-direction: row; gap: 2.1rem; background: none; border: 0; padding: 0; }
  .site-nav a { border: 0; padding: .25rem 0; font-size: .95rem; position: relative; }
  .site-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: var(--amber-2); transform: scaleX(0); transition: transform .3s var(--ease); }
  .site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .hero__content { padding-top: 7rem; padding-bottom: 8rem; }
  .hero__scroll { display: block; }
  .topshelf__head { grid-template-columns: 1.1fr .9fr; align-items: end; gap: 4rem; margin-bottom: 3.5rem; }
  .bento-ts { grid-template-columns: 1.05fr 1fr 1fr; grid-template-rows: auto auto; gap: 1.1rem; }
  .ts-tile--tall { grid-row: 1 / span 2; grid-column: 1; }
  .ts-tile--wide { grid-column: 2 / span 2; aspect-ratio: 2 / 1; }
  .ts-tile figcaption strong { font-size: 1.85rem; }
  .about__grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .cards { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  .peek__grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
  .hours__grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .visit__grid { grid-template-columns: .9fr 1.1fr; gap: 4.5rem; align-items: stretch; }
  .visit__map, .visit__map iframe { min-height: 460px; }
  .site-footer__inner { grid-template-columns: 1fr auto; align-items: end; }
  .site-footer__legal { display: flex; justify-content: space-between; gap: 2rem; }
  .site-footer__legal::before { left: 2.5rem; right: 2.5rem; }
  .bento { --cols: 4; --gap: 14px; }
  .page-head { padding-top: 5.5rem; }
}
@media (hover: none) { .bento .cap { display: none; } }

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

/* ---------- Inventory search (inventory.html + home callout) ---------- */
.inv-callout { padding: 0 0 1rem; }
.inv-callout__card {
  position: relative; overflow: hidden; display: grid; gap: 1.6rem; padding: 2.2rem 1.5rem;
  border: 1px solid rgba(216,179,106,.28); border-radius: var(--radius);
  background: radial-gradient(ellipse 70% 90% at 100% 0%, rgba(216,179,106,.14), transparent 60%), linear-gradient(160deg, var(--bg-3), var(--bg-2));
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.inv-callout__text h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .35em; }
.inv-callout__text p:last-child { color: var(--muted); margin: 0; max-width: 34rem; }
.inv-callout__form, .inv-search { position: relative; display: flex; align-items: center; gap: .6rem; }
.inv-callout__form { flex-wrap: wrap; }
.inv-callout__icon, .inv-search__icon { position: absolute; left: 1.1rem; width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; pointer-events: none; }
.inv-callout__icon { top: 1.05rem; }
.inv-callout__form input, .inv-search input {
  flex: 1 1 16rem; min-width: 0; width: 100%; appearance: none; -webkit-appearance: none;
  font: 500 1rem/1.2 var(--sans); color: var(--cream); background: rgba(10,9,8,.55);
  border: 1px solid rgba(216,179,106,.35); border-radius: 999px; padding: 1rem 1.2rem 1rem 3rem;
  transition: border-color .2s, box-shadow .2s;
}
.inv-callout__form input::placeholder, .inv-search input::placeholder { color: #8f8272; }
.inv-callout__form input:focus, .inv-search input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(216,179,106,.16); }
.inv-callout__form .btn { flex: 1 1 auto; }
.inv-search input::-webkit-search-cancel-button, .inv-callout__form input::-webkit-search-cancel-button { -webkit-appearance: none; }

.inv-head { padding-bottom: 2rem; }
.inv-search { max-width: 46rem; margin-top: 1.8rem; }
.inv-search input { font-size: 1.1rem; padding: 1.2rem 3.4rem 1.2rem 3.2rem; box-shadow: 0 14px 40px rgba(0,0,0,.35); }
.inv-search__clear { position: absolute; right: .55rem; width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(245,236,223,.08); cursor: pointer; display: grid; place-items: center; }
.inv-search__clear[hidden] { display: none; }
.inv-search__clear svg { width: 16px; height: 16px; fill: none; stroke: var(--cream); stroke-width: 2.2; stroke-linecap: round; }
.inv-search__clear:hover { background: rgba(245,236,223,.16); }

.inv-bar .chip { white-space: nowrap; flex: none; }
.inv-tools { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .6rem 1.5rem; margin: .25rem 0 1rem; }
.inv-count { margin: 0; color: var(--cream); font-size: .98rem; }
.inv-count strong { color: var(--gold-2); font-weight: 700; }
.inv-asknote { margin: .1rem 0 0; font-size: .82rem; color: var(--muted); }
.inv-sort { display: inline-flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--muted); }
.inv-sort select {
  appearance: none; -webkit-appearance: none; font: 500 .92rem/1 var(--sans); color: var(--cream);
  background: var(--bg-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%23d8b36a' stroke-width='2'/%3E%3C/svg%3E") no-repeat right .7rem center / 16px;
  border: 1px solid var(--line); border-radius: 999px; padding: .65rem 2.2rem .65rem 1rem; cursor: pointer;
}
.inv-sort select:focus-visible { outline: 2px solid var(--amber-2); outline-offset: 2px; }
.inv-note { font-size: .9rem; color: var(--amber-2); margin: -.4rem 0 1rem; }

.inv-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.inv-item {
  display: grid; grid-template-columns: 1fr; gap: .35rem 1rem; align-items: start;
  padding: 1.05rem 1.2rem; border: 1px solid var(--line); border-radius: 14px;
  background: linear-gradient(160deg, rgba(35,29,24,.85), rgba(26,22,19,.85));
  transition: border-color .2s, transform .2s var(--ease);
}
.inv-item:hover { border-color: rgba(216,179,106,.4); }
.inv-item__title { font: 600 1.02rem/1.35 var(--sans); letter-spacing: 0; margin: 0 0 .4rem; color: var(--cream); overflow-wrap: anywhere; }
.inv-item__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin: 0; }
.inv-item .tag {
  display: inline-block; font: 600 .66rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(216,179,106,.32); border-radius: 999px; padding: .38rem .6rem;
}
.inv-item__size { font-size: .8rem; color: var(--muted); }
.inv-item__carry { grid-column: 1 / -1; display: flex; align-items: center; gap: .45rem; margin: .35rem 0 0; font-size: .82rem; color: var(--muted); }
.inv-item__carry svg { width: 15px; height: 15px; flex: none; fill: none; stroke: #7fbf7f; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.inv-empty { text-align: center; max-width: 34rem; margin: 2rem auto 1rem; padding: 2.8rem 1.5rem; border: 1px dashed rgba(216,179,106,.35); border-radius: var(--radius); background: rgba(26,22,19,.6); }
.inv-empty svg { width: 46px; height: 46px; color: var(--amber); margin: 0 auto 1rem; }
.inv-empty h2 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
.inv-empty p { color: var(--muted); }
.inv-empty__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-top: 1.4rem; }
.inv-more { display: flex; justify-content: center; margin: 1.8rem 0 0; }
.inv-noscript { color: var(--amber-2); }
.inv-foot { margin: 3.5rem 0 4.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .95rem; }
.inv-foot strong { color: var(--cream); }
.inv-foot__fine { font-size: .82rem; margin: 0; }

@media (min-width: 640px) {
  .inv-callout__card { padding: 2.8rem 2.6rem; }
  .inv-callout__form { flex-wrap: nowrap; }
  .inv-callout__form .btn { flex: none; }
  .inv-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .inv-callout { padding: 0 0 2rem; }
  .inv-callout__card { grid-template-columns: 1fr 1.05fr; align-items: center; gap: 3rem; padding: 3.2rem 3.4rem; }
  .inv-list { grid-template-columns: repeat(3, 1fr); gap: .9rem; }
  .site-nav { gap: 1.6rem; }
}
@media (min-width: 1100px) { .site-nav { gap: 2.1rem; } }
.inv [hidden] { display: none !important; }
@media (min-width: 900px) { .inv-head { padding-top: 4rem; } }
@media (max-width: 639px) {
  .inv-head { padding-top: 2.2rem; padding-bottom: 1.4rem; }
  .inv-head h1 { font-size: clamp(2.5rem, 12vw, 3.2rem); }
  .inv-head p:not(.eyebrow) { font-size: 1rem; }
  .inv-search { margin-top: 1.3rem; }
  .inv-search input { font-size: 1.05rem; padding-top: 1.05rem; padding-bottom: 1.05rem; }
}

/* ---------- Poster treatment for the enhanced photos (hero + section cards) ---------- */
.hero__bg::before {                 /* thin gold poster frame, sits above the photo + overlays, below the text */
  content: ""; position: absolute; inset: clamp(10px, 1.6vw, 22px); z-index: 1; pointer-events: none;
  border: 1px solid rgba(216,179,106,.22); border-radius: 4px;
  box-shadow: inset 0 0 120px rgba(0,0,0,.35);
}
.card__img { position: relative; }
.card__img::after {                 /* cinematic bottom fade into the card + faint gold hairline */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12,10,9,0) 55%, rgba(12,10,9,.55) 100%),
    radial-gradient(ellipse at 50% 40%, transparent 60%, rgba(0,0,0,.28) 100%);
  box-shadow: inset 0 -1px 0 rgba(216,179,106,.35);
}

/* ---------- Real store logo (from the banner; images/logo*.webp/png) ---------- */
.brand picture { display: block; flex: none; line-height: 0; }
.brand__logo {
  display: block; height: 52px; width: auto;
  /* faint warm rim so the navy outer ring separates from the dark header, plus a soft drop shadow */
  filter: drop-shadow(0 0 1px rgba(216,179,106,.45)) drop-shadow(0 3px 8px rgba(0,0,0,.55));
  transition: transform .35s var(--ease);
}
.brand:hover .brand__logo { transform: rotate(-4deg) scale(1.04); }
.site-footer .brand__logo { height: 64px; }
.age-gate__logo { display: block; line-height: 0; margin: -.6rem auto 1.1rem; width: 150px; }
.age-gate__logo img {
  width: 100%; height: auto;
  filter: drop-shadow(0 0 1.5px rgba(216,179,106,.5)) drop-shadow(0 10px 24px rgba(0,0,0,.6));
}
@media (max-width: 639px) {
  .brand__logo { height: 44px; }
  .age-gate__logo { width: 124px; margin-top: -.9rem; }
}
@media (prefers-reduced-motion: reduce) { .brand:hover .brand__logo { transform: none; } }

/* ---------- Footer nav ---------- */
.site-footer__nav { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; }
.site-footer__nav a { color: var(--cream); text-decoration: none; font-size: .92rem; font-weight: 500; }
.site-footer__nav a:hover { color: var(--amber-2); }
@media (min-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr auto auto; gap: 3rem; }
  .site-footer__nav { max-width: 17rem; }
}
@media (min-width: 900px) { .site-nav a, .brand__text { white-space: nowrap; } }
@media (min-width: 900px) and (max-width: 1099px) {
  .site-nav { gap: .95rem; }
  .site-nav a { font-size: .86rem; }
}

/* ---------- Recipes teaser (home) ---------- */
.recipes-teaser { padding: 1rem 0 0; }
.recipes-teaser__card {
  display: grid; gap: 1.2rem; align-items: center; padding: 2rem 1.5rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: radial-gradient(ellipse 60% 100% at 0% 100%, rgba(217,154,61,.12), transparent 60%), var(--bg-2);
}
.recipes-teaser__glass { width: 56px; height: 56px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.recipes-teaser__text h2 { font-size: clamp(1.8rem, 4.4vw, 2.6rem); margin-bottom: .3em; }
.recipes-teaser__text p:last-child { color: var(--muted); margin: 0; max-width: 40rem; }
.recipes-teaser__card .btn { justify-self: start; }
@media (min-width: 640px) { .recipes-teaser__card { padding: 2.2rem 2.4rem; } }
@media (min-width: 900px) {
  .recipes-teaser { padding: 2rem 0 0; }
  .recipes-teaser__card { grid-template-columns: auto 1fr auto; gap: 2rem; padding: 2.4rem 3rem; }
  .recipes-teaser__glass { width: 72px; height: 72px; }
}

/* ---------- Events (home) ---------- */
.events { padding-bottom: 2rem; }
.events .section__head { margin-bottom: 2rem; }
.events__list { display: grid; gap: 1rem; }
.events__list:empty { display: none; }
.event-card {
  display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.4rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2);
}
.event-card__date {
  flex: none; width: 4.4rem; padding: .55rem 0 .65rem; text-align: center; border-radius: 12px;
  border: 1px solid rgba(216,179,106,.35); background: linear-gradient(160deg, var(--bg-3), var(--ink));
}
.event-card__date span { display: block; font: 600 .72rem/1.2 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.event-card__date strong { display: block; font: 700 1.9rem/1.05 var(--serif); color: var(--cream); }
.event-card__when { font-size: .88rem; color: var(--amber-2); margin: 0 0 .3rem; font-weight: 600; }
.event-card h3 { margin: 0 0 .35rem; }
.event-card p:last-child { color: var(--muted); margin: 0; }
.events__empty {
  display: flex; gap: 1.3rem; align-items: flex-start; padding: 1.8rem 1.5rem;
  border: 1px dashed rgba(216,179,106,.35); border-radius: var(--radius); background: rgba(26,22,19,.6);
}
.events__empty[hidden] { display: none; }
.events__empty svg { flex: none; width: 44px; height: 44px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.events__empty h3 { margin: .1rem 0 .4rem; font-size: 1.3rem; }
.events__empty p { color: var(--muted); margin: 0; max-width: 40rem; }
@media (min-width: 640px) { .events__list { grid-template-columns: repeat(2, 1fr); } .events__empty { padding: 2rem 2.2rem; } }
@media (min-width: 1100px) { .events__list { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Recipes page ---------- */
.recipes [hidden] { display: none !important; }
.recipe-grid { display: grid; gap: 1.1rem; padding: .5rem 0 2rem; }
.recipe-card {
  position: relative; display: flex; flex-direction: column; padding: 1.5rem 1.35rem 1.35rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(216,179,106,.08), transparent 60%), var(--bg-2);
  scroll-margin-top: 140px;
}
.recipe-card:target { border-color: rgba(216,179,106,.55); }
.rc-head { display: flex; gap: 1rem; align-items: center; margin-bottom: .7rem; }
.rc-glass { flex: none; width: 52px; height: 52px; padding: 7px; border-radius: 14px; border: 1px solid rgba(216,179,106,.3); background: rgba(10,9,8,.45);
  fill: none; stroke: var(--gold); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.rc-spirit { margin: 0 0 .15rem; font: 600 .7rem/1.2 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--amber); }
.recipe-card h2 { font-size: 1.7rem; margin: 0; }
.rc-blurb { color: var(--muted); font-size: .96rem; margin: 0 0 .9rem; }
.rc-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.1rem; }
.rc-meta div { display: flex; gap: .4rem; align-items: baseline; padding: .3rem .75rem; border-radius: 999px; border: 1px solid var(--line); background: rgba(10,9,8,.35); font-size: .84rem; }
.rc-meta dt { color: var(--muted); }
.rc-meta dd { margin: 0; color: var(--cream); font-weight: 600; }
.rc-cols { display: grid; gap: 1rem; }
.recipe-card h3 { font: 600 .74rem/1.2 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 0 0 .55rem; }
.rc-ing, .rc-steps { margin: 0; padding: 0; font-size: .95rem; line-height: 1.55; }
.rc-ing { list-style: none; }
.rc-ing li { display: flex; gap: .6rem; padding: .3rem 0; border-bottom: 1px solid var(--line); }
.rc-ing li:last-child { border-bottom: 0; }
.rc-amt { flex: none; min-width: 4.4rem; color: var(--amber-2); font-weight: 600; }
.rc-steps { list-style: none; counter-reset: st; }
.rc-steps li { position: relative; padding: .2rem 0 .45rem 2rem; counter-increment: st; color: #e3d6c4; }
.rc-steps li::before { content: counter(st); position: absolute; left: 0; top: .28rem; width: 1.35rem; height: 1.35rem; border-radius: 50%;
  display: grid; place-items: center; font: 700 .72rem/1 var(--sans); color: #17110a; background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-3)); }
.rc-garnish { margin: 1rem 0 0; padding-top: .9rem; border-top: 1px solid var(--line); font-size: .93rem; color: var(--muted); }
.rc-garnish strong { color: var(--cream); font-weight: 600; }
.rc-find { margin: .7rem 0 0; display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; font-size: .86rem; }
.rc-find span { color: var(--muted); margin-right: .15rem; }
.rc-find a { text-decoration: none; padding: .28rem .8rem; border-radius: 999px; border: 1px solid rgba(216,179,106,.4); color: var(--gold-2); transition: background .2s, color .2s; }
.rc-find a:hover { background: rgba(216,179,106,.14); color: var(--cream); }
.rc-responsible { display: flex; gap: 1rem; align-items: center; margin: 1rem 0 4rem; padding: 1.2rem 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); }
.rc-responsible svg { flex: none; width: 34px; height: 34px; color: var(--gold); }
.rc-responsible p { margin: 0; color: var(--muted); font-size: .93rem; }
.rc-responsible strong { color: var(--cream); margin-right: .35rem; }
@media (min-width: 760px) { .recipe-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .recipe-grid { grid-template-columns: repeat(3, 1fr); gap: 1.3rem; } }
@media (max-width: 639px) { .recipes .page-head { padding-top: 2.4rem; } .recipes .page-head h1 { font-size: clamp(2.5rem, 12vw, 3.2rem); } }

/* Small phones: keep the hours table (with the "Today" badge) inside a 390px screen */
.hours__grid > * { min-width: 0; }
@media (max-width: 439px) {
  .hours__card { padding: 1.1rem .95rem .7rem; }
  .hours__table th, .hours__table td { padding: .8rem .3rem; font-size: .93rem; }
  .hours__table tr.is-today th::after { margin-left: .4rem; padding: .15rem .4rem; }
}
