/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── DESIGN TOKENS ── */
:root {
  --red:     #BE1E2D;
  --red-dk:  #8f1520;
  --red-lt:  #d42233;
  --orange:  #FF813A;
  --cream:   #FAF6F0;
  --tan:     #EDE5D8;
  --brown:   #3a2a1a;
  --white:   #FFFFFF;
  --black:   #111111;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;

  --nav-h: 72px;
  --max-w: 1200px;
  --radius: 4px;
  --transition: 0.25s ease;

  /* noise texture via SVG */
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
}

body {
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 3px solid var(--red);
  display: flex; align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.nav-logo {
  cursor: pointer;
  display: flex; align-items: center; gap: 0;
  text-decoration: none;
}
.logo-badge {
  background: var(--red);
  color: var(--white);
  padding: 6px 14px 8px;
  display: flex; flex-direction: column; align-items: center; line-height: 1;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.logo-badge::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--noise);
  pointer-events: none;
}
.logo-est {
  font-family: var(--font-body);
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  opacity: 0.85; margin-bottom: 2px;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 2px;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 8px; letter-spacing: 4px; text-transform: uppercase;
  opacity: 0.85; margin-top: 2px;
}
.logo-stars {
  display: flex; gap: 3px; margin-top: 3px; opacity: 0.7;
  font-size: 7px;
}

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-family: var(--font-body);
  font-size: 14px; letter-spacing: 0.5px;
  color: var(--brown); text-decoration: none;
  padding: 8px 16px; border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  cursor: pointer; background: none; border: none; font-weight: 500;
}
.nav-link:hover { color: var(--red); background: rgba(190,30,45,0.06); }
.nav-cta {
  background: var(--red); color: var(--white) !important;
  font-weight: 600; padding: 9px 22px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--red-lt) !important; transform: translateY(-1px); color: var(--white) !important; }

/* hamburger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.nav-burger span { width: 24px; height: 2px; background: var(--brown); border-radius: 2px; transition: all 0.25s; display: block; }
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: var(--white); border-bottom: 3px solid var(--red);
  padding: 20px 24px; flex-direction: column; gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { display: block; padding: 12px 16px; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--red);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--noise);
  pointer-events: none;
}
/* diagonal stripe texture */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.02) 40px,
    rgba(255,255,255,0.02) 80px
  );
  pointer-events: none;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px; position: relative; z-index: 1;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; flex: 1; max-width: 60px; height: 1px;
  background: rgba(255,255,255,0.35);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 140px);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative; z-index: 1;
  margin-bottom: 8px;
}
.hero-title span { color: var(--orange); }

