/*
Theme Name: Coza Mia
Theme URI: https://cozamiaottawa.com
Author: Akalerra Studio
Description: Custom theme for Coza Mia Downtown Ottawa
Version: 2.0
*/

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, picture, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul { list-style: none; }

/* ==========================================================================
   TOKENS
   ========================================================================== */
:root {
  --bg:        #111111;
  --surface:   #1A1A1A;
  --red:       #C41414;
  --red-hover: #E01515;
  --white:     #FFFFFF;
  --muted:     #AAAAAA;
  --gold:      #C9A84C;
  --border:    #2A2A2A;
  --radius:    12px;
  --radius-sm: 6px;

  --fs-hero:   clamp(2.8rem, 7vw, 5.5rem);
  --fs-display: clamp(2.2rem, 5.5vw, 4rem);
  --fs-h1:     clamp(2rem, 5vw, 3.5rem);
  --fs-h2:     clamp(1.5rem, 3.5vw, 2.5rem);
  --fs-h3:     clamp(1.2rem, 2.5vw, 1.75rem);
  --fs-body:   1rem;
  --fs-sm:     0.875rem;
  --lh:        1.7;
  --lh-tight:  1.12;

  --nav-h:     70px;
  --section-pad: clamp(80px, 12vw, 140px);
  --text-body: #CCCCCC;
}

/* ==========================================================================
   BASE
   ========================================================================== */
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--fs-body);
  line-height: var(--lh);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display-title {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  line-height: var(--lh-tight);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.font-brand {
  font-family: 'Quinia Retro Demo', 'Anton', sans-serif;
  letter-spacing: 0.06em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; }
.section-sm { padding: 56px 0; }

.display-title {
  font-size: var(--fs-display);
  color: var(--red);
  margin-bottom: 20px;
}
.display-title--center { text-align: center; }

.section-title {
  font-family: 'Anton', sans-serif;
  font-size: var(--fs-display);
  color: var(--red);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.section-subtitle {
  text-align: center;
  color: var(--text-body);
  margin-bottom: 48px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.eyebrow {
  color: var(--red);
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--fs-sm);
  display: inline-block;
  margin-bottom: 16px;
}
.label-red {
  color: var(--red);
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--fs-sm);
  display: inline-block;
  margin-bottom: 16px;
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  z-index: 2000;
}
.skip-link:focus { left: 8px; top: 8px; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
  min-height: 48px;
}
.btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 14px 34px;
  border-radius: 50px;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  min-height: 48px;
}
.btn-outline:hover { background: var(--white); color: var(--bg); transform: translateY(-2px); }

.btn-icon { flex-shrink: 0; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.btn-row--stack { flex-direction: column; align-items: flex-start; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.25s;
}
.site-header.scrolled {
  background: var(--bg);
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
}

/* Transparent nav over hero on desktop (home page only) */
@media (min-width: 901px) {
  .home .site-header:not(.scrolled) {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
  }
}

.nav-inner {
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.nav-left { display: flex; align-items: center; justify-self: start; }
.nav-center { justify-self: center; }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 16px; position: relative; }

.nav-logo img { height: 50px; width: auto; }

/* Menu trigger — Osmow's hamburger + MENU label */
.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  min-height: 44px;
}
.menu-label {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  color: var(--white);
}

.hamburger {
  display: flex;
  width: 28px; height: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Order dropdown */
.order-wrap { position: relative; }
.order-now-btn { white-space: nowrap; }
.order-now-btn .arrow { transition: transform 0.2s; }
.order-now-btn[aria-expanded="true"] .arrow { transform: rotate(180deg); }

.order-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 260px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 1100;
}
.order-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.order-dropdown a {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.18s, border-color 0.18s;
}
.order-dropdown a:hover { background: rgba(196,20,20,0.12); border-left-color: var(--red); }

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--red);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; transform: translateX(0); }
.mobile-overlay a {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  color: var(--white);
  font-size: clamp(1.8rem, 8vw, 2.8rem);
  letter-spacing: 0.06em;
  padding: 12px 24px;
  transition: transform 0.2s, opacity 0.2s;
}
.mobile-overlay a:hover { transform: scale(1.05); opacity: 0.85; }
.mobile-overlay .overlay-order {
  margin-top: 18px;
  border: 2px solid var(--white);
  border-radius: 50px;
  font-size: clamp(1.1rem, 5vw, 1.5rem);
  padding: 12px 34px;
}
.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}
body.no-scroll { overflow: hidden; }

