/* ============================================================
   Hurricane Bay Fish Fryer — main.css
   Old Glory styling: brick red, Old Glory navy, aged cream
   Display: Libre Baskerville italic + Alfa Slab One
   Body: DM Sans
   ============================================================ */

:root {
  --red: #B73225;
  --red-deep: #8E2519;
  --red-bright: #D14538;

  --navy: #1B2C5E;
  --navy-deep: #0F1B3F;

  --cream: #F4ECDC;
  --cream-deep: #EADFC6;
  --cream-warm: #F8F1E0;

  --black: #1A1714;
  --gold: #C9A35C;
  --grey: #5B5852;
  --grey-light: #8A847B;

  --display: 'Libre Baskerville', 'Times New Roman', Georgia, serif;
  --slab: 'Alfa Slab One', 'Rockwell', Georgia, serif;
  --script: 'Covered By Your Grace', 'Caveat', cursive;
  --body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --max: 1200px;
  --max-narrow: 900px;

  --radius: 4px;

  --shadow-card: 0 4px 24px rgba(15, 27, 63, 0.08);
  --shadow-deep: 0 12px 40px rgba(15, 27, 63, 0.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

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

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-deep); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.container-narrow { max-width: var(--max-narrow); }

/* ============ TYPE ============ */

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  color: var(--navy-deep);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.005em;
}

h1 { font-size: clamp(38px, 5.4vw, 68px); font-style: italic; }
h2 { font-size: clamp(32px, 4.2vw, 56px); font-style: italic; }
h3 { font-size: clamp(22px, 2.4vw, 32px); font-style: italic; }
h4 { font-size: clamp(18px, 1.6vw, 22px); }

p { margin-bottom: 16px; }

.label {
  display: inline-block;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  position: relative;
  padding-left: 26px;
}

.label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--red);
}

.label-light { color: var(--cream-deep); }
.label-light::before { background: var(--gold); }

.eyebrow {
  font-family: var(--slab);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.lead {
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 24px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--grey);
  margin-bottom: 24px;
}

.script {
  font-family: var(--script);
  font-weight: 400;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.25s, box-shadow 0.25s, padding 0.25s;
}

.nav-transparent { background: transparent; }
.nav.scrolled, .nav-solid {
  background: var(--cream);
  box-shadow: 0 2px 10px rgba(15, 27, 63, 0.06);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img { height: 44px; width: auto; }
.nav-logo .logo-light { display: none; }

.nav-transparent:not(.scrolled) .nav-logo .logo-dark { display: none; }
.nav-transparent:not(.scrolled) .nav-logo .logo-light { display: block; }

/* Recolor the dark (black) logo to navy when nav is solid (scrolled or solid pages).
   Filter chain converts black → #0F1B3F navy-deep. */
.nav-solid .nav-logo .logo-dark,
.nav.scrolled .nav-logo .logo-dark {
  filter: brightness(0) saturate(100%) invert(8%) sepia(75%) saturate(2400%) hue-rotate(218deg) brightness(95%) contrast(108%);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-deep);
  transition: color 0.2s;
}

.nav-transparent:not(.scrolled) .nav-links a { color: var(--cream); }
.nav-links a:hover { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: var(--cream) !important;
  padding: 11px 22px;
  border-radius: var(--radius);
  letter-spacing: 0.08em !important;
}

.nav-cta:hover { background: var(--red-deep); color: var(--cream) !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1px;
  cursor: pointer;
  padding: 0;
  font-family: 'Libre Baskerville', Georgia, serif;
}

.mobile-toggle span {
  display: block;
  font-size: 12px;
  line-height: 1;
  color: var(--navy-deep);
  letter-spacing: 0;
  font-style: normal;
}

.nav-transparent:not(.scrolled) .mobile-toggle span { color: var(--cream); }

/* When the menu is open: lift the nav bar above the fullscreen panel so the
   toggle stays clickable. Make the bar transparent and pointer-events:none so
   the rest of the bar doesn't block taps. The toggle itself re-enables pointer
   events and turns into a single big × close button. */
