/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --cream:   #FDFAF5;
  --charcoal:#1A1A1A;
  --gold:    #F5A623;
  --brick:   #C0392B;
  --muted:   #6B6B6B;
  --warm-bg: #FEF8EE;

  --shadow:       0 4px 24px rgba(26,26,26,.08);
  --shadow-hover: 0 12px 40px rgba(26,26,26,.18);
  --radius: 16px;
  --nav-h:  88px;
}

/* Brand zero — ensures "0" renders as numeral, not letter O */
.brand-zero {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "zero" 1;
  letter-spacing: -0.01em;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3rem);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: .75rem 1.75rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,.4);
}
.btn-primary.btn-lg {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
}

.btn-add-order {
  display: inline-block;
  background: var(--brick);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  padding: .5rem 1.2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}
.btn-add-order:hover {
  background: #a93226;
  transform: translateY(-1px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25D366;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: .875rem 2rem;
  border-radius: 100px;
  margin-top: 1.75rem;
  transition: transform .2s, box-shadow .2s;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,.5); }
  50%       { box-shadow: 0 0 0 10px rgba(245,166,35,0); }
}
.btn-pulse { animation: pulse-glow 2.4s ease infinite; }

.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem clamp(1.5rem, 4vw, 3rem);
  height: var(--nav-h);
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease;
}
#main-nav.scrolled {
  background: var(--cream);
  box-shadow: 0 2px 20px rgba(26,26,26,.08);
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--charcoal);
  flex-shrink: 0;
}
.nav-logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.nav-links a {
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta {
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: .55rem 1.4rem;
  border-radius: 100px;
  flex-shrink: 0;
}

/* Hamburger — hidden on desktop, styles live in mobile media query */
.nav-hamburger { display: none; }

/* menu.html — nav always solid from page load */
body.page-menu #main-nav {
  background: var(--cream);
  box-shadow: 0 2px 20px rgba(26,26,26,.08);
}

/* ============================================================
   HERO — SCROLL DRIVEN ANIMATION
   ============================================================ */
#hero {
  display: flex;
  position: relative;
  background: var(--charcoal);
  /* Hero needs overflow visible for sticky to work */
}

/* Left panel — sticky image frame */
.hero-sticky-panel {
  position: sticky;
  top: 0;
  width: 50vw;
  height: 100vh;
  flex-shrink: 0;
  overflow: hidden;
  background: #0d0d0d;
}
#scroll-canvas {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  will-change: transform;
  transform: translateZ(0);
}

.hero-product-name {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  right: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(.9rem, 1.2vw, 1.1rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,.85);
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  letter-spacing: .02em;
  transition: opacity .5s ease;
  pointer-events: none;
}

/* Right panel — tall scrollable text column */
.hero-text-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
  padding-top: 10vh;
  min-width: 0;
}

.video-section-label {
  font-family: 'Lato', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 2rem clamp(2rem, 5vw, 5rem) .5rem;
  opacity: .65;
}
.video-section-label--transition {
  margin-top: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(245,166,35,.15);
}

.hero-beat {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem clamp(2rem, 5vw, 5rem);
  opacity: .2;
  transition: opacity .6s ease;
  overflow: visible;
  max-width: 100%;
  box-sizing: border-box;
}
.hero-beat.active {
  opacity: 1;
}

.beat-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -.01em;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
  padding-right: 5vw;
  max-width: 100%;
}

.beat-sub {
  font-size: clamp(.95rem, 1.4vw, 1.25rem);
  color: rgba(253,250,245,.55);
  margin-top: 1.25rem;
  max-width: 360px;
  line-height: 1.7;
}

/* CTA panel at the end of hero */
.hero-cta-panel {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem clamp(2rem, 5vw, 5rem) 4rem;
  background: linear-gradient(140deg, #1a1a1a 0%, #2c1400 60%, #1a0a00 100%);
  position: relative;
  overflow: hidden;
}
.hero-cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(245,166,35,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-cta-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  margin-bottom: .75rem;
}
.hero-cta-headline {
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 2.5rem;
  line-height: 1;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
#menu { background: var(--cream); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.menu-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.menu-card--featured {
  border: 2px solid var(--gold);
}

.menu-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
  z-index: 1;
}

