/* =================================================================
   El Paisano Mexican Food & Bakery — stylesheet
   Vanilla CSS. Mobile-first. Edit color tokens below to rebrand.
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Rich Mexican-inspired palette */
  --red:        #C1272D;   /* chili red (primary brand) */
  --red-dark:   #9a1d22;
  --terracotta: #E07A3F;   /* warm clay */
  --gold:       #F2A900;   /* marigold / sun */
  --green:      #2E7D32;   /* cactus / lime */
  --green-deep: #1f5c24;
  --cream:      #FCF6EC;   /* warm paper */
  --cream-2:    #F6ECD9;
  --ink:        #2A1B14;   /* warm near-black */
  --ink-soft:   #5b463c;
  --white:      #ffffff;

  --grad-warm: linear-gradient(135deg, var(--gold) 0%, var(--terracotta) 55%, var(--red) 100%);
  --grad-fiesta: linear-gradient(120deg, var(--red) 0%, var(--terracotta) 50%, var(--gold) 100%);

  --shadow-sm: 0 4px 14px rgba(42, 27, 20, 0.10);
  --shadow-md: 0 12px 34px rgba(42, 27, 20, 0.16);
  --shadow-lg: 0 26px 60px rgba(42, 27, 20, 0.24);

  --radius:    18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* clip (not hidden) prevents horizontal scroll WITHOUT making <body> a
     scroll container, which would break sticky nav / scroll animations. */
  overflow-x: clip;
}

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

h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; font-weight: 800; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }

.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .8rem 1.6rem; border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.08rem; }
/* Primary CTA: clean solid red fill, gold border, white text. */
.btn--primary { background: var(--red); color: #fff; border-color: var(--gold); box-shadow: 0 8px 22px rgba(193,39,45,0.30); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(193,39,45,0.42); }
.btn--ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.7); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }
.btn--light { background: #fff; color: var(--red); box-shadow: var(--shadow-md); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav__brand { display: flex; align-items: center; gap: .6rem; }
/* Logo PNG has a white background, so present it as a tidy rounded badge. */
.nav__logo { height: 54px; width: auto; object-fit: contain; background: #fff; border-radius: 10px; padding: 3px 6px; box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.nav__brand-text {
  font-family: var(--font-display); font-weight: 900; font-size: 1.35rem; color: #fff;
  letter-spacing: .5px; text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav__link { color: #fff; font-weight: 500; position: relative; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__cta { color: #fff; }

/* Scrolled state — solid warm bar */
.nav.is-scrolled {
  background: rgba(252, 246, 236, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav.is-scrolled .nav__brand-text { color: var(--red); text-shadow: none; }
.nav.is-scrolled .nav__link { color: var(--ink); text-shadow: none; }
.nav.is-scrolled .nav__logo { box-shadow: 0 2px 8px rgba(0,0,0,.12); }

/* Mobile toggle */
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer;
  padding: 8px; z-index: 110;
}
.nav__toggle span { width: 26px; height: 3px; border-radius: 3px; background: #fff; transition: .3s var(--ease); }
.nav.is-scrolled .nav__toggle span { background: var(--ink); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: hidden; color: #fff;
}
.hero__bg { position: absolute; inset: -8% 0; z-index: -2; will-change: transform; }
.hero__bg img { width: 100%; height: 116%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(20,12,8,.72) 0%, rgba(20,12,8,.45) 55%, rgba(20,12,8,.30) 100%),
    radial-gradient(circle at 78% 18%, rgba(242,169,0,.22), transparent 45%),
    linear-gradient(180deg, rgba(28,18,12,.55) 0%, rgba(28,18,12,.50) 35%, rgba(28,18,12,.85) 100%);
}
.hero__content { max-width: 820px; padding-block: 3rem; }
.hero__eyebrow {
  display: inline-block; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,.35);
  padding: .45rem 1rem; border-radius: var(--radius-pill); font-size: .9rem; font-weight: 500;
  backdrop-filter: blur(6px); margin-bottom: 1.4rem;
}
.hero__title { font-size: clamp(2.4rem, 6.5vw, 4.6rem); font-weight: 900; text-shadow: 0 4px 24px rgba(0,0,0,.4); }
.hero__subtitle { font-size: clamp(1.05rem, 2.2vw, 1.35rem); max-width: 620px; margin-top: 1.3rem; color: rgba(255,255,255,.92); font-weight: 300; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin-top: 2.8rem; }
.hero__badges li { display: flex; flex-direction: column; }
.hero__badges strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }
.hero__badges span { font-size: .85rem; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: 1px; }

.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); }
.hero__scroll span {
  display: block; width: 26px; height: 44px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px; position: relative;
}
.hero__scroll span::after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 4px;
  background: #fff; transform: translateX(-50%); animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ---------- Internal page header (subpages) ---------- */