body.mobile-nav-open .nav {
  z-index: 10003 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 0 !important;
  pointer-events: none;
}
body.mobile-nav-open .nav .nav-logo { display: none; }
body.mobile-nav-open .nav-inner { justify-content: flex-end; }
body.mobile-nav-open .mobile-toggle {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  gap: 0;
}
body.mobile-nav-open .mobile-toggle span { display: none; }
body.mobile-nav-open .mobile-toggle::before {
  content: "✕";
  color: var(--cream);
  font-size: 30px;
  line-height: 1;
  font-family: var(--body);
  font-weight: 300;
}

/* ============ MOBILE NAV PANEL (brand-themed) ============ */

body.mobile-nav-open .nav-links {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-deep);
  background-image:
    radial-gradient(circle at 20% 12%, rgba(201, 163, 92, 0.18), transparent 38%),
    radial-gradient(circle at 80% 88%, rgba(183, 50, 37, 0.22), transparent 40%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 80px 32px 60px;
  z-index: 10002;
  overflow-y: auto;
  animation: mobileNavOpen 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

body.mobile-nav-open .nav-links a {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 32px;
  color: var(--cream);
  letter-spacing: 0.005em;
  padding: 14px 0;
  text-decoration: none;
  position: relative;
  opacity: 0;
  animation: mobileNavLinkIn 0.5s ease-out forwards;
  text-align: center;
}

/* Stagger each link's fade-in */
body.mobile-nav-open .nav-links a:nth-child(1) { animation-delay: 0.10s; }
body.mobile-nav-open .nav-links a:nth-child(2) { animation-delay: 0.16s; }
body.mobile-nav-open .nav-links a:nth-child(3) { animation-delay: 0.22s; }
body.mobile-nav-open .nav-links a:nth-child(4) { animation-delay: 0.28s; }
body.mobile-nav-open .nav-links a:nth-child(5) { animation-delay: 0.34s; }
body.mobile-nav-open .nav-links a:nth-child(6) { animation-delay: 0.40s; }

/* Star separator between every link except after the CTA */
body.mobile-nav-open .nav-links a:not(.nav-cta):not(:last-child)::after {
  content: "★";
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.4em;
  opacity: 0.6;
}

body.mobile-nav-open .nav-links a:hover { color: var(--gold); }

body.mobile-nav-open .nav-links a.nav-cta {
  background: var(--red);
  color: var(--cream);
  font-style: normal;
  font-family: 'Alfa Slab One', Rockwell, Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  margin-top: 24px;
  border-radius: 4px;
  text-transform: uppercase;
}

body.mobile-nav-open .nav-links a.nav-cta:hover { background: var(--red-deep); color: var(--cream); }

/* Sparkle burst on open — the firework Cody asked for, brand-restrained */
body.mobile-nav-open .nav-links::before,
body.mobile-nav-open .nav-links::after {
  content: "★ ★ ★ ★ ★";
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1.2em;
  color: var(--gold);
  opacity: 0;
  pointer-events: none;
  animation: starBurst 0.9s ease-out forwards;
}
body.mobile-nav-open .nav-links::before { top: 24%; animation-delay: 0.05s; }
body.mobile-nav-open .nav-links::after { bottom: 24%; animation-delay: 0.15s; letter-spacing: 0.9em; font-size: 11px; }

@keyframes mobileNavOpen {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes mobileNavLinkIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes starBurst {
  0% { opacity: 0; letter-spacing: 0.2em; transform: scale(0.6); }
  60% { opacity: 0.85; }
  100% { opacity: 0; letter-spacing: 2.6em; transform: scale(1.05); }
}

/* Lock scroll when open (already handled by JS body fixed-position; this is a safety net) */
body.mobile-nav-open { overflow: hidden; }

/* ============ BUTTONS ============ */

.btn {
  display: inline-block;
  padding: 14px 30px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--red);
  color: var(--cream) !important;
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-deep); border-color: var(--red-deep); transform: translateY(-2px); }

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

.btn-outline-dark {
  background: transparent;
  color: var(--navy-deep) !important;
  border-color: var(--navy-deep);
}
.btn-outline-dark:hover { background: var(--navy-deep); color: var(--cream) !important; }

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

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