.menu-card-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0ece4;
  flex-shrink: 0;
}
.menu-card-img-wrap--dark { background: #111; }

.menu-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.menu-card:hover .menu-card-img-wrap img { transform: scale(1.05); }

.menu-card-body {
  padding: 1.2rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .35rem;
  color: var(--charcoal);
  display: flex;
  align-items: baseline;
  gap: .4rem;
  flex-wrap: wrap;
}

.menu-item-qty {
  font-family: 'Lato', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  background: var(--warm-bg);
  color: var(--muted);
  padding: .1rem .5rem;
  border-radius: 100px;
}

.menu-item-desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1.1rem;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: auto;
}

.menu-item-price {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
}

/* ============================================================
   HOW TO ORDER
   ============================================================ */
#how-to-order {
  background: var(--warm-bg);
  position: relative;
  overflow: hidden;
}

.steps-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 3rem;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
  margin-bottom: .4rem;
}

.step-icon {
  font-size: 2.4rem;
  margin-bottom: .8rem;
}

.step-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.step-sub {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 200px;
}

.step-divider {
  width: 2px;
  align-self: center;
  height: 80px;
  flex-shrink: 0;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hto-deco {
  display: flex;
  justify-content: flex-end;
}
.hto-deco img {
  max-height: 260px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(192,57,43,.18));
}

/* ============================================================
   STORY
   ============================================================ */
#story {
  position: relative;
  background: #FEF7EC;
  overflow: hidden;
}

/* Subtle paper grain via SVG filter */
#story::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    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.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.story-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.story-content {
  position: relative;
}

/* Giant decorative opening quote */
.story-content::before {
  content: '\201C';
  position: absolute;
  top: -.25em;
  left: -.2em;
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 14vw, 14rem);
  font-weight: 900;
  color: var(--gold);
  opacity: .14;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.story-body {
  position: relative;
  z-index: 1;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.85;
  color: #383838;
  max-width: 580px;
}

.story-deco {
  width: clamp(160px, 18vw, 260px);
  height: auto;
  object-fit: contain;
  align-self: flex-end;
  filter: drop-shadow(0 8px 24px rgba(192,57,43,.15));
  flex-shrink: 0;
}

/* ============================================================
   FIND US
   ============================================================ */
#find-us { background: var(--cream); }

.find-us-inner {
  display: grid;
  grid-template-columns: 220px 1fr 1.25fr;
  gap: 2.5rem;
  align-items: center;
}

.find-us-video {
  display: flex;
  align-items: center;
  justify-content: center;
}

.family-video--bubble {
  width: 200px;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  display: block;
}

.find-us-detail {
  font-size: 1.05rem;
  margin-bottom: .9rem;
  color: var(--charcoal);
}

.find-us-map iframe {
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  color: var(--cream);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem clamp(1.5rem, 4vw, 3rem) 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: .75rem;
}
.footer-logo img {
  height: 30px;
  width: auto;
  opacity: .85;
}
.footer-logo .nav-logo-img {
  filter: none;
}

.footer-tagline {
  font-size: .85rem;
  color: rgba(253,250,245,.5);
  line-height: 1.65;
  max-width: 260px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding-top: .25rem;
}
.footer-nav a {
  font-size: .875rem;
  color: rgba(253,250,245,.65);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding-top: .25rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(253,250,245,.08);
  color: rgba(253,250,245,.65);
  transition: background .2s, color .2s, transform .2s;
  flex-shrink: 0;
}
.social-icon:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(253,250,245,.1);
  font-size: .8rem;
  color: rgba(253,250,245,.35);
  text-align: center;
}

/* ============================================================
   AIR FRYER FEATURE SECTION
   ============================================================ */