.page-hero {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  padding: calc(var(--nav-h) + clamp(2.5rem, 7vw, 5rem)) 0 clamp(2.5rem, 6vw, 4.5rem);
  background: var(--grad-fiesta);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,.06) 0 20px, transparent 20px 40px);
}
.page-hero__inner { position: relative; max-width: 760px; margin-inline: auto; }
.page-hero__eyebrow {
  display: inline-block; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,.4);
  padding: .45rem 1rem; border-radius: var(--radius-pill); font-size: .85rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.2rem;
}
.page-hero__title { font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 900; color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,.25); }
.page-hero__lead { margin-top: 1rem; font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,.95); font-weight: 300; }

/* ---------- Contact page ---------- */
.contact__grid { display: grid; gap: clamp(1.2rem, 3vw, 2rem); grid-template-columns: 1fr; }
.contact__info { display: grid; gap: 1.2rem; align-content: start; }
.contact__map {
  position: relative; min-height: 340px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); display: block; color: #fff;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.contact__map:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact__map img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.contact__map:hover img { transform: scale(1.06); }
.contact__map-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  gap: .5rem; padding: 1.5rem; z-index: 1;
  background: linear-gradient(180deg, rgba(42,27,20,0) 35%, rgba(42,27,20,.85) 100%);
}
.contact__map-label { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; max-width: 22ch; }
.contact__map-cta { font-weight: 600; background: rgba(0,0,0,.22); padding: .5rem 1rem; border-radius: var(--radius-pill); }

@media (min-width: 860px) {
  .contact__grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
}