.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  color: var(--cream);
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(183, 50, 37, 0.18), transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(201, 163, 92, 0.10), transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  background: repeating-linear-gradient(
    180deg,
    var(--red) 0 28px,
    var(--cream) 28px 56px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-left h1 {
  color: var(--cream);
  margin-bottom: 24px;
}

.hero-left h1 .red { color: var(--red-bright); display: block; }

/* Cycling headline — grid-stack + swipe, no layout shift */
.hero-rotator {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.hero-rotator .phrase {
  grid-column: 1;
  grid-row: 1;
  display: block;
  transform: translateX(106%);
  transition: transform 0.6s cubic-bezier(0.4, 0.05, 0.2, 1);
  pointer-events: none;
  will-change: transform;
}

.hero-rotator .phrase.is-active {
  transform: translateX(0);
  pointer-events: auto;
}

.hero-rotator .phrase.is-leaving {
  transform: translateX(-106%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-rotator .phrase { transition: none; transform: translateX(0); }
  .hero-rotator .phrase:not(.is-active) { display: none; }
}

.hero-tag {
  font-family: var(--script);
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--gold);
  margin: -6px 0 22px;
  display: block;
}

.hero-desc {
  font-size: 18px;
  color: var(--cream-deep);
  margin-bottom: 32px;
  max-width: 36ch;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-flag {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 236, 220, 0.18);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--slab);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-flag .star {
  width: 16px;
  height: 16px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.hero-right {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 8px solid var(--cream);
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-right .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.product-image .product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-image .story-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lifestyle-frame .ls-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-right::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244, 236, 220, 0.25);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

.hero-right .placeholder-text {
  text-align: center;
  color: var(--cream);
  font-family: var(--script);
  font-size: 28px;
  padding: 32px;
  position: relative;
  z-index: 1;
}

.hero-right .placeholder-text small {
  display: block;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
}

.hero-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 92px;
  height: 92px;
  background: var(--red);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--slab);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  border: 3px solid var(--cream);
  z-index: 3;
  transform: rotate(-8deg);
}

.hero-badge .big { font-size: 22px; letter-spacing: 0; margin: 2px 0; }

/* ============ MARQUEE STRIP ============ */

.marquee {
  background: var(--red);
  color: var(--cream);
  padding: 18px 0;
  border-top: 4px solid var(--cream);
  border-bottom: 4px solid var(--cream);
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 36s linear infinite;
  white-space: nowrap;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  align-items: center;
}

.marquee-track .star {
  width: 14px;
  height: 14px;
  background: var(--cream);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  flex-shrink: 0;
}

.marquee-track .item { flex-shrink: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

.sec {
  padding: 110px 0;
  position: relative;
}

.sec-cream { background: var(--cream); }
.sec-warm { background: var(--cream-warm); }
.sec-navy {
  background: var(--navy-deep);
  color: var(--cream);
}
.sec-navy h1, .sec-navy h2, .sec-navy h3, .sec-navy h4 { color: var(--cream); }
.sec-red {
  background: var(--red);
  color: var(--cream);
}
.sec-red h1, .sec-red h2, .sec-red h3, .sec-red h4 { color: var(--cream); }

.sec-head { text-align: center; margin-bottom: 64px; }
.sec-head h2 { margin-bottom: 16px; }
.sec-head .lead { max-width: 56ch; margin: 0 auto; }

.sec-head-left { text-align: left; max-width: 60ch; margin-bottom: 56px; }

/* ============ PRODUCT FEATURE ============ */

.product-feature {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 6px;
  border: 6px solid var(--cream-deep);
  box-shadow: var(--shadow-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--script);
  font-size: 24px;
  text-align: center;
  padding: 32px;
  overflow: hidden;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 18px,
      rgba(244, 236, 220, 0.04) 18px 19px
    );
  pointer-events: none;
}

.product-image small {
  display: block;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

.product-stamp {
  position: absolute;
  bottom: 22px;
  right: 22px;
  width: 100px;
  height: 100px;
  background: var(--red);
  border: 3px solid var(--cream);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--slab);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
  transform: rotate(-12deg);
  z-index: 3;
}

.product-stamp .num { font-size: 24px; letter-spacing: 0; margin: 1px 0; }

/* ============ STAT STRIP ============ */

.stat-strip {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 56px 0;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item .tag {
  font-family: var(--slab);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.stat-item .num {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .desc {
  font-size: 13px;
  color: var(--cream-deep);
  letter-spacing: 0.04em;
}

/* ============ FEATURE GRID ============ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--cream);
  padding: 28px 28px 32px;
  border-radius: 4px;
  border: 1px solid var(--cream-deep);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-card .num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 56px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
}

.feature-card .feat-svg,
.feature-card .feat-photo {
  width: 100%;
  height: 200px;
  margin: 0 auto 18px;
  display: block;
}

.feature-card .feat-photo {
  border-radius: 3px;
  border: 2px solid var(--navy-deep);
  background: var(--navy-deep);
  object-fit: cover;
  object-position: center;
}

.feature-card .feat-photo.shield-only {
  height: 200px;
  border: none;
  background: transparent;
}

.feature-card .feat-svg path,
.feature-card .feat-svg line,
.feature-card .feat-svg circle,
.feature-card .feat-svg rect,
.feature-card .feat-svg polyline,
.feature-card .feat-svg polygon {
  stroke: var(--navy-deep);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card .feat-svg .accent {
  stroke: var(--red);
  stroke-width: 2;
}

.feature-card .feat-svg .fill-navy { fill: var(--navy-deep); stroke: none; }
.feature-card .feat-svg .fill-red { fill: var(--red); stroke: none; }
.feature-card .feat-svg .fill-cream { fill: var(--cream); stroke: var(--navy-deep); }
.feature-card .feat-svg .dashed { stroke-dasharray: 3 3; opacity: 0.5; }
.feature-card .feat-svg text {
  fill: var(--navy-deep);
  font-family: var(--slab);
  stroke: none;
}

.feature-card h3 {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 10px;
  border-top: 1px solid var(--cream-deep);
  padding-top: 14px;
}

.feature-card p {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 0;
  text-align: center;
}

/* ============ MENU SECTION (gingham tablecloth) ============ */

.menu-section {
  background-color: var(--cream-warm);
  background-image:
    linear-gradient(rgba(183, 50, 37, 0.45) 50%, transparent 50%),
    linear-gradient(90deg, rgba(183, 50, 37, 0.45) 50%, transparent 50%);
  background-size: 90px 90px;
  padding: 110px 0 120px;
  position: relative;
}

.menu-section::before,
.menu-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 32px;
  background: var(--cream);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 95% 50%, 90% 100%, 85% 50%, 80% 100%, 75% 50%, 70% 100%, 65% 50%, 60% 100%, 55% 50%, 50% 100%, 45% 50%, 40% 100%, 35% 50%, 30% 100%, 25% 50%, 20% 100%, 15% 50%, 10% 100%, 5% 50%, 0 100%);
}
.menu-section::before { top: 0; }
.menu-section::after {
  bottom: 0;
  transform: scaleY(-1);
}

.menu-head {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.menu-head h2 {
  background: var(--cream);
  display: block;
  width: max-content;
  max-width: 100%;
  padding: 22px 56px;
  border: 4px double var(--navy-deep);
  font-size: clamp(48px, 7vw, 88px);
  margin: 0 auto 18px;
  line-height: 1;
}

.menu-head .tagline {
  background: var(--cream);
  display: block;
  width: max-content;
  max-width: 90%;
  padding: 8px 22px;
  border: 1px solid var(--navy-deep);
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--navy-deep);
  letter-spacing: 0.005em;
  line-height: 1.3;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

.menu-card {
  background: var(--cream);
  border: 1px solid var(--navy-deep);
  padding: 12px 12px 18px;
  box-shadow: 0 8px 22px rgba(15, 27, 63, 0.18);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

a.menu-card:hover .label {
  color: var(--red);
}

a.menu-card:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.menu-card:nth-child(3n+1) { transform: rotate(-1.4deg); }
.menu-card:nth-child(3n+2) { transform: rotate(0.8deg); }
.menu-card:nth-child(3n+3) { transform: rotate(-0.4deg); }
.menu-card:nth-child(5)    { transform: rotate(1.2deg); }
.menu-card:nth-child(7)    { transform: rotate(-1deg); }

.menu-card:hover {
  transform: rotate(0deg) scale(1.04);
  box-shadow: 0 14px 36px rgba(15, 27, 63, 0.32);
  z-index: 3;
}

.menu-card .photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--navy-deep);
  margin-bottom: 14px;
  position: relative;
}

.menu-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-card .label {
  text-align: center;
  font-family: var(--slab);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--navy-deep);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.menu-card .label::before,
.menu-card .label::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  flex-shrink: 0;
}

.menu-card .price {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.04em;
  text-align: center;
  display: block;
  margin-top: 4px;
}

/* legacy lifestyle-strip kept for any references */
.lifestyle-strip {
  background: var(--cream);
  padding: 80px 0 100px;
}

.lifestyle-head {
  text-align: center;
  margin-bottom: 48px;
}

.lifestyle-head .star-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.lifestyle-head .star-rule .line {
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.lifestyle-head .star-rule .star {
  width: 12px;
  height: 12px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.lifestyle-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  margin-bottom: 0;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.lifestyle-frame {
  aspect-ratio: 1 / 1.1;
  background: linear-gradient(160deg, var(--cream-deep), var(--cream-warm));
  border: 3px solid var(--navy-deep);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lifestyle-frame:nth-child(2n) {
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  border-color: var(--cream-deep);
}

.lifestyle-frame .placeholder-label {
  text-align: center;
  font-family: var(--script);
  font-size: 17px;
  color: var(--navy-deep);
  padding: 14px;
  line-height: 1.3;
}

.lifestyle-frame:nth-child(2n) .placeholder-label { color: var(--cream); }

.lifestyle-frame .placeholder-label small {
  display: block;
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 8px;
  font-style: normal;
}

.lifestyle-frame:nth-child(2n) .placeholder-label small { color: var(--gold); }

/* ============ STAT ICONS ============ */

.stat-item .stat-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  display: block;
}

.stat-item .stat-icon path,
.stat-item .stat-icon line,
.stat-item .stat-icon circle,
.stat-item .stat-icon rect,
.stat-item .stat-icon polyline {
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============ HERO STAMP PAIR ============ */

.hero-stamp-pair {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 3;
  align-items: flex-end;
}

.hero-stamp-pair img {
  width: 130px;
  height: 130px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.hero-stamp-pair .premium {
  width: 110px;
  height: 110px;
  transform: rotate(-10deg);
  margin-right: -8px;
}

.hero-stamp-pair .made-usa {
  transform: rotate(8deg);
}

/* Stamp on product images */
.product-image .product-stamp-img {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 130px;
  height: 130px;
  z-index: 3;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.4));
  transform: rotate(-10deg);
}

@media (max-width: 980px) {
  .hero-stamp-pair img { width: 90px; height: 90px; }
  .hero-stamp-pair .premium { width: 78px; height: 78px; }
  .product-image .product-stamp-img { width: 90px; height: 90px; bottom: 12px; right: 12px; }
}

/* ============ POSTER QUOTES ============ */

.poster-quotes {
  background: var(--cream-warm);
  padding: 100px 0;
  text-align: center;
}

.poster-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 700;
  line-height: 1.04;
  color: var(--navy-deep);
  max-width: 22ch;
  margin: 0 auto 18px;
  letter-spacing: -0.01em;
}

.poster-quote .red { color: var(--red); }

.poster-attribution {
  font-family: var(--script);
  font-size: 22px;
  color: var(--red);
}

.quote-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 64px;
  margin-top: 64px;
  text-align: left;
}

.quote-card {
  border-left: 3px solid var(--red);
  padding-left: 24px;
}

.quote-card .q {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.quote-card .src {
  font-family: var(--slab);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

/* ============ WHERE TO BUY ============ */

.buy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.buy-card {
  background: var(--cream);
  border: 2px solid var(--navy-deep);
  border-radius: 4px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.buy-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--cream);
  padding: 4px 14px;
  font-family: var(--slab);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
}

.buy-card .badge.gold { background: var(--gold); color: var(--navy-deep); }
.buy-card .badge.coming { background: var(--navy-deep); color: var(--gold); }

.buy-card h3 {
  font-family: var(--slab);
  font-style: normal;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.buy-card p {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 18px;
  flex: 1;
}

.buy-card .btn {
  align-self: center;
}

/* ============ CTA STRIP ============ */

.cta-strip {
  background: var(--red);
  color: var(--cream);
  padding: 88px 0;
  text-align: center;
}

.cta-strip h2 {
  color: var(--cream);
  margin-bottom: 20px;
}

.cta-strip p {
  font-size: 19px;
  color: var(--cream-deep);
  max-width: 56ch;
  margin: 0 auto 32px;
}

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

.footer {
  background: var(--black);
  color: var(--cream-deep);
  padding: 80px 0 40px;
  font-size: 14px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-brand .logo-mark {
  height: 90px;
  width: auto;
  margin-bottom: 22px;
  filter: invert(1) opacity(0.95);
}

.footer-brand p {
  color: var(--cream-deep);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--cream);
  font-family: var(--slab);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--cream-deep);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(244, 236, 220, 0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--grey-light);
}

.footer-bottom .made {
  font-family: var(--slab);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 11px;
}

.footer-rm {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 236, 220, 0.08);
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-light);
}

