/* ==========================================================================
   Mariscos Uruapan – Irwindale
   style.css
   --------------------------------------------------------------------------
   Table of contents
     1. Variables & reset
     2. Typography & utilities
     3. Buttons & chips
     4. Decorative elements (sarape stripe, talavera border, ornaments, frames)
     5. Header & navigation
     6. Hero slider
     7. Fan Favorites slider + dish cards
     8. Explore Our Flavors
     9. Breakfast parallax banner
    10. Our Story
    11. Footer
    12. Modal
    13. Menu page (banner, search, filters, cards)
    14. Back to top
    15. Responsive breakpoints
   ========================================================================== */

/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
  /* Palette */
  --charcoal:      #1c1a17;
  --wood:          #3b2417;
  --wood-light:    #5a3a25;
  --red:           #b8221c;
  --red-orange:    #d9481f;
  --burnt-orange:  #c66a17;
  --gold:          #e2a521;
  --gold-light:    #f2c85b;
  --agave:         #2f6f4e;
  --leaf:          #4f8f3a;
  --turquoise:     #1f9c99;
  --deep-blue:     #16405f;
  --cream:         #f6ead3;
  --cream-dark:    #eddcb8;
  --cream-text:    #fbf3e4;
  --ink:           #2a211b;
  --ink-soft:      #5c4b3f;

  /* Type */
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Nunito Sans", "Segoe UI", Arial, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .25);
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
body.nav-open, body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; }
p { margin: 0 0 1em; }
[hidden] { display: none !important; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ==========================================================================
   2. TYPOGRAPHY & UTILITIES
   ========================================================================== */
.section { padding: 6rem 0; position: relative; isolation: isolate; }
.section-cream { background: var(--cream); color: var(--ink); }
.section-dark  { background: var(--charcoal); color: var(--cream-text); }

/* --- Section background images ------------------------------------------
   Every row (sections, menu banner, footer) reserves a full-bleed background
   layer. To use a photo, set the variables on that row, e.g. in the HTML:
     <section class="section section-cream fan-favorites"
              style="--row-bg: url('images/bg/favorites.jpg'); --row-overlay: rgba(246,234,211,.88)">
   or in the BACKGROUND PRESETS block at the end of this file.
   --row-bg       image (default none)
   --row-overlay  color layer over the image so text stays readable
   --row-pos      background-position (default center)
   --------------------------------------------------------------------------- */
.section::before, .menu-banner::before, .site-footer::before, .breakfast-banner::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: var(--row-bg, none);
  background-size: cover; background-position: var(--row-pos, center); background-repeat: no-repeat;
}
.section::after, .menu-banner::after, .site-footer::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: var(--row-overlay, transparent);
}
.section > .container, .menu-banner > .container, .site-footer > .container { position: relative; z-index: 1; }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 2.5rem; }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0;
  margin-bottom: .75rem;
}
.section-cream .section-title { color: var(--red); }
.section-dark  .section-title { color: var(--gold); }
.section-text { font-size: 1.08rem; color: inherit; opacity: .92; }
.section-cta { text-align: center; margin-top: 2.5rem; }

.kicker {
  display: inline-block;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: .6rem;
}
.kicker-gold { color: var(--gold); }

.fade-in { animation: fadeIn .35s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   3. BUTTONS & CHIPS
   ========================================================================== */
.btn {
  display: inline-block;
  padding: .85rem 1.7rem;
  border-radius: 6px;
  border: 2px solid transparent;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .9rem;
  text-decoration: none;
  transition: transform .15s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 0 rgba(0, 0, 0, .25);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); box-shadow: 0 2px 0 rgba(0, 0, 0, .25); }
.btn-sm { padding: .55rem 1.1rem; font-size: .8rem; }

.btn-primary { background: var(--red); color: var(--cream-text); border-color: var(--red); }
.btn-primary:hover { background: var(--red-orange); border-color: var(--red-orange); }
.btn-gold { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: var(--cream-text); border-color: var(--cream-text); box-shadow: none; }
.btn-outline:hover { background: var(--cream-text); color: var(--charcoal); }
.btn-ghost { background: transparent; color: var(--wood); border-color: var(--wood); box-shadow: none; }
.btn-ghost:hover { background: var(--wood); color: var(--cream-text); }

.chip {
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--cream-text);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-weight: 700;
  font-size: .9rem;
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}
.chip:hover { border-color: var(--gold-light); color: var(--gold-light); }
.chip.is-active { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.chip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: 2rem; }

/* ==========================================================================
   4. DECORATIVE ELEMENTS
   ========================================================================== */
/* Sarape / textile stripe – hard color stops, no soft gradients */
.sarape-stripe {
  height: 8px;
  background: repeating-linear-gradient(90deg,
    var(--red) 0 40px, var(--gold) 40px 70px, var(--turquoise) 70px 110px,
    var(--red-orange) 110px 140px, var(--leaf) 140px 170px, var(--deep-blue) 170px 200px,
    var(--cream) 200px 215px);
}
/* Talavera-style tile border made with pure CSS repeating shapes */
.talavera-border {
  height: 14px;
  background:
    radial-gradient(circle at 7px 7px, var(--gold) 3px, transparent 3.5px) 0 0 / 28px 14px repeat-x,
    radial-gradient(circle at 21px 7px, var(--turquoise) 3px, transparent 3.5px) 0 0 / 28px 14px repeat-x,
    var(--deep-blue);
}
/* Small floral ornament used above titles */
.ornament {
  display: block;
  width: 120px;
  height: 14px;
  margin: 0 auto 1rem;
  background:
    radial-gradient(circle at 50% 50%, var(--red) 5px, transparent 5.5px) center / 14px 14px no-repeat,
    linear-gradient(var(--gold), var(--gold)) left center / 44px 3px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right center / 44px 3px no-repeat;
}
/* Carved-wood photo frame with corner accents */
.carved-frame {
  position: relative;
  padding: 10px;
  background: var(--wood);
  border: 4px solid var(--burnt-orange);
  outline: 3px solid var(--wood);
  outline-offset: 4px;
  box-shadow: var(--shadow);
}
.carved-frame img { width: 100%; height: 100%; object-fit: cover; }
.carved-frame::before, .carved-frame::after {
  content: "";
  position: absolute;
  width: 26px; height: 26px;
  border: 4px solid var(--gold);
  pointer-events: none;
}
.carved-frame::before { top: -12px; left: -12px; border-right: 0; border-bottom: 0; }
.carved-frame::after  { bottom: -12px; right: -12px; border-left: 0; border-top: 0; }

