/* ============================================================
   Jim 'N Nick's Bar-B-Q — Modern Homepage
   Brand palette: deep warm black / cream / jnn red / warm gray
   ============================================================ */

:root {
  --ink: #171512;          /* page / dark sections */
  --ink-2: #2b2b2b;        /* primary text */
  --cream: #f4efe0;        /* light background */
  --cream-2: #f3ecdc;      /* logo cream */
  --red: #f1312b;          /* jnn red (display accents) */
  --red-cta: #c92922;      /* deep red — AA-safe for small text/buttons */
  --red-cta-hover: #a71e18;
  --tan: #615d54;          /* warm brown-gray */
  --gray: #c5c1b9;
  --white: #ffffff;
  --line: rgba(244, 239, 224, 0.14);
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-slab: "Roboto Slab", Georgia, serif;
  --font-body: "Roboto", "Helvetica Neue", Arial, sans-serif;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

/* keep off-canvas drawers and marquees from making the page pannable sideways */
html, body { overflow-x: hidden; }
body { overscroll-behavior-x: none; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1200px, 92%); margin-inline: auto; }

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

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 1300;
  background: var(--red); color: #fff; padding: 10px 18px;
  border-radius: 0 0 8px 8px; font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 15px 34px;
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 6px; border: 2px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-red { background: var(--red-cta); color: var(--cream); }
.btn-red:hover { background: var(--red-cta-hover); box-shadow: 0 12px 30px rgba(241, 49, 43, 0.35); }

.btn-dark { background: var(--ink-2); color: var(--cream); }
.btn-dark:hover { background: #000; }

.btn-white { background: #fff; color: var(--ink-2); }
.btn-white:hover { background: var(--cream); }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

.btn-sm { padding: 11px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }

/* ---------------- Header ---------------- */

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1200;
  padding: 18px 0;
  transition: background 0.35s, padding 0.35s, box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(23, 21, 18, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.header-inner {
  width: min(1400px, 94%);
  margin-inline: auto;
  display: flex; align-items: center; gap: 28px;
}

.brand img { width: 150px; height: auto; transition: width 0.35s var(--ease); }
.site-header.scrolled .brand img { width: 128px; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 6px; }
.main-nav a {
  display: block; padding: 10px 14px;
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream);
  position: relative;
  transition: color 0.25s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--cream); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 21, 18, 0.55) 0%, rgba(23, 21, 18, 0.35) 45%, rgba(23, 21, 18, 0.85) 100%),
    radial-gradient(120% 90% at 50% 40%, rgba(23, 21, 18, 0.1) 0%, rgba(23, 21, 18, 0.55) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 120px 24px 80px;
  max-width: 980px;
}
.hero-kicker {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  animation: rise 0.8s 0.15s var(--ease) forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 22px 0 26px;
  opacity: 0;
  animation: rise 0.9s 0.3s var(--ease) forwards;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.55);
}
.hero-title span {
  color: var(--red);
  -webkit-text-stroke: 1px rgba(244, 239, 224, 0.35);
}
.hero-sub {
  font-family: var(--font-slab);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  max-width: 560px; margin: 0 auto 42px;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  animation: rise 0.9s 0.45s var(--ease) forwards;
}
.hero-cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: rise 0.9s 0.6s var(--ease) forwards;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute; bottom: 26px;
  left: 0; right: 0; margin-inline: auto;
  width: max-content;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  animation: rise 1s 1s var(--ease) forwards;
}
.hero-scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--red), transparent);
  overflow: hidden; position: relative;
}
.hero-scroll-line::after {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%;
  background: #fff;
  animation: scrollDrop 2.2s var(--ease) infinite;
}
@keyframes scrollDrop {
  0% { top: -50%; } 60% { top: 110%; } 100% { top: 110%; }
}

/* ---------------- Ticker ---------------- */

.ticker {
  background: var(--red-cta);
  overflow: hidden;
  border-block: 3px solid var(--cream-2);
}
.ticker-track {
  display: flex; align-items: center;
  width: max-content;
  animation: tickerMove 42s linear infinite;
}
.ticker span {
  font-family: var(--font-display);
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 1rem; color: var(--cream);
  padding: 14px 0 14px 34px;
  white-space: nowrap;
}
.ticker i {
  font-style: normal; color: var(--cream-2);
  font-size: 0.9rem; padding-left: 34px;
}
@keyframes tickerMove { to { transform: translateX(-50%); } }

/* ---------------- Section primitives ---------------- */

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red-cta);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.02;
  color: var(--ink-2);
}
.section-sub {
  margin-top: 16px;
  font-family: var(--font-slab);
  font-weight: 300; font-size: 1.05rem;
  color: var(--tan);
}

/* ---------------- Store picker ---------------- */

.locations {
  background: var(--ink);
  color: var(--cream);
  padding: 96px 0 110px;
}
.locations .section-title { color: var(--cream); }
.locations .section-sub { color: var(--gray); }
.locations .section-eyebrow { color: var(--red); }

