/* =========================================================================
   BETHANY DINER — shared design system
   Tokens → reset → typography → layout → atoms → molecules → organisms
   ========================================================================= */

/* --- Fonts ---------------------------------------------------------------- */
@font-face {
  font-family: "Sentinel";
  font-style: normal; font-weight: 400;
  src: url("../fonts/sentinel-400-normal.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Sentinel";
  font-style: italic; font-weight: 400;
  src: url("../fonts/sentinel-400-italic.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Sentinel";
  font-style: normal; font-weight: 600;
  src: url("../fonts/sentinel-600-normal.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Sentinel";
  font-style: italic; font-weight: 600;
  src: url("../fonts/sentinel-600-italic.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Sentinel";
  font-style: italic; font-weight: 700;
  src: url("../fonts/sentinel-700-italic.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Sentinel";
  font-style: italic; font-weight: 800;
  src: url("../fonts/sentinel-800-italic.woff") format("woff");
  font-display: swap;
}

/* --- Tokens --------------------------------------------------------------- */
:root {
  /* Brand — pulled from logo pixels */
  --red: #E51F1F;
  --red-dark: #B31818;
  --blue: #1B48A6;
  --blue-dark: #133377;
  --yellow: #FFD230;
  --yellow-soft: #FFE785;

  /* Neutrals */
  --cream: #FAF4E6;
  --cream-2: #F3EAD3;
  --paper: #FFFDF7;
  --ink: #1B1B1B;
  --ink-2: #3A3A3A;
  --ink-3: #6B6B6B;
  --line: rgba(27, 27, 27, 0.12);
  --line-2: rgba(27, 27, 27, 0.06);

  /* Utility */
  --shadow-s: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-m: 0 12px 32px rgba(0,0,0,0.10);
  --shadow-l: 0 24px 64px rgba(0,0,0,0.16);
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 28px;

  /* Layout */
  --px: clamp(24px, 5vw, 96px);
  --py: clamp(64px, 9vw, 140px);
  --wrap-max: 1320px;
  --wrap-narrow: 980px;

  /* Type */
  --font-display: "Sentinel", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono", Menlo, Consolas, monospace;

  --fs-hero: clamp(52px, 8vw, 116px);
  --fs-h1:   clamp(40px, 5.6vw, 80px);
  --fs-h2:   clamp(30px, 3.8vw, 56px);
  --fs-h3:   clamp(22px, 2.2vw, 32px);
  --fs-h4:   clamp(18px, 1.6vw, 22px);
  --fs-body: clamp(16px, 1.05vw, 18px);
  --fs-sm:   14px;
  --fs-xs:   12px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}
img, svg, video { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- Typography ----------------------------------------------------------- */
.h-hero, .h1, .h2, .h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.h-hero { font-size: var(--fs-hero); line-height: 0.95; letter-spacing: -0.02em; font-weight: 800; }
.h1 { font-size: var(--fs-h1); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); font-weight: 600; }
.h4 { font-family: var(--font-body); font-size: var(--fs-h4); font-weight: 700; letter-spacing: -0.005em; line-height: 1.25; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--red);
}
.eyebrow.on-dark { color: var(--yellow); }
.eyebrow.on-dark::before { background: var(--yellow); }
.lede { font-size: clamp(17px, 1.2vw, 20px); color: var(--ink-2); max-width: 62ch; }

/* --- Layout utilities ----------------------------------------------------- */
.section { padding-top: var(--py); padding-bottom: var(--py); padding-left: var(--px); padding-right: var(--px); position: relative; }
.section--snug { padding-top: clamp(48px, 6vw, 96px); padding-bottom: clamp(48px, 6vw, 96px); }
.section--tight { padding-top: clamp(32px, 4vw, 64px); padding-bottom: clamp(32px, 4vw, 64px); }
.wrap { max-width: var(--wrap-max); margin: 0 auto; }
.wrap--narrow { max-width: var(--wrap-narrow); margin: 0 auto; }
.stack > * + * { margin-top: var(--stack-gap, 16px); }

.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.bg-ink { background: var(--ink); color: var(--cream); }
.bg-ink .lede { color: rgba(250, 244, 230, 0.82); }
.bg-red { background: var(--red); color: #fff; }
.bg-blue { background: var(--blue); color: #fff; }
.bg-yellow { background: var(--yellow); color: var(--ink); }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: background-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(229,31,31,0.28); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(229,31,31,0.32); }
.btn-secondary { background: var(--blue); color: #fff; }
.btn-secondary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.5); backdrop-filter: blur(8px); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-arrow::after { content: "→"; display: inline-block; transition: transform .2s var(--ease); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* --- Header / Nav --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 244, 230, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--px);
  max-width: var(--wrap-max); margin: 0 auto;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 84px; width: auto; transform: scale(3) translateY(8px); transform-origin: left center; }
.brand__mark { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 24px; color: var(--red); letter-spacing: -0.01em; }
@media (max-width: 600px) { .brand img { height: 60px; transform: scale(1.9) translateY(2px); transform-origin: left center; } }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 15px; font-weight: 600; color: var(--ink);
  position: relative; padding: 6px 2px;
  transition: color .18s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .22s var(--ease);
}
.nav a:hover { color: var(--red); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--red); }
.header-ctas { display: flex; align-items: center; gap: 10px; }
.mobile-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid var(--line); }
.mobile-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; }
.mobile-toggle span::before, .mobile-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); }
.mobile-toggle span::before { top: -6px; } .mobile-toggle span::after { top: 6px; }