.footer-rm a {
  display: inline-flex;
  align-items: center;
}

.footer-rm img {
  height: 13px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-rm a:hover img { opacity: 1; }

/* ============ PRODUCT AUTOPLAY VIDEO ============ */

.product-video-section {
  background: var(--cream);
  padding: 0 0 80px;
}

.product-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: 1100px;
  margin: 0 auto;
  border: 8px solid var(--cream);
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: var(--shadow-deep);
}

.product-video-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244, 236, 220, 0.25);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

.product-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.product-video-frame .fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ RECIPE PAGES ============ */

.recipe-hero-photo {
  max-width: 1000px;
  margin: -100px auto 0;
  position: relative;
  z-index: 5;
  aspect-ratio: 16/9;
  border: 8px solid var(--cream);
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
  background: var(--navy-deep);
}

.recipe-hero-photo > img:not(.stamp) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.recipe-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recipe-hero-photo .stamp {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 110px;
  height: 110px;
  z-index: 3;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transform: rotate(-8deg);
}

.recipe-pdf-bar {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 22px 0;
  margin: 40px 0 60px;
  text-align: center;
  border-radius: 4px;
  border-left: 6px solid var(--red);
  border-right: 6px solid var(--red);
}

.recipe-pdf-bar h3 {
  color: var(--cream);
  font-size: 22px;
  margin: 0 0 6px;
  border: none;
  padding: 0;
}