.airfryer-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1A1A1A;
}
.airfryer-bg-wrap {
  position: absolute;
  inset: 0;
  display: flex;
}
.airfryer-bg-img {
  flex: 1;
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.30;
  display: block;
}
.airfryer-bg-img--2 {
  object-position: center top;
}
.airfryer-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,.55) 0%, rgba(26,26,26,.35) 100%);
}
.airfryer-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  padding: 4rem 2rem;
}
.airfryer-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #F5A623;
  margin: 0 0 1.25rem;
}
.airfryer-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #FDFAF5;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}
.airfryer-body {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: rgba(253,250,245,.80);
  line-height: 1.75;
  margin: 0 0 2.5rem;
}

@media (max-width: 768px) {
  .airfryer-bg-img {
    width: 100%;
    position: absolute;
  }
  .airfryer-bg-img--1 { left: 0; }
  .airfryer-bg-img--2 { display: none; }
}

/* ============================================================
   FOOD CAROUSEL
   ============================================================ */
.food-carousel-section {
  background: var(--cream);
  overflow: hidden;
}
.food-carousel-header {
  padding-bottom: 1.5rem;
}
.food-carousel-footer {
  padding-top: 2rem;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.food-carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.food-carousel-track-wrapper::-webkit-scrollbar { display: none; }
.food-carousel-track-wrapper:active { cursor: grabbing; }

.food-carousel-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
  animation: carouselScroll 40s linear infinite;
  padding: 0 1.25rem;
}
.food-carousel-track:hover,
.food-carousel-track.paused { animation-play-state: paused; }

@keyframes carouselScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.food-card {
  flex-shrink: 0;
  width: 280px;
}
.food-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
}
.food-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.food-card-img-wrap:hover img { transform: scale(1.06); }

.food-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
}
.food-card-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,.72);
  opacity: 0;
  transition: opacity .35s ease;
}
.food-card-img-wrap:hover .food-card-overlay-bg { opacity: 1; }

.food-card-label {
  position: relative;
  z-index: 1;
  text-align: center;
  transform: translateY(16px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}
.food-card-img-wrap:hover .food-card-label {
  opacity: 1;
  transform: translateY(0);
}
.food-card-label h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  color: #FDFAF5;
  line-height: 1.3;
  margin: 0;
  letter-spacing: .01em;
}

@media (max-width: 640px) {
  .food-card { width: 200px; }
  .food-carousel-track { gap: 1rem; }
}

/* ============================================================
   MENU TEASER
   ============================================================ */
#menu-teaser {
  background: var(--warm-bg);
}
.menu-teaser-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.menu-teaser-items {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-end;
  flex-wrap: wrap;
}
.menu-teaser-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.menu-teaser-item img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.menu-teaser-item > span {
  font-weight: 700;
  font-size: .875rem;
  text-align: center;
  color: var(--charcoal);
}
.menu-teaser-item--more {
  background: var(--gold);
  border-radius: var(--radius);
  width: 120px;
  height: 120px;
  justify-content: center;
  padding: 1rem;
  gap: 0.3rem;
}
.menu-teaser-more-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--charcoal);
}
.menu-teaser-item--more > span {
  font-size: .75rem;
  color: var(--charcoal);
}

/* Menu page order CTA */
.menu-order-cta {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.menu-order-cta p {
  font-size: 1.05rem;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}

/* ============================================================
   PAGE HERO (menu.html banner)
   ============================================================ */
.page-hero {
  background: var(--charcoal);
  color: var(--cream);
  padding: calc(var(--nav-h) + 3rem) clamp(1.5rem, 4vw, 3rem) 3rem;
  text-align: center;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--cream);
}
.page-hero-sub {
  font-size: 1rem;
  color: rgba(253,250,245,.65);
  margin-top: .75rem;
}

/* ============================================================
   TOAST
   ============================================================ */
#toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--charcoal);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  padding: .9rem 1.5rem;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(26,26,26,.35);
  border-left: 4px solid var(--gold);
  transform: translateY(120px);
  opacity: 0;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
  z-index: 9999;
  pointer-events: none;
  white-space: nowrap;
}
#toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: #1A1A1A;
  border-top: 2px solid #F5A623;
  padding: 1.25rem 2rem;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 40px rgba(0,0,0,.35);
}
#cookie-banner.visible { transform: translateY(0); }