/* Wave divider between the hero and the next section */
.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 3; }
.wave-divider svg { width: 100%; height: 60px; display: block; }
.wave-cream svg path { fill: var(--cream); }

/* ==========================================================================
   5. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--charcoal);
  color: var(--cream-text);
  border-bottom: 3px solid var(--wood-light);
  transition: box-shadow .2s;
}
.site-header.is-scrolled { box-shadow: 0 6px 20px rgba(0, 0, 0, .35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }

.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand-logo { height: 58px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--gold); }
.brand-sub { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cream-dark); }

.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-list { display: flex; align-items: center; gap: 1.4rem; }
.nav-link {
  text-decoration: none; font-weight: 700; letter-spacing: .04em; font-size: .95rem;
  color: var(--cream-text); padding: .4rem 0; position: relative;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .2s;
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

.social-list { display: flex; align-items: center; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.social-list li { display: flex; }
.social-list a {
  display: flex; width: 38px; height: 38px; align-items: center; justify-content: center;
  border-radius: 50%; border: 2px solid var(--gold); color: var(--gold); line-height: 0;
  transition: background .2s, color .2s;
}
.social-list a:hover { background: var(--gold); color: var(--charcoal); }
.social-list svg { display: block; width: 18px; height: 18px; }
.social-list svg:not([fill="none"]) { fill: currentColor; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 2px solid var(--gold); border-radius: 6px;
  background: transparent; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 3px; background: var(--gold); transition: transform .25s, opacity .25s; }
.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); }

/* ==========================================================================
   6. HERO SLIDER
   ========================================================================== */
.hero { position: relative; background: var(--charcoal); }
.hero-slider { position: relative; height: clamp(520px, 78vh, 820px); overflow: hidden; outline: none; }
.hero-slides, .hero-slide { position: absolute; inset: 0; margin: 0; }
.hero-slide { opacity: 0; transition: opacity 1s ease; }
.hero-slide.is-active { opacity: 1; }
/* object-fit: cover keeps the photo proportions (no stretching); framing is by crop only */
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: rgba(20, 14, 10, .55); }

.hero-content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem 1rem; z-index: 2; }
.hero-frame {
  position: relative; padding: 2.4rem 2.6rem; max-width: 760px;
  border: 3px solid var(--gold); background: rgba(28, 26, 23, .55);
}
.hero-frame::before, .hero-frame::after {
  content: ""; position: absolute; width: 34px; height: 34px; border: 3px solid var(--turquoise);
}
.hero-frame::before { top: -14px; left: -14px; border-right: 0; border-bottom: 0; }
.hero-frame::after  { bottom: -14px; right: -14px; border-left: 0; border-top: 0; }
.hero-kicker { display: block; color: var(--gold-light); font-weight: 800; letter-spacing: .3em; text-transform: uppercase; font-size: .8rem; margin-bottom: .8rem; }
.hero-title {
  font-family: var(--font-display); font-weight: 700; color: var(--cream-text);
  font-size: clamp(2.6rem, 7vw, 5rem); letter-spacing: -.01em; text-shadow: 0 3px 0 var(--red), 0 8px 24px rgba(0, 0, 0, .55);
}
.hero-subtitle { color: var(--gold); font-size: clamp(1.05rem, 2.2vw, 1.5rem); letter-spacing: .2em; text-transform: uppercase; font-weight: 700; margin: .7rem 0 1.6rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--gold);
  background: rgba(28, 26, 23, .7); color: var(--gold); font-size: 1.2rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s;
}
.slider-arrow:hover { background: var(--gold); color: var(--charcoal); }
.slider-prev { left: 1rem; } .slider-next { right: 1rem; }

.slider-dots { display: flex; gap: .6rem; justify-content: center; }
.hero .slider-dots { position: absolute; bottom: 4.5rem; left: 0; right: 0; z-index: 4; }
.dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--gold); background: transparent; padding: 0; transition: background .2s, transform .2s; }
.dot.is-active { background: var(--gold); transform: scale(1.25); }
.slider-dots-dark { margin-top: 1.5rem; }
.slider-dots-dark .dot { border-color: var(--red); }
.slider-dots-dark .dot.is-active { background: var(--red); }

/* ==========================================================================
   7. FAN FAVORITES SLIDER + DISH CARDS
   ========================================================================== */
.cards-slider { position: relative; padding: 0 3.2rem; }
.cards-viewport { overflow: hidden; }
.cards-track { display: flex; gap: 1.5rem; transition: transform .5s ease; will-change: transform; }
.cards-prev { left: 0; } .cards-next { right: 0; }
.cards-slider .slider-arrow { background: var(--wood); border-color: var(--wood); color: var(--gold); }
.cards-slider .slider-arrow:hover { background: var(--red); border-color: var(--red); color: var(--cream-text); }