.recipe-pdf-bar p {
  font-size: 14px;
  color: var(--cream-deep);
  margin: 0 0 16px;
}



.recipe-meta {
  background: var(--cream);
  border: 2px solid var(--navy-deep);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: -40px auto 56px;
  max-width: 900px;
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow-card);
}

.recipe-meta .item {
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid var(--cream-deep);
}

.recipe-meta .item:last-child { border-right: none; }

.recipe-meta .item .tag {
  font-family: var(--slab);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 4px;
}

.recipe-meta .item .val {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy-deep);
  line-height: 1.1;
}

.recipe-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}

.recipe-ingredients h3,
.recipe-method h3 {
  font-size: 26px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}

.recipe-ingredients ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.recipe-ingredients li {
  padding: 9px 0 9px 26px;
  border-bottom: 1px dashed var(--cream-deep);
  position: relative;
  font-size: 15px;
}

.recipe-ingredients li:last-child { border-bottom: none; }

.recipe-ingredients li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--red);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.recipe-ingredients .brand {
  display: block;
  font-size: 12px;
  color: var(--grey);
  font-style: italic;
  margin-top: 2px;
}

.recipe-method ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.recipe-method ol > li {
  counter-increment: step;
  position: relative;
  padding: 0 0 22px 56px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--cream-deep);
}

