/* ==========================================================================
   Bebo's Pizza — Cinematic Brand Site
   Dark-mode dominant. Warm Puerto Rican accents. Apple-style motion.
   ========================================================================== */

/* ----- Tokens ------------------------------------------------------------ */
:root {
  /* Palette */
  --bg:            #0a0806;
  --bg-elevated:   #120e0b;
  --surface:       #1a1411;
  --surface-2:     #221a15;
  --border:        rgba(255, 238, 210, 0.08);
  --border-strong: rgba(255, 238, 210, 0.16);

  --text:          #f6ece0;
  --text-muted:    #a8998a;
  --text-dim:      #6b5f52;

  --accent:        #e63946;          /* PR flag red */
  --accent-warm:   #f4a261;          /* Warm gold */
  --accent-hot:    #ff6b3d;          /* Orange ember */
  --accent-glow:   rgba(230, 57, 70, 0.28);
  --gold-glow:     rgba(244, 162, 97, 0.18);

  /* Typography */
  --font-display:  "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  --font-body:     "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Sizing */
  --max-w:         1280px;
  --max-w-narrow:  960px;
  --gutter:        clamp(1.25rem, 4vw, 3rem);

  /* Motion */
  --ease:          cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --dur-s:         280ms;
  --dur-m:         600ms;
  --dur-l:         1100ms;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* Ambient page grain — very subtle film texture */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* ----- Typography -------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--text);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.h-xl { font-size: clamp(3.4rem, 11vw, 9rem);   letter-spacing: -0.045em; line-height: 0.95; }
.h-lg { font-size: clamp(2.5rem, 7vw, 5.5rem);  letter-spacing: -0.035em; line-height: 1.0; }
.h-md { font-size: clamp(1.75rem, 3.5vw, 2.75rem); letter-spacing: -0.025em; line-height: 1.1; }

.body-lg {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 58ch;
}

.accent-word { color: var(--accent-warm); }

/* ----- Layout ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.container-narrow {
  width: 100%;
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

section { position: relative; z-index: 2; }

/* ----- Navigation -------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: padding var(--dur-s) var(--ease),
              background var(--dur-s) var(--ease),
              backdrop-filter var(--dur-s) var(--ease),
              border-color var(--dur-s) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 0.6rem 0;
  background: rgba(10, 8, 6, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.nav__brand {
  display: flex; align-items: center; gap: 0.75rem;
}
.nav__logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff1;
}
.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.nav__wordmark span { color: var(--accent); }
.nav__links {
  display: flex; align-items: center; gap: 2rem;
}
.nav__link {
  font-size: 0.94rem;
  color: var(--text-muted);
  transition: color var(--dur-s) var(--ease);
  position: relative;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-s) var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--text); }

/* Mobile nav */
.nav__toggle {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: 8px;
}
.nav__toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text); position: relative;
  transition: transform var(--dur-s) var(--ease), background var(--dur-s) var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 1.5px; background: var(--text);
  transition: transform var(--dur-s) var(--ease), top var(--dur-s) var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top:  6px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav__toggle span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 760px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 64px 0 0 0;
    flex-direction: column; justify-content: center;
    gap: 2.25rem;
    background: rgba(10, 8, 6, 0.96);
    backdrop-filter: blur(28px);
    opacity: 0; pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--dur-s) var(--ease), transform var(--dur-s) var(--ease);
  }
  .nav__links .nav__link { font-size: 1.5rem; }
  .nav.is-open .nav__links { opacity: 1; pointer-events: auto; transform: none; }
}