/* card width: 4 per view on desktop; media queries adjust to 2 and 1 */
.dish-card {
  flex: 0 0 calc((100% - 3 * 1.5rem) / 4);
  background: #fff8ea;
  border: 3px solid var(--wood);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 6px 0 var(--wood-light), 0 12px 24px rgba(0, 0, 0, .15);
  transition: transform .2s, box-shadow .2s;
}
.dish-card:hover, .dish-card:focus-visible { transform: translateY(-5px); box-shadow: 0 10px 0 var(--red), 0 18px 30px rgba(0, 0, 0, .2); outline: none; }
.dish-card-media { aspect-ratio: 4 / 3; overflow: hidden; border-bottom: 4px solid var(--gold); background: var(--charcoal); }
.dish-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.dish-card:hover .dish-card-media img { transform: scale(1.05); }
.dish-card-body { padding: 1rem 1.1rem 1.2rem; }
.dish-card-title { font-family: var(--font-display); font-weight: 700; color: var(--red); font-size: 1.05rem; margin-bottom: .4rem; }
.dish-card-desc { font-size: .92rem; color: var(--ink-soft); margin-bottom: .6rem; }
.dish-card-more { font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--turquoise); }

/* ==========================================================================
   8. EXPLORE OUR FLAVORS
   ========================================================================== */
.flavors { padding: 0; }
.flavors .container { padding: 6rem 0; }
.flavor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.flavor-item {
  background: var(--wood);
  border-left: 6px solid var(--red-orange);
  padding: 1.4rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  position: relative;
}
.flavor-item:nth-child(2) { border-left-color: var(--gold); }
.flavor-item:nth-child(3) { border-left-color: var(--turquoise); }
.flavor-item h3 { font-family: var(--font-display); font-weight: 700; color: var(--gold-light); font-size: 1.15rem; margin-bottom: .5rem; }
.flavor-item p { color: var(--cream-dark); font-size: .95rem; margin: 0; }

/* ==========================================================================
   9. BREAKFAST PARALLAX BANNER
   ========================================================================== */
.breakfast-banner { position: relative; overflow: hidden; padding: 7rem 0; color: var(--cream-text); background: var(--charcoal); }
.parallax-bg {
  position: absolute; inset: -10% 0; background-size: cover; background-position: center;
  transform: scale(1.15); will-change: transform; z-index: 0;
}
.breakfast-overlay { position: absolute; inset: 0; background: rgba(20, 14, 10, .5); z-index: 1; }
.breakfast-content { position: relative; z-index: 2; display: flex; justify-content: flex-start; }
.breakfast-card {
  background: var(--wood);
  border: 3px solid var(--gold);
  padding: 2.4rem 2.6rem;
  max-width: 560px;
  box-shadow: var(--shadow);
  position: relative;
}
.breakfast-card::before {
  content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(226, 165, 33, .6); pointer-events: none;
}
.breakfast-card .section-title { color: var(--gold); font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.breakfast-hours { color: var(--gold-light); margin-top: .5rem; }
.breakfast-note { font-size: .9rem; color: var(--cream-dark); font-style: italic; margin-bottom: 1.5rem; }

/* ==========================================================================
   10. OUR STORY
   ========================================================================== */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.story-photo .carved-frame { aspect-ratio: 4 / 3; }
.story-photo .carved-frame img { aspect-ratio: 4 / 3; }
.story-text .section-title { text-align: left; }
.story-text p { font-size: 1.08rem; margin-bottom: 1.6rem; }

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.site-footer { position: relative; isolation: isolate; background: var(--wood); color: var(--cream-text); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1.2fr .8fr 1.3fr; gap: 2.5rem; padding: 3.5rem 0 3rem; }
.footer-logo { height: 90px; width: auto; margin-bottom: .6rem; }
.footer-tagline { text-transform: uppercase; letter-spacing: .18em; font-size: .75rem; color: var(--gold); font-weight: 800; }
.footer-brand .btn { margin: .4rem 0 1.2rem; }
.footer-title {
  font-family: var(--font-display); font-weight: 700; color: var(--gold); font-size: 1.1rem; margin: 0 0 .8rem;
  padding-bottom: .4rem; border-bottom: 2px solid var(--red-orange); display: inline-block;
}
.footer-col p { margin-bottom: .5rem; }
.footer-col a { color: var(--cream-text); text-decoration: none; }
.footer-col a:hover { color: var(--gold-light); text-decoration: underline; }
.footer-col + .footer-col .footer-title { margin-top: .2rem; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .3rem 0; border-bottom: 1px dotted rgba(246, 234, 211, .25); font-size: .95rem; }
.hours-list li span:last-child { text-align: right; }
.hours-list .hours-note { display: block; border: 0; font-size: .85rem; color: var(--cream-dark); font-style: italic; }
.footer-links li { padding: .25rem 0; }
.footer-links a::before { content: "\2726  "; color: var(--gold); }
.map-frame { border: 3px solid var(--gold); background: var(--charcoal); aspect-ratio: 4 / 3; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.footer-bottom { position: relative; z-index: 1; background: var(--charcoal); padding: 1rem 0; font-size: .85rem; color: var(--cream-dark); }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--gold); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ==========================================================================
   12. MODAL
   ========================================================================== */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(20, 14, 10, .8); }