.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  flex-wrap: wrap;
}
.cookie-content { flex: 1; min-width: 200px; }
#cookie-policy-text {
  font-family: 'Lato', sans-serif;
  font-size: .875rem;
  color: rgba(253,250,245,.8);
  line-height: 1.6;
  margin: 0;
}
.cookie-buttons {
  display: flex;
  gap: .75rem;
  align-items: center;
  flex-shrink: 0;
}
.cookie-btn-settings {
  background: transparent;
  border: 1px solid rgba(253,250,245,.3);
  color: #FDFAF5;
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  padding: .55rem 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
  letter-spacing: .03em;
}
.cookie-btn-settings:hover { border-color: #F5A623; color: #F5A623; }
.cookie-btn-accept {
  background: #F5A623;
  border: none;
  color: #1A1A1A;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  padding: .55rem 1.3rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  letter-spacing: .03em;
}
.cookie-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(245,166,35,.45);
}
.cookie-close-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(253,250,245,.35);
  font-size: 1rem;
  cursor: pointer;
  padding: .4rem .6rem;
  line-height: 1;
  transition: color .2s;
}
.cookie-close-btn:hover { color: #FDFAF5; }

/* ============================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Find Us: hide dog video, collapse to 2-col */
  .find-us-inner {
    grid-template-columns: 1fr 1.25fr;
  }
  .find-us-video { display: none; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* ── Nav ──────────────────────────────────────────────── */
  #main-nav {
    padding: 0.75rem 1.25rem;
    align-items: center;
  }

  .nav-left {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-logo img { height: 28px; }
  .nav-logo span { font-size: 0.95rem; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-signout { display: none; }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.4rem;
    z-index: 1001;
  }

  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #FDFAF5;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  #main-nav.scrolled .nav-hamburger span { background: #1A1A1A; }

  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: fixed;
    inset: 0;
    background: #1A1A1A;
    z-index: 1000;
    padding: 2rem;
  }

  .nav-links.mobile-open li a {
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    color: #FDFAF5;
    letter-spacing: 0.02em;
    text-decoration: none;
  }

  .mobile-menu-extras { display: none; }

  .nav-links.mobile-open ~ .mobile-menu-extras {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: fixed;
    bottom: 3rem;
    left: 0;
    right: 0;
    z-index: 1001;
  }

  /* ── Disclaimer bar ───────────────────────────────────── */
  #disclaimer-bar {
    font-size: 0.72rem;
    padding: 0.4rem 2.5rem 0.4rem 1rem;
    line-height: 1.4;
    height: auto;
  }

  #disclaimer-bar p { text-align: left; }

  /* ── Hero: stack vertically ───────────────────────────── */
  #hero { flex-direction: column; }

  .hero-sticky-panel {
    position: sticky;
    top: var(--nav-h);
    width: 100%;
    height: min(50vw, 280px);
    flex-shrink: 0;
    z-index: 2;
  }

  .hero-text-panel { padding-top: 1.5rem; }

  .hero-beat {
    min-height: 60vh;
    padding: 1.5rem 1.75rem;
  }

  .beat-headline {
    font-size: clamp(2rem, 8vw, 3.5rem);
    padding-right: 2vw;
  }

  .hero-cta-panel {
    align-items: center;
    text-align: center;
    padding: 2rem 1.75rem 4rem;
  }

  /* ── Store status badge ───────────────────────────────── */
  #store-status-badge {
    bottom: 5rem;
    left: auto;
    right: 1rem;
    font-size: 0.68rem;
    padding: 0.35rem 0.7rem;
  }

  .store-badge-dot {
    width: 6px;
    height: 6px;
  }

  /* ── Store closed banner ──────────────────────────────── */
  .store-closed-banner {
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    text-align: center;
  }

  /* ── Air fryer section ────────────────────────────────── */
  .airfryer-section { min-height: 60vh; }
  .airfryer-bg-img--2 { display: none; }
  .airfryer-bg-img--1 { width: 100%; opacity: 0.25; }
  .airfryer-content { padding: 3rem 1.5rem; }
  .airfryer-heading { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .airfryer-body { font-size: 0.9rem; }

  /* ── Menu teaser ──────────────────────────────────────── */
  .menu-teaser { padding: 3rem 1.25rem; }
  .menu-teaser h2 { font-size: 1.6rem; }

  /* ── How to Order steps ───────────────────────────────── */
  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .step-divider { display: none; }

  .step-item {
    text-align: center;
    max-width: 280px;
  }

  /* ── Story ────────────────────────────────────────────── */
  .story-inner { grid-template-columns: 1fr; }
  .story-deco { display: none; }

  /* ── Find Us ──────────────────────────────────────────── */
  .find-us-inner { grid-template-columns: 1fr; }
  .find-us-video { display: none; }
  .find-us-map iframe { height: 300px; }
  .find-us-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .find-us-map {
    border-radius: 12px;
    overflow: hidden;
  }
  .map-address-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  /* ── Footer ───────────────────────────────────────────── */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  footer .footer-inner,
  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-legal-links,
  .footer-nav-links {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .footer-legal-links a,
  .footer-nav-links a {
    font-size: 0.72rem;
  }

  /* ── Section titles & general padding ────────────────── */
  .section-title,
  h2.section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  /* ── Toast ────────────────────────────────────────────── */
  #toast {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    text-align: center;
    border-radius: var(--radius);
    border-left: none;
    border-bottom: 3px solid var(--gold);
    white-space: normal;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }

  .hero-sticky-panel {
    height: min(60vw, 240px);
  }

  .hto-deco { display: none; }

  /* Cookie banner mobile */
  .cookie-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-right: 2rem;
  }
  .cookie-buttons { width: 100%; }
  .cookie-btn-accept,
  .cookie-btn-settings { flex: 1; text-align: center; }
}