/* ----- Buttons ----------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: transform var(--dur-s) var(--ease),
              background var(--dur-s) var(--ease),
              color var(--dur-s) var(--ease),
              box-shadow var(--dur-s) var(--ease);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}
.btn .btn__arrow {
  display: inline-block;
  transition: transform var(--dur-s) var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 30px -10px var(--accent-glow),
              inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn--primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, var(--accent-hot), var(--accent));
  opacity: 0; transition: opacity var(--dur-s) var(--ease);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px -8px var(--accent-glow),
              inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn--primary:hover::before { opacity: 1; }

.btn--ghost {
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover {
  background: var(--surface);
  border-color: rgba(255, 238, 210, 0.28);
  transform: translateY(-1px);
}

.btn--sm { padding: 0.65rem 1.25rem; font-size: 0.88rem; }

/* ----- Hero -------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 8vh;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0; z-index: -2;
  overflow: hidden;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 18s var(--ease-out) forwards;
  will-change: transform;
}
@keyframes kenburns {
  0%   { transform: scale(1.08) translate3d(0, 0, 0); }
  100% { transform: scale(1.16) translate3d(-1%, -1%, 0); }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 70% 40%, rgba(230, 57, 70, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(10,8,6,0.55) 0%, rgba(10,8,6,0.3) 40%, rgba(10,8,6,0.95) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 980px;
}
.hero__eyebrow {
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp 900ms var(--ease-out) 200ms forwards;
}
.hero__title {
  margin-bottom: 1.5rem;
}
.hero__title .word {
  display: inline-block;
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 1100ms var(--ease-out) forwards;
}
.hero__title .word:nth-child(1) { animation-delay: 380ms; }
.hero__title .word:nth-child(2) { animation-delay: 480ms; }
.hero__title .word:nth-child(3) { animation-delay: 580ms; color: var(--accent-warm); }
.hero__sub {
  margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 900ms var(--ease-out) 760ms forwards;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 0.9rem;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 900ms var(--ease-out) 900ms forwards;
}
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 900ms var(--ease-out) 1200ms forwards;
}
.hero__scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--accent-warm), transparent);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; top: -40%; left: 0; width: 1px; height: 40%;
  background: var(--text);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { top: -40%; }
  100% { top: 100%; }
}
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* ----- Marquee / trust strip -------------------------------------------- */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
  padding: 1.1rem 0;
}
.strip__track {
  display: flex; gap: 4rem;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}
.strip__item {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.strip__dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ----- Section scaffolding ----------------------------------------------- */
.section {
  padding: clamp(5rem, 12vw, 10rem) 0;
}
.section--tight { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }

.section__tag {
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1.75rem;
  color: var(--accent-warm);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.section__tag::before {
  content: ""; width: 28px; height: 1px; background: var(--accent-warm);
}

/* ----- About ------------------------------------------------------------- */
.about {
  background: var(--bg);
  position: relative;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: end;
}
@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
  }
}
.about__body p + p { margin-top: 1.1rem; }

/* ----- Cinematic scene (full-bleed image) -------------------------------- */
.scene {
  position: relative;
  height: clamp(60vh, 85vh, 820px);
  overflow: hidden;
  isolation: isolate;
}
.scene__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.4s var(--ease-out);
}
.scene.in .scene__img { transform: scale(1); }
.scene__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,8,6,0.75) 0%, rgba(10,8,6,0.2) 55%, rgba(10,8,6,0.1) 100%),
    linear-gradient(0deg,  rgba(10,8,6,0.5) 0%, rgba(10,8,6,0) 60%);
}
.scene__content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; align-items: center;
}
.scene__text {
  max-width: 560px;
}
.scene__text p { margin-top: 1.25rem; color: var(--text-muted); }

/* ----- Feature list (Built Different) ------------------------------------ */
.features {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}
@media (min-width: 900px) {
  .features__head { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: end; }
}
.features__list {
  display: grid; gap: 0;
  grid-template-columns: 1fr;
}
.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  transition: padding var(--dur-m) var(--ease);
}
.feature:last-child { border-bottom: 1px solid var(--border); }
.feature__num {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--accent-warm);
  padding-top: 0.25rem;
  min-width: 3rem;
}
.feature__title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.feature__body { color: var(--text-muted); max-width: 52ch; }

/* ----- Favorites cards --------------------------------------------------- */
.favorites__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
@media (min-width: 720px) {
  .favorites__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1100px) {
  .favorites__grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.75rem;
  }
  .favorites__grid .card:nth-child(1) { grid-column: span 7; }
  .favorites__grid .card:nth-child(2) { grid-column: span 5; }
  .favorites__grid .card:nth-child(3) { grid-column: span 5; }
  .favorites__grid .card:nth-child(4) { grid-column: span 7; }
}
.card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  isolation: isolate;
  cursor: default;
}
.card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter var(--dur-m) var(--ease);
}
.card:hover .card__img { transform: scale(1.06); filter: brightness(1.05); }
.card__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,8,6,0.92) 0%, rgba(10,8,6,0.25) 45%, rgba(10,8,6,0) 100%);
}
.card__content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.75rem clamp(1.25rem, 2.5vw, 2.25rem);
  display: grid; gap: 0.45rem;
}
.card__kicker {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-warm);
}
.card__title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.card__desc {
  color: rgba(246, 236, 224, 0.78);
  font-size: 0.98rem;
  max-width: 44ch;
}
.favorites__cta {
  margin-top: 3.5rem;
  text-align: center;
}