.recipe-method ol > li:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.recipe-method ol > li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  color: var(--red);
  width: 42px;
  text-align: right;
}

.recipe-method ol > li h4 {
  font-family: var(--slab);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 6px;
}

.recipe-method ol > li p {
  font-size: 16px;
  margin: 0;
  line-height: 1.55;
}

.hb-notes-callout {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 36px 44px;
  border-radius: 4px;
  border-left: 6px solid var(--red);
  margin: 56px 0;
}

.hb-notes-callout .label {
  color: var(--gold);
  margin-bottom: 14px;
}

.hb-notes-callout h3 {
  color: var(--cream);
  font-size: 28px;
  margin-bottom: 18px;
  padding: 0;
  border: none;
}

.hb-notes-callout ul { list-style: none; margin: 0; padding: 0; }

.hb-notes-callout li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 15px;
  line-height: 1.55;
  border-bottom: 1px solid rgba(244,236,220,0.12);
}

.hb-notes-callout li:last-child { border-bottom: none; }

.hb-notes-callout li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--gold);
  font-size: 14px;
}

.hb-notes-callout li strong { color: var(--gold); display: block; font-family: var(--slab); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 2px; }

.attribution-card {
  background: var(--cream-warm);
  border: 1px solid var(--cream-deep);
  border-left: 4px solid var(--gold);
  padding: 24px 30px;
  margin: 40px 0;
  font-size: 15px;
  line-height: 1.5;
  font-style: italic;
  color: var(--grey);
}