/* ============================================================
   RESPONSIVE — SMALL  (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  /* Carousel cards */
  .food-card { width: 160px; }
  .food-carousel-track {
    gap: 0.75rem;
    padding: 0 0.75rem;
  }
  .food-card-label h3 { font-size: 0.85rem; }

  /* Menu & legal page layout */
  .menu-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
    padding: 0 1rem;
  }
  .menu-hero,
  .legal-hero {
    padding: 5rem 1.25rem 2.5rem;
  }
  .legal-content { padding: 2.5rem 1.25rem 4rem; }
}

/* ============================================================
   RESPONSIVE — OUR TALES  (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .tale-section--with-video,
  .tale-section--video-left {
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  .family-video--katelyn,
  .family-video--ethan {
    display: none;
  }

  .ourstory-content { padding: 2.5rem 1.25rem 4rem; }
  .tale-section--promise { padding: 1.5rem 1.25rem; }
}

/* ============================================================
   RESPONSIVE — DESKTOP OVERRIDE
   ============================================================ */
@media (min-width: 769px) {
  .nav-hamburger { display: none; }
  .mobile-menu-extras { display: none !important; }
}

/* ============================================================
   DISCLAIMER BAR
   ============================================================ */
#disclaimer-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(245,166,35,.25);
  height: 2.75rem;
  display: flex;
  align-items: center;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
#disclaimer-bar.visible { transform: translateY(0); }
.disclaimer-bar-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
#disclaimer-bar p {
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  color: rgba(253,250,245,.65);
  margin: 0;
}
#disclaimer-bar a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
#disclaimer-close-btn {
  background: none;
  border: none;
  color: rgba(253,250,245,.35);
  font-size: .9rem;
  cursor: pointer;
  padding: .2rem .4rem;
  line-height: 1;
  flex-shrink: 0;
  transition: color .2s;
}
#disclaimer-close-btn:hover { color: #FDFAF5; }
body.disclaimer-active #main-nav { top: 2.75rem; }
#main-nav { transition: background .35s ease, box-shadow .35s ease, top .4s cubic-bezier(.16,1,.3,1); }

/* ============================================================
   FOOTER LEGAL LINKS
   ============================================================ */