/* ==========================================================================
   HERO — shorter height, bg top-anchored, text + pasticcio duo
   ========================================================================== */
.hero-full {
  position: relative;
  min-height: clamp(460px, 62vh, 640px);
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
  padding: calc(var(--nav-h) + 32px) 0 56px;
}
.hero-full-bg-wrap {
  position: absolute;
  inset: -28px;
  overflow: hidden;
  z-index: 0;
}
.hero-full-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  filter: blur(6px);
}
.hero-full-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.78) 32%,
      rgba(0, 0, 0, 0.62) 52%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.hero-full-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-full-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.hero-full-content {
  max-width: 560px;
  text-align: left;
}
.hero-full-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-pasticcio-duo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 680px;
  padding: 8px 0;
}
.hero-pasticcio-figure {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.hero-pasticcio-figure--main {
  position: relative;
  z-index: 1;
  width: min(48vw, 335px);
}
.hero-pasticcio-figure--bowl {
  position: relative;
  z-index: 2;
  width: min(38vw, 248px);
  margin-left: clamp(-22px, -3.5vw, -12px);
  transform: translateY(-8px) scale(1.06);
}
.hero-pasticcio-figure .product-shot {
  width: 100%;
  max-width: none;
  filter:
    drop-shadow(0 22px 44px rgba(0, 0, 0, 0.6))
    drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}
.hero-pasticcio-figure--bowl .product-shot {
  filter:
    drop-shadow(0 26px 48px rgba(0, 0, 0, 0.72))
    drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55));
}
.hero-full .hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.08;
}
.hero-full .btn-row {
  justify-content: flex-start;
}
.hero-full .order-wrap { display: inline-block; }
.hero-full .order-dropdown { left: 0; right: auto; }

/* Legacy split hero (unused) */
.hero-split {
  padding: calc(var(--nav-h) + 48px) 0 var(--section-pad);
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: var(--fs-hero);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 24px;
  line-height: var(--lh-tight);
}
.hero-split .lead {
  color: var(--text-body);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-split-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-split .order-wrap { display: inline-block; }
.hero-split .order-dropdown { left: 0; right: auto; }

/* Floating product shots — black-bg images blend on dark sections */
.product-shot {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.4));
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.alt-section.visible .product-shot,
.hero-split.visible .product-shot {
  transform: scale(1.02);
}
.product-shot--photo {
  mix-blend-mode: normal;
  border-radius: var(--radius);
  filter: none;
}

/* ==========================================================================
   DISCOVER HEADER
   ========================================================================== */
