/* =====================================================
   GROUND RULES — Burgers · Beer · Bourbon
   Garden City, Idaho.  On-brand navy + yellow.
   ===================================================== */

:root {
  --navy: #1d2c40;
  --navy-deep: #131e2c;
  --navy-soft: #2a3b52;
  --yellow: #f4c83a;
  --yellow-warm: #e9b426;
  --cream: #f5ecd6;
  --paper: #faf3df;
  --white: #ffffff;
  --ink: #0e1521;
  --ink-soft: rgba(14, 21, 33, 0.72);
  --rule: rgba(245, 236, 214, 0.18);
  --rule-light: rgba(29, 44, 64, 0.16);

  --display: "Caprasimo", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --condensed: "Bebas Neue", "Inter", sans-serif;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.95;
  margin: 0;
  color: var(--navy);
}

p { margin: 0; }

.eyebrow {
  font-family: var(--condensed);
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow-warm);
  font-weight: 400;
}
.eyebrow--white { color: var(--yellow); }
.eyebrow--ink { color: var(--navy); }

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  margin: 0 8px;
  vertical-align: middle;
}

/* ============== TICKER ============== */

.ticker {
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  border-bottom: 2px solid var(--yellow);
  position: relative;
}
.ticker__track {
  display: flex;
  gap: 48px;
  padding: 11px 0;
  white-space: nowrap;
  animation: ticker 42s linear infinite;
  font-family: var(--condensed);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ticker__track span { display: inline-flex; align-items: center; gap: 48px; }
.ticker__track span::after {
  content: "●";
  color: var(--yellow);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== NAV ============== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  color: var(--cream);
  border-bottom: 1px solid rgba(245,236,214,0.1);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__brand img {
  height: 56px;
  width: auto;
}
.nav__menu {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.nav__menu a {
  font-family: var(--condensed);
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
  transition: color 200ms;
}
.nav__menu a:hover,
.nav__menu a.is-active {
  color: var(--yellow);
}
.nav__menu a.is-active::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px 0;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
.nav__cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}
.nav__hours {
  font-family: var(--condensed);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,236,214,0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--condensed);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--navy);
  border: 2px solid var(--yellow);
  cursor: pointer;
  font-weight: 400;
  transition: all 180ms ease;
}
.btn:hover { background: var(--yellow-warm); border-color: var(--yellow-warm); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}
.btn--outline:hover { background: var(--yellow); color: var(--navy); }

.btn--navy { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); }

.btn--cream { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.btn--cream:hover { background: var(--paper); border-color: var(--paper); }

/* ============== HERO ============== */

.hero {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(244,200,58,0.05) 0, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(244,200,58,0.04) 0, transparent 35%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--gutter) clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
}
.hero__title {
  font-family: var(--display);
  color: var(--yellow);
  font-size: clamp(56px, 9.5vw, 152px);
  line-height: 0.92;
  letter-spacing: -0.005em;
}
.hero__title small {
  display: block;
  font-family: var(--display);
  color: var(--cream);
  font-size: 0.42em;
  margin-top: 12px;
  letter-spacing: 0.005em;
}
.hero__lead {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(245,236,214,0.86);
  max-width: 46ch;
  margin-top: 28px;
}
.hero__meta {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
  font-family: var(--condensed);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__meta div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 2px solid var(--yellow);
  padding-left: 14px;
}
.hero__meta span:first-child { color: rgba(245,236,214,0.7); }
.hero__meta strong { color: var(--yellow); font-weight: 400; font-size: 16px; }

.hero__cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  border: 4px solid var(--yellow);
  box-shadow: 12px 12px 0 var(--navy-soft);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

.hero__stamp {
  position: absolute;
  bottom: 28px;
  left: 28px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--display);
  font-size: 16px;
  line-height: 1;
  border: 3px solid var(--navy);
  transform: rotate(-8deg);
  box-shadow: 4px 4px 0 var(--navy);
  letter-spacing: 0.005em;
}
.hero__stamp small {
  display: block;
  font-family: var(--condensed);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
  color: var(--navy);
}

.hero__badges {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--condensed);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px var(--gutter);
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hero__badges span:not(:last-child)::after { content: "●"; margin-left: 32px; }

/* ============== SECTIONS ============== */

section { position: relative; }

.section {
  padding: clamp(60px, 8vw, 130px) var(--gutter);
}
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 4vw, 80px);
  align-items: end;
  border-top: 2px solid var(--navy);
  padding-top: 32px;
  margin-bottom: 56px;
}
.section__head .index {
  font-family: var(--condensed);
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-warm);
}
.section__head h2 {
  font-size: clamp(40px, 6vw, 96px);
}