.modal-dialog {
  position: relative; width: min(920px, 100%); max-height: 92vh; overflow: auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  background: var(--cream); border: 4px solid var(--wood); box-shadow: var(--shadow);
  animation: fadeIn .25s ease both;
}
.modal-media { background: var(--charcoal); min-height: 320px; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 2.2rem 2rem; }
.modal-title { font-family: var(--font-display); font-weight: 700; color: var(--red); font-size: 1.6rem; margin-bottom: .8rem; }
.modal-desc { font-size: 1.02rem; color: var(--ink); }
.modal-extra { margin-bottom: 1.4rem; }
.modal-close {
  position: absolute; top: .6rem; right: .6rem; z-index: 2; width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--gold); background: var(--charcoal); color: var(--gold); font-size: 1.5rem; line-height: 1;
}
.modal-close:hover { background: var(--red); color: var(--cream-text); border-color: var(--red); }

/* ==========================================================================
   13. MENU PAGE
   ========================================================================== */
.menu-banner { position: relative; isolation: isolate; background: var(--charcoal); color: var(--cream-text); text-align: center; padding-bottom: 4.5rem; }
.menu-banner .container { padding-top: 4.5rem; max-width: 820px; }
.menu-banner .section-title { color: var(--gold); }
.search-invite { font-weight: 700; color: var(--gold-light); margin: 1.6rem 0 1rem; }

.search-box {
  display: flex; align-items: center; gap: .6rem; background: var(--cream); border: 3px solid var(--gold);
  border-radius: 999px; padding: .35rem .5rem .35rem 1rem; max-width: 720px; margin: 0 auto;
}
.search-icon { color: var(--wood); font-size: 1.3rem; transform: rotate(-45deg); display: inline-block; }
.search-input {
  flex: 1; border: 0; background: transparent; font: inherit; font-size: 1rem; color: var(--ink); padding: .5rem .2rem; min-width: 0;
}
.search-input:focus { outline: none; }
.search-input::placeholder { color: var(--ink-soft); }
.search-box .btn-ghost { border-radius: 999px; }

.menu-filters {
  position: sticky; top: var(--header-h); z-index: 90;
  background: var(--wood); border-top: 3px solid var(--gold); border-bottom: 3px solid var(--charcoal);
  padding: .8rem 0;
}
.filters-inner { display: flex; align-items: center; gap: 1rem; }
.chip-scroll {
  display: flex; gap: .5rem; overflow-x: auto; flex: 1; padding: .2rem .2rem .5rem; scrollbar-width: thin; scrollbar-color: var(--brand-blue) transparent;
  -webkit-overflow-scrolling: touch;
}
.chip-scroll::-webkit-scrollbar { height: 5px; }
.chip-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.chip-scroll .chip { font-size: .85rem; padding: .45rem 1rem; flex: 0 0 auto; }
.filters-tools { display: flex; align-items: center; gap: .8rem; flex: 0 0 auto; }
.results-count { color: var(--gold-light); font-weight: 800; font-size: .85rem; white-space: nowrap; }
.filters-tools .btn-ghost { color: var(--cream-text); border-color: var(--gold); }
.filters-tools .btn-ghost:hover { background: var(--gold); color: var(--charcoal); }

.menu-results { padding: 0; }

/* Each category is its own full-bleed row. Rows alternate warm tones
   (via .color-N) and each has an accent color used for the heading
   ornament, the section rule and the card accent. */
.menu-category {
  --row-tint: var(--cream);
  --row-accent: var(--red);
  --row-heading: var(--wood);
  position: relative; isolation: isolate;
  margin-inline: calc(50% - 50vw);
  padding: 4rem calc(50vw - 50%) 4.5rem;
  background: var(--row-tint);
  border-top: 1px solid rgba(90, 58, 37, .12);
}
.menu-category::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: var(--row-bg, none); background-size: cover; background-position: var(--row-pos, center);
}
.menu-category::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: var(--row-overlay, transparent);
}
/* Rows alternate between two neutral creams; only the accent changes. */
.menu-category:nth-child(even) { --row-tint: #f1e5cf; }
.color-1 { --row-accent: var(--agave);        --row-heading: var(--agave); }
.color-2 { --row-accent: var(--deep-blue);    --row-heading: var(--deep-blue); }
.color-3 { --row-accent: var(--burnt-orange); --row-heading: var(--wood); }
.color-4 { --row-accent: var(--turquoise);    --row-heading: #1f6b6b; }
.color-5 { --row-accent: var(--gold);         --row-heading: var(--wood); }

.menu-category-head { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 2rem; }
.menu-category-head h2 {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: var(--row-heading); line-height: 1.1; padding-bottom: .6rem; position: relative;
}
.menu-category-head h2::after {
  content: ""; display: block; width: 64px; height: 3px; margin-top: .7rem; background: var(--row-accent);
}
.menu-category-note { margin: .9rem 0 0; font-size: .95rem; color: var(--ink-soft); font-style: italic; max-width: 70ch; }

.menu-subheading {
  font-family: var(--font-display); font-weight: 700; color: var(--row-heading); font-size: 1.25rem; margin: 2rem 0 1rem;
  display: flex; align-items: center; gap: .9rem;
}
.menu-subheading::after { content: ""; flex: 1; height: 1px; background: rgba(90, 58, 37, .25); }

.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.menu-card {
  background: #fffcf5;
  border-left: 4px solid var(--row-accent);
  border-radius: 4px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 2px 10px rgba(42, 33, 27, .08);
  transition: transform .15s, box-shadow .15s;
}
.menu-card:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(42, 33, 27, .14); }
.menu-card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--ink); margin-bottom: .45rem; }
.menu-card-desc { font-size: .95rem; color: var(--ink-soft); margin-bottom: .6rem; }
.menu-card-meta { font-size: .85rem; color: var(--ink-soft); margin-bottom: .35rem; }
.meta-label { font-weight: 800; color: var(--row-heading); text-transform: uppercase; font-size: .72rem; letter-spacing: .1em; }
.menu-card-note { font-size: .85rem; font-weight: 700; color: var(--row-heading); margin: .4rem 0 0; }