.footer-legal-links {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem) .75rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: .75rem;
  color: rgba(253,250,245,.3);
  transition: color .2s;
}
.footer-legal-links a:hover { color: rgba(253,250,245,.6); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
body.page-legal #main-nav {
  background: var(--cream);
  box-shadow: 0 2px 20px rgba(26,26,26,.08);
}
.legal-hero {
  background: var(--charcoal);
  color: var(--cream);
  padding: calc(var(--nav-h) + 3rem) clamp(1.5rem, 4vw, 3rem) 3rem;
  text-align: center;
}
.legal-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--cream);
}
.legal-hero-sub {
  font-size: .9rem;
  color: rgba(253,250,245,.5);
  margin-top: .75rem;
}
.legal-content-section { background: var(--cream); }
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
}
.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 .9rem;
  color: var(--charcoal);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: .95rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 1rem;
}
.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li {
  font-size: .95rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: .4rem;
}
.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-contact-box {
  background: var(--warm-bg);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.legal-contact-box p { margin: 0; font-size: .9rem; color: var(--charcoal); }
.disclaimer-box {
  background: #FEF7EC;
  border: 1px solid rgba(245,166,35,.35);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
}
.disclaimer-box p { margin-bottom: 0; }

/* ============================================================
   OUR TALES PAGE
   ============================================================ */
.nav-links a[aria-current="page"] {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.ourstory-hero {
  padding-top: calc(var(--nav-h) + 4.5rem);
  padding-bottom: 4.5rem;
}
.ourstory-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.ourstory-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--cream);
  margin: 0 0 .75rem;
  font-style: italic;
}
.legal-updated {
  font-size: .9rem;
  color: rgba(253,250,245,.5);
  margin-top: .25rem;
}
.ourstory-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}
.tale-section { margin-bottom: 4.5rem; }
.tale-section--promise {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 3rem;
  margin-bottom: 3rem;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.tale-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 .75rem;
  letter-spacing: -.01em;
}
.tale-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 0 0 1.75rem;
  border-radius: 2px;
}
.tale-body p {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #2C2C2C;
  margin: 0 0 1.1rem;
}
.tale-body p:last-child { margin-bottom: 0; }
.tale-section:not(.tale-section--promise) .tale-body p:first-child {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.7;
}
.ourstory-cta {
  text-align: center;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(26,26,26,.1);
  margin-top: 1rem;
}
.ourstory-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brick);
  text-decoration: none;
  border-bottom: 2px solid var(--brick);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.ourstory-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   FOOTER NAV LINKS ROW
   ============================================================ */
.footer-nav-links {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem clamp(1.5rem, 4vw, 3rem) .5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(253,250,245,.08);
}
.footer-nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  color: rgba(253,250,245,.55);
  letter-spacing: .05em;
  transition: color .2s ease;
}
.footer-nav-links a:hover { color: var(--gold); }

@media (max-width: 640px) {
  .ourstory-content { padding: 3rem 1.25rem 4rem; }
  .tale-section--promise { padding: 2rem 1.25rem; }
  .ourstory-hero h1 { font-size: 2.5rem; }
}

/* ============================================================
   STORE STATUS BADGE
   ============================================================ */
#store-status-badge {
  position: fixed;
  bottom: 5.5rem;
  left: 1.5rem;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #1A1A1A;
  color: #FDFAF5;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: opacity 0.3s ease;
  cursor: default;
}

.store-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #888;
}

#store-status-badge.store-badge--open {
  background: #1A1A1A;
  border: 1px solid rgba(39, 174, 96, 0.4);
}

#store-status-badge.store-badge--open .store-badge-dot {
  background: #27AE60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.25);
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(39, 174, 96, 0); }
}

#store-status-badge.store-badge--closed {
  background: #1A1A1A;
  border: 1px solid rgba(192, 57, 43, 0.4);
}

#store-status-badge.store-badge--closed .store-badge-dot {
  background: #C0392B;
}

#store-status-badge.store-badge--loading { opacity: 0.5; }

/* ============================================================
   CLOSED BANNER
   ============================================================ */