.attribution-card a { color: var(--red); text-decoration: underline; font-style: normal; }

.recipe-pairing {
  background: var(--cream-warm);
  border: 2px solid var(--navy-deep);
  padding: 32px 36px;
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  align-items: center;
}

.recipe-pairing .label { margin-left: 0; }
.recipe-pairing h3 {
  font-size: 26px;
  border: none;
  padding: 0;
  margin: 0 0 8px;
}

.recipe-pairing p {
  margin-bottom: 0;
  font-size: 15px;
  color: var(--grey);
}

.recipe-pairing .right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  font-size: 14px;
}

.recipe-pairing .pair-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--cream-deep);
}

.recipe-pairing .pair-row:last-child { border-bottom: none; }

.recipe-pairing .pair-row .name { color: var(--navy-deep); font-weight: 700; }
.recipe-pairing .pair-row .price { color: var(--red); font-family: var(--slab); font-size: 12px; letter-spacing: 0.06em; }

@media (max-width: 980px) {
  .recipe-meta { grid-template-columns: repeat(2, 1fr); margin-top: -32px; }
  .recipe-meta .item { border-right: 1px solid var(--cream-deep); border-bottom: 1px solid var(--cream-deep); }
  .recipe-meta .item:nth-child(2n) { border-right: none; }
  .recipe-meta .item:nth-last-child(-n+2) { border-bottom: none; }
  .recipe-meta .item:last-child { grid-column: 1 / -1; }
  .recipe-grid { grid-template-columns: 1fr; gap: 40px; }
  .recipe-pairing { grid-template-columns: 1fr; }
  .hb-notes-callout { padding: 28px; }
}

/* ============ VIDEO BANNER ============ */

.video-banner {
  background: var(--navy-deep);
  padding: 0;
}

.video-banner .video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 720px;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-deep);
  display: block;
  text-decoration: none;
  color: inherit;
}

.video-banner .video-frame img,
.video-banner .video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-banner .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 27, 63, 0);
  transition: background 0.25s;
}

.video-banner .video-frame:hover .play-overlay { background: rgba(15, 27, 63, 0.25); }

.video-banner .play-button {
  width: 96px;
  height: 96px;
  background: var(--red);
  border: 4px solid var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.video-banner .video-frame:hover .play-button {
  transform: scale(1.08);
  background: var(--red-deep);
}

.video-banner .play-button::before {
  content: "";
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--cream);
  margin-left: 6px;
  display: block;
}

/* ============ STARS RIBBON ============ */

.stars-ribbon {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 36px 0;
}

.stars-ribbon .star {
  width: 22px;
  height: 22px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* ============ STORY GRID ============ */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.story-image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--cream-deep), var(--cream-warm));
  border: 8px solid var(--cream);
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-family: var(--script);
  font-size: 26px;
  text-align: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.story-image::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(15, 27, 63, 0.18);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