.discover-header {
  padding: var(--section-pad) 0 0;
  text-align: center;
}
.discover-title {
  font-family: 'Anton', sans-serif;
  font-size: var(--fs-display);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.discover-line {
  width: 80px;
  height: 4px;
  background: var(--white);
  margin: 0 auto;
  border-radius: 2px;
}

/* ==========================================================================
   BEST SELLER BADGE
   ========================================================================== */
.best-seller-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-size: clamp(0.75rem, 1.6vw, 0.95rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  line-height: 1.2;
}
#pasticcio .best-seller-badge {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   ALTERNATING SECTIONS (Osmow's signature layout)
   ========================================================================== */
.alt-section {
  padding: var(--section-pad) 0;
}
/* Section with full-bleed background image + white overlay (Pasticcio) */
.alt-section--has-bg {
  position: relative;
  overflow: hidden;
  background: transparent;
}
.alt-section--has-bg .alt-section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.alt-section--has-bg .alt-section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  pointer-events: none;
  z-index: 1;
}
.alt-section--has-bg .alt-section-inner {
  position: relative;
  z-index: 2;
}
#pasticcio .alt-desc {
  color: #3d3d3d;
}
#pasticcio .btn-outline {
  color: var(--bg);
  border-color: var(--bg);
}
#pasticcio .btn-outline:hover {
  background: var(--bg);
  color: var(--white);
}
/* Transparent product PNG — normal blend on light section (lighten only works on dark bg) */
#pasticcio .product-shot {
  mix-blend-mode: normal;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.28));
}
#pasticcio .alt-media.reveal-slide {
  overflow: visible;
}
.alt-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.alt-section--reverse .alt-section-inner {
  direction: rtl;
}
.alt-section--reverse .alt-section-inner > * {
  direction: ltr;
}
.alt-media {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}
.alt-media.reveal-slide {
  overflow: hidden;
}
.alt-media.reveal-slide .product-shot {
  opacity: 0;
  transform: translateX(clamp(48px, 9vw, 110px));
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.alt-media.reveal-slide.visible .product-shot {
  opacity: 1;
  transform: translateX(0) scale(1.02);
}
.alt-media--labels { justify-content: flex-start; }
.alt-content { max-width: 520px; }
.alt-desc {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.order-icons {
  display: flex;
  gap: 24px;
  font-size: 4rem;
  line-height: 1;
}
.order-labels {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.order-labels li {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red);
  line-height: 1.1;
}

/* ==========================================================================
   SECTION CTA (menu link — no tile grid)
   ========================================================================== */
.section-cta {
  padding: var(--section-pad) 0;
  text-align: center;
}
.section-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.section-cta-desc {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   REVIEWS — airy stack
   ========================================================================== */
.section-reviews {
  padding: var(--section-pad) 0;
  background: var(--surface);
}
.reviews-badge {
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
  color: var(--text-body);
}
.reviews-stack {
  max-width: 720px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.review-quote {
  border-left: 3px solid var(--red);
  padding-left: 28px;
}
.review-quote p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 12px;
}
.review-quote cite {
  font-family: 'Anton', sans-serif;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.center-cta { text-align: center; }
.reviews-cta { justify-content: center; }

/* ==========================================================================
   DETAIL LABELS — Anton uppercase labels site-wide
   ========================================================================== */
.detail-label {
  font-family: 'Anton', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  display: block;
  margin-bottom: 4px;
}

/* ==========================================================================
   PROMO BAND — trust bar + daily special (unified clean light section)
   ========================================================================== */
.promo-band {
  position: relative;
  padding: 0 0 clamp(64px, 10vw, 96px);
  background: #ffffff;
  overflow: hidden;
}
.promo-band-content {
  position: relative;
  z-index: 1;
}
.promo-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 0;
  list-style: none;
  padding: 20px 0;
  margin-bottom: clamp(32px, 5vw, 48px);
  border-bottom: 1px solid #e8e8e8;
}
.promo-trust li {
  font-family: 'Anton', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #222;
  padding: 0 clamp(16px, 3vw, 28px);
  position: relative;
}
.promo-trust li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: #ccc;
}
.promo-trust-val {
  color: var(--red);
}
.daily-special-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(280px, 1.4fr);
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
}
.daily-special-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: clamp(0px, 2vw, 16px);
}
.price-stack {
  display: flex;
  align-items: flex-start;
  line-height: 0.85;
  color: var(--red);
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
}
.price-dollar {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.35em;
  margin-right: 2px;
}
.price-amount {
  font-size: clamp(5rem, 14vw, 9rem);
  letter-spacing: 0.02em;
}
.price-cents {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-top: 0.5em;
  margin-left: 2px;
}
.price-cents sup { font-size: 0.65em; line-height: 0; }
.price-tagline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
  line-height: 1.1;
}
.price-tax {
  font-family: 'Anton', sans-serif;
  font-size: 0.75rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.daily-special-card {
  position: relative;
  background: var(--red);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 36px) clamp(100px, 14vw, 140px);
  min-height: 220px;
  box-shadow: 0 20px 50px rgba(196, 20, 20, 0.35);
  overflow: visible;
}
.daily-special-day,
.daily-special-label {
  font-family: 'Anton', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.daily-special-name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 10px;
  max-width: 85%;
}
.daily-special-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 55%;
  margin-bottom: 20px;
}
.btn-daily {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: #111;
  font-family: 'Anton', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 50px;
  min-height: 48px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 3;
}
.btn-daily:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.daily-special-food {
  position: absolute;
  right: clamp(-10px, 2vw, 20px);
  bottom: clamp(-50px, -6vw, -30px);
  width: clamp(200px, 38vw, 380px);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.promo-band.visible .daily-special-food {
  transform: translateY(-6px);
}
.daily-special-food img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ==========================================================================
   SIGNATURE ITEMS
   ========================================================================== */
.sig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sig-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.sig-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.5);
}
.sig-card .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.sig-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.sig-card:hover .thumb img { transform: scale(1.06); }
.sig-card .body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.sig-card h3 { font-size: var(--fs-h3); text-transform: uppercase; }
.sig-card p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.sig-card .explore { color: var(--red); font-weight: 600; font-size: 0.9rem; }