.store-closed-banner {
  background: #1A1A1A;
  border-bottom: 3px solid #C0392B;
  padding: 0.85rem 2rem;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: rgba(253, 250, 245, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 990;
}

.store-closed-icon { font-size: 1rem; }

.store-closed-next {
  color: rgba(253, 250, 245, 0.5);
  font-style: italic;
}

.store-closed-wa {
  color: #25D366;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(37, 211, 102, 0.4);
  transition: border-color 0.2s ease;
}

.store-closed-wa:hover { border-color: #25D366; }

@media (max-width: 640px) {
  #store-status-badge {
    bottom: 4.5rem;
    left: 1rem;
    font-size: 0.72rem;
  }
  .store-closed-banner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ============================================================
   INVISIBLE ADMIN FOOTER LINK
   ============================================================ */
.admin-footer-link {
  color: transparent;
  font-size: 0.5rem;
  text-decoration: none;
  user-select: none;
}

.admin-footer-link:hover {
  color: rgba(253, 250, 245, 0.1);
}

/* ============================================================
   HOURS & LOCATION — FIX 1 + 2
   ============================================================ */
.hours-note {
  font-size: 0.82em;
  color: rgba(26, 26, 26, 0.55);
  font-style: italic;
}

.hours-disclaimer {
  font-size: 0.82rem;
  color: #C0392B;
  margin-top: 0.25rem;
}

.hours-disclaimer a {
  color: #C0392B;
  text-decoration: underline;
}

.hours-disclaimer a:hover {
  color: #F5A623;
}

/* ============================================================
   MAP ADDRESS BLOCK — FIX 3
   ============================================================ */
.map-address-block {
  background: #FDFAF5;
  border-top: 3px solid #F5A623;
  border-radius: 0 0 12px 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.map-address-line {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #1A1A1A;
  margin: 0;
}

.map-directions-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #C0392B;
  text-decoration: none;
  border-bottom: 2px solid #C0392B;
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.map-directions-link:hover {
  color: #F5A623;
  border-color: #F5A623;
}

/* ============================================================
   LOGO FALLBACK — FIX 7
   ============================================================ */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.nav-logo-fallback {
  font-family: serif;
  font-size: 1.5rem;
  color: #C0392B;
  vertical-align: middle;
}

/* ============================================================
   OUR TALES — SECTIONS WITH SIDE VIDEO
   ============================================================ */
.tale-section--with-video {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 2.5rem;
  align-items: center;
}

.tale-section--video-left {
  grid-template-columns: 220px 1fr;
}

.tale-section-left,
.tale-section-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.family-video--katelyn {
  width: 200px;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.family-video--ethan {
  width: 200px;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .tale-section--with-video,
  .tale-section--video-left {
    grid-template-columns: 1fr;
  }

  .tale-section--video-left .tale-section-left {
    order: 2;
  }
  .tale-section--video-left .tale-section-right {
    order: 1;
  }

  .family-video--katelyn,
  .family-video--ethan {
    width: 140px;
    max-height: 200px;
    margin: 1.5rem auto 0;
  }
}

/* ── Nav sign-out button ──────────────────────────────────── */
.nav-signout {
  background: none;
  border: 1px solid rgba(253,250,245,0.25);
  color: rgba(253,250,245,0.6);
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 0.75rem;
}

.nav-signout:hover {
  border-color: var(--gold, #F5A623);
  color: #F5A623;
}

#main-nav.scrolled .nav-signout {
  border-color: rgba(26,26,26,0.2);
  color: rgba(26,26,26,0.5);
}

/* ── Menu Quantity Badge ─────────────────────────────────────── */
.menu-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.5);
  margin: 0.5rem 0 0.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.qty-number {
  color: #27AE60;
  font-size: 0.82rem;
}

.qty-number.qty-low {
  color: #E67E22;
}

.qty-number.qty-sold-out {
  color: #C0392B;
}

/* ── Sold Out Card State ─────────────────────────────────────── */
.menu-card.sold-out {
  opacity: 0.55;
  pointer-events: none;
  position: relative;
}

.menu-card.sold-out::after {
  content: 'SOLD OUT';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #C0392B;
  color: #FDFAF5;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  z-index: 2;
}

.menu-card.sold-out .btn-add-order {
  background: #aaa;
  cursor: not-allowed;
  pointer-events: none;
  font-size: 0;
}

.menu-card.sold-out .btn-add-order::before {
  content: 'SOLD OUT';
  font-size: 0.85rem;
}

/* Low stock warning — card border */
.menu-card.qty-warning {
  border: 1.5px solid rgba(230, 126, 34, 0.4);
}

/* ── Nav Cart Button ─────────────────────────────────────────── */
.nav-cart-btn {
  position: relative;
  background: none;
  border: 1px solid rgba(253, 250, 245, 0.25);
  color: #FDFAF5;
  border-radius: 50px;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-right: 0.5rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-cart-btn:hover {
  border-color: #F5A623;
  color: #F5A623;
}

#main-nav.scrolled .nav-cart-btn {
  border-color: rgba(26, 26, 26, 0.2);
  color: #1A1A1A;
}

#main-nav.scrolled .nav-cart-btn:hover {
  border-color: #F5A623;
  color: #F5A623;
}

.cart-count {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}

.cart-count.has-items {
  background: #F5A623;
  color: #1A1A1A;
  border-radius: 50px;
  padding: 0 5px;
}

/* ── Card Quantity Selector ──────────────────────────────────── */
.card-order-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f5f5f5;
  border-radius: 50px;
  padding: 0.25rem 0.5rem;
}

.qty-btn {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  line-height: 1;
}

.qty-btn:hover {
  background: rgba(26, 26, 26, 0.1);
}

.qty-display {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  color: #1A1A1A;
}

/* ── Order Page ──────────────────────────────────────────────── */
.order-hero {
  padding: 6rem 2rem 3rem;
}

.order-page-content {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.order-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.order-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.order-empty h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}

.order-empty p {
  color: rgba(26, 26, 26, 0.55);
  margin-bottom: 2rem;
}

.order-section {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.order-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #1A1A1A;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #F5A623;
}

.order-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.06);
  gap: 1rem;
}