/* When the heritage section sits on navy, use cream-tinted inner border */
.sec-navy .story-image::before {
  border-color: rgba(244, 236, 220, 0.28);
}

/* "Made here" pop treatment */
.lead .pop,
p .pop {
  color: var(--red-bright);
  font-style: italic;
  font-weight: 700;
  font-size: 1.45em;
  letter-spacing: -0.01em;
  display: inline-block;
  margin-left: 4px;
  position: relative;
  padding: 0 6px;
}

.lead .pop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: var(--red-bright);
}

.story-image small {
  display: block;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 14px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
}

.contact-form {
  background: var(--cream);
  padding: 44px;
  border: 2px solid var(--navy-deep);
  border-radius: 4px;
}

.contact-form .field {
  margin-bottom: 22px;
}

.contact-form label {
  display: block;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--body);
  font-size: 16px;
  color: var(--black);
  background: white;
  border: 2px solid var(--cream-deep);
  border-radius: 3px;
  transition: border-color 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--red);
}

.contact-form textarea { min-height: 130px; resize: vertical; }

.contact-info { padding-top: 12px; }

.contact-info .item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px dashed var(--cream-deep);
}

.contact-info .item:last-child { border: none; }

.contact-info h4 {
  font-family: var(--slab);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.contact-info p { font-size: 16px; margin-bottom: 0; }

/* ============ PRODUCT PAGE ============ */

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.spec-table tr {
  border-bottom: 1px solid var(--cream-deep);
}

.spec-table td {
  padding: 14px 0;
  vertical-align: top;
}

.spec-table td:first-child {
  font-family: var(--slab);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  width: 42%;
}

.parts-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.parts-list li {
  display: grid;
  grid-template-columns: 50px 1fr 80px;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-deep);
  align-items: baseline;
}

.parts-list .num {
  font-family: var(--slab);
  font-size: 14px;
  color: var(--red);
}

.parts-list .item-name { font-weight: 700; color: var(--navy-deep); margin-bottom: 4px; }
.parts-list .item-desc { font-size: 14px; color: var(--grey); }
.parts-list .qty {
  font-family: var(--slab);
  text-align: right;
  color: var(--navy-deep);
  font-size: 14px;
  letter-spacing: 0.04em;
}

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

.page-header {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(183, 50, 37, 0.16), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 163, 92, 0.10), transparent 50%);
  pointer-events: none;
}

.page-header::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  background: repeating-linear-gradient(
    180deg,
    var(--red) 0 28px,
    var(--cream) 28px 56px
  );
}

.page-header-content { position: relative; z-index: 2; max-width: 70ch; }
.page-header h1 { color: var(--cream); margin-bottom: 18px; }
.page-header .lead { color: var(--cream-deep); margin: 0; }

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

@media (max-width: 980px) {
  .hero { padding: 120px 0 80px; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right { aspect-ratio: 16 / 11; }
  .product-feature { grid-template-columns: 1fr; gap: 48px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .quote-stack { grid-template-columns: 1fr; gap: 32px; }
  .buy-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sec { padding: 80px 0; }
  .page-header { padding: 140px 0 70px; }
  .lifestyle-grid {
    grid-template-columns: repeat(5, 80%);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }
  .lifestyle-frame { scroll-snap-align: center; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .menu-section { padding: 80px 0 90px; }
  .menu-section::before, .menu-section::after { height: 24px; }
}

@media (max-width: 560px) {
  .menu-grid { grid-template-columns: 1fr; gap: 20px; max-width: 360px; }
  .menu-head h2 { padding: 14px 24px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 22px; }
  /* Hide the inline nav-links on mobile when the menu is closed.
     When opened, JS moves nav-links to <body> and the body.mobile-nav-open
     ruleset (later in this file) shows it as a fullscreen panel. */
  .nav .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .contact-form { padding: 28px; }
  .parts-list li { grid-template-columns: 30px 1fr; gap: 12px; }
  .parts-list .qty { grid-column: 2; text-align: left; padding-top: 4px; }
}

/* ============ ANIMATIONS ============ */

.anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}
.anim.vis {
  opacity: 1;
  transform: translateY(0);
}

.parts-list li:last-child,
.spec-table tr:last-child { border-bottom: none; }