/* ==========================================================================
   ABOUT STRIP
   ========================================================================== */
.about-strip .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-strip .media img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: box-shadow 0.3s;
}
.about-strip .media img:hover { box-shadow: 0 0 0 2px var(--red), 0 20px 40px rgba(196,20,20,0.25); }
.about-strip h2 { font-size: var(--fs-h2); text-transform: uppercase; margin-bottom: 18px; }
.about-strip p { color: var(--muted); margin-bottom: 26px; }

/* ==========================================================================
   MENU PREVIEW
   ========================================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.cat-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.22s, border-color 0.22s, background 0.22s;
}
.cat-tile:hover { transform: translateY(-4px); border-color: var(--red); background: #201414; }
.cat-tile span:first-child {
  font-family: 'Quinia Retro Demo', sans-serif;
  text-transform: uppercase;
  font-size: 1.35rem;
}
.cat-tile .arrow { color: var(--red); font-size: 1.5rem; transition: transform 0.22s; }
.cat-tile:hover .arrow { transform: translateX(6px); }

/* ==========================================================================
   ORDER ONLINE
   ========================================================================== */
.order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.order-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.22s, border-color 0.22s;
}
.order-card:hover { transform: translateY(-6px); border-color: var(--red); }
.order-card .icon { font-size: 2.6rem; line-height: 1; }
.order-card h3 { font-size: var(--fs-h3); text-transform: uppercase; }
.order-card p { color: var(--muted); font-size: 0.92rem; flex: 1; }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.google-badge {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: var(--white);
}
.google-badge .stars { color: var(--gold); letter-spacing: 2px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.45); }
.review-card .quote-mark {
  font-family: 'Quinia Retro Demo', sans-serif;
  color: var(--red);
  font-size: 3.5rem;
  line-height: 0.6;
  display: block;
  margin-bottom: 8px;
}
.review-card p { color: var(--white); margin-bottom: 16px; }
.review-card .reviewer { color: var(--muted); font-size: 0.85rem; }
.review-card .reviewer strong { color: var(--gold); font-weight: 600; }

/* ==========================================================================
   HOURS + MAP
   ========================================================================== */