.no-results { text-align: center; padding: 3rem 1rem; font-size: 1.1rem; color: var(--ink-soft); }
.no-results .btn { margin-top: .5rem; }

/* ==========================================================================
   14. BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 150;
  width: 48px; height: 48px; border-radius: 50%; background: var(--red); color: var(--cream-text);
  border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; text-decoration: none; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .25s, transform .25s, visibility .25s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--gold); color: var(--charcoal); }

/* ==========================================================================
   15. RESPONSIVE
   ========================================================================== */
/* Tablet */
@media (max-width: 1024px) {
  .dish-card { flex-basis: calc((100% - 1.5rem) / 2); }
  .flavor-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { gap: 2.5rem; }
}

/* Mobile navigation kicks in below 900px */
@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .brand-logo { height: 48px; }
  .brand-sub { display: none; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; top: var(--header-h); right: 0; bottom: 0; width: min(320px, 85vw);
    flex-direction: column; align-items: stretch; gap: 2rem;
    background: var(--wood); border-left: 4px solid var(--gold);
    padding: 2rem 1.6rem; transform: translateX(100%); transition: transform .3s ease;
    overflow-y: auto; box-shadow: -10px 0 30px rgba(0, 0, 0, .4);
  }
  .site-nav.is-open { transform: none; }
  .nav-list { flex-direction: column; align-items: stretch; gap: .4rem; }
  .nav-list li { border-bottom: 1px solid rgba(246, 234, 211, .15); }
  .nav-list li:last-child { border: 0; padding-top: 1rem; }
  .nav-link { display: block; padding: .9rem 0; font-size: 1.05rem; }
  .nav-link::after { display: none; }
  .nav-list .btn { display: block; text-align: center; }
  .social-list { justify-content: center; }
  .filters-inner { flex-wrap: wrap; }
  .filters-tools { width: 100%; justify-content: space-between; }
}

/* Phone */
@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .hero-slider { height: clamp(480px, 82vh, 640px); }
  .hero-frame { padding: 1.6rem 1.2rem; }
  .hero-frame::before, .hero-frame::after { display: none; }
  .hero .slider-dots { bottom: 3.6rem; }
  .slider-arrow { width: 40px; height: 40px; }
  .hero .slider-prev { left: .4rem; } .hero .slider-next { right: .4rem; }

  .cards-slider { padding: 0 2.6rem; }
  .dish-card { flex-basis: 100%; }
  .flavors .container { padding: 3.5rem 0; }
  .flavor-grid { grid-template-columns: 1fr; }
  .chip-row { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: .5rem; }

  .breakfast-banner { padding: 3.5rem 0; }
  .breakfast-card { padding: 1.8rem 1.4rem; }
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { justify-content: center; text-align: center; }

  .modal-dialog { grid-template-columns: 1fr; }
  .modal-media { min-height: 220px; max-height: 280px; }
  .modal-body { padding: 1.6rem 1.3rem; }

  .search-box { border-radius: 14px; flex-wrap: wrap; padding: .6rem .8rem; }
  .search-input { flex-basis: 100%; order: 1; }
  .search-icon { order: 0; }
  .search-box .btn-ghost { order: 2; width: 100%; margin-top: .3rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-category-head h2 { font-size: 1.5rem; }
}

/* ==========================================================================
   BACKGROUND PRESETS (optional)
   Drop your photos in images/bg/ and uncomment the rows you want.
   Overlays keep text readable; adjust the alpha (last number) to taste.
   ========================================================================== */
/*
.fan-favorites { --row-bg: url("images/bg/favorites.jpg");  --row-overlay: rgba(246, 234, 211, .88); }
.flavors       { --row-bg: url("images/bg/flavors.jpg");    --row-overlay: rgba(28, 26, 23, .82); }
.our-story     { --row-bg: url("images/bg/story.jpg");      --row-overlay: rgba(246, 234, 211, .90); }
.menu-banner   { --row-bg: url("images/bg/menu-banner.jpg");--row-overlay: rgba(28, 26, 23, .72); }
.menu-results  { --row-bg: url("images/bg/menu.jpg");       --row-overlay: rgba(246, 234, 211, .92); }
.site-footer   { --row-bg: url("images/bg/footer.jpg");     --row-overlay: rgba(18, 58, 102, .88); }
*/

/* ==========================================================================
   LIGHT THEME OVERRIDES
   Brighter, cleaner surfaces (whites / soft cream) with the traditional
   red · gold · blue accents. Dark surfaces remain only in hero, breakfast
   banner and footer for contrast.
   ========================================================================== */