@media (max-width: 920px) {
  .nav, .header-ctas .btn:not(.btn-primary) { display: none; }
  .mobile-toggle { display: inline-flex; }
}

.mobile-drawer {
  position: fixed; inset: 0; z-index: 60;
  background: var(--cream);
  display: none;
  flex-direction: column;
  padding: 80px var(--px) var(--px);
}
.mobile-drawer.is-open { display: flex; }
.mobile-drawer a { font-family: var(--font-display); font-style: italic; font-size: 36px; font-weight: 700; padding: 18px 0; border-bottom: 1px solid var(--line); }
.mobile-drawer__close { position: absolute; top: 18px; right: var(--px); width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 999px; font-size: 24px; }

/* --- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(250, 244, 230, 0.78);
  padding: clamp(64px, 7vw, 96px) var(--px) 32px;
}
.site-footer a { transition: color .18s var(--ease); }
.site-footer a:hover { color: var(--yellow); }
.footer-grid {
  max-width: var(--wrap-max); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-brand__logo { display: block; height: 240px; width: auto; margin: -30px 0 20px -20px; }
@media (max-width: 820px) { .footer-brand__logo { height: 160px; margin: -20px 0 20px -10px; } }
.footer-brand .brand__mark { color: #fff; font-size: 28px; margin-bottom: 12px; display: block; }
.footer-brand p { max-width: 32ch; font-size: 15px; line-height: 1.6; }
.footer-bottom {
  max-width: var(--wrap-max); margin: 32px auto 0; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(250, 244, 230, 0.54);
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex; align-items: flex-end;
  padding: calc(var(--py) * 0.6) var(--px) var(--py);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.72) 100%);
}
.hero__inner { max-width: var(--wrap-max); margin: 0 auto; width: 100%; }
.hero__kicker {
  display: inline-block;
  background: var(--yellow); color: var(--ink);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: var(--fs-hero); line-height: 0.92; letter-spacing: -0.02em; max-width: 16ch; }
.hero h1 .script { color: var(--yellow); font-weight: 800; }
.hero__lede { max-width: 48ch; margin-top: 20px; font-size: clamp(17px, 1.2vw, 20px); color: rgba(255,255,255,0.88); }
.hero__ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero info strip (frosted) */
.hero-info {
  position: relative;
  margin: -60px auto 0;
  max-width: var(--wrap-max);
  background: var(--paper);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-m);
  padding: 24px clamp(24px, 4vw, 48px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  z-index: 2;
}
@media (max-width: 820px) { .hero-info { grid-template-columns: 1fr 1fr; padding: 20px; } }
@media (max-width: 480px) { .hero-info { grid-template-columns: 1fr; } }
.hero-info__cell { display: flex; flex-direction: column; gap: 4px; }
.hero-info__cell .label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }
.hero-info__cell .value { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 20px; color: var(--ink); line-height: 1.2; }
.hero-info__cell a { transition: color .18s var(--ease); }
.hero-info__cell a:hover { color: var(--red); }

/* --- Cards --------------------------------------------------------------- */
.card {
  background: var(--paper);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.card--image { padding: 0; overflow: hidden; }
.card--image img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card--image .card__body { padding: 24px 28px 28px; }

.card__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.card__title { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 22px; margin-bottom: 8px; line-height: 1.15; }
.card__body p { color: var(--ink-2); font-size: 15px; line-height: 1.55; }

/* --- Specials ribbon ----------------------------------------------------- */
.specials-day {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.specials-day::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: var(--yellow);
}
.specials-day:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: transparent; }
.specials-day .day { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 22px; color: var(--red); }
.specials-day .headline { font-weight: 700; font-size: 17px; color: var(--ink); }
.specials-day .sub { font-size: 14px; color: var(--ink-3); }

/* --- Menu row ------------------------------------------------------------ */
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
.menu-row:last-child { border-bottom: 0; }
.menu-row__name { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 19px; color: var(--ink); line-height: 1.2; }
.menu-row__desc { display: block; font-family: var(--font-body); font-style: normal; font-weight: 400; font-size: 14px; color: var(--ink-3); margin-top: 4px; line-height: 1.45; }
.menu-row__price { font-weight: 700; font-size: 16px; color: var(--red); font-feature-settings: "tnum"; padding-left: 18px; }

/* --- Category heading ---------------------------------------------------- */
.menu-cat {
  padding-top: 72px;
  margin-bottom: 24px;
  scroll-margin-top: 210px;
}
.menu-cat__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; border-bottom: 2px solid var(--ink); padding-bottom: 12px; margin-bottom: 12px; }
.menu-cat__name { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: clamp(32px, 3.6vw, 52px); letter-spacing: -0.01em; color: var(--ink); }
.menu-cat__note { font-size: 13px; color: var(--ink-3); font-style: italic; text-align: right; max-width: 28ch; }