/* ---------- Delivery areas page ---------- */
.areas__intro { max-width: 760px; margin: 0 auto clamp(2.2rem, 5vw, 3.2rem); text-align: center; }
.areas__intro p { color: var(--ink-soft); font-size: 1.08rem; }
.areas__intro p + p { margin-top: 1rem; }
.areas__radius {
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.4rem;
  background: rgba(46,125,50,.12); color: var(--green-deep); font-weight: 600;
  padding: .55rem 1.1rem; border-radius: var(--radius-pill); font-size: .95rem;
}
.areas__grid {
  display: grid; gap: clamp(1rem, 2.5vw, 1.6rem);
  grid-template-columns: repeat(1, 1fr);
}
.area-card {
  background: #fff; border-radius: var(--radius); padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(42,27,20,.06);
  border-top: 4px solid var(--red);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.area-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.area-card h3 { font-size: 1.35rem; color: var(--ink); display: flex; align-items: center; gap: .5rem; }
.area-card h3::before { content: "📍"; font-size: 1.1rem; }
.area-card p { margin-top: .55rem; color: var(--ink-soft); font-size: .96rem; flex: 1; }
.area-card__tag {
  align-self: flex-start; margin-top: 1.1rem; font-size: .74rem; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase; color: var(--green-deep); background: rgba(46,125,50,.12);
  padding: .32rem .8rem; border-radius: var(--radius-pill);
}
.area-card__cta { margin-top: 1.1rem; font-weight: 600; color: var(--red); font-size: .92rem; transition: gap .2s var(--ease); }
.area-card:hover .area-card__cta { text-decoration: underline; }
.areas__note { text-align: center; margin-top: clamp(2rem, 5vw, 3rem); color: var(--ink-soft); }
.areas__note a { color: var(--red); font-weight: 600; text-decoration: underline; }

@media (min-width: 620px)  { .areas__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .areas__grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Order-direct / support-local pages ---------- */
.support__intro { max-width: 840px; margin: 0 auto clamp(2.2rem, 5vw, 3.2rem); text-align: center; }
.support__intro p { color: var(--ink-soft); font-size: 1.08rem; }
.support__intro p + p { margin-top: 1rem; }

.stats { display: grid; gap: clamp(1rem, 2.5vw, 1.6rem); grid-template-columns: 1fr; max-width: 980px; margin-inline: auto; }
.stat-card {
  background: #fff; border-radius: var(--radius); padding: 1.9rem 1.4rem; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(42,27,20,.06);
}
.stat-card__num { font-family: var(--font-display); font-size: clamp(2.1rem, 5vw, 2.9rem); font-weight: 900; line-height: 1; }
.stat-card--bad  .stat-card__num { color: var(--red); }
.stat-card--good .stat-card__num { color: var(--green-deep); }
.stat-card__label { margin-top: .65rem; color: var(--ink-soft); font-weight: 500; font-size: .97rem; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(3, 1fr); } }

.compare { display: grid; gap: clamp(1rem, 2.5vw, 1.6rem); grid-template-columns: 1fr; max-width: 980px; margin: clamp(2.2rem, 5vw, 3.2rem) auto 0; }
.compare-card { border-radius: var(--radius-lg); padding: 1.9rem; box-shadow: var(--shadow-md); }
.compare-card h3 { font-size: 1.4rem; display: flex; align-items: center; gap: .5rem; }
.compare-card__sub { margin-top: .3rem; font-size: .95rem; color: var(--ink-soft); }
.compare-card ul { display: grid; gap: .8rem; margin-top: 1.2rem; }
.compare-card li { display: flex; gap: .65rem; align-items: flex-start; color: var(--ink-soft); }
.compare-card li b { color: var(--ink); font-weight: 600; }
.compare-card li .mark { flex: none; font-weight: 700; line-height: 1.5; }
.compare-card--good { background: #fff; border-top: 5px solid var(--green); }
.compare-card--good h3 { color: var(--green-deep); }
.compare-card--good .mark { color: var(--green); }
.compare-card--bad { background: var(--cream-2); border-top: 5px solid var(--ink-soft); }
.compare-card--bad h3 { color: var(--ink); }
.compare-card--bad .mark { color: var(--red); }
@media (min-width: 780px) { .compare { grid-template-columns: 1fr 1fr; } }

.support__cta { text-align: center; margin-top: clamp(2.2rem, 5vw, 3.2rem); }

/* ---------- AI summary strip ---------- */
.summary { background: var(--ink); color: var(--cream); padding: clamp(2rem, 4vw, 2.6rem) 0; }
.summary__text { max-width: 980px; margin-inline: auto; text-align: center; font-size: clamp(1rem, 1.8vw, 1.18rem); font-weight: 300; }
.summary__text strong { color: var(--gold); font-weight: 600; }

/* ---------- Section headers ---------- */
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.2rem, 5vw, 3.5rem); }
.section__eyebrow {
  display: inline-block; color: var(--red); font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  font-size: .82rem; margin-bottom: .7rem;
}
.section__title { font-size: clamp(1.9rem, 4.5vw, 3rem); color: var(--ink); }
.section__lead { margin-top: 1rem; color: var(--ink-soft); font-size: 1.08rem; }

/* ---------- Food showcase ---------- */
.showcase { background:
  radial-gradient(circle at 10% 0%, var(--cream-2), transparent 40%),
  var(--cream); }