.picker-stage {
  position: relative;
  width: min(1200px, 92%);
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.picker-map {
  width: 100%;
  height: min(680px, 82vh);
  background: #232019;
}

.picker-toolbar {
  position: absolute;
  top: 18px; left: 18px; right: 18px;
  z-index: 1000;
  display: flex; align-items: center; gap: 14px;
  background: rgba(23, 21, 18, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(244, 239, 224, 0.14);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.search-row { display: flex; gap: 10px; flex: 1; min-width: 0; }
.search-row input {
  flex: 1; min-width: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--cream);
  padding: 13px 16px;
  font-size: 0.98rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.search-row input::placeholder { color: rgba(244, 239, 224, 0.45); }
.search-row input:focus {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(241, 49, 43, 0.25);
}

.btn-geo {
  width: 48px; height: 48px; flex: 0 0 48px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--cream);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.btn-geo:hover { background: var(--red); border-color: var(--red); }
.btn-geo.loading { color: var(--red); }
.btn-geo.loading svg { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.filter-row {
  display: flex; align-items: center; gap: 12px;
}
.filter-row select {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--cream);
  padding: 9px 34px 9px 12px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23F4EFE0' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.filter-row select:focus { border-color: var(--red); }
.filter-row option { background: #1e1b17; color: var(--cream); }

.result-count {
  font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}

.btn-clear {
  background: transparent;
  border: 1px solid rgba(244, 239, 224, 0.3);
  border-radius: 999px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 16px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-clear:hover { border-color: var(--red); color: var(--red); }

/* Results grid below the map */
.picker-results { padding-top: 30px; }

.results-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 26px;
}
.results-context {
  font-family: var(--font-slab); font-weight: 300;
  font-size: 1.02rem;
  color: var(--cream);
}
/* the red bullet only belongs next to real context text — hide the empty line */
.results-context:empty { display: none; }
.results-context::before {
  content: "";
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 10px;
  vertical-align: 2px;
}
.btn-expand {
  background: transparent;
  border: 1px solid rgba(244, 239, 224, 0.3);
  border-radius: 999px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 9px 20px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-expand:hover { border-color: var(--red); color: var(--red); }

.results-state-head {
  display: flex; align-items: baseline; gap: 12px;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  background: none; border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #ff8a80;
  text-align: left;
  transition: color 0.25s;
}
.results-state-head:hover { color: var(--cream); }
.group-toggle { cursor: pointer; }
.group-toggle .chev {
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  width: 8px; height: 8px;
  transform: rotate(-45deg) translateY(-2px);
  transition: transform 0.3s var(--ease);
  opacity: 0.85;
}
.results-group:not(.collapsed) > .group-toggle .chev {
  transform: rotate(45deg) translateY(1px);
}
.results-state-head span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gray);
}
.results-state-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(244, 239, 224, 0.22), transparent);
}
.results-group { margin-bottom: 44px; }
.results-group.collapsed { margin-bottom: 8px; }
.results-group.collapsed > .results-state-head { margin-bottom: 0; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.store-card {
  display: flex; flex-direction: column;
  background: #1e1b17;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  cursor: pointer;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s, box-shadow 0.3s;
  position: relative;
}
.store-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 49, 43, 0.55);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}
.store-card.active {
  border-color: var(--red);
  background: rgba(241, 49, 43, 0.12);
  box-shadow: 0 0 0 3px rgba(241, 49, 43, 0.25);
}

.store-card-top {
  display: flex; align-items: baseline; gap: 10px;
}
.store-name {
  font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--cream);
  line-height: 1.2;
}
.store-dist {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--cream);
  background: rgba(244, 239, 224, 0.12);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}