/* ----- Location pane ----------------------------------------------------- */
.locale {
  background: var(--bg);
}
.locale__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .locale__grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
}
.locale__map {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.locale__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(30%) contrast(0.92) brightness(0.85);
}
.locale__info dl {
  margin-top: 2.25rem;
  display: grid;
  gap: 1.5rem;
}
.locale__info dt {
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.4rem;
}
.locale__info dd {
  font-size: 1.12rem;
  color: var(--text);
  line-height: 1.55;
}
.locale__info dd span { color: var(--text-muted); display: block; font-size: 0.98rem; }
.locale__info .btn { margin-top: 2rem; }

/* ----- Final CTA --------------------------------------------------------- */
.cta {
  position: relative;
  padding: clamp(6rem, 14vw, 12rem) 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(80% 70% at 50% 100%, rgba(230, 57, 70, 0.2) 0%, transparent 60%),
              var(--bg);
}
.cta::before {
  content: ""; position: absolute; inset: -20% 0 auto 0; height: 60%;
  background: radial-gradient(50% 80% at 50% 0%, rgba(244, 162, 97, 0.1), transparent 70%);
  z-index: -1;
}
.cta h2 { margin-bottom: 1.25rem; }
.cta p  { margin: 0 auto 2.5rem; }
.cta .btn { min-width: 220px; justify-content: center; }

/* ----- Footer ------------------------------------------------------------ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 4rem 0 2rem;
  color: var(--text-muted);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (min-width: 1040px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1.1fr 1fr 1fr; gap: 2.25rem; }
}
.footer__brand {
  display: flex; flex-direction: column; gap: 1rem;
}
.footer__brand .footer__logo { width: 52px; height: 52px; border-radius: 50%; }
.footer__brand p { max-width: 28ch; font-size: 0.94rem; }

/* Social icons */
.footer ul.footer__socials {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  transition: color var(--dur-s) var(--ease),
              background var(--dur-s) var(--ease),
              border-color var(--dur-s) var(--ease),
              transform var(--dur-s) var(--ease);
}
.footer__socials a:hover {
  color: var(--bg);
  background: var(--accent-warm);
  border-color: var(--accent-warm);
  transform: translateY(-2px);
}
.footer__social-icon {
  width: 16px; height: 16px;
  fill: currentColor;
  display: block;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 1.25rem;
}
.footer ul { list-style: none; display: grid; gap: 0.65rem; }
.footer a { color: var(--text-muted); transition: color var(--dur-s) var(--ease); }
.footer a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: 0.86rem;
  color: var(--text-dim);
}

/* ----- Direct vs Third Party comparison ---------------------------------- */
.compare { background: var(--bg); }
.compare__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
}
@media (min-width: 900px) {
  .compare__intro { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.compare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media (min-width: 900px) {
  .compare__grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}
.compare__col {
  position: relative;
  padding: 2.5rem 2.25rem;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 440px;
}
.compare__col--direct {
  background:
    linear-gradient(165deg, rgba(230, 57, 70, 0.18), rgba(244, 162, 97, 0.06) 60%),
    var(--surface-2);
  border-color: rgba(244, 162, 97, 0.38);
  box-shadow: 0 30px 80px -30px var(--accent-glow);
}
.compare__kicker {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-warm);
}
.compare__col--third .compare__kicker { color: var(--text-dim); }
.compare__title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.compare__lede { color: var(--text-muted); margin-top: 0.25rem; font-size: 0.98rem; }
.compare__list {
  list-style: none;
  display: grid;
  gap: 0.95rem;
  margin-top: 0.75rem;
  flex: 1;
}
.compare__list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 1rem;
  line-height: 1.5;
}
.compare__list li::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.compare__col--direct .compare__list li::before {
  background-color: rgba(244, 162, 97, 0.18);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4a261' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.compare__col--third .compare__list li::before {
  background-color: rgba(255, 255, 255, 0.04);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8998a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>");
}
.compare__col--third .compare__list li { color: var(--text-muted); }
.compare__cta { margin-top: 1rem; }
.compare__foot {
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.86rem;
  color: var(--text-dim);
}