.section--navy { background: var(--navy); color: var(--cream); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--yellow); }
.section--navy .section__head { border-top-color: var(--cream); }
.section--navy .section__head .index { color: var(--cream); }

.section--yellow { background: var(--yellow); color: var(--navy); }
.section--yellow h1, .section--yellow h2, .section--yellow h3 { color: var(--navy); }
.section--yellow .eyebrow { color: var(--navy); }

/* ============== ABOUT ============== */

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.about-grid p {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--ink);
}
.about-grid p + p { margin-top: 16px; color: var(--ink-soft); font-size: 17px; }
.about-grid p strong { color: var(--yellow-warm); font-weight: 700; }

.about-side { display: flex; flex-direction: column; gap: 18px; }
.about-side__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  border: 3px solid var(--navy);
}
.about-side__photo img { width: 100%; height: 100%; object-fit: cover; }
.about-side__caption {
  display: flex;
  justify-content: space-between;
  font-family: var(--condensed);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============== PILLARS ============== */

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--navy);
  background: var(--navy);
}
.pillar {
  padding: 36px 28px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  border-right: 2px solid var(--navy);
}
.pillar:last-child { border-right: 0; }
.pillar__num {
  font-family: var(--condensed);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-warm);
}
.pillar h3 {
  font-size: 36px;
  letter-spacing: -0.005em;
  color: var(--navy);
}
.pillar p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.pillar__icon {
  width: 36px;
  height: 36px;
  margin-top: auto;
  color: var(--yellow-warm);
}

/* ============== MENU PREVIEW ============== */

.menu-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
}
.menu-card {
  padding: 36px clamp(20px, 3vw, 48px);
  border-right: 1px solid rgba(245,236,214,0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.menu-card:last-child { border-right: 0; }
.menu-card__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  border-bottom: 1px dashed rgba(245,236,214,0.18);
  padding-bottom: 14px;
}
.menu-card__row:last-child { border-bottom: 0; }
.menu-card__row .name {
  font-family: var(--display);
  font-size: 24px;
  color: var(--cream);
}
.menu-card__row .desc {
  grid-column: 1 / -1;
  font-size: 13px;
  color: rgba(245,236,214,0.7);
  line-height: 1.5;
}
.menu-card__row .price {
  font-family: var(--condensed);
  font-size: 18px;
  color: var(--yellow);
  letter-spacing: 0.05em;
  align-self: start;
}
.menu-card h3 { font-size: 36px; color: var(--yellow); margin-bottom: 4px; }
.menu-card .eyebrow { color: var(--cream); }

/* ============== LOYALTY CTA ============== */

.loyalty-card {
  background: var(--yellow);
  color: var(--navy);
  border: 4px solid var(--navy);
  border-radius: 4px;
  padding: clamp(36px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.loyalty-card::before {
  content: "";
  position: absolute;
  inset: -10px;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(29,44,64,0.05) 12px 13px);
  pointer-events: none;
}
.loyalty-card h2 {
  font-size: clamp(40px, 6vw, 88px);
  position: relative;
  color: var(--navy);
}
.loyalty-card p {
  font-size: 17px;
  line-height: 1.5;
  margin-top: 14px;
  position: relative;
  max-width: 50ch;
}

/* ============== PRESS STRIP ============== */

.press-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}
.press-card {
  border-top: 2px solid var(--navy);
  padding-top: 18px;
}
.press-card .source {
  font-family: var(--condensed);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-warm);
  margin-bottom: 12px;
}
.press-card blockquote {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
  color: var(--navy);
}
.press-card cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--condensed);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============== FOOTER ============== */

.footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: clamp(48px, 6vw, 96px) var(--gutter) 32px;
  border-top: 4px solid var(--yellow);
}
.footer__inner { max-width: var(--max); margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,236,214,0.18);
}
.footer__brand img { width: 280px; max-width: 100%; height: auto; margin-bottom: 18px; }
.footer__brand p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 38ch;
  color: rgba(245,236,214,0.7);
}
.footer h4 {
  font-family: var(--condensed);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  font-weight: 400;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: rgba(245,236,214,0.85); }
.footer ul a:hover { color: var(--yellow); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-family: var(--condensed);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,236,214,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============== UTILITY ============== */

.divider-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--condensed);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  padding: 14px 0;
  color: var(--ink-soft);
}

.flag {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow);
  padding: 4px 10px;
  font-family: var(--condensed);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ============== PAGE HEADER ============== */