.store-status {
  display: inline-flex; align-items: center; gap: 7px;
  align-self: flex-start;
  margin-top: 10px;
  font-size: 0.78rem;
  border-radius: 999px;
  padding: 4px 11px;
}
.status-open { color: #7ddb9a; background: rgba(66, 208, 122, 0.1); }
.status-open .status-dot, .status-dot.status-open { background: #42d07a; box-shadow: 0 0 0 3px rgba(66, 208, 122, 0.2); }
.status-closed { color: var(--gray); background: rgba(244, 239, 224, 0.06); }
.status-closed .status-dot, .status-dot.status-closed { background: #8a8378; }
.status-dot.status-closing { background: #f0b429; box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.2); }
.status-closing { color: #f5c75d; background: rgba(240, 180, 41, 0.1); }

.store-addr {
  margin-top: 12px;
  font-size: 0.88rem; color: var(--gray);
  line-height: 1.5;
}

.store-meta {
  display: flex; align-items: center; gap: 8px;
  margin-top: 8px;
  font-size: 0.84rem; color: var(--gray);
  flex-wrap: wrap;
}
.store-meta .sep { color: rgba(244, 239, 224, 0.25); }

.store-actions {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}
.store-actions .btn { padding: 10px 14px; font-size: 0.72rem; letter-spacing: 0.1em; flex: 1 1 auto; }
.btn-order { background: var(--red-cta); color: var(--cream); flex: 1 1 100%; }
.btn-order:hover { background: var(--red-cta-hover); }
.btn-line { background: transparent; color: var(--cream); border: 1px solid rgba(244, 239, 224, 0.3); flex: 1 1 calc(50% - 4px); }
.btn-line:hover { border-color: var(--red); color: var(--red); }

/* Store detail sheet — a modal so map chrome never mixes with the card */
.sheet-scrim {
  position: fixed;
  inset: 0;
  z-index: 1190;
  background: rgba(10, 9, 8, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.sheet-scrim.open { opacity: 1; pointer-events: auto; }

.store-sheet {
  position: fixed;
  top: 50%; left: 50%;
  z-index: 1200;
  width: min(520px, calc(100% - 32px));
  max-height: min(78vh, 640px);
  overflow-y: auto;
  background: #1e1b17;
  border: 1px solid rgba(244, 239, 224, 0.16);
  border-radius: 14px;
  padding: 22px 24px 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.32s var(--ease);
  scrollbar-width: thin;
  scrollbar-color: rgba(244, 239, 224, 0.25) transparent;
}
.store-sheet.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.sheet-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding-right: 28px; }
.sheet-name {
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase;
  font-size: 1.35rem; letter-spacing: 0.03em;
  color: var(--cream);
}
.sheet-pills { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sheet-pills .store-status { margin-top: 0; }
.sheet-dist {
  font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 0.08em;
  color: var(--cream);
  background: rgba(244, 239, 224, 0.14);
  border-radius: 999px;
  padding: 4px 10px;
}
.sheet-addr {
  margin-top: 7px;
  font-size: 0.9rem; color: var(--gray);
}
.sheet-phones {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  margin-top: 12px;
  padding: 12px 0;
  border-block: 1px solid var(--line);
  font-size: 0.88rem;
}
.sheet-phones a { color: var(--cream); transition: color 0.2s; }
.sheet-phones a:hover { color: var(--red); }
.sheet-phones .ph-label { color: var(--gray); margin-right: 4px; }

.sheet-hours { padding-top: 14px; }
.sheet-hours-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.sheet-hours-title {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gray);
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  font-size: 0.88rem;
  padding: 5px 8px;
  color: var(--gray);
}
.hours-table td:first-child { font-family: var(--font-display); letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.78rem; color: var(--cream); }
.hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr.today td { color: var(--cream); }
.hours-table tr.today td:first-child { color: var(--red); font-weight: 700; }
.hours-table tr.today td:last-child { color: var(--cream); font-weight: 700; }
.hours-table .today-tag {
  font-family: var(--font-display);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red);
  background: rgba(241, 49, 43, 0.15);
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 8px;
}

.sheet-actions {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.sheet-actions .btn { flex: 1 1 auto; padding: 11px 12px; font-size: 0.72rem; letter-spacing: 0.1em; }
.sheet-actions .btn-order { flex: 1 1 100%; }

.sheet-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(244, 239, 224, 0.2);
  border-radius: 50%;
  color: var(--cream);
  font-size: 0.72rem;
  transition: background 0.25s, border-color 0.25s;
}
.sheet-close:hover { background: var(--red); border-color: var(--red); }

.list-empty {
  padding: 64px 24px;
  text-align: center;
  color: var(--gray);
  font-family: var(--font-slab); font-weight: 300;
}
.list-empty strong { display: block; font-family: var(--font-display); color: var(--cream); font-size: 1.5rem; letter-spacing: 0.04em; margin-bottom: 6px; text-transform: uppercase; }

/* Map */
.picker-map .leaflet-container { width: 100%; height: 100%; background: #232019; font-family: var(--font-body); }
.picker-map:empty::before {
  content: "Loading map…";
  display: grid;
  place-items: center;
  height: 100%;
  color: rgba(244, 239, 224, 0.45);
  font-family: var(--font-slab); font-weight: 300;
}
.map-unavailable { display: grid; place-items: center; }
.map-error {
  color: var(--gray);
  font-family: var(--font-slab); font-weight: 300;
  text-align: center;
  padding: 0 24px;
  max-width: 420px;
}
.leaflet-control-attribution { font-size: 10px; background: #171512 !important; color: rgba(244, 239, 224, 0.85) !important; padding: 3px 8px; border-radius: 8px 0 0 0; }
.leaflet-control-attribution a { color: rgba(244, 239, 224, 0.9) !important; }
.leaflet-control-zoom a { background: #201d19 !important; color: var(--cream) !important; border-color: var(--line) !important; }
.leaflet-control-zoom a:hover { background: var(--red) !important; }

.jnn-pin {
  position: relative;
  width: 30px; height: 38px;
}
.jnn-pin svg { display: block; filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.45)); }
.jnn-pin .pin-label {
  position: absolute; top: 4px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.62rem; color: #fff;
}
.jnn-pin.pin-closed svg path.pin-body { fill: #6e685e; }
.jnn-pin.pin-closed .pin-label { color: #fff; }
.jnn-pin.pin-me svg path.pin-body { fill: #2b2b2b; stroke: var(--red); stroke-width: 2.5px; }


/* ---------------- Menu teaser ---------------- */

.menu-teaser { padding: 110px 0 90px; background: var(--cream); }

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.split-media { position: relative; }
.split-media img {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.media-badge {
  position: absolute; top: 22px; left: 22px;
  background: var(--red-cta); color: var(--cream);
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.05rem; line-height: 1.05; text-align: center;
  padding: 14px 16px; border-radius: 50%;
  width: 84px; height: 84px;
  display: grid; place-items: center;
  border: 3px solid var(--cream-2);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

.split-body .section-title { margin-bottom: 18px; }
.lede {
  font-family: var(--font-slab); font-weight: 300;
  font-size: 1.05rem; color: var(--tan);
  max-width: 480px;
}
.chip-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 26px 0 34px;
}
.chip-row span {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2);
  border: 1.5px solid rgba(43, 43, 43, 0.25);
  border-radius: 999px;
  padding: 8px 16px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.chip-row span:hover { background: var(--red-cta); border-color: var(--red-cta); color: var(--cream); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------------- Catering ---------------- */

.catering {
  position: relative;
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.catering-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
}
.catering-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23, 21, 18, 0.6), rgba(23, 21, 18, 0.78));
}
.catering-inner { position: relative; z-index: 2; }
.catering-inner .section-eyebrow { color: var(--cream-2); }
.catering-title {
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}
.catering-sub {
  font-family: var(--font-slab); font-weight: 300;
  font-size: 1.1rem;
  max-width: 520px; margin: 18px auto 34px;
  color: rgba(255, 255, 255, 0.92);
}

/* ---------------- Story ---------------- */

.story {
  display: grid; grid-template-columns: 1fr 1.1fr;
  background: var(--ink);
}
.story-media { position: relative; min-height: 640px; overflow: hidden; }
.story-media-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.story-media::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(97, 93, 84, 0.5);
  mix-blend-mode: multiply;
}
.story-title {
  position: absolute; z-index: 2;
  bottom: 40px; left: 40px;
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(3.4rem, 6vw, 5.6rem);
  line-height: 0.9;
  color: #fff;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}
.story-body {
  background: var(--ink-2);
  color: var(--cream-2);
  padding: 90px 8% 90px 6%;
}
.story-body p {
  font-family: var(--font-slab); font-weight: 300;
  font-size: 0.98rem; line-height: 1.75;
  margin-bottom: 20px;
  color: rgba(244, 239, 224, 0.88);
}
.story-body .btn { margin-top: 14px; }

/* ---------------- Shop ---------------- */

.shop { padding: 110px 0; background: var(--cream); }
.shop-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.shop-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(23, 21, 18, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.shop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(23, 21, 18, 0.18);
}
.shop-card-img { overflow: hidden; aspect-ratio: 49 / 40; }
.shop-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.shop-card:hover .shop-card-img img { transform: scale(1.07); }
.shop-card h3 {
  font-family: var(--font-display);
  font-weight: 600; text-transform: uppercase;
  font-size: 1.35rem; letter-spacing: 0.04em;
  padding: 22px 26px 4px;
  color: var(--ink-2);
}
.shop-card-cta {
  display: block;
  padding: 0 26px 24px;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red-cta);
}
.shop-card-cta i { display: inline-block; transition: transform 0.3s var(--ease); }
.shop-card:hover .shop-card-cta i { transform: translateX(6px); }

/* ---------------- Footer ---------------- */

.site-footer { background: #131110; color: var(--gray); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 74px 0 56px;
}
.footer-brand img { width: 150px; height: auto; }
.footer-tagline {
  font-family: var(--font-slab); font-weight: 300;
  font-size: 0.9rem;
  margin: 18px 0 22px;
  max-width: 240px;
}
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(244, 239, 224, 0.2);
  border-radius: 50%;
  color: var(--cream);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.social-row a:hover {
  background: var(--red); border-color: var(--red);
  transform: translateY(-3px);
}
.footer-col h3, .footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 18px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.25s var(--ease);
}
.footer-col a:hover { color: var(--red); padding-left: 4px; }

.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.legal-links { display: flex; gap: 26px; flex-wrap: wrap; }
.legal-links a { font-size: 0.82rem; transition: color 0.2s; }
.legal-links a:hover { color: var(--red); }
.footer-bottom p { font-size: 0.82rem; }

/* ---------------- Toast ---------------- */

.toast {
  position: fixed; bottom: 26px; left: 50%;
  transform: translate(-50%, 80px);
  background: var(--ink-2); color: var(--cream);
  font-family: var(--font-slab); font-size: 0.9rem;
  padding: 14px 24px;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 400;
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ---------------- Reveal animation ---------------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  .ticker-track { animation-duration: 120s; }
}

/* ---------------- Responsive ---------------- */

@media (max-width: 1100px) {
  .results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story { grid-template-columns: 1fr; }
  .story-media { min-height: 420px; }
  .story-body { padding: 70px 8%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  /* backdrop-filter on the scrolled header would make it the containing block
     for the fixed nav drawer, clipping it to header height — drop it on mobile */
  .site-header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(340px, 86vw);
    background: #1a1713;
    border-left: 1px solid var(--line);
    padding: 110px 34px 40px;
    transform: translateX(105%);
    transition: transform 0.45s var(--ease);
    z-index: 250;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { font-size: 1.05rem; padding: 14px 6px; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .nav-toggle.open { position: relative; z-index: 260; }

  .picker-map { height: 400px; }
  .picker-toolbar {
    position: static;
    flex-direction: column; align-items: stretch; gap: 10px;
  }
  .filter-row { justify-content: space-between; flex-wrap: wrap; }
  .filter-row select { flex: 1 1 auto; min-width: 0; }
  .filter-row .result-count, .filter-row .btn-clear { flex-shrink: 0; }
  .results-grid { grid-template-columns: minmax(0, 1fr); max-width: 560px; margin-inline: auto; }

  /* touch devices: pinch-zoom the map, drop the on-screen +/- control */
  .leaflet-control-zoom { display: none; }

  /* mobile: the sheet becomes a proper viewport bottom sheet over the scrim */
  .store-sheet {
    top: auto;
    left: 12px; right: 12px; bottom: 12px;
    width: auto;
    max-height: min(88vh, 680px);
    padding: 20px 18px 16px;
    border-radius: 18px;
    transform: translateY(calc(100% + 24px));
    box-shadow: 0 -8px 50px rgba(0, 0, 0, 0.55);
  }
  .store-sheet::after {
    content: "";
    position: absolute; top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 46px; height: 4px;
    border-radius: 2px;
    background: rgba(244, 239, 224, 0.35);
  }
  .store-sheet.open { transform: translateY(0); }

  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-media img { height: 320px; }
  .shop-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 560px) {
  .brand img { width: 120px; }
  .site-header.scrolled .brand img { width: 108px; }
  .hero-content { padding-top: 110px; }
  .hero-cta .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .picker-toolbar { padding: 12px; }
  .picker-map { height: 400px; }
  .menu-nav { top: 66px; }
}

/* ============================================================
   Menu page
   ============================================================ */

.main-nav a.active { color: var(--red); }
.main-nav a.active::after { transform: scaleX(1); }

/* Menu hero */
.menu-hero {
  position: relative;
  min-height: 62vh;
  display: flex; align-items: flex-end;
  padding-bottom: 64px;
  color: #fff;
  overflow: hidden;
}
.menu-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 10s var(--ease) forwards;
}
.menu-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23, 21, 18, 0.55) 0%, rgba(23, 21, 18, 0.25) 40%, rgba(23, 21, 18, 0.92) 100%);
}
.menu-hero-content {
  position: relative; z-index: 2;
  width: min(1200px, 92%);
  margin-inline: auto;
  padding-top: 130px;
}
.menu-hero-content .section-eyebrow { color: var(--cream-2); }
.menu-hero-title {
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.95;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.55);
}
.menu-hero-sub {
  font-family: var(--font-slab); font-weight: 300;
  font-size: 1.15rem;
  margin-top: 16px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.94);
}
.menu-hero-notice {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: 12px;
  color: rgba(244, 239, 224, 0.7);
}

/* Sticky category nav */
.menu-nav {
  position: sticky; top: 80px; z-index: 150;
  background: rgba(23, 21, 18, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-block: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}
.menu-nav-inner { width: min(1200px, 94%); margin-inline: auto; }
.menu-nav-track {
  display: flex; gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 10px 2px;
}
.menu-nav-track::-webkit-scrollbar { display: none; }
.menu-nav-track a {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray);
  border: 1px solid rgba(244, 239, 224, 0.16);
  border-radius: 999px;
  padding: 8px 16px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.menu-nav-track a:hover { color: var(--cream); border-color: rgba(244, 239, 224, 0.4); }
.menu-nav-track a.active {
  color: var(--cream);
  background: var(--red-cta);
  border-color: var(--red-cta);
}

/* Sections */
.menu-body { background: var(--cream); }
.menu-section { padding: 84px 0 30px; }
.menu-section-alt { background: #f7f1e2; }
.menu-section-head { margin-bottom: 40px; max-width: 760px; }
.menu-section-title {
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.02;
  color: var(--red-cta);
}
.menu-section-note {
  margin-top: 12px;
  font-family: var(--font-slab); font-weight: 300;
  font-size: 1rem;
  color: var(--tan);
}
.menu-item-option {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red-cta);
}

/* Item grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 56px;
}
.menu-item {
  border-top: 1px solid rgba(43, 43, 43, 0.12);
  padding: 22px 0 8px;
}
.menu-item-name {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-family: var(--font-display);
  font-weight: 600; text-transform: uppercase;
  font-size: 1.18rem; letter-spacing: 0.03em;
  color: var(--ink-2);
}
.menu-item-new {
  font-family: var(--font-display);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--cream);
  background: var(--red-cta);
  border-radius: 999px;
  padding: 3px 9px;
}
.menu-item-gf {
  font-family: var(--font-display);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red-cta);
  border: 1.5px solid var(--red-cta);
  border-radius: 999px;
  padding: 2px 8px;
}
.menu-item-flag {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red-cta);
}
.menu-item-desc {
  margin-top: 8px;
  font-family: var(--font-slab); font-weight: 300;
  font-size: 0.94rem; line-height: 1.6;
  color: var(--tan);
}
.menu-item-note {
  margin-top: 6px;
  font-size: 0.82rem; font-style: italic;
  color: var(--tan);
}
.menu-item-sizes {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 12px;
}
.menu-item-sizes span {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2);
  border: 1.5px solid rgba(43, 43, 43, 0.28);
  border-radius: 999px;
  padding: 5px 13px;
}

/* Trimmings */
.trim-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.trim-chip {
  font-family: var(--font-display);
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-2);
  background: #fff;
  border: 1.5px solid rgba(43, 43, 43, 0.16);
  border-radius: 999px;
  padding: 10px 20px;
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}
.trim-chip:hover { border-color: var(--red-cta); transform: translateY(-2px); }
.trim-chip i {
  font-style: normal;
  color: var(--red-cta);
}
.trim-chip em {
  font-style: normal;
  font-size: 0.62rem; font-weight: 700;
  color: var(--red-cta);
  border: 1px solid var(--red-cta);
  border-radius: 999px;
  padding: 1px 6px;
  margin-left: 7px;
  vertical-align: 1px;
}

/* Value Feast */
.feast {
  background: var(--ink);
  color: var(--cream);
  padding: 96px 0 110px;
}
.feast .section-title { color: var(--cream); }
.feast-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.feast-head .section-eyebrow { color: var(--red); }
.feast-note {
  margin-top: 14px;
  font-family: var(--font-slab); font-weight: 300;
  font-size: 1rem;
  color: var(--gray);
}
.feast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.feast .menu-item {
  background: #1e1b17;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.feast .menu-item:hover { transform: translateY(-4px); border-color: rgba(241, 49, 43, 0.5); }
.feast .menu-item-name { color: var(--cream); }
.feast .menu-item-desc { color: var(--gray); }

/* Footnotes */
.menu-footnotes {
  background: var(--cream);
  padding: 40px 0 90px;
}
.menu-niceville {
  max-width: 860px;
  font-family: var(--font-slab); font-weight: 300;
  font-size: 0.86rem;
  color: var(--tan);
  margin-bottom: 26px;
  line-height: 1.7;
}
.menu-niceville a {
  color: var(--red-cta);
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.menu-niceville a:hover { color: var(--ink-2); }
.menu-footnotes ul { max-width: 860px; }
.menu-footnotes h3, .menu-footnotes li {
  list-style: none;
  font-size: 0.8rem;
  color: var(--tan);
  margin-bottom: 10px;
  line-height: 1.6;
}
.menu-footnotes li:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .menu-hero { min-height: 52vh; }
  .menu-grid { grid-template-columns: 1fr; gap: 0 40px; }
  .feast-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}
@media (max-width: 560px) {
  .menu-hero { min-height: 60vh; }
  
}

/* Search suggestions */
.suggest-row {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin: 18px 0 24px;
  font-family: var(--font-slab); font-weight: 300;
  color: var(--gray);
}
.suggest-chip {
  background: transparent;
  border: 1.5px solid rgba(244, 239, 224, 0.35);
  border-radius: 999px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 18px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.suggest-chip:hover { border-color: var(--red); color: var(--red); }
.browse-all-btn { margin-top: 4px; }

/* ============================================================
   Catering page
   ============================================================ */

.cat-intro { padding: 100px 0 40px; background: var(--cream); }
.cat-intro-inner { max-width: 760px; margin-inline: auto; text-align: center; }
.cat-intro-inner .lede { margin: 20px auto 0; }

.cat-services { padding: 30px 0 110px; background: var(--cream); }
.cat-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.cat-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(23, 21, 18, 0.08);
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(23, 21, 18, 0.16); }
.cat-card-img { aspect-ratio: 3 / 2; overflow: hidden; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.cat-card:hover .cat-card-img img { transform: scale(1.06); }
.cat-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.cat-card h3 {
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase;
  font-size: 1.4rem; letter-spacing: 0.04em;
  color: var(--red-cta);
}
.cat-card-desc {
  margin-top: 12px;
  font-family: var(--font-slab); font-weight: 300;
  font-size: 0.96rem; line-height: 1.6;
  color: var(--tan);
}
.cat-card-bullets {
  margin: 16px 0 24px;
  display: grid; gap: 9px;
}
.cat-card-bullets li {
  position: relative;
  padding-left: 26px;
  font-size: 0.88rem;
  color: var(--ink-2);
}
.cat-card-bullets li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--red-cta);
}
.cat-card-body .btn { align-self: flex-start; margin-top: auto; }

/* We're All In band */
.cat-allin {
  position: relative;
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
}
.cat-allin-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.cat-allin-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(23, 21, 18, 0.92) 0%, rgba(23, 21, 18, 0.78) 55%, rgba(23, 21, 18, 0.45) 100%);
}
.cat-allin-inner { position: relative; z-index: 2; max-width: 720px; }
.cat-allin-inner .section-eyebrow { color: var(--cream-2); }
.cat-allin-text {
  margin-top: 18px;
  font-family: var(--font-slab); font-weight: 300;
  font-size: 1.02rem; line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}