:root {
  --brand-blue: #1e6db3;
  --cream: #fbf9f4;
  --cream-dark: #efe9dc;
  --paper: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.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 .05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
body { background: #fff var(--paper); }

/* Header: white */
.site-header { background: #fff; color: var(--ink); border-bottom: 1px solid rgba(42, 33, 27, .1); }
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(0, 0, 0, .1); }
.brand-name { color: var(--brand-blue); }
.brand-sub { color: var(--ink-soft); }
.nav-link { color: var(--ink); }
.nav-link::after { background: var(--brand-blue); }
.social-list a { border-color: var(--brand-blue); color: var(--brand-blue); }
.social-list a:hover { background: var(--brand-blue); color: #fff; }
.nav-toggle { border-color: var(--brand-blue); }
.nav-toggle span { background: var(--brand-blue); }
@media (max-width: 900px) {
  .site-nav { background: #fff; border-left: 4px solid var(--brand-blue); box-shadow: -10px 0 30px rgba(0, 0, 0, .15); }
  .nav-list li { border-bottom-color: rgba(42, 33, 27, .1); }
}

/* Generic sections */
.section-cream { background: #fff var(--paper); }
.section-dark  { background: #f4f1ea var(--paper); color: var(--ink); }
.section-dark .section-title { color: var(--brand-blue); }
.section-dark .kicker { color: var(--red); }
.kicker { color: var(--brand-blue); }
.wave-cream svg path { fill: #fff; }

/* Explore Our Flavors */
.flavor-item { background: #fff; box-shadow: 0 2px 10px rgba(42, 33, 27, .08); }
.flavor-item h3 { color: var(--ink); }
.flavor-item p { color: var(--ink-soft); }
.chip { border-color: var(--brand-blue); color: var(--brand-blue); background: #fff; }
.chip:hover { border-color: var(--deep-blue); color: var(--deep-blue); }
.chip.is-active { background: var(--brand-blue); border-color: var(--brand-blue); color: #fff; }

/* Fan favorites cards */
.dish-card { background: #fff; border-color: rgba(42, 33, 27, .12); box-shadow: 0 4px 16px rgba(42, 33, 27, .1); }
.dish-card:hover, .dish-card:focus-visible { box-shadow: 0 12px 28px rgba(42, 33, 27, .16); }
.dish-card-media { border-bottom-color: var(--brand-blue); background: #f4f1ea; }
.dish-card-title { color: var(--ink); }
.dish-card-more { color: var(--brand-blue); }
.slider-dots-dark .dot { border-color: var(--brand-blue); }
.slider-dots-dark .dot.is-active { background: var(--brand-blue); }
.cards-slider .slider-arrow { background: #fff; border-color: var(--brand-blue); color: var(--brand-blue); }
.cards-slider .slider-arrow:hover { background: var(--brand-blue); border-color: var(--brand-blue); color: #fff; }

/* Menu page */
.menu-banner { background: #fff var(--paper); color: var(--ink); border-bottom: 1px solid rgba(42, 33, 27, .08); }
.menu-banner .section-title { color: var(--brand-blue); }
.menu-banner .kicker { color: var(--red); }
.search-invite { color: var(--ink-soft); }
.search-box { background: #fff; border-color: var(--brand-blue); box-shadow: 0 4px 14px rgba(42, 33, 27, .08); }
.search-icon { color: var(--brand-blue); }
.menu-filters { background: #fff; border-top: 0; border-bottom: 1px solid rgba(42, 33, 27, .1); box-shadow: 0 4px 14px rgba(42, 33, 27, .06); }
.chip-scroll::-webkit-scrollbar-thumb { background: var(--brand-blue); }
.results-count { color: var(--ink-soft); }
.filters-tools .btn-ghost { color: var(--brand-blue); border-color: var(--brand-blue); }
.filters-tools .btn-ghost:hover { background: var(--brand-blue); color: #fff; }
.menu-category { --row-tint: #fff; }
.menu-category:nth-child(even) { --row-tint: #f6f3ec; }
.menu-category { border-top-color: rgba(42, 33, 27, .08); }
.menu-card { background: #fff; }
.color-2 { --row-accent: var(--brand-blue); --row-heading: var(--brand-blue); }

/* Modal */
.modal-dialog { background: #fff; border-color: var(--brand-blue); }

/* Back to top */
.back-to-top { background: var(--brand-blue); border-color: #fff; }
.back-to-top:hover { background: var(--red); }

/* ==========================================================================
   FINAL ADJUSTMENTS
   - Menu rows: all identical (blue heading, beige background).
   - Breakfast: no box; text occupies left half of the row over the photo.
   - Footer: dark blue.
   - Logos: images/logo-header.png and images/logo-footer.png (swap freely).
   ========================================================================== */
:root { --navy: #123a66; --navy-dark: #0d2c4f; }

.menu-category,
.menu-category:nth-child(even) { --row-tint: #f4efe4; }
.menu-category.color-0, .menu-category.color-1, .menu-category.color-2,
.menu-category.color-3, .menu-category.color-4, .menu-category.color-5 {
  --row-accent: var(--brand-blue); --row-heading: var(--brand-blue);
}

.breakfast-banner { background: var(--charcoal); }
.breakfast-overlay { background: linear-gradient(90deg, rgba(20, 14, 10, .72) 0%, rgba(20, 14, 10, .55) 50%, rgba(20, 14, 10, 0) 100%); }
.breakfast-card { background: transparent; border: 0; box-shadow: none; padding: 0; max-width: none; width: 50%; }
.breakfast-card::before { display: none; }
.breakfast-card .section-title { color: #fff; text-shadow: 0 2px 10px rgba(0, 0, 0, .45); }
.breakfast-card p { text-shadow: 0 1px 6px rgba(0, 0, 0, .45); }
.breakfast-hours { color: var(--gold-light); }
.breakfast-note { color: var(--cream); }
@media (max-width: 720px) {
  .breakfast-card { width: 100%; }
  .breakfast-overlay { background: rgba(20, 14, 10, .6); }
}

.site-footer { background: var(--navy); }
.footer-bottom { background: var(--navy-dark); color: rgba(255, 255, 255, .8); }
.footer-title { color: #fff; border-bottom-color: var(--gold); }
.footer-tagline { color: var(--gold-light); }
.footer-col a { color: rgba(255, 255, 255, .92); }
.footer-col a:hover { color: var(--gold-light); }
.hours-list li { border-bottom-color: rgba(255, 255, 255, .2); }
.hours-list .hours-note { color: rgba(255, 255, 255, .75); }
.map-frame { border-color: var(--gold); background: var(--navy-dark); }
.footer-bottom a { color: var(--gold-light); }
.breakfast-card .kicker { color: var(--gold-light); }
.site-footer .social-list a { border-color: #fff; color: #fff; }
.site-footer .social-list a:hover { background: #fff; color: var(--navy); }

/* Hero: no card; text sits directly on the photo with a soft gradient. */
.hero-overlay { background: linear-gradient(180deg, rgba(20, 14, 10, .15) 0%, rgba(20, 14, 10, .2) 55%, rgba(20, 14, 10, .7) 100%); }
.hero-frame { background: transparent; border: 0; box-shadow: none; padding: 0; max-width: 900px; }
.hero-frame::before, .hero-frame::after { display: none; }
.hero-title, .hero-subtitle, .hero-kicker { text-shadow: 0 2px 14px rgba(0, 0, 0, .6); }

/* Hero readability: bottom-anchored text with a dark gradient only behind it. */
.hero-overlay { background: linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, .55) 75%, rgba(0, 0, 0, .8) 100%); }
.hero-content { align-items: flex-end; padding-bottom: 7.5rem; }
.hero-title { color: #fff; text-shadow: 0 2px 6px rgba(0, 0, 0, .8), 0 6px 24px rgba(0, 0, 0, .6); }
.hero-subtitle, .hero-kicker { color: #fff; text-shadow: 0 1px 4px rgba(0, 0, 0, .9), 0 4px 16px rgba(0, 0, 0, .6); }
.hero-subtitle { color: var(--gold-light); }
.hero-actions .btn-outline { border-color: #fff; color: #fff; }
.hero .slider-dots { bottom: 2.5rem; }
@media (max-width: 720px) { .hero-content { padding-bottom: 6rem; } .hero .slider-dots { bottom: 2rem; } }


/* ==========================================================================
   COOKIE CONSENT
   ========================================================================== */
body.consent-open { overflow: hidden; }
.consent-root {
  position: fixed; inset: 0; z-index: 1000; background: rgba(20, 14, 10, .55);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  animation: consentIn .25s ease; transition: opacity .25s;
}
.consent-root.is-closing { opacity: 0; }
@keyframes consentIn { from { opacity: 0; } to { opacity: 1; } }
.consent-box {
  background: #fff; color: #1a1a1a; width: min(780px, 100%); max-height: 92vh; overflow: auto;
  border-radius: 4px; box-shadow: 0 20px 60px rgba(0, 0, 0, .35); font-family: var(--font-body);
}
.consent-brand { display: flex; flex-direction: column; align-items: flex-end; padding: .9rem 1.2rem .6rem; border-bottom: 1px solid #e5e5e5; }
.consent-brand span { font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-size: .85rem; }
.consent-brand small { font-size: .6rem; color: #777; }
.consent-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid #e5e5e5; }
.consent-tab { background: none; border: 0; border-bottom: 3px solid transparent; padding: 1rem; font: inherit; font-size: 1rem; cursor: pointer; color: #333; }
.consent-tab.is-active { border-bottom-color: #1a1a1a; font-weight: 700; }
.consent-panel { display: none; padding: 1.2rem 1.4rem; }
.consent-panel.is-active { display: block; }
.consent-panel h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; margin: 0 0 .6rem; }
.consent-panel p { font-size: .95rem; line-height: 1.5; color: #333; margin: 0 0 .8rem; }
.consent-more { color: #1a1a1a; font-weight: 600; text-decoration: underline; font-size: .95rem; }
.consent-quick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid #e5e5e5; }
.consent-quick-item { display: flex; flex-direction: column; align-items: center; gap: .6rem; font-weight: 700; font-size: .95rem; cursor: pointer; }
.consent-switch { position: absolute; opacity: 0; width: 0; height: 0; }
.consent-toggle { display: inline-block; width: 54px; height: 30px; border-radius: 15px; background: #d9d9d9; position: relative; transition: background .2s; }
.consent-toggle::after { content: ""; position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .3); transition: transform .2s; }
.consent-switch:checked + .consent-toggle { background: #1a1a1a; }
.consent-switch:checked + .consent-toggle::after { transform: translateX(24px); }
.consent-switch:disabled + .consent-toggle { background: #888; cursor: not-allowed; }
.consent-switch:focus-visible + .consent-toggle { outline: 2px solid var(--brand-blue); outline-offset: 2px; }
.consent-group { padding: 1rem 0; border-bottom: 1px solid #e5e5e5; }
.consent-group:last-child { border-bottom: 0; }
.consent-group-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: .4rem; }
.consent-group-head strong { font-size: 1rem; }
.consent-group-head em { font-style: normal; background: #e5e5e5; border-radius: 50%; display: inline-block; width: 22px; height: 22px; line-height: 22px; text-align: center; font-size: .75rem; margin-left: .3rem; }
.consent-switch-wrap { position: relative; cursor: pointer; }
.consent-group p { color: #555; font-size: .92rem; margin: 0; }
.consent-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; padding: 1rem 1.2rem .6rem; }
.consent-btn { background: #1a1a1a; color: #fff; border: 0; border-radius: 4px; padding: .95rem .6rem; font: inherit; font-weight: 700; font-size: .95rem; cursor: pointer; }
.consent-btn:hover { background: var(--brand-blue); }
.consent-footer { text-align: center; font-size: .7rem; color: #777; padding: .2rem 0 .8rem; margin: 0; }
@media (max-width: 640px) {
  .consent-quick { grid-template-columns: repeat(2, 1fr); }
  .consent-actions { grid-template-columns: 1fr 1fr; }
  .consent-actions .consent-btn[data-action="save"] { grid-column: 1 / -1; }
}
/* Keep the back-to-top button clear of the UserWay widget (bottom-left). */
.back-to-top { right: 1.2rem; }

/* PDF menu button (file: menu.pdf in the site root) */
.pdf-cta { display: flex; justify-content: center; margin-top: 1.8rem; }
.btn-pdf { display: inline-flex; align-items: center; gap: .55rem; background: transparent; color: var(--brand-blue); border: 2px solid var(--brand-blue); box-shadow: none; }
.btn-pdf:hover { background: var(--brand-blue); color: #fff; }

/* Header: Menu is the highlighted button; Breakfast/Drinks deep-link into the menu. */
.nav-menu-btn { font-size: .95rem; padding: .7rem 1.5rem; letter-spacing: .08em; }
.btn-lg { font-size: 1.05rem; padding: 1rem 2.6rem; letter-spacing: .1em; }
/* Breakfast: lighter overlay so the photo stays visible; text kept legible with a local scrim. */
.breakfast-overlay { background: linear-gradient(90deg, rgba(20, 14, 10, .45) 0%, rgba(20, 14, 10, .25) 45%, rgba(20, 14, 10, 0) 70%); }
@media (max-width: 720px) { .breakfast-overlay { background: rgba(20, 14, 10, .4); } }

/* Cocktails banner: photo behind (images/cocktails-banner.jpg), text in front. */
.cocktails-banner { position: relative; overflow: hidden; min-height: 420px; display: flex; align-items: center; color: #fff; }
.cocktails-banner .parallax-bg { position: absolute; inset: -10% 0; background-size: cover; background-position: center; z-index: 0; }
.cocktails-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(10, 8, 6, .6) 0%, rgba(10, 8, 6, .3) 40%, rgba(10, 8, 6, 0) 65%); }
.cocktails-content { position: relative; z-index: 2; padding: 5rem 1.5rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.cocktails-kicker { display: block; font-size: .75rem; letter-spacing: .35em; text-transform: uppercase; color: rgba(255, 255, 255, .75); margin-bottom: .6rem; }
.cocktails-title { font-family: "Playfair Display", serif; font-weight: 700; font-size: clamp(2.8rem, 6vw, 4.6rem); line-height: 1; margin: 0 0 .8rem; text-shadow: 0 2px 8px rgba(0, 0, 0, .6); }
.cocktails-text { max-width: 420px; font-size: 1rem; margin: 0 0 1.6rem; text-shadow: 0 1px 4px rgba(0, 0, 0, .7); }
.btn-glass { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .7); color: #fff; backdrop-filter: blur(4px); border-radius: 999px; padding: .8rem 1.6rem; font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 700; box-shadow: none; }
.btn-glass:hover { background: #fff; color: var(--navy-dark); }
@media (max-width: 720px) { .cocktails-banner { min-height: 340px; } .cocktails-overlay { background: rgba(10, 8, 6, .5); } }

/* Homepage row rhythm: Welcome white, Fan Favorites beige so the rows read as separate. */
.section-white { background: #fff; color: var(--ink); }
.our-story { --row-overlay: rgba(255, 255, 255, .94); }
.fan-favorites { background: #f3ebdc; --row-overlay: rgba(243, 235, 220, .92); border-top: 1px solid rgba(42, 33, 27, .08); border-bottom: 1px solid rgba(42, 33, 27, .08); }

/* Explore the Flavors: dark navy band so titles and cards pop. */
.flavors.section-dark { background: var(--navy-dark); color: #fff; }
.flavors.section-dark .section-title { color: #fff; }
.flavors.section-dark .kicker { color: var(--gold-light); }
.flavors.section-dark p { color: rgba(255, 255, 255, .85); }
/* Breakfast: two columns - solid text panel left, full photo right. */
.breakfast-split { display: grid; grid-template-columns: 1fr 1fr; padding: 0; background: var(--navy); overflow: hidden; }
.breakfast-split::before { display: none; }
.breakfast-split-text { display: flex; align-items: center; padding: 5rem clamp(1.5rem, 6vw, 5rem); }
.breakfast-split .breakfast-card { width: 100%; max-width: 560px; }
.breakfast-split .breakfast-card .section-title, .breakfast-split .breakfast-card p { text-shadow: none; }
.breakfast-split-photo { min-height: 420px; background-size: cover; background-position: center; }
@media (max-width: 860px) { .breakfast-split { grid-template-columns: 1fr; } .breakfast-split-photo { min-height: 280px; order: -1; } .breakfast-split-text { padding: 3rem 1.5rem; } }
/* PDF button beside the section title in the menu */
.menu-category-title-row { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.menu-category-title-row h2 { margin-bottom: 0; }
.btn-pdf.btn-sm { padding: .5rem 1rem; font-size: .75rem; }

/* Breakfast row in white so the home doesn't stack three blue bands. */
.breakfast-split { background: #fff; color: var(--ink); }
.breakfast-split .breakfast-card .section-title { color: var(--brand-blue); }
.breakfast-split .breakfast-card .kicker { color: var(--red); }
.breakfast-split .breakfast-card p { color: var(--ink); }
.breakfast-split .breakfast-hours { color: var(--brand-blue); }
.breakfast-split .breakfast-note { color: var(--ink-soft); }
/* Menu banner (search area) in dark navy. */
.menu-banner { background: var(--navy-dark); color: #fff; border-bottom: 0; }
.menu-banner .section-title { color: #fff; }
.menu-banner .kicker { color: var(--gold-light); }
.menu-banner .section-text, .menu-banner .search-invite { color: rgba(255, 255, 255, .88); }
.menu-banner .btn-pdf { color: #fff; border-color: #fff; }
.menu-banner .btn-pdf:hover { background: #fff; color: var(--navy-dark); }