.hero-rule {
  width: 80px; height: 3px;
  background: var(--orange);
  margin: 24px auto;
  position: relative; z-index: 1;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(255,255,255,0.88);
  font-style: italic;
  position: relative; z-index: 1;
  max-width: 480px; margin: 0 auto 40px;
}

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 1; margin-bottom: 28px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  padding: 15px 36px; border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-primary {
  background: var(--white); color: var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-primary:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.btn-secondary {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(190,30,45,0.3); }
.btn-outline-red { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: #e06c2a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,129,58,0.35); }

.hero-order-note {
  position: relative; z-index: 1;
  font-family: var(--font-body);
  font-size: 13px; color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.hero-order-note a {
  color: var(--orange); text-decoration: underline; text-underline-offset: 3px;
  transition: color var(--transition);
}
.hero-order-note a:hover { color: #ffab75; }

/* hero badge */
.hero-badge {
  position: absolute; right: 5%; top: 18%;
  width: 110px; height: 110px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); text-align: center;
  transform: rotate(12deg);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  z-index: 1;
}
.hero-badge-top { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.9; font-family: var(--font-body); }
.hero-badge-num { font-family: var(--font-display); font-size: 38px; line-height: 1; }
.hero-badge-bot { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; font-family: var(--font-body); }

/* scroll cue */
.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.45); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; font-family: var(--font-body); z-index: 1;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-cue svg { width: 20px; height: 20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ─────────────────────────────────────────
   DIVIDER BANNER
───────────────────────────────────────── */
.ticker {
  background: var(--orange);
  padding: 14px 0; overflow: hidden;
  border-top: 2px solid rgba(255,255,255,0.2);
  border-bottom: 2px solid rgba(255,255,255,0.2);
}
.ticker-inner {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: scroll-ticker 24s linear infinite;
  width: max-content;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 17px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); padding: 0 32px;
  display: flex; align-items: center; gap: 20px;
}
.ticker-item::after { content: '★'; opacity: 0.6; font-size: 12px; }
@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   STORY SECTION
───────────────────────────────────────── */
.story {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.story-visual {
  position: relative;
}
.story-img-frame {
  aspect-ratio: 4/5;
  background: var(--red);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.story-img-frame::before {
  content: ''; position: absolute; inset: 0;
  background: var(--noise); pointer-events: none;
  opacity: 0.6;
}
.story-img-inner {
  font-family: var(--font-display);
  font-size: 100px; color: rgba(255,255,255,0.08);
  letter-spacing: 8px; transform: rotate(-10deg);
  user-select: none;
}
.story-quote-card {
  position: absolute; bottom: -30px; right: -30px;
  background: var(--white);
  border: 3px solid var(--red);
  padding: 22px 26px;
  max-width: 200px;
  box-shadow: 6px 6px 0 var(--red);
}
.story-quote-card p {
  font-family: var(--font-serif); font-style: italic;
  font-size: 14px; color: var(--brown); line-height: 1.5;
}
.story-quote-card cite {
  display: block; margin-top: 10px;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); font-style: normal;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--orange); font-weight: 500;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 30px; height: 2px; background: var(--orange);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95; color: var(--brown);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title-serif {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1; color: var(--brown);
  font-weight: 700; margin-bottom: 8px;
}
.section-rule {
  width: 48px; height: 3px; background: var(--orange);
  margin: 20px 0;
}
.story-text p {
  font-size: 16px; color: #5a4535; line-height: 1.85;
  margin-bottom: 18px;
}
.story-pillars {
  display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap;
}
.story-pillar {
  display: flex; flex-direction: column; gap: 6px;
}
.pillar-icon {
  font-size: 24px; margin-bottom: 4px;
}
.pillar-label {
  font-family: var(--font-display);
  font-size: 20px; letter-spacing: 1px; color: var(--red);
  text-transform: uppercase;
}
.pillar-desc {
  font-family: var(--font-body);
  font-size: 12px; color: #8a7060; letter-spacing: 0.3px;
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   VISIT SECTION
───────────────────────────────────────── */
.visit {
  background: var(--brown);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.visit::before {
  content: ''; position: absolute; inset: 0;
  background: var(--noise); pointer-events: none; opacity: 0.4;
}
.visit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start; position: relative;
}
.visit .section-label { color: var(--orange); }
.visit .section-title { color: var(--white); }
.visit .section-rule { background: var(--orange); }

.hours-table { margin-top: 28px; width: 100%; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.08); }
.hours-table tr:last-child { border: none; }
.hours-table td {
  padding: 11px 0;
  font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.75);
}
.hours-table td:first-child { font-weight: 600; color: var(--white); width: 45%; }
.hours-badge {
  display: inline-block;
  background: var(--orange); color: var(--white);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 2px 8px; border-radius: 20px;
  font-family: var(--font-body); vertical-align: middle; margin-left: 8px;
}

.visit-info { margin-top: 36px; }
.info-block { margin-bottom: 32px; }
.info-block-label {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
}
.info-block-value {
  font-family: var(--font-serif); font-size: 17px; color: var(--white);
  line-height: 1.5;
}
.info-block-value a {
  color: var(--white); text-decoration: none;
  transition: color var(--transition);
}
.info-block-value a:hover { color: var(--orange); }
.info-block-note {
  font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px;
  font-family: var(--font-body); letter-spacing: 1px; text-transform: uppercase;
}
.phone-big {
  font-family: var(--font-display); font-size: 36px;
  color: var(--white); letter-spacing: 2px; display: block;
  text-decoration: none; transition: color var(--transition);
  margin-top: 6px;
}
.phone-big:hover { color: var(--orange); }

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

.map-placeholder {
  border-radius: 4px; overflow: hidden;
  border: 3px solid rgba(255,255,255,0.12);
  aspect-ratio: 1;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  cursor: pointer;
  transition: border-color var(--transition);
}
.map-placeholder:hover { border-color: var(--orange); }
.map-pin-icon { font-size: 48px; opacity: 0.4; }
.map-placeholder-text {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase;
  text-align: center;
}

/* ─────────────────────────────────────────
   MENU PAGE
───────────────────────────────────────── */
.page-hero {
  background: var(--red);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: var(--noise); pointer-events: none; }
.page-hero .section-label { justify-content: center; margin-bottom: 12px; }
.page-hero .section-label::before { display: none; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 110px);
  color: var(--white); letter-spacing: 4px; text-transform: uppercase;
  line-height: 0.9; position: relative; z-index: 1;
}
.page-hero p {
  font-family: var(--font-serif); font-style: italic;
  color: rgba(255,255,255,0.75); font-size: 18px;
  margin-top: 16px; position: relative; z-index: 1;
}

.menu-section { padding: 80px 0; }
.menu-section:nth-child(even) { background: var(--tan); }

.menu-cat-header {
  display: flex; align-items: center; gap: 20px; margin-bottom: 40px;
}
.menu-cat-title {
  font-family: var(--font-display);
  font-size: 48px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); white-space: nowrap;
}
.menu-cat-rule { flex: 1; height: 2px; background: var(--tan); }
.menu-section:nth-child(even) .menu-cat-rule { background: var(--cream); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2px; }