.cat-allin-inner .btn { margin-top: 30px; }

/* Weddings */
.cat-weddings { padding: 110px 0; background: var(--cream); }
.cat-weddings .split-media img { height: 520px; object-fit: cover; }

/* Reviews */
.cat-reviews { background: #f7f1e2; padding: 100px 0 110px; }
.cat-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.cat-review {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 6px 24px rgba(23, 21, 18, 0.07);
  display: flex; flex-direction: column;
  margin: 0;
}
.cat-review blockquote {
  font-family: var(--font-slab); font-weight: 300;
  font-size: 0.95rem; line-height: 1.7;
  color: var(--tan);
  flex: 1;
}
.cat-review blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-size: 3.4rem; line-height: 0.6;
  color: var(--red-cta);
  margin-bottom: 16px;
}
.cat-review figcaption { margin-top: 22px; }
.cat-review figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-2);
}
.cat-review figcaption span {
  font-size: 0.82rem;
  color: var(--tan);
}

/* Form */
.cat-form-section {
  background: var(--ink);
  padding: 100px 0 120px;
}
.cat-form-wrap { max-width: 860px; }
.cat-form-head { text-align: center; }
.cat-form-head .section-eyebrow { color: #ff8a80; }
.cat-form-head .section-title { color: var(--cream); }
.cat-form-head .section-sub { color: var(--gray); }
.cat-form {
  margin-top: 44px;
  background: #1e1b17;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 36px 36px;
}
.cat-form-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-display);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray);
}
.field input, .field select, .field textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 239, 224, 0.16);
  border-radius: 8px;
  color: var(--cream);
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23F4EFE0' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.field select option { background: #1e1b17; }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(241, 49, 43, 0.2);
}
.field input.invalid, .field input.invalid:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(241, 49, 43, 0.3);
}
.cat-form-note {
  margin-top: 16px;
  font-size: 0.8rem; font-style: italic;
  color: var(--gray);
}
.cat-form-submit { margin-top: 24px; display: flex; justify-content: center; }
.cat-form-submit button:disabled { opacity: 0.6; cursor: default; transform: none; }