/* --- Sticky category nav (menu page) ------------------------------------ */
.menu-sticky {
  position: sticky;
  top: 112px;
  z-index: 20;
  background: rgba(250, 244, 230, 0.94);
  backdrop-filter: blur(12px);
  border-top: 0;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  margin-top: -1px;
}
.menu-sticky__inner {
  display: flex; gap: 8px; overflow-x: auto;
  max-width: var(--wrap-max); margin: 0 auto;
  padding: 0 var(--px);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.menu-sticky__inner::-webkit-scrollbar { display: none; }
.menu-sticky a {
  font-size: 13px; font-weight: 700;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid transparent;
  color: var(--ink-2);
  white-space: nowrap;
  scroll-snap-align: start;
  transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.menu-sticky a:hover { border-color: var(--line); color: var(--red); }
.menu-sticky a.is-active { background: var(--red); color: #fff; border-color: var(--red); }

/* --- Reveal on scroll --------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* --- Utilities ----------------------------------------------------------- */
.grid-2, .grid-3, .grid-4, .grid-5 { display: grid; gap: clamp(16px, 2vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 980px) { .grid-4, .grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .grid-4, .grid-5 { grid-template-columns: 1fr 1fr; } }

.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.split--reverse > :first-child { order: 2; }
@media (max-width: 820px) { .split, .split--reverse { grid-template-columns: 1fr; } .split--reverse > :first-child { order: 0; } }

.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.pill--red { background: rgba(229,31,31,0.1); color: var(--red); }
.pill--yellow { background: var(--yellow); color: var(--ink); }
.pill--blue { background: rgba(27,72,166,0.1); color: var(--blue); }

.divider { height: 1px; background: var(--line); margin: 32px 0; }

.img-frame { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-m); }
.img-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.img-frame.tall img { aspect-ratio: 3/4; }
.img-frame.square img { aspect-ratio: 1/1; }

/* Skewed/offset decorative text */
.display-big {
  font-family: var(--font-display); font-style: italic; font-weight: 800;
  font-size: clamp(80px, 14vw, 200px); letter-spacing: -0.03em;
  line-height: 0.85; color: var(--ink); opacity: 0.9;
}

/* Testimonial */
.quote {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.2vw, 34px); line-height: 1.35;
  color: var(--ink); max-width: 32ch;
}
.quote::before { content: "“"; font-size: 1.4em; color: var(--red); font-weight: 700; display: inline-block; margin-right: 4px; line-height: 0; vertical-align: -0.35em; }
.quote__cite { display: block; margin-top: 18px; font-family: var(--font-body); font-style: normal; font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); }

/* CTA band */
.cta-band {
  border-radius: var(--radius-l);
  padding: clamp(40px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-band__bg { position: absolute; inset: 0; z-index: -1; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band .lede { color: rgba(255,255,255,0.78); }
.cta-band .ctas { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Hours table */
.hours-list { display: grid; gap: 0; max-width: 380px; }
.hours-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { font-weight: 700; }
.hours-list .hrs { color: var(--ink-3); }

/* Contact card */
.contact-card {
  background: var(--paper);
  border-radius: var(--radius-m);
  padding: 32px;
  box-shadow: var(--shadow-s);
}
.contact-card h3 { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 28px; margin-bottom: 8px; }
.contact-list li { padding: 10px 0; font-size: 16px; display: flex; gap: 12px; align-items: flex-start; }
.contact-list .label { font-weight: 700; color: var(--ink-3); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; width: 80px; flex-shrink: 0; padding-top: 3px; }

/* Form (demo only) */
.form-row { display: grid; gap: 6px; margin-bottom: 18px; }
.form-row label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.form-row input, .form-row textarea, .form-row select {
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; background: var(--paper); color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: 0; border-color: var(--red); box-shadow: 0 0 0 3px rgba(229,31,31,0.15);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* Rating band */
.rating-band {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  flex-wrap: wrap; padding: 28px var(--px);
  background: var(--ink);
  color: rgba(250,244,230,0.88);
  font-size: 14px;
}
.rating-band strong { color: var(--yellow); font-weight: 800; font-size: 17px; }
.rating-band .stars { color: var(--yellow); letter-spacing: 2px; font-size: 16px; }
.rating-band .dot { width: 4px; height: 4px; border-radius: 999px; background: rgba(255,255,255,0.3); }

/* Drink card grid (cocktails/beer/wine) */
.drink-card { background: var(--paper); border-radius: var(--radius-s); padding: 22px; border: 1px solid var(--line); }
.drink-card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.drink-card__name { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 19px; color: var(--blue); }
.drink-card__price { font-weight: 800; color: var(--red); font-size: 16px; }
.drink-card__desc { font-size: 14px; color: var(--ink-3); line-height: 1.5; }

/* Category intro row */
.intro-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.intro-row .copy { max-width: 40ch; }

/* Food collage — 3-tile layout using pure food photos */
.food-collage { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; }
.food-collage .tile-1 { grid-row: span 2; border-radius: var(--radius-m); overflow: hidden; background-size: cover; background-position: center; aspect-ratio: 4/5; box-shadow: var(--shadow-m); }
.food-collage .tile-2, .food-collage .tile-3 { border-radius: var(--radius-m); overflow: hidden; background-size: cover; background-position: center; aspect-ratio: 1/1; box-shadow: var(--shadow-s); background-repeat: no-repeat; }
@media (max-width: 600px) { .food-collage { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; } .food-collage .tile-1 { grid-row: span 2; aspect-ratio: 3/4; } }

/* Food collage — 3-across (full-width row) variant */
.food-collage--row { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 16px; max-width: none !important; }
.food-collage--row .tile-1, .food-collage--row .tile-2, .food-collage--row .tile-3 {
  grid-row: auto; aspect-ratio: 4/3;
  border-radius: var(--radius-m); overflow: hidden;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-m);
}
@media (max-width: 720px) { .food-collage--row { grid-template-columns: 1fr; } }

/* Design system helpers */
.swatch { display: flex; flex-direction: column; gap: 6px; }
.swatch__chip { height: 120px; border-radius: var(--radius-s); border: 1px solid var(--line-2); }
.swatch__name { font-weight: 700; font-size: 14px; }
.swatch__hex { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }

/* ==========================================================================
   BRAND DECORATIONS
   ========================================================================== */

/* Yellow brushstroke highlighter behind inline text */
.hilite {
  position: relative;
  display: inline-block;
  padding: 2px 10px;
  z-index: 0;
  isolation: isolate;
}
.hilite::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: skewX(-6deg) rotate(-1.5deg);
  z-index: -1;
  border-radius: 4px;
}
.hilite--red::before { background: rgba(229,31,31,0.18); }

/* Sun decoration (SVG ray circle) — place as ::before using a background-image */
.sun-deco {
  position: absolute;
  width: 160px; height: 160px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='%23FFD230'><circle cx='100' cy='100' r='36'/><g id='rays'><rect x='94' y='8' width='12' height='28' rx='3'/></g><use href='%23rays' transform='rotate(30 100 100)'/><use href='%23rays' transform='rotate(60 100 100)'/><use href='%23rays' transform='rotate(90 100 100)'/><use href='%23rays' transform='rotate(120 100 100)'/><use href='%23rays' transform='rotate(150 100 100)'/><use href='%23rays' transform='rotate(180 100 100)'/><use href='%23rays' transform='rotate(210 100 100)'/><use href='%23rays' transform='rotate(240 100 100)'/><use href='%23rays' transform='rotate(270 100 100)'/><use href='%23rays' transform='rotate(300 100 100)'/><use href='%23rays' transform='rotate(330 100 100)'/></g></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.9;
  animation: sun-spin 60s linear infinite;
}
@keyframes sun-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.sun-deco--sm { width: 90px; height: 90px; }
.sun-deco--xs { width: 56px; height: 56px; }

/* 4-point diner star */
.star-deco {
  position: absolute;
  width: 32px; height: 32px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 0 L14 10 L24 12 L14 14 L12 24 L10 14 L0 12 L10 10 Z' fill='%23FFD230'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
.star-deco--red { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 0 L14 10 L24 12 L14 14 L12 24 L10 14 L0 12 L10 10 Z' fill='%23E51F1F'/></svg>"); }
.star-deco--white { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 0 L14 10 L24 12 L14 14 L12 24 L10 14 L0 12 L10 10 Z' fill='%23FFFFFF'/></svg>"); }
.star-deco--lg { width: 56px; height: 56px; }
.star-deco--sm { width: 22px; height: 22px; }

/* Squiggle underline */
.squiggle {
  display: block; width: 140px; height: 14px; margin: 10px 0 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 14'><path d='M2 7 Q 16 -3 30 7 T 58 7 T 86 7 T 114 7 T 138 7' stroke='%23E51F1F' stroke-width='3' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
}
.squiggle--yellow { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 14'><path d='M2 7 Q 16 -3 30 7 T 58 7 T 86 7 T 114 7 T 138 7' stroke='%23FFD230' stroke-width='3' fill='none' stroke-linecap='round'/></svg>"); }
.squiggle--center { margin-left: auto; margin-right: auto; }

/* Coastal wave */
.wave-deco {
  display: block; width: 180px; height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 18'><path d='M2 9 Q 20 -1 38 9 T 74 9 T 110 9 T 146 9 T 178 9' stroke='%231B48A6' stroke-width='2.5' fill='none' stroke-linecap='round' opacity='0.7'/></svg>");
  background-repeat: no-repeat;
}

/* ==========================================================================
   DECORATION LIBRARY — varied icons for mixed placements
   ========================================================================== */

/* Retro 8-point starburst (classic diner signage) */
.burst-deco {
  position: absolute;
  width: 80px; height: 80px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='%23E51F1F'><path d='M50 4 L56 44 L50 50 L44 44 Z'/><path d='M96 50 L56 56 L50 50 L56 44 Z'/><path d='M50 96 L44 56 L50 50 L56 56 Z'/><path d='M4 50 L44 44 L50 50 L44 56 Z'/><path d='M82 18 L56 44 L50 50 L50 40 Z' opacity='0.85'/><path d='M82 82 L56 56 L50 50 L60 50 Z' opacity='0.85'/><path d='M18 82 L44 56 L50 50 L50 60 Z' opacity='0.85'/><path d='M18 18 L44 44 L50 50 L40 50 Z' opacity='0.85'/></g></svg>");
  background-size: contain; background-repeat: no-repeat;
  pointer-events: none;
}
.burst-deco--yellow { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='%23FFD230'><path d='M50 4 L56 44 L50 50 L44 44 Z'/><path d='M96 50 L56 56 L50 50 L56 44 Z'/><path d='M50 96 L44 56 L50 50 L56 56 Z'/><path d='M4 50 L44 44 L50 50 L44 56 Z'/><path d='M82 18 L56 44 L50 50 L50 40 Z' opacity='0.85'/><path d='M82 82 L56 56 L50 50 L60 50 Z' opacity='0.85'/><path d='M18 82 L44 56 L50 50 L50 60 Z' opacity='0.85'/><path d='M18 18 L44 44 L50 50 L40 50 Z' opacity='0.85'/></g></svg>"); }
.burst-deco--blue { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='%231B48A6'><path d='M50 4 L56 44 L50 50 L44 44 Z'/><path d='M96 50 L56 56 L50 50 L56 44 Z'/><path d='M50 96 L44 56 L50 50 L56 56 Z'/><path d='M4 50 L44 44 L50 50 L44 56 Z'/><path d='M82 18 L56 44 L50 50 L50 40 Z' opacity='0.85'/><path d='M82 82 L56 56 L50 50 L60 50 Z' opacity='0.85'/><path d='M18 82 L44 56 L50 50 L50 60 Z' opacity='0.85'/><path d='M18 18 L44 44 L50 50 L40 50 Z' opacity='0.85'/></g></svg>"); }
.burst-deco--sm { width: 48px; height: 48px; }
.burst-deco--lg { width: 120px; height: 120px; }

/* Atomic / mid-century asterisk (6-point) */
.atom-deco {
  position: absolute;
  width: 48px; height: 48px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><g stroke='%23E51F1F' stroke-width='2.6' stroke-linecap='round' fill='none'><line x1='24' y1='4' x2='24' y2='44'/><line x1='6' y1='14' x2='42' y2='34'/><line x1='6' y1='34' x2='42' y2='14'/><circle cx='24' cy='24' r='4' fill='%23E51F1F'/></g></svg>");
  background-size: contain; background-repeat: no-repeat;
  pointer-events: none;
}
.atom-deco--yellow { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><g stroke='%23FFD230' stroke-width='2.6' stroke-linecap='round' fill='none'><line x1='24' y1='4' x2='24' y2='44'/><line x1='6' y1='14' x2='42' y2='34'/><line x1='6' y1='34' x2='42' y2='14'/><circle cx='24' cy='24' r='4' fill='%23FFD230'/></g></svg>"); }
.atom-deco--blue { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><g stroke='%231B48A6' stroke-width='2.6' stroke-linecap='round' fill='none'><line x1='24' y1='4' x2='24' y2='44'/><line x1='6' y1='14' x2='42' y2='34'/><line x1='6' y1='34' x2='42' y2='14'/><circle cx='24' cy='24' r='4' fill='%231B48A6'/></g></svg>"); }

/* Coffee cup silhouette */
.coffee-deco {
  position: absolute;
  width: 48px; height: 48px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><g fill='none' stroke='%231B1B1B' stroke-width='2.4' stroke-linecap='round'><path d='M8 38 h24' /><path d='M10 14 h20 v16 a4 4 0 0 1 -4 4 h-12 a4 4 0 0 1 -4 -4 z' fill='%23E51F1F' stroke='%231B1B1B'/><path d='M30 18 h4 a4 4 0 0 1 0 8 h-4' /><path d='M14 6 q 0 4 2 6 m 4 -6 q 0 4 2 6 m 4 -6 q 0 4 2 6' /></g></svg>");
  background-size: contain; background-repeat: no-repeat;
  pointer-events: none;
  transform: rotate(-8deg);
}
.coffee-deco--lg { width: 72px; height: 72px; }

/* Fork & knife crossed */
.fk-deco {
  position: absolute;
  width: 56px; height: 56px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 56'><g stroke='%231B48A6' stroke-width='3' stroke-linecap='round' fill='none'><line x1='14' y1='6' x2='42' y2='50'/><line x1='42' y1='6' x2='14' y2='50'/><circle cx='16' cy='10' r='3' fill='%231B48A6'/><circle cx='40' cy='10' r='3' fill='%231B48A6'/></g></svg>");
  background-size: contain; background-repeat: no-repeat;
  pointer-events: none;
  transform: rotate(-12deg);
}
.fk-deco--red { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 56'><g stroke='%23E51F1F' stroke-width='3' stroke-linecap='round' fill='none'><line x1='14' y1='6' x2='42' y2='50'/><line x1='42' y1='6' x2='14' y2='50'/><circle cx='16' cy='10' r='3' fill='%23E51F1F'/><circle cx='40' cy='10' r='3' fill='%23E51F1F'/></g></svg>"); }

/* Sparkle cluster (3 tiny stars) */
.sparkle-deco {
  position: absolute;
  width: 72px; height: 72px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 72'><g fill='%23FFD230'><path d='M14 14 l1.5 5 l5 1.5 l-5 1.5 l-1.5 5 l-1.5 -5 l-5 -1.5 l5 -1.5 z'/><path d='M44 24 l2 7 l7 2 l-7 2 l-2 7 l-2 -7 l-7 -2 l7 -2 z'/><path d='M22 50 l1.2 4 l4 1.2 l-4 1.2 l-1.2 4 l-1.2 -4 l-4 -1.2 l4 -1.2 z'/></g></svg>");
  background-size: contain; background-repeat: no-repeat;
  pointer-events: none;
}
.sparkle-deco--red { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 72'><g fill='%23E51F1F'><path d='M14 14 l1.5 5 l5 1.5 l-5 1.5 l-1.5 5 l-1.5 -5 l-5 -1.5 l5 -1.5 z'/><path d='M44 24 l2 7 l7 2 l-7 2 l-2 7 l-2 -7 l-7 -2 l7 -2 z'/><path d='M22 50 l1.2 4 l4 1.2 l-4 1.2 l-1.2 4 l-1.2 -4 l-4 -1.2 l4 -1.2 z'/></g></svg>"); }
.sparkle-deco--white { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 72'><g fill='%23FFFFFF'><path d='M14 14 l1.5 5 l5 1.5 l-5 1.5 l-1.5 5 l-1.5 -5 l-5 -1.5 l5 -1.5 z'/><path d='M44 24 l2 7 l7 2 l-7 2 l-2 7 l-2 -7 l-7 -2 l7 -2 z'/><path d='M22 50 l1.2 4 l4 1.2 l-4 1.2 l-1.2 4 l-1.2 -4 l-4 -1.2 l4 -1.2 z'/></g></svg>"); }

/* Lightning bolt (deal accent) */
.bolt-deco {
  position: absolute;
  width: 40px; height: 56px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 56'><path d='M22 2 L4 32 L18 32 L14 54 L36 22 L22 22 Z' fill='%23FFD230' stroke='%23E51F1F' stroke-width='2' stroke-linejoin='round'/></svg>");
  background-size: contain; background-repeat: no-repeat;
  pointer-events: none;
  transform: rotate(-10deg);
}

/* Seashell (coastal) */
.shell-deco {
  position: absolute;
  width: 54px; height: 54px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 54 54'><g fill='none' stroke='%231B48A6' stroke-width='2.4' stroke-linecap='round'><path d='M27 4 Q 6 14 8 42 Q 17 50 27 50 Q 37 50 46 42 Q 48 14 27 4 Z' fill='%23FFD230' fill-opacity='0.2'/><path d='M27 4 L27 48'/><path d='M18 10 Q 16 28 22 48'/><path d='M36 10 Q 38 28 32 48'/><path d='M12 22 Q 18 34 18 48'/><path d='M42 22 Q 36 34 36 48'/></g></svg>");
  background-size: contain; background-repeat: no-repeat;
  pointer-events: none;
}

/* Ornamental flourish (scroll curl) */
.flourish-deco {
  display: block;
  width: 180px; height: 28px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 28'><g fill='none' stroke='%23E51F1F' stroke-width='2' stroke-linecap='round'><path d='M10 14 q 20 -12 40 0 t 40 0 t 40 0 t 40 0'/><circle cx='10' cy='14' r='3' fill='%23E51F1F'/><circle cx='170' cy='14' r='3' fill='%23E51F1F'/></g></svg>");
  background-repeat: no-repeat;
}
.flourish-deco--yellow { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 28'><g fill='none' stroke='%23FFD230' stroke-width='2' stroke-linecap='round'><path d='M10 14 q 20 -12 40 0 t 40 0 t 40 0 t 40 0'/><circle cx='10' cy='14' r='3' fill='%23FFD230'/><circle cx='170' cy='14' r='3' fill='%23FFD230'/></g></svg>"); }
.flourish-deco--center { margin-left: auto; margin-right: auto; }

/* Cherry (dessert/diner) */
.cherry-deco {
  position: absolute;
  width: 56px; height: 64px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 64'><g><path d='M28 4 Q 36 10 36 18 Q 28 14 20 18 Q 20 10 28 4' fill='%2322A040'/><circle cx='18' cy='42' r='10' fill='%23E51F1F'/><circle cx='38' cy='48' r='10' fill='%23B31818'/><path d='M28 4 Q 24 18 18 34' stroke='%2322A040' stroke-width='2' fill='none'/><path d='M28 4 Q 34 22 38 40' stroke='%2322A040' stroke-width='2' fill='none'/><circle cx='15' cy='38' r='3' fill='%23FFFFFF' opacity='0.5'/></g></svg>");
  background-size: contain; background-repeat: no-repeat;
  pointer-events: none;
  transform: rotate(-8deg);
}

/* Circle pattern for corner accents */
.dots-cluster-deco {
  position: absolute;
  width: 96px; height: 96px;
  background-image: radial-gradient(circle, var(--red) 2.5px, transparent 3px);
  background-size: 14px 14px;
  opacity: 0.4;
  pointer-events: none;
}
.dots-cluster-deco--yellow { background-image: radial-gradient(circle, var(--yellow) 2.5px, transparent 3px); opacity: 0.6; }
.dots-cluster-deco--blue { background-image: radial-gradient(circle, var(--blue) 2.5px, transparent 3px); }

/* ==========================================================================
   FOOD CHIP — circular food photo cropped from offseason banner
   ========================================================================== */
.food-chip {
  width: 100%; aspect-ratio: 1/1;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
  border: 4px solid var(--yellow);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.food-chip:hover { transform: translateY(-6px) rotate(-2deg); box-shadow: 0 22px 48px rgba(0,0,0,0.22); }
.food-chip--burger    { background-image: url("../images/food-burger.jpg"); }
.food-chip--pancakes  { background-image: url("../images/food-pancakes.jpg"); }
.food-chip--salad     { background-image: url("../images/food-salad.jpg"); }
.food-chip--pasta     { background-image: url("../images/food-pasta.jpg"); }
.food-chip--pizza     { background-image: url("../images/food-omelette.jpg"); }
.food-chip--seafood   { background-image: url("../images/food-seafood.jpg"); }
.food-chip--lasagna   { background-image: url("../images/fresh-flavors.jpg"); }
.food-chip--coffee    { background-image: url("../images/food-coffee.jpg"); }
.food-chip--border-red  { border-color: var(--red); }
.food-chip--border-blue { border-color: var(--blue); }

/* Gallery strip — scrolling food chips */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 2vw, 24px);
  align-items: center;
}
.gallery-strip > * { min-width: 0; }
.gallery-strip .chip-1 { transform: translateY(12px); }
.gallery-strip .chip-2 { transform: translateY(-16px); }
.gallery-strip .chip-3 { transform: translateY(8px); }
.gallery-strip .chip-4 { transform: translateY(-8px); }
.gallery-strip .chip-5 { transform: translateY(16px); }
.gallery-strip .chip-6 { transform: translateY(-12px); }
@media (max-width: 820px) {
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .gallery-strip > *:nth-child(n+4) { display: none; }
}

/* ==========================================================================
   DARK-SECTION BACKGROUND TREATMENTS
   ========================================================================== */

/* Full-bleed food photo behind dark section (vignette + darken) */
.bg-food-dark, .bg-interior-dark, .bg-drinks-dark {
  position: relative;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
}
.bg-food-dark::before, .bg-interior-dark::before, .bg-drinks-dark::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
}
.bg-food-dark::after, .bg-interior-dark::after, .bg-drinks-dark::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.94) 60%, rgba(10,10,10,0.88) 100%);
}
.bg-food-dark::before      { background-image: url("../images/food-burger.jpg"); filter: blur(1px); }
.bg-interior-dark::before  { background-image: url("../images/about-interior.png"); }
.bg-drinks-dark::before    { background-image: url("../images/food-cocktail.jpg"); }

/* Dotted pattern overlay (subtle texture) */
.bg-dots {
  background-image: radial-gradient(circle, rgba(255,210,48,0.12) 1px, transparent 1px);
  background-size: 22px 22px;
}
.bg-dots--red { background-image: radial-gradient(circle, rgba(229,31,31,0.1) 1px, transparent 1px); }
.bg-dots--dark { background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px); }

/* Diagonal stripes (awning) */
.bg-awning {
  background-image: repeating-linear-gradient(45deg, rgba(229,31,31,0.06) 0 22px, transparent 22px 44px);
}

/* ==========================================================================
   DECORATED COMPONENTS
   ========================================================================== */

/* Photo stack — 2 offset images with optional caption */
.photo-stack {
  position: relative;
  padding: 0 40px 40px 0;
}
.photo-stack__main {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  aspect-ratio: 4/5;
}
.photo-stack__main img { width: 100%; height: 100%; object-fit: cover; }
.photo-stack__accent {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-m);
}
.photo-stack__accent img { width: 100%; height: 100%; object-fit: cover; }
.photo-stack__sun {
  position: absolute;
  top: -24px; left: -24px;
  z-index: 2;
}

/* Decorated eyebrow with star */
.eyebrow-star {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow-star::before, .eyebrow-star::after {
  content: ""; width: 18px; height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 0 L14 10 L24 12 L14 14 L12 24 L10 14 L0 12 L10 10 Z' fill='%23E51F1F'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}
.eyebrow-star.on-dark { color: var(--yellow); }
.eyebrow-star.on-dark::before, .eyebrow-star.on-dark::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 0 L14 10 L24 12 L14 14 L12 24 L10 14 L0 12 L10 10 Z' fill='%23FFD230'/></svg>");
}

/* Circle badge (price tag or announcement) */
.circle-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-style: italic; font-weight: 800;
  font-size: 22px; line-height: 1;
  text-align: center;
  box-shadow: var(--shadow-m);
  transform: rotate(-8deg);
  padding: 14px;
}
.circle-badge--yellow { background: var(--yellow); color: var(--ink); }
.circle-badge--blue { background: var(--blue); color: #fff; }
.circle-badge small { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 800; margin-top: 4px; font-style: normal; font-family: var(--font-body); opacity: 0.9; }

/* Why-card with photo header */
.why-card {
  background: var(--paper);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.why-card__photo {
  aspect-ratio: 5/3;
  background-size: 380%;
  background-repeat: no-repeat;
  position: relative;
}
.why-card__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.2) 100%);
}
.why-card__body { padding: 28px; }
.why-card__num {
  font-family: var(--font-display); font-style: italic; font-weight: 800;
  font-size: 44px; color: var(--red); line-height: 1; margin-bottom: 8px;
}
.why-card__title { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 22px; line-height: 1.2; margin-bottom: 8px; }
.why-card__body p { color: var(--ink-2); font-size: 15px; line-height: 1.55; }

/* Ticker strip — scrolling mini text */
.marquee {
  background: var(--red);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 22px;
}
.marquee__track {
  display: inline-flex; gap: 48px;
  animation: marquee 30s linear infinite;
  padding-left: 48px;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee__track span::after {
  content: "★";
  color: var(--yellow);
  font-style: normal;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Floating sparkle position helpers */
.deco-top-left    { top: -20px; left: -10px; }
.deco-top-right   { top: -20px; right: -10px; }
.deco-bot-right   { bottom: -20px; right: -10px; }
.deco-bot-left    { bottom: -20px; left: -10px; }

/* ==========================================================================
   MOBILE REFINEMENTS
   ========================================================================== */

@media (max-width: 820px) {
  .hero { min-height: 78vh; padding: calc(var(--py) * 0.5) var(--px) var(--py); }
  .hero h1 { font-size: clamp(40px, 10vw, 64px); }
  .hero__lede { font-size: 15px; }
  .hero-info { margin-top: -40px; padding: 18px; }
  .hero-info__cell .value { font-size: 16px; }
  .hero-info__cell .label { font-size: 10px; }
  .rating-band { font-size: 13px; gap: 12px; padding: 20px var(--px); flex-direction: column; }
  .rating-band .dot { display: none; }
}

@media (max-width: 600px) {
  :root { --py: clamp(48px, 10vw, 88px); }
  .menu-hero { padding: 130px var(--px) 40px !important; }
  .menu-sticky { top: 79px; padding: 12px 0; margin-top: -1px; }
  .menu-sticky a { font-size: 12px; padding: 7px 12px; }
  .menu-cat { scroll-margin-top: 160px; padding-top: 48px; }
  .menu-cat__name { font-size: 30px; }
  .menu-row { padding: 14px 0; }
  .menu-row__name { font-size: 17px; }
  .menu-row__desc { font-size: 13px; }
  .menu-row__price { font-size: 15px; }
  .section--snug { padding-top: 48px; padding-bottom: 48px; }
  .intro-row { margin-bottom: 32px; }
  .cta-band { padding: 32px 24px; }
  .cta-band h2 { font-size: clamp(28px, 8vw, 40px); }
  .footer-grid { gap: 28px; padding-bottom: 32px; }
  .specials-day { padding: 18px; }
  .specials-day .day { font-size: 20px; }
  .drink-card { padding: 18px; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .btn-sm { padding: 8px 14px; font-size: 12px; }
  .site-header__inner { padding: 10px var(--px); gap: 12px; }
  .header-ctas .btn-sm { padding: 8px 14px; font-size: 12px; }
  .eyebrow, .eyebrow-star { font-size: 11px; letter-spacing: 0.14em; }
  .quote { font-size: clamp(19px, 5vw, 26px); }
  .marquee { font-size: 16px; padding: 10px 0; }
  .circle-badge { width: 92px; height: 92px; font-size: 16px; }
  .photo-stack { padding: 0 24px 24px 0; }
  .photo-stack__accent { width: 45%; }
  .sun-deco { width: 100px; height: 100px; }
  .sun-deco--sm { width: 64px; height: 64px; }
  .star-deco--lg { width: 36px; height: 36px; }
  section[style*="padding-top:180px"] { padding-top: 130px !important; }
  .food-collage { gap: 8px; }
}

/* Mobile drawer polish */
.mobile-drawer a { font-size: 30px; padding: 14px 0; }

/* ==========================================================================
   SOCIAL ICONS
   ========================================================================== */
.social-links { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  font-size: 14px; font-weight: 600;
  color: rgba(250,244,230,0.9);
  transition: background-color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.social-link:hover { background: rgba(255,210,48,0.12); border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.social-link__icon {
  width: 20px; height: 20px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.social-link__icon svg { width: 100%; height: 100%; fill: currentColor; }

/* Compact circular variant for inline contact lists */
.social-link--circle {
  width: 44px; height: 44px; padding: 0;
  justify-content: center;
  border-radius: 50%;
}
.social-link--circle .social-link__icon { width: 22px; height: 22px; }
.social-link--circle span:not(.social-link__icon) { display: none; }

/* Light surface variant */
.social-link--light {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.social-link--light:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* Mobile: hide most floating decorations so they never overlap text */
@media (max-width: 720px) {
  .sparkle-deco,
  .bolt-deco,
  .atom-deco,
  .burst-deco,
  .coffee-deco,
  .fk-deco,
  .cherry-deco,
  .shell-deco,
  .star-deco,
  .dots-cluster-deco {
    display: none !important;
  }
  /* Keep only 1 sun-deco per section — hide any extras */
  .sun-deco { width: 70px !important; height: 70px !important; }
  .sun-deco--sm { width: 50px !important; height: 50px !important; }
  /* Shrink photo-stack badge so it doesn't cover signage */
  .photo-stack .circle-badge { width: 74px !important; height: 74px !important; font-size: 12px !important; padding: 8px; }
  .photo-stack .circle-badge small { font-size: 9px !important; margin-top: 2px !important; }
}

/* --- 2-for-$32 specials entries --- */
.twofor-entry {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 8px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink);
}
.twofor-entry strong {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  font-size: 15px;
}

@media (max-width: 820px) {
  .menu-cat__head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .menu-cat__note { text-align: left; max-width: none; }
  .menu-cat-intro { font-size: 14px; line-height: 1.55; }
  .twofor-entry { padding: 10px 12px; font-size: 14px; }
  .twofor-entry strong { font-size: 14.5px; }
  /* 2-for-$32 3-col grid becomes stacked with more breathing room */
  #2for32 h4.h4 {
    margin-top: 8px !important;
    padding-top: 18px;
    border-top: 2px solid var(--red);
    font-size: 20px;
  }
  #2for32 h4.h4:first-of-type { padding-top: 0; border-top: 0; margin-top: 0 !important; }
}

/* --- Back-to-presentation pill ------------------------------------------- */
.deck-return {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #0078ff;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 30px rgba(0, 120, 255, 0.35), 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.deck-return:hover {
  background: #0061d0;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 120, 255, 0.45), 0 2px 6px rgba(0, 0, 0, 0.15);
}
.deck-return__arrow {
  display: inline-block;
  font-weight: 800;
  transition: transform 0.2s var(--ease);
}
.deck-return:hover .deck-return__arrow { transform: translateX(-3px); }
@media (max-width: 600px) {
  .deck-return { left: 12px; bottom: 12px; padding: 10px 16px; font-size: 12px; }
}