.showcase__grid {
  display: grid; gap: clamp(1.1rem, 2.5vw, 1.8rem);
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr; /* equal-height rows so every card matches */
}
.food-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-md); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  transform-style: preserve-3d;
}
.food-card:hover { box-shadow: var(--shadow-lg); }
.food-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.food-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.food-card:hover .food-card__media img { transform: scale(1.08); }
.food-card__body { padding: 1.4rem 1.5rem 1.7rem; }
.food-card__body h3 { font-size: 1.5rem; color: var(--ink); }
.food-card__body p { margin-top: .5rem; color: var(--ink-soft); font-size: .97rem; }
.food-card__tag {
  display: inline-block; margin-top: 1rem; font-size: .76rem; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase; color: var(--green-deep); background: rgba(46,125,50,.12);
  padding: .35rem .85rem; border-radius: var(--radius-pill);
}
.food-card__tag--hot { color: var(--red); background: rgba(193,39,45,.12); }
.showcase__cta { text-align: center; margin-top: clamp(2.2rem, 5vw, 3.2rem); }

/* uniform 3-up grid; equal-height rows keep every card the same size */
@media (min-width: 760px) {
  .showcase__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; }
}
.food-card { display: flex; flex-direction: column; }
.food-card__body { flex: 1; }

/* ---------- About ---------- */
.about { background: var(--white); }
.about__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; grid-template-columns: 1fr; }
.about__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; transition: transform .8s var(--ease); }
.about__media:hover img { transform: scale(1.05); }
.about__media-badge {
  position: absolute; left: 18px; bottom: 18px; background: var(--grad-fiesta); color: #fff;
  padding: .8rem 1.2rem; border-radius: var(--radius); box-shadow: var(--shadow-md); line-height: 1.2;
}
.about__media-badge strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.about__media-badge span { font-size: .85rem; opacity: .9; }
.about__content p { margin-top: 1.1rem; color: var(--ink-soft); }
.about__list { margin-top: 1.6rem; display: grid; gap: .7rem; }
.about__list li { font-weight: 500; color: var(--ink); }

@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1fr 1.1fr; }
}

/* ---------- Location & hours ---------- */
.location { background:
  linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.location__grid { display: grid; gap: clamp(1.2rem, 3vw, 2rem); grid-template-columns: 1fr; }
.location__map {
  position: relative; min-height: 320px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); display: block; color: #fff;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 14px, transparent 14px 28px),
    radial-gradient(circle at 30% 30%, rgba(242,169,0,.4), transparent 50%),
    var(--grad-warm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.location__map:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
/* Photo variant: real storefront image with a gradient scrim + label */
.location__map--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.location__map--photo:hover img { transform: scale(1.06); }
.location__map--photo .location__map-inner {
  justify-content: flex-end; align-items: flex-start; text-align: left;
  background: linear-gradient(180deg, rgba(42,27,20,0) 35%, rgba(42,27,20,.85) 100%);
}
.location__map--photo .location__pin { font-size: 2rem; }
.location__map-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .6rem; text-align: center; padding: 1.5rem; z-index: 1;
}
.location__pin { font-size: 3rem; filter: drop-shadow(0 6px 12px rgba(0,0,0,.3)); animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.location__map-label { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; max-width: 22ch; }
.location__map-cta { font-weight: 600; background: rgba(0,0,0,.18); padding: .5rem 1rem; border-radius: var(--radius-pill); }

.location__info { display: grid; gap: 1.2rem; align-content: start; }
.info-card { background: #fff; border-radius: var(--radius); padding: 1.6rem 1.7rem; box-shadow: var(--shadow-sm); }
.info-card h3 { font-size: 1.35rem; color: var(--red); margin-bottom: .9rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed rgba(42,27,20,.15); font-weight: 500; }
.hours li:last-child { border-bottom: 0; }
.info-card__row { display: flex; align-items: center; gap: .6rem; margin-bottom: .7rem; color: var(--ink-soft); }
.info-card__row a:hover { color: var(--red); text-decoration: underline; }
.info-card .btn { margin-top: .6rem; }

@media (min-width: 860px) {
  .location__grid { grid-template-columns: 1.2fr 1fr; }
}

/* ---------- Order CTA banner ---------- */
.order-cta {
  position: relative; padding: clamp(3.5rem, 8vw, 6rem) 0; text-align: center; color: #fff;
  background: var(--grad-fiesta);
  overflow: hidden;
}
.order-cta::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,.06) 0 20px, transparent 20px 40px);
}
.order-cta__inner { position: relative; max-width: 720px; margin-inline: auto; }
.order-cta h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); color: #fff; }
.order-cta p { margin: 1rem 0 2rem; font-size: 1.1rem; color: rgba(255,255,255,.95); font-weight: 300; }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream); }
.gallery__grid {
  display: grid; gap: clamp(.6rem, 1.5vw, 1rem);
  grid-template-columns: repeat(2, 1fr);
}
.gallery__item {
  margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1; cursor: pointer;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s var(--ease); }