@media (max-width: 1100px) {
  .cat-service-grid, .cat-reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .cat-form-row { grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
}
@media (max-width: 900px) {
  .cat-allin-overlay { background: linear-gradient(180deg, rgba(23,21,18,0.85), rgba(23,21,18,0.8)); }
  .cat-weddings .split-media img { height: 340px; }
}

/* ============================================================
   Gift Cards page
   ============================================================ */

.gc-buy { padding: 110px 0; background: var(--cream); }
.gc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 980px;
  margin-inline: auto;
}
.gc-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(23, 21, 18, 0.08);
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.gc-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(23, 21, 18, 0.16); }
.gc-card-img { aspect-ratio: 3 / 2; overflow: hidden; }
.gc-card-img-alt { aspect-ratio: 3 / 2; }
.gc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gc-card:hover .gc-card-img img { transform: scale(1.06); }
.gc-card-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.gc-card h3 {
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase;
  font-size: 1.4rem; letter-spacing: 0.04em;
  color: var(--red-cta);
}
.gc-card-body p {
  margin-top: 10px;
  font-family: var(--font-slab); font-weight: 300;
  font-size: 0.96rem; line-height: 1.6;
  color: var(--tan);
  flex: 1;
}
.gc-card-cta {
  display: block;
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red-cta);
}
.gc-card-cta i { display: inline-block; transition: transform 0.3s var(--ease); }
.gc-card:hover .gc-card-cta i { transform: translateX(6px); }