/* ----- Stat row --------------------------------------------------------- */
.stats-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3.5rem;
}
@media (min-width: 720px) {
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.stat {
  padding: 2.25rem 2rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--accent-warm);
  margin-bottom: 0.9rem;
}
.stat__label {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ----- FAQ -------------------------------------------------------------- */
.faq {
  background: var(--bg);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}
@media (min-width: 900px) {
  .faq__grid { grid-template-columns: 0.8fr 1.2fr; gap: 5rem; }
}
.faq__list {
  border-top: 1px solid var(--border);
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  cursor: pointer;
  transition: color var(--dur-s) var(--ease);
}
.faq__q:hover { color: var(--accent-warm); }
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-warm);
  transition: transform var(--dur-s) var(--ease), background var(--dur-s) var(--ease);
  font-size: 1rem;
  line-height: 1;
}
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  background: var(--accent-warm);
  color: var(--bg);
}
.faq__a {
  padding: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 62ch;
}

/* ----- Reviews embed ---------------------------------------------------- */
.reviews {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reviews__head { text-align: center; margin-bottom: 3rem; }
.reviews__head h2 { margin-top: 0.5rem; }
.reviews__head p { margin: 1rem auto 0; }
.reviews__embed {
  max-width: 1100px;
  margin: 0 auto;
}
.reviews__embed emr-simple-card { display: block; min-height: 200px; }

/* ----- Menu page --------------------------------------------------------- */
.page-hero {
  padding: calc(var(--nav-h, 80px) + 8rem) 0 5rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(60% 70% at 50% 0%, rgba(230, 57, 70, 0.18), transparent 60%),
    var(--bg);
}
.page-hero p { margin: 1.5rem auto 0; }
.page-hero .eyebrow { margin-bottom: 1.25rem; }

.menu-section + .menu-section { margin-top: clamp(4rem, 8vw, 7rem); }
.menu-section__head {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  margin-bottom: 3rem;
  align-items: end;
}
@media (min-width: 800px) {
  .menu-section__head { grid-template-columns: auto 1fr; gap: 3rem; }
}
.menu-section__head h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
.menu-section__head p { color: var(--text-muted); max-width: 48ch; }

.menu-items {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
@media (min-width: 880px) {
  .menu-items { grid-template-columns: 1fr 1fr; column-gap: 4rem; }
}
.menu-item {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}
.menu-item:last-child,
.menu-item:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid var(--border); }
@media (max-width: 879px) {
  .menu-item:last-child { border-bottom: 1px solid var(--border); }
  .menu-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}
.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
}
.menu-item__desc { color: var(--text-muted); font-size: 0.96rem; line-height: 1.55; max-width: 40ch; }
.menu-item__price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent-warm);
  font-weight: 500;
  white-space: nowrap;
  padding-top: 0.1rem;
}

.menu-hero-img {
  position: relative;
  aspect-ratio: 21/9;
  border-radius: 22px;
  overflow: hidden;
  margin-top: 3rem;
}
.menu-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ----- Contact page ------------------------------------------------------ */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.contact-card {
  padding: 2.25rem 2rem;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform var(--dur-m) var(--ease), border-color var(--dur-s) var(--ease);
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 1rem;
}
.contact-card p,
.contact-card a { font-size: 1.1rem; line-height: 1.55; }
.contact-card a { color: var(--text); transition: color var(--dur-s) var(--ease); }
.contact-card a:hover { color: var(--accent-warm); }
.contact-card .muted { color: var(--text-muted); }
.contact-card__item + .contact-card__item { margin-top: 0.3rem; }

.contact-map {
  margin-top: 4rem;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 21/9;
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(30%) contrast(0.92) brightness(0.85);
}

/* ----- Reveal animations ------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1100ms var(--ease-out), transform 1100ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
.reveal-stagger.in > *        { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 500ms; }

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

/* ----- Utilities --------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