.page-header {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(48px, 8vw, 130px) var(--gutter) clamp(40px, 6vw, 90px);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(244,200,58,0.06) 0, transparent 40%);
  pointer-events: none;
}
.page-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.page-header h1 {
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.95;
  margin-top: 16px;
  color: var(--yellow);
}
.page-header p {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  margin-top: 28px;
  max-width: 55ch;
  color: rgba(245,236,214,0.86);
}

/* ============== MENU PAGE ============== */

.menu-section { padding: clamp(40px, 6vw, 80px) var(--gutter); max-width: var(--max); margin: 0 auto; }
.menu-section + .menu-section { border-top: 1px solid var(--rule-light); }
.menu-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 18px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}
.menu-section__head h2 { font-size: clamp(36px, 5vw, 72px); }
.menu-section__head span {
  font-family: var(--condensed);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(32px, 5vw, 80px);
  row-gap: 28px;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--rule-light);
}
.menu-item h3 {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.005em;
}
.menu-item .price {
  font-family: var(--condensed);
  font-size: 18px;
  color: var(--yellow-warm);
  letter-spacing: 0.05em;
}
.menu-item p {
  grid-column: 1 / -1;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.menu-item .tag {
  display: inline-block;
  font-family: var(--condensed);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--navy);
  padding: 2px 8px;
  border-radius: 2px;
  margin-top: 4px;
}

.section--navy .menu-section__head { border-bottom-color: var(--yellow); }
.section--navy .menu-item { border-bottom-color: rgba(245,236,214,0.18); }
.section--navy .menu-item h3 { color: var(--cream); }
.section--navy .menu-item .price { color: var(--yellow); }
.section--navy .menu-item p { color: rgba(245,236,214,0.7); }
.section--navy .menu-section__head span { color: rgba(245,236,214,0.65); }

/* ============== LOYALTY PAGE ============== */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--navy);
  border: 2px solid var(--navy);
  margin-top: 56px;
}
.tier {
  background: var(--paper);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 480px;
}
.tier--featured { background: var(--navy); color: var(--cream); }
.tier--featured h3 { color: var(--yellow); }
.tier--featured ul li { color: rgba(245,236,214,0.85); }
.tier--featured .tier__num { color: var(--yellow); }
.tier__num {
  font-family: var(--condensed);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-warm);
}
.tier h3 { font-size: 44px; color: var(--navy); }
.tier p { font-size: 14px; color: var(--ink-soft); }
.tier--featured p { color: rgba(245,236,214,0.72); }
.tier ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tier ul li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--rule-light);
  line-height: 1.45;
}
.tier--featured ul li { border-bottom-color: rgba(245,236,214,0.18); }
.tier ul li::before { content: "✓"; color: var(--yellow-warm); font-weight: 700; }
.tier--featured ul li::before { color: var(--yellow); }
.tier .btn { margin-top: auto; }

/* ============== CONTACT PAGE ============== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  margin-top: 56px;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-block { border-top: 2px solid var(--navy); padding-top: 24px; }
.contact-block h3 {
  font-family: var(--display);
  font-size: 30px;
  margin-bottom: 12px;
}
.contact-block p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
.contact-block a { color: var(--yellow-warm); border-bottom: 1px solid currentColor; }

.contact-form {
  background: var(--paper);
  padding: 40px;
  border: 2px solid var(--navy);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 4px;
}
.contact-form label {
  font-family: var(--condensed);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--rule-light);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--yellow-warm);
  box-shadow: 0 0 0 3px rgba(244,200,58,0.2);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button { align-self: flex-start; margin-top: 8px; }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--rule-light);
  font-size: 15px;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li span:first-child { font-weight: 600; }
.hours-list li span:last-child { font-family: var(--condensed); font-size: 16px; letter-spacing: 0.05em; color: var(--ink-soft); }

.map {
  aspect-ratio: 16/8;
  background: var(--navy);
  border: 2px solid var(--navy);
  position: relative;
  overflow: hidden;
}
.map iframe { width: 100%; height: 100%; border: 0; filter: hue-rotate(-10deg) saturate(0.85); }

/* ============== PRESS PAGE ============== */

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-top: 56px;
}
.press-feature {
  background: var(--paper);
  border: 2px solid var(--navy);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 4px;
}
.press-feature .source {
  font-family: var(--condensed);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-warm);
}
.press-feature h3 {
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.05;
}
.press-feature p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.press-feature__meta {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed var(--rule-light);
  font-family: var(--condensed);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.press-feature__meta a { color: var(--yellow-warm); }

.release {
  border: 2px solid var(--navy);
  padding: 48px;
  background: var(--paper);
  margin-top: 56px;
  border-radius: 4px;
}
.release header {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 16px;
  margin-bottom: 28px;
  font-family: var(--condensed);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.release h2 { font-size: clamp(34px, 4.5vw, 56px); margin-bottom: 24px; line-height: 1; }
.release h3 { font-family: var(--display); font-size: 26px; margin-top: 28px; margin-bottom: 12px; }
.release p { font-size: 16px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 12px; }
.release p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 64px;
  float: left;
  line-height: 0.85;
  margin: 6px 12px 0 0;
  color: var(--yellow-warm);
}

/* ============== POPUP ============== */

.popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 360px;
  background: var(--navy);
  color: var(--cream);
  padding: 28px;
  border: 3px solid var(--yellow);
  z-index: 100;
  transform: translateY(20px);
  opacity: 0;
  transition: all 320ms ease;
  pointer-events: none;
  box-shadow: 0 30px 60px -20px rgba(14,21,33,0.4);
  border-radius: 6px;
}
.popup.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.popup .flag { background: var(--yellow); color: var(--navy); margin-bottom: 14px; }
.popup h3 { font-family: var(--display); font-size: 30px; color: var(--yellow); }
.popup p { font-size: 15px; line-height: 1.5; margin-top: 10px; color: rgba(245,236,214,0.85); }
.popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: 0;
  color: var(--cream);
  font-size: 20px;
  cursor: pointer;
}