.gc-balance {
  position: relative;
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
}
.gc-balance-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.gc-balance-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(23, 21, 18, 0.93) 0%, rgba(23, 21, 18, 0.8) 55%, rgba(23, 21, 18, 0.5) 100%);
}
.gc-balance-inner { position: relative; z-index: 2; max-width: 640px; }
.gc-balance-inner .section-eyebrow { color: var(--cream-2); }
.gc-balance-text {
  margin-top: 18px;
  font-family: var(--font-slab); font-weight: 300;
  font-size: 1.02rem; line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}
.gc-balance-inner .btn { margin-top: 30px; }

/* ============================================================
   JNN Club page
   ============================================================ */

.club-section { background: var(--cream); padding: 100px 0 120px; }
.club-wrap { max-width: 860px; }
.club-head { text-align: center; }
.club-form {
  margin-top: 44px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(23, 21, 18, 0.08);
  padding: 34px 36px 36px;
}
.club-form-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}
.club-form .field label { color: var(--tan); }
.club-form .field input, .club-form .field select {
  background: #f7f1e2;
  border: 1px solid rgba(43, 43, 43, 0.18);
  color: var(--ink-2);
}
.club-form .field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%232B2B2B' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.club-form .field select option { background: #fff; color: var(--ink-2); }
.club-form .field input:focus, .club-form .field select:focus {
  border-color: var(--red-cta);
  box-shadow: 0 0 0 3px rgba(241, 49, 43, 0.15);
}
.club-note {
  margin-top: 14px;
  font-size: 0.8rem; font-style: italic;
  color: var(--tan);
}
.club-submit { margin-top: 24px; display: flex; justify-content: center; }
.club-submit button:disabled { opacity: 0.6; cursor: default; transform: none; }