.menu-item {
  background: var(--white);
  padding: 22px 24px;
  border-left: 4px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
  cursor: default;
}
.menu-section:nth-child(even) .menu-item { background: var(--white); }
.menu-item:hover { border-left-color: var(--orange); transform: translateX(3px); }
.menu-item-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.menu-item-name {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 16px; color: var(--brown); line-height: 1.3;
}
.menu-item-price {
  font-family: var(--font-display); font-size: 22px;
  color: var(--red); white-space: nowrap; letter-spacing: 1px;
}
.menu-item-desc {
  font-family: var(--font-body); font-size: 13px;
  color: #8a7060; line-height: 1.55;
}
.menu-item-tag {
  display: inline-block; margin-top: 8px;
  background: rgba(190,30,45,0.08); color: var(--red);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px;
  font-family: var(--font-body);
}

.menu-note {
  background: var(--red); color: var(--white);
  padding: 24px 32px; margin-top: 48px;
  display: flex; align-items: center; gap: 20px; border-radius: 4px;
  flex-wrap: wrap;
}
.menu-note p { font-family: var(--font-body); font-size: 14px; line-height: 1.5; flex: 1; }
.menu-note strong { color: var(--orange); }

/* ─────────────────────────────────────────
   OUR STORY PAGE
───────────────────────────────────────── */
.story-page { padding: 80px 0 100px; }
.story-page-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 80px; align-items: start; }
.story-page-body p {
  font-family: var(--font-body); font-size: 17px;
  color: #5a4535; line-height: 1.9; margin-bottom: 24px;
}
.story-page-body p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 72px; color: var(--red);
  float: left; line-height: 0.75; margin-right: 12px; margin-top: 12px;
}
.story-page-body blockquote {
  border-left: 4px solid var(--orange);
  padding: 20px 28px;
  margin: 32px 0;
  background: rgba(255,129,58,0.06);
  border-radius: 0 4px 4px 0;
}
.story-page-body blockquote p {
  font-family: var(--font-serif); font-style: italic;
  font-size: 20px; color: var(--brown); margin: 0;
}
.story-page-body blockquote p::first-letter { all: unset; }