.hours-map .grid2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
.hours-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hours-card h3 { font-family: 'Anton', sans-serif; font-size: var(--fs-h3); text-transform: uppercase; letter-spacing: 0.04em; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
}
.hours-table td:last-child { text-align: right; color: var(--gold); }
.open-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.open-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--muted); }
.open-indicator.is-open .open-dot { background: #2ecc71; box-shadow: 0 0 8px #2ecc71; }
.open-indicator.is-open { color: #2ecc71; }
.contact-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.contact-line a { color: var(--white); font-family: 'Anton', sans-serif; letter-spacing: 0.03em; }
.contact-line a:hover { color: var(--red); }
.contact-line > span:not(.detail-label) {
  font-family: 'Anton', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--text-body);
}
.map-embed iframe { width: 100%; height: 100%; min-height: 400px; border: 0; border-radius: var(--radius); }

/* ==========================================================================
   LINKS PAGE (link-in-bio)
   ========================================================================== */
.links-page {
  position: relative;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) 0 72px;
  overflow: hidden;
}
.links-page-bg-wrap {
  position: absolute;
  inset: -28px;
  overflow: hidden;
  z-index: 0;
}
.links-page-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  filter: blur(8px);
}
.links-page-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.74);
  pointer-events: none;
}
.links-page-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.links-header {
  text-align: center;
  margin-bottom: 36px;
}
.links-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 18px;
}
.links-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.links-tagline {
  color: var(--muted);
  font-size: 0.95rem;
}
.links-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
  color: var(--white);
}
.link-card:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  background: rgba(196, 20, 20, 0.18);
}
.link-card-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
}
.link-card-icon--brand {
  width: 42px;
  height: 42px;
}
.link-card-icon--instagram {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.link-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.link-card-label {
  font-family: 'Anton', sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.link-card-sub {
  font-size: 0.9rem;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}
.links-group-label {
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 10px;
  text-align: center;
}
.links-delivery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.link-card--delivery {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 18px 12px;
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 70px) 0 70px;
  text-align: center;
  background: var(--surface);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero.has-image::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
}
.page-hero .inner { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: var(--fs-h1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red);
}
.page-hero p { color: var(--muted); margin-top: 12px; }

/* ==========================================================================
   MENU PAGE
   ========================================================================== */
.menu-tabs {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.menu-tabs-inner {
  display: flex;
  gap: 8px;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  white-space: nowrap;
}
.menu-tab {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex: 0 0 auto;
}
.menu-tab:hover { border-color: var(--red); }
.menu-tab.active { background: var(--red); color: var(--white); border-color: var(--red); }

.menu-category { padding: 60px 0 20px; scroll-margin-top: calc(var(--nav-h) + 70px); }
.menu-cat-head { margin-bottom: 28px; }
.menu-cat-head h2 {
  font-family: 'Anton', sans-serif;
  font-size: var(--fs-display);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--red);
}
.menu-cat-note { color: var(--muted); font-style: italic; margin-top: 12px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.menu-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.menu-item:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: 0 14px 30px rgba(0,0,0,0.45); }
.menu-item .thumb { height: 200px; overflow: hidden; }
.menu-item .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.menu-item:hover .thumb img { transform: scale(1.06); }
.menu-item .body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.menu-item .item-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.menu-item h3 { font-family: 'Anton', sans-serif; font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.04em; }
.menu-item .price {
  color: var(--gold);
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.menu-item .ingredients { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

.menu-cta-banner {
  margin-top: 70px;
  background: var(--red);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
}
.menu-cta-banner h2 { font-size: var(--fs-h2); text-transform: uppercase; margin-bottom: 20px; color: #fff; }
.menu-cta-banner .btn-outline { border-color: #fff; }
.menu-cta-banner .btn-outline:hover { background: #fff; color: var(--red); }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-story .grid2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.about-story .media img { border-radius: var(--radius); width: 100%; object-fit: cover; }
.about-story p { color: var(--muted); font-size: 1.05rem; }

.values-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  list-style: none;
}
.values-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.values-list .values-icon { display: none; }
.values-list strong {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.values-list p { color: var(--text-body); font-size: 0.95rem; line-height: 1.65; }
.value-card {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 22px;
  transition: transform 0.22s, border-color 0.22s;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--red); }
.value-card .icon { font-size: 2.4rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1.2rem; text-transform: uppercase; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 0.9rem; }

.about-banner {
  position: relative;
  padding: 90px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.about-banner::before { content: ''; position: absolute; inset: 0; background: rgba(196,20,20,0.55); }
.about-banner .inner { position: relative; z-index: 2; }
.about-banner h2 {
  font-size: var(--fs-h1);
  text-transform: uppercase;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
}
.about-cta { text-align: center; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
.contact-details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.contact-block .detail-label { margin-bottom: 2px; }
.contact-block p, .contact-block a {
  color: var(--text-body);
  font-family: 'Anton', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.contact-block a:hover { color: var(--red); }
.contact-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.contact-actions .btn-primary, .contact-actions .btn-outline { justify-content: center; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  margin-top: 40px;
}
.contact-form h2 { font-family: 'Anton', sans-serif; font-size: var(--fs-h3); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; color: var(--muted); }
.form-field input, .form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--red); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-notice { margin-bottom: 18px; padding: 12px 16px; border-radius: var(--radius-sm); }
.form-notice.success { background: rgba(46,204,113,0.15); color: #2ecc71; border: 1px solid rgba(46,204,113,0.4); }
.form-notice.error { background: rgba(196,20,20,0.15); color: #ff6b6b; border: 1px solid rgba(196,20,20,0.4); }

/* ==========================================================================
   FAQ PAGE
   ========================================================================== */
.faq-section .container {
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
}
.faq-intro {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
  color: var(--text-body);
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  line-height: 1.7;
}
.faq-intro strong {
  font-family: 'Anton', sans-serif;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.03em;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(196, 20, 20, 0.45); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: clamp(16px, 4vw, 22px);
  min-height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.faq-q-text {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(0.88rem, 3.8vw, 1.05rem);
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: var(--white);
  transition: color 0.2s;
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.faq-q:hover .faq-q-text,
.faq-item.open .faq-q-text { color: var(--red); }
.faq-toggle {
  color: var(--red);
  font-size: clamp(1.4rem, 5vw, 1.6rem);
  line-height: 1;
  flex: 0 0 auto;
  margin-top: 2px;
  transition: transform 0.25s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 clamp(16px, 4vw, 22px) clamp(18px, 4vw, 22px);
  color: var(--text-body);
  font-size: clamp(0.92rem, 2.8vw, 1rem);
  line-height: 1.7;
}
.faq-cta {
  margin-top: clamp(36px, 8vw, 48px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.faq-cta-text {
  font-family: 'Anton', sans-serif;
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-body);
  max-width: 480px;
  line-height: 1.4;
}
.faq-cta .btn-primary {
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-wordmark {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red);
  margin-bottom: 14px;
  line-height: 1;
}
.footer-tagline {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.footer-col h4 {
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  color: var(--white);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-family: 'Anton', sans-serif;
  color: var(--text-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--red); }
.footer-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.footer-detail > span:not(.detail-label),
.footer-detail > a {
  font-family: 'Anton', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--text-body);
  line-height: 1.5;
}
.footer-detail a:hover { color: var(--red); }
.footer-actions { margin-top: 8px; }
.social-link {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.social-link:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'Anton', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.footer-domain { color: var(--red); }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .hero-full {
    min-height: auto;
    padding-bottom: 48px;
  }
  .hero-full-bg-wrap {
    inset: -20px;
  }
  .hero-full-bg {
    background-position: center;
    transform: scale(1.06);
    filter: blur(5px);
  }
  .hero-full-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-full-media {
    order: 2;
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-pasticcio-duo {
    gap: 0;
    max-width: 480px;
  }
  .hero-pasticcio-figure--main {
    width: min(52vw, 270px);
  }
  .hero-pasticcio-figure--bowl {
    width: min(42vw, 205px);
    margin-left: clamp(-18px, -4vw, -10px);
    transform: translateY(-6px) scale(1.05);
  }
  .hero-full-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.65) 45%,
      rgba(0, 0, 0, 0.35) 70%,
      rgba(0, 0, 0, 0.15) 100%
    );
  }
  .hero-full-content {
    max-width: 100%;
    text-align: left;
  }
  .hero-full .btn-row { justify-content: flex-start; }
  .hero-full .order-dropdown { left: 0; right: auto; }
}

@media (max-width: 1024px) {
  .hero-split-inner,
  .alt-section-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .alt-section--reverse .alt-section-inner { direction: ltr; }
  .hero-split-media { order: -1; }
  .alt-media--labels { justify-content: center; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .alt-section { padding: 72px 0; }
  .hero-split { min-height: auto; padding-bottom: 72px; }
  .daily-special-inner,
  .promo-band .daily-special-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .daily-special-price { align-items: center; text-align: center; padding-left: 0; }
  .daily-special-desc { max-width: 100%; }
  .daily-special-name { max-width: 100%; }
  .daily-special-card {
    padding-bottom: clamp(120px, 30vw, 160px);
  }
  .daily-special-food {
    right: 50%;
    transform: translateX(50%);
    width: min(280px, 75vw);
  }
  .promo-band.visible .daily-special-food {
    transform: translateX(50%) translateY(-6px);
  }
  .promo-trust li:not(:last-child)::after { display: none; }
  .promo-trust li { padding: 6px 12px; }
  .about-strip .grid2,
  .about-story .grid2,
  .hours-map .grid2,
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-embed iframe { min-height: 320px; }
  :root { --nav-h: 60px; }
  .faq-section { padding: 56px 0 64px; }
  .faq-intro { margin-bottom: 28px; text-align: left; }
  .faq-list { gap: 10px; }
  .faq-q { min-height: 48px; }
  .page-hero { padding-bottom: 48px; }
  .page-hero p { font-size: 0.95rem; padding: 0 4px; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn-primary,
  .btn-row .btn-outline,
  .btn-row .order-wrap { width: 100%; }
  .btn-row .btn-primary,
  .btn-row .btn-outline { justify-content: center; }
  .btn-row .order-wrap .order-now-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .nav-logo img { height: 42px; }
  .menu-label { font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-full-bg,
  .links-page-bg {
    filter: none;
    transform: none;
  }
  .reveal,
  .reveal-slide .product-shot { opacity: 1; transform: none; }
}