/* ============================================================
   Careers page
   ============================================================ */

.careers-benefits { padding: 100px 0 110px; background: var(--cream); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.benefit {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 6px 24px rgba(23, 21, 18, 0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.benefit:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(23, 21, 18, 0.14); }
.benefit h3 {
  font-family: var(--font-display);
  font-weight: 600; text-transform: uppercase;
  font-size: 1.02rem; letter-spacing: 0.05em;
  color: var(--red-cta);
  line-height: 1.3;
}
.benefit p {
  margin-top: 10px;
  font-family: var(--font-slab); font-weight: 300;
  font-size: 0.88rem; line-height: 1.6;
  color: var(--tan);
}

.careers-fund {
  position: relative;
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
}
.careers-fund-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.careers-fund-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(23, 21, 18, 0.92) 0%, rgba(23, 21, 18, 0.75) 60%, rgba(23, 21, 18, 0.45) 100%);
}
.careers-fund-inner { position: relative; z-index: 2; max-width: 680px; }
.careers-fund-inner .section-eyebrow { color: var(--cream-2); }
.careers-fund-text {
  margin-top: 18px;
  font-family: var(--font-slab); font-weight: 300;
  font-size: 1.02rem; line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}
.careers-fund-inner .btn { margin-top: 30px; }

.careers-health { padding: 110px 0; background: #f7f1e2; }
.careers-health .split-media img { height: 420px; object-fit: cover; }

@media (max-width: 1100px) {
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .gc-grid, .club-form-row { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .club-form-row { margin-inline: auto; }
  .gc-balance-overlay, .careers-fund-overlay { background: linear-gradient(180deg, rgba(23,21,18,0.85), rgba(23,21,18,0.8)); }
}
@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Community page
   ============================================================ */

.comm-intro { padding: 100px 0 50px; background: var(--cream); }
.comm-intro-inner { max-width: 780px; margin-inline: auto; text-align: center; }
.comm-intro-inner .lede { margin: 0 auto 18px; }
.comm-intro-inner strong { color: var(--red-cta); font-weight: 500; }

.comm-categories { padding: 40px 0 110px; background: var(--cream); }
.comm-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
  margin-inline: auto;
}
.comm-cat {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(23, 21, 18, 0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.comm-cat:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(23, 21, 18, 0.14); }
.comm-cat-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(241, 49, 43, 0.1);
  color: var(--red-cta);
}
.comm-cat h3 {
  font-family: var(--font-display);
  font-weight: 600; text-transform: uppercase;
  font-size: 1.05rem; letter-spacing: 0.05em;
  color: var(--ink-2);
}

.comm-form-section { background: var(--ink); padding: 100px 0 120px; }
.comm-wrap { max-width: 860px; }
.comm-head { text-align: center; }
.comm-head .section-eyebrow { color: #ff8a80; }
.comm-head .section-title { color: var(--cream); }
.comm-head .section-sub { color: var(--gray); }
.comm-requirement {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #ff8a80;
}
.comm-form {
  margin-top: 44px;
  background: #1e1b17;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 36px 36px;
}
.comm-form-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}
.comm-form .field label { color: var(--gray); }
.comm-form .field input, .comm-form .field select, .comm-form .field textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 239, 224, 0.16);
  color: var(--cream);
}
.comm-form .field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23F4EFE0' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.comm-form .field select option { background: #1e1b17; }
.comm-form .field input:focus, .comm-form .field select:focus, .comm-form .field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(241, 49, 43, 0.2);
}
.comm-note {
  margin-top: 16px;
  font-size: 0.8rem; font-style: italic;
  color: var(--gray);
}
.comm-submit { margin-top: 24px; display: flex; justify-content: center; }
.comm-submit button:disabled { opacity: 0.6; cursor: default; transform: none; }