.story-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--red); color: var(--white);
  padding: 32px; border-radius: 4px;
  margin-bottom: 20px;
  position: relative; overflow: hidden;
}
.sidebar-card::before { content: ''; position: absolute; inset: 0; background: var(--noise); pointer-events: none; }
.sidebar-card h3 {
  font-family: var(--font-display); font-size: 32px;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 12px; position: relative; z-index: 1;
}
.sidebar-card p {
  font-family: var(--font-body); font-size: 14px;
  line-height: 1.6; opacity: 0.85; position: relative; z-index: 1;
  margin-bottom: 20px;
}
.sidebar-stat {
  background: var(--white); border-radius: 4px;
  padding: 20px 24px; text-align: center;
  margin-bottom: 12px;
}
.stat-num {
  font-family: var(--font-display); font-size: 52px;
  color: var(--red); line-height: 1; display: block;
}
.stat-label {
  font-family: var(--font-body); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  color: #8a7060; margin-top: 4px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--black);
  padding: 60px 0 40px;
  position: relative;
}
footer::before { content: ''; display: block; height: 4px; background: var(--red); margin-bottom: 0; position: absolute; top: 0; left: 0; right: 0; }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-brand .logo-badge { width: fit-content; }
.footer-brand p {
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,0.45); line-height: 1.7;
  margin-top: 20px; max-width: 260px;
}
.footer-heading {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links li a, .footer-links li button {
  font-family: var(--font-body); font-size: 15px;
  color: rgba(255,255,255,0.7);
  text-decoration: none; cursor: pointer;
  background: none; border: none; padding: 0;
  transition: color var(--transition);
}
.footer-links li a:hover, .footer-links li button:hover { color: var(--orange); }

.social-icons { display: flex; gap: 14px; margin-top: 4px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
  background: none; text-decoration: none; color: rgba(255,255,255,0.6);
}
.social-btn:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }
.social-btn svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-family: var(--font-body); font-size: 12px;
  color: rgba(255,255,255,0.25); letter-spacing: 0.5px;
}
.footer-bottom span { color: var(--red); }

/* ─────────────────────────────────────────
   BEST SELLERS SECTION
───────────────────────────────────────── */
.bestsellers {
  padding: 100px 0;
  background: var(--white);
}
.bestsellers-header { text-align: center; margin-bottom: 56px; }
.bestsellers-header .section-label { justify-content: center; }
.bestsellers-header .section-label::before { display: none; }
.bestsellers-header .section-rule { margin: 20px auto; }
.bestsellers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
}
.bs-card {
  background: var(--cream);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.bs-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); z-index: 1; }
.bs-num {
  font-family: var(--font-display);
  font-size: 100px; color: rgba(190,30,45,0.07);
  position: absolute; top: -10px; right: 16px;
  line-height: 1; pointer-events: none;
}
.bs-tag {
  background: var(--red); color: var(--white);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
  font-family: var(--font-body); display: inline-block; margin-bottom: 16px;
}
.bs-name {
  font-family: var(--font-serif); font-weight: 700;
  font-size: 22px; color: var(--brown); line-height: 1.2; margin-bottom: 10px;
}
.bs-desc {
  font-family: var(--font-body); font-size: 14px;
  color: #8a7060; line-height: 1.6; margin-bottom: 20px;
}
.bs-price {
  font-family: var(--font-display); font-size: 32px;
  color: var(--red); letter-spacing: 1px;
}

/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
.cta-band {
  background: var(--orange);
  padding: 64px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before { content: ''; position: absolute; inset: 0; background: var(--noise); pointer-events: none; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  color: var(--white); letter-spacing: 3px; text-transform: uppercase;
  position: relative; z-index: 1; margin-bottom: 20px;
}
.cta-band p {
  font-family: var(--font-serif); font-style: italic;
  font-size: 18px; color: rgba(255,255,255,0.85);
  margin-bottom: 32px; position: relative; z-index: 1;
}
.cta-band .btn { position: relative; z-index: 1; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .story-grid, .visit-grid, .story-page-grid, .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .bestsellers-grid { grid-template-columns: 1fr 1fr; }
  .story-quote-card { right: -10px; bottom: -20px; }
  .hero-badge { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .story-sidebar { position: static; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .bestsellers-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .visit-btns { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-cat-title { font-size: 36px; }
  .menu-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