/* ============== RENDERING GALLERY ============== */

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
}
.gallery__big { grid-column: span 2; }
.gallery img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  border: 3px solid var(--navy);
}
.gallery__big img { aspect-ratio: 21/9; }

/* ============== RESPONSIVE ============== */

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2) { border-right: 0; }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 2px solid var(--navy); }
  .menu-preview { grid-template-columns: 1fr; }
  .menu-card:last-child { border-top: 1px solid rgba(245,236,214,0.18); }
  .press-strip { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav__menu { display: none; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__cta .btn { padding: 10px 16px; font-size: 12px; }
  .nav__hours { display: none; }
  .section__head { grid-template-columns: 1fr; }
  .loyalty-card { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__big { grid-column: span 1; }
  .release { padding: 28px 20px; }
}

@media (max-width: 540px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0 !important; border-bottom: 2px solid var(--navy) !important; }
  .pillar:last-child { border-bottom: 0 !important; }
  .press-strip { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .popup { left: 16px; right: 16px; width: auto; bottom: 16px; }
  .nav__brand img { height: 38px; }
  .nav__inner { padding: 10px var(--gutter); gap: 12px; }
  .nav__cta .btn { padding: 8px 14px; font-size: 11px; letter-spacing: 0.12em; }
  .ticker__track { font-size: 11px; letter-spacing: 0.14em; gap: 32px; }
  .ticker__track span { gap: 32px; }
  .eyebrow { letter-spacing: 0.16em; font-size: 11px; }
  .hero__title { font-size: clamp(48px, 14vw, 88px); line-height: 0.95; }
  .hero__title small { font-size: 0.5em; }
  .hero__lead { font-size: 16px; }
  .hero__meta { gap: 16px; }
  .hero__meta div { padding-left: 12px; }
  .hero__meta span:first-child { font-size: 11px; letter-spacing: 0.14em; }
  .hero__meta strong { font-size: 14px; letter-spacing: 0.1em; }
  .hero__badges { font-size: 11px; letter-spacing: 0.14em; gap: 18px; padding: 10px var(--gutter); }
  .hero__badges span:not(:last-child)::after { margin-left: 18px; }
  .hero__stamp { width: 96px; height: 96px; font-size: 12px; bottom: 16px; left: 16px; }
  .hero__stamp small { font-size: 8px; }
  .section__head h2 { font-size: clamp(36px, 11vw, 64px); line-height: 0.95; }
  .section__head .index { font-size: 14px; letter-spacing: 0.16em; }
  .menu-section__head h2 { font-size: clamp(32px, 11vw, 56px); }
  .menu-section__head span { font-size: 11px; letter-spacing: 0.14em; }
  .page-header h1 { font-size: clamp(48px, 14vw, 96px); }
  .page-header p { font-size: 16px; }
  .footer__brand img { width: 220px; }
  .btn { padding: 10px 16px; font-size: 12px; letter-spacing: 0.14em; }
  /* Defensive: tame box-shadows + ensure things wrap */
  .hero__media { box-shadow: 6px 6px 0 var(--navy-soft); }
  body, h1, h2, h3, h4, p { overflow-wrap: break-word; word-wrap: break-word; }
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(24px); transition: all 700ms cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