/* ============================================================
   Legal pages (privacy, accessibility)
   ============================================================ */

.legal-hero {
  position: relative;
  min-height: 46vh;
  display: flex; align-items: flex-end;
  padding-bottom: 56px;
  background: var(--ink);
  overflow: hidden;
}
.legal-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(241, 49, 43, 0.16) 0%, transparent 55%),
    linear-gradient(180deg, rgba(23, 21, 18, 0.4), rgba(23, 21, 18, 0.9));
}
.legal-hero-content {
  position: relative; z-index: 2;
  width: min(1200px, 92%);
  margin-inline: auto;
  padding-top: 130px;
}
.legal-hero-content .section-eyebrow { color: var(--cream-2); }
.legal-title {
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1;
  color: var(--cream);
}

.legal-body { background: var(--cream); padding: 90px 0 120px; }
.legal-wrap { max-width: 760px; }
.legal-prose p {
  font-family: var(--font-slab); font-weight: 300;
  font-size: 1.02rem; line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.legal-prose h2 {
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase;
  font-size: 1.6rem; letter-spacing: 0.03em;
  color: var(--red-cta);
  margin: 40px 0 14px;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose a {
  color: var(--red-cta);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-prose a:hover { color: var(--ink-2); }
.legal-updated { font-size: 0.8rem !important; color: var(--tan) !important; font-style: italic; }

@media (max-width: 900px) {
  .comm-cat-grid, .comm-form-row { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* ============================================================
   Contact page
   ============================================================ */

.contact-section { background: var(--cream); padding: 100px 0 120px; }
.contact-wrap { max-width: 860px; }
.contact-head { text-align: center; }
.contact-head .section-sub a {
  color: var(--red-cta);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-form {
  margin-top: 44px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(23, 21, 18, 0.08);
  padding: 34px 36px 36px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}
.contact-form .field label { color: var(--tan); }
.contact-form .field input, .contact-form .field select, .contact-form .field textarea {
  background: #f7f1e2;
  border: 1px solid rgba(43, 43, 43, 0.18);
  color: var(--ink-2);
}
.contact-form .field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%232B2B2B' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.contact-form .field select option { background: #fff; color: var(--ink-2); }
.contact-form .field input:focus, .contact-form .field select:focus, .contact-form .field textarea:focus {
  border-color: var(--red-cta);
  box-shadow: 0 0 0 3px rgba(241, 49, 43, 0.15);
}
.contact-email-hint {
  margin-top: 16px;
  font-family: var(--font-slab); font-weight: 300;
  font-size: 0.92rem;
  color: var(--tan);
  background: rgba(241, 49, 43, 0.06);
  border: 1px dashed rgba(241, 49, 43, 0.35);
  border-radius: 8px;
  padding: 12px 16px;
}
.contact-email-hint a {
  color: var(--red-cta);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-note {
  margin-top: 14px;
  font-size: 0.8rem; font-style: italic;
  color: var(--tan);
}
.contact-submit { margin-top: 24px; display: flex; justify-content: center; }
.contact-submit button:disabled { opacity: 0.6; cursor: default; transform: none; }

@media (max-width: 900px) {
  .contact-form-row { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}