.order-item-row:last-child {
  border-bottom: none;
}

.order-item-info {
  flex: 1;
}

.order-item-name {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A1A1A;
}

.order-item-unit-price {
  font-size: 0.78rem;
  color: rgba(26,26,26,0.45);
  margin-top: 0.1rem;
}

.order-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.order-item-subtotal {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #F5A623;
  min-width: 50px;
  text-align: right;
}

.order-item-remove {
  background: none;
  border: none;
  color: rgba(192, 57, 43, 0.5);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.2rem;
  transition: color 0.2s ease;
  line-height: 1;
}

.order-item-remove:hover {
  color: #C0392B;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid #1A1A1A;
}

.order-total-row span:first-child {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.order-total-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1A1A;
}

.order-form-group {
  margin-bottom: 1.1rem;
}

.order-form-group label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.5);
  margin-bottom: 0.4rem;
}

.order-input {
  width: 100%;
  background: #FDFAF5;
  border: 1.5px solid rgba(26,26,26,0.15);
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #1A1A1A;
  padding: 0.7rem 1rem;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  outline: none;
}

.order-input:focus {
  border-color: #F5A623;
}

.order-textarea {
  resize: vertical;
  min-height: 80px;
}

.order-pickup-notice {
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: #1A1A1A;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-submit-order {
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.btn-submit-order:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-submit-order:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.order-submit-status {
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  min-height: 1.2em;
  color: #27AE60;
}

.order-submit-status.error {
  color: #C0392B;
}

.order-edit-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: rgba(26,26,26,0.45);
  text-decoration: underline;
}

.order-edit-link:hover {
  color: #1A1A1A;
}

@media (max-width: 640px) {
  .order-page-content {
    padding: 2rem 1rem 4rem;
  }
  .order-section {
    padding: 1.25rem;
  }
  .card-order-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .qty-selector {
    justify-content: center;
  }
}