.gallery__item:hover img { transform: scale(1.1); filter: saturate(1.1); }
@media (min-width: 640px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) {
  .gallery__grid { grid-template-columns: repeat(5, 1fr); }
  /* feature the first two tiles larger for an editorial mosaic */
  .gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
  .gallery__item:nth-child(8) { grid-row: span 2; aspect-ratio: auto; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq__list { max-width: 820px; margin-inline: auto; display: grid; gap: 1rem; }
.faq__item {
  background: var(--cream); border-radius: var(--radius); padding: .3rem 1.4rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(42,27,20,.06);
}
.faq__item summary {
  cursor: pointer; list-style: none; padding: 1.1rem 2.2rem 1.1rem 0; font-weight: 600; font-size: 1.08rem;
  position: relative; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--red); transition: transform .3s var(--ease); line-height: 1;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 0 1.2rem; color: var(--ink-soft); }
.faq__item a { color: var(--red); text-decoration: underline; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--cream); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer__logo { height: 64px; width: auto; object-fit: contain; margin-bottom: 1rem; background: #fff; border-radius: 10px; padding: 4px 8px; }
.footer__brand p { color: rgba(252,246,236,.7); max-width: 32ch; }
.footer__col h3 { font-size: 1.15rem; color: var(--gold); margin-bottom: .9rem; }
.footer address { font-style: normal; color: rgba(252,246,236,.8); line-height: 1.9; }
.footer__col p { color: rgba(252,246,236,.8); }
.footer__links { display: grid; gap: .55rem; }
.footer__links a { color: rgba(252,246,236,.8); }
.footer__links a:hover, .footer address a:hover { color: var(--gold); }
.footer__bottom { margin-top: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid rgba(255,255,255,.1); padding: 1.4rem 0; }
.footer__bottom-inner { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; align-items: center; font-size: .88rem; color: rgba(252,246,236,.6); }

@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

/* ---------- Floating mobile order button ---------- */
.floating-order {
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  background: var(--red); color: #fff; border: 2px solid var(--gold); font-weight: 600;
  padding: .9rem 1.3rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-lg);
  transform: translateY(140%); transition: transform .4s var(--ease), background .25s var(--ease);
}
.floating-order.is-visible { transform: translateY(0); }
.floating-order:hover { background: var(--red-dark); }

/* ---------- Scroll reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
/* stagger children */
.hero__content .reveal:nth-child(2) { transition-delay: .08s; }
.hero__content .reveal:nth-child(3) { transition-delay: .16s; }
.hero__content .reveal:nth-child(4) { transition-delay: .24s; }

/* ---------- Responsive nav (mobile) ---------- */
@media (max-width: 880px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 80vw); height: 100vh;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: var(--cream); padding: 2.5rem; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .4s var(--ease);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__link { color: var(--ink); font-size: 1.2rem; text-shadow: none; }
  .nav__cta { color: #fff; }
  .nav.is-scrolled .nav__toggle span { background: var(--ink); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg { transform: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}
