/* ==========================================================================
   Bev'Z — GetBevz.com
   Palette taken from Images/Images_Logos/Image Color RGB.txt
   ========================================================================== */

:root {
  --cream:      #FBF0DE;
  --tan:        #FFF9E9;
  --red:        #D42D2D;
  --red-bright: #EA383A;
  --red-dark:   #A81F1F;
  --pink:       #E09A95;
  --pink-soft:  #FCE5D5;
  --teal:       #4F8B8E;
  --teal-soft:  #74B1B3;
  --teal-dark:  #3A6A6D;
  --ink:        #382B27;
  --ink-soft:   #6B5A54;
  --white:      #FFFFFF;

  /* 50s diner extras */
  --night:      #241B19;   /* menu-board charcoal */
  --night-2:    #2F2321;
  --chrome: linear-gradient(180deg,
              #FFFFFF 0%, #EDEFF1 16%, #AEB4B9 46%,
              #FFFFFF 51%, #CDD2D6 72%, #8E9498 100%);
  --chrome-edge: #9BA1A6;

  --shadow-sm: 0 2px 6px rgba(56, 43, 39, .10);
  --shadow-md: 0 8px 24px rgba(56, 43, 39, .14);
  --shadow-lg: 0 18px 48px rgba(56, 43, 39, .20);

  --radius:    14px;
  --radius-lg: 24px;

  --wrap: 1140px;
  --gutter: 20px;

  --font-script: 'Lobster', 'Brush Script MT', cursive;
  --font-sans:   'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--red); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--radius) 0;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; text-decoration: none; text-align: center;
  border: 3px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; color: var(--teal-dark); border-color: var(--teal); }
.btn-ghost:hover { background: var(--teal); color: #fff; }
.btn-block { display: block; width: 100%; }

/* ---------- Retro banner label ---------- */
.banner {
  display: inline-block; position: relative;
  font-family: var(--font-script); font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1; color: var(--cream); background: var(--red);
  padding: .28em .9em .38em; border-radius: 999px;
  border: 4px solid var(--cream); box-shadow: 0 0 0 4px var(--red);
  margin-bottom: .6em;
}
.banner-teal { background: var(--teal); box-shadow: 0 0 0 4px var(--teal); }
.banner-red  { background: var(--red);  box-shadow: 0 0 0 4px var(--red); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 240, 222, .94);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--red);
}
.header-inner { display: flex; align-items: center; gap: 16px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
/* height:auto — the badge is 414x420, not square; forcing both squashes it. */
.brand-mark { width: 44px; height: auto; }
.brand-name { font-family: var(--font-script); font-size: 1.9rem; color: var(--red); line-height: 1; }

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  padding: 10px 14px; border-radius: 999px; text-decoration: none;
  color: var(--ink); font-weight: 600; font-size: .96rem;
}
.site-nav a:hover { background: var(--pink-soft); color: var(--red-dark); }
.site-nav .nav-cta { background: var(--red); color: #fff; }
.site-nav .nav-cta:hover { background: var(--red-dark); color: #fff; }

.nav-toggle {
  display: none; width: 46px; height: 42px; border: 3px solid var(--red);
  background: transparent; border-radius: 12px; cursor: pointer; position: relative;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  position: absolute; left: 50%; width: 20px; height: 3px; border-radius: 2px;
  background: var(--red); transform: translateX(-50%); transition: .2s ease;
}
.nav-toggle-bar { top: 50%; margin-top: -1.5px; }
.nav-toggle-bar::before { content: ''; top: -7px; }
.nav-toggle-bar::after  { content: ''; top:  7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after  { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(40px, 7vw, 84px) 0 clamp(50px, 8vw, 96px); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    repeating-linear-gradient(
      175deg,
      transparent 0 58px,
      rgba(224, 154, 149, .16) 58px 70px,
      transparent 70px 82px,
      rgba(116, 177, 179, .13) 82px 94px
    );
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700;
  color: var(--teal-dark); margin-bottom: .9em;
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 4.5rem); font-weight: 800; letter-spacing: -.02em;
  color: var(--red); margin-bottom: .35em;
}
.hero-title .script {
  display: inline-block; font-family: var(--font-script); font-weight: 400;
  color: var(--teal); letter-spacing: 0;
  font-size: 1.05em; transform: rotate(-2deg);
}
.hero-sub { font-size: clamp(1rem, 1.8vw, 1.16rem); color: var(--ink-soft); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 1.6em 0 1.4em; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-badges li {
  background: var(--tan); border: 2px solid var(--pink);
  border-radius: 999px; padding: 6px 16px; font-size: .86rem; font-weight: 600; color: var(--ink-soft);
}

.hero-art { position: relative; }
.hero-art > img:first-child {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 6px solid var(--white);
  aspect-ratio: 4 / 5; object-fit: cover;
}
.hero-badge {
  position: absolute; bottom: -26px; left: -26px;
  width: clamp(92px, 16vw, 160px); height: auto;
  filter: drop-shadow(0 8px 18px rgba(56,43,39,.28));
  animation: bob 5s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-9px) rotate(-2deg); } }

/* ---------- Sections ---------- */
.section { padding: clamp(52px, 8vw, 96px) 0; }
.section-head { text-align: center; margin-bottom: clamp(32px, 5vw, 52px); }
.section-lede { max-width: 58ch; margin: .4em auto 0; color: var(--ink-soft); }
.lede { font-size: 1.08rem; color: var(--ink-soft); }
.col-title { font-size: 1.25rem; color: var(--teal-dark); margin-bottom: .8em; }

/* ---------- Menu ---------- */
.section-menu { background: var(--tan); }
.menu-group-title { text-align: center; margin: 2.4em 0 1.2em; }
.menu-group-title:first-of-type { margin-top: 0; }
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px;
}
.menu-grid-2 { max-width: 760px; margin-inline: auto; }
.menu-card {
  background: var(--pink); color: #fff; border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow-sm);
  border-left: 8px solid var(--red);
  transition: transform .18s ease, box-shadow .18s ease;
}
.menu-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.menu-card h4 { font-size: 1.32rem; font-weight: 800; margin-bottom: .25em; color: var(--tan); }
.menu-card p { margin: 0; font-size: .97rem; color: rgba(255,255,255,.95); }
.menu-card-teal { background: var(--teal); border-left-color: var(--teal-dark); }
.menu-card-teal h4 { color: var(--tan); }
.menu-note {
  display: inline-block; vertical-align: middle; margin-left: .5em;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  background: rgba(255,255,255,.22); padding: 3px 9px; border-radius: 999px;
}

.posters-lede { text-align: center; margin: 3em 0 1.2em; font-weight: 600; color: var(--ink-soft); }
.poster-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.poster-btn {
  display: block; width: 100%; padding: 0; border: 5px solid var(--white); cursor: zoom-in;
  background: none; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  transition: transform .18s ease;
}
.poster-btn:hover { transform: translateY(-4px) rotate(-1deg); }
.poster-btn img { width: 100%; }

/* ---------- Food ---------- */
.section-food { background: var(--cream); }
.food-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.food-copy h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--teal-dark); }
.food-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; margin: 1.4em 0; }
.food-list li {
  background: var(--white); border-radius: var(--radius); padding: 12px 18px;
  font-weight: 600; box-shadow: var(--shadow-sm); border-left: 6px solid var(--teal-soft);
}
.food-note { font-size: .95rem; color: var(--ink-soft); font-style: italic; }
.food-art img {
  border-radius: var(--radius-lg); border: 6px solid var(--white); box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; object-fit: cover; width: 100%;
}

/* ---------- Events ---------- */
.section-events { background: var(--tan); }
.events-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }

.events-list { display: grid; gap: 14px; }
.events-loading { color: var(--ink-soft); font-style: italic; }
.events-empty { color: var(--ink-soft); background: var(--white); padding: 20px; border-radius: var(--radius); }
.event-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius); padding: 16px 18px;
  box-shadow: var(--shadow-sm); border-left: 8px solid var(--red);
}
.event-card.is-today { border-left-color: var(--teal); background: #fff; box-shadow: var(--shadow-md); }
.event-date {
  flex: 0 0 62px; text-align: center; background: var(--red); color: #fff;
  border-radius: 10px; padding: 8px 4px; line-height: 1.1;
}
.event-card.is-today .event-date { background: var(--teal); }
.event-date .m { display: block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.event-date .d { display: block; font-size: 1.6rem; font-weight: 800; }
.event-body h4 { font-size: 1.1rem; margin-bottom: .15em; }
.event-meta { margin: 0; font-size: .92rem; color: var(--ink-soft); }
.event-meta span + span::before { content: ' · '; }
.event-note { margin: .4em 0 0; font-size: .9rem; color: var(--ink-soft); }
.event-address { margin: .3em 0 0; font-size: .88rem; color: var(--ink-soft); }
.event-links { display: flex; flex-wrap: wrap; gap: 8px; margin: .7em 0 0; }
.event-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal); color: #fff; text-decoration: none;
  font-size: .82rem; font-weight: 700; padding: 7px 14px; border-radius: 999px;
  transition: background-color .15s ease;
}
.event-link:hover { background: var(--teal-dark); }
.event-link svg { width: 15px; height: 15px; fill: currentColor; flex: none; }
.event-card.is-today .event-link { background: var(--red); }
.event-card.is-today .event-link:hover { background: var(--red-dark); }
.event-today-flag {
  display: inline-block; background: var(--teal); color: #fff; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; padding: 2px 9px; border-radius: 999px; margin-left: 6px;
}

.cal-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.cal-title { font-size: 1.2rem; margin: 0; color: var(--teal-dark); }
.cal-nav {
  width: 40px; height: 40px; border-radius: 50%; border: 3px solid var(--teal);
  background: transparent; color: var(--teal-dark); font-size: 1.4rem; line-height: 1; cursor: pointer;
}
.cal-nav:hover { background: var(--teal); color: #fff; }
.calendar {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  background: var(--white); padding: 12px; border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.cal-dow {
  text-align: center; font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: var(--ink-soft); padding: 4px 0;
}
.cal-day {
  position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; border-radius: 8px; color: var(--ink);
}
.cal-day.is-muted { color: #C9BDB5; }
.cal-day.is-today { outline: 2px solid var(--teal); font-weight: 700; }
.cal-day.has-event { background: var(--red); color: #fff; font-weight: 700; cursor: pointer; }
.cal-day.has-event:hover { background: var(--red-dark); }
.cal-legend { margin: 12px 0 0; font-size: .85rem; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.cal-dot { width: 14px; height: 14px; border-radius: 4px; background: var(--red); display: inline-block; }

/* ---------- Map ---------- */
.section-map { background: var(--cream); }
.map {
  height: clamp(340px, 46vh, 480px); border-radius: var(--radius-lg);
  border: 6px solid var(--white); box-shadow: var(--shadow-lg); overflow: hidden; z-index: 0;
}
.map-fallback { text-align: center; color: var(--ink-soft); }
.map-pin-label { font-family: var(--font-sans); font-weight: 700; color: var(--red); }
.leaflet-popup-content { font-family: var(--font-sans); }
.leaflet-popup-content b { color: var(--red); }

/* ---------- Booking ---------- */
.section-book { background: var(--teal); color: var(--tan); }
.section-book .banner { background: var(--red); box-shadow: 0 0 0 4px var(--red); border-color: var(--teal); }
.book-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.book-copy h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--tan); }
.book-copy .lede { color: rgba(255, 249, 233, .9); }
.book-points { display: grid; gap: 14px; margin: 1.6em 0; }
.book-points li {
  background: rgba(255,255,255,.12); border-radius: var(--radius); padding: 14px 18px;
  font-size: .96rem; border-left: 5px solid var(--red-bright); color: rgba(255,249,233,.95);
}
.book-points strong { color: var(--tan); display: block; }
.fine-print { font-size: .86rem; color: rgba(255,249,233,.82); }
.fine-print a { color: var(--tan); }

.book-form {
  background: var(--tan); color: var(--ink); border-radius: var(--radius-lg);
  padding: clamp(22px, 3.5vw, 34px); box-shadow: var(--shadow-lg);
}
.book-form .fine-print { color: var(--ink-soft); }
.book-form .fine-print a { color: var(--red); }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label, .field legend { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--white); border: 2px solid #E3D6C6; border-radius: 10px;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); outline: none; box-shadow: 0 0 0 3px rgba(79,139,142,.22); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--red); }
.field textarea { resize: vertical; min-height: 96px; }
.field-check { border: 0; padding: 0; margin: 0 0 16px; }
.check { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: .95rem; }
.check input { width: auto; }
.field-error { color: var(--red-dark); font-size: .82rem; margin: 5px 0 0; font-weight: 600; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 14px 0 6px; font-weight: 600; font-size: .95rem; min-height: 1.4em; }
.form-status.is-ok  { color: var(--teal-dark); }
.form-status.is-err { color: var(--red-dark); }
#bookSubmit[disabled] { opacity: .65; cursor: progress; }

/* ---------- Gallery ---------- */
.section-gallery { padding: 0 0 clamp(52px, 8vw, 96px); background: var(--cream); }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.gallery img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: var(--radius); border: 5px solid var(--white); box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.gallery img:hover { transform: scale(1.03) rotate(-1deg); }

/* ---------- Follow ---------- */
.section-follow { background: var(--tan); text-align: center; }
.section-follow h2 { font-size: clamp(1.7rem, 3.6vw, 2.3rem); color: var(--teal-dark); }
.social-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 1.6em; }
.social-link {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  background: var(--red); color: #fff; font-weight: 700; padding: 13px 26px; border-radius: 999px;
  box-shadow: var(--shadow-sm); transition: transform .15s ease, background-color .15s ease;
}
.social-link:hover { transform: translateY(-3px); background: var(--red-dark); }
.social-link svg { width: 22px; height: 22px; fill: currentColor; flex: none; }
.social-row-sm .social-link { padding: 9px; border-radius: 50%; background: rgba(255,249,233,.16); }
.social-row-sm .social-link:hover { background: var(--red); }
.social-row-sm .social-link span { display: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--tan); padding: clamp(40px, 6vw, 64px) 0 24px; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 36px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-name { font-family: var(--font-script); font-size: 2rem; margin: 0; line-height: 1; }
.footer-tag { margin: 4px 0 0; font-size: .82rem; color: rgba(255,249,233,.7); }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 24px; }
.footer-cols h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--pink); margin-bottom: .7em; }
.footer-cols p { font-size: .94rem; color: rgba(255,249,233,.86); margin: 0 0 .5em; }
.footer-cols a { color: rgba(255,249,233,.86); text-decoration: none; }
.footer-cols a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,249,233,.16);
}
.footer-bottom p { margin: 0; font-size: .85rem; color: rgba(255,249,233,.6); }
.footer-bottom .social-row { margin: 0; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(56,43,39,.92);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(92vw, 720px); max-height: 90vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 18px; right: 20px; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.14); color: #fff; border: 0; font-size: 2rem; line-height: 1; cursor: pointer;
}
.lightbox-close:hover { background: var(--red); }

/* ==========================================================================
   Chat widget
   ========================================================================== */
.chat-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 250;
  display: flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff; border: 3px solid var(--tan);
  border-radius: 999px; padding: 13px 22px 13px 18px;
  font-family: var(--font-sans); font-weight: 700; font-size: .95rem;
  box-shadow: var(--shadow-lg); cursor: pointer;
  transition: transform .15s ease, background-color .15s ease;
}
.chat-fab:hover { transform: translateY(-3px); background: var(--red-dark); }
.chat-fab svg { width: 22px; height: 22px; fill: currentColor; }
.chat-fab.is-open { display: none; }

.chat-panel {
  position: fixed; right: 18px; bottom: 18px; z-index: 251;
  width: min(370px, calc(100vw - 36px)); height: min(540px, calc(100vh - 36px));
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--tan); border-radius: var(--radius-lg);
  border: 4px solid var(--red); box-shadow: var(--shadow-lg);
}
.chat-panel[hidden] { display: none; }
.chat-head {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  background: var(--red); color: #fff; flex: none;
}
/* The badge already has transparent corners, so no background fill is needed. */
.chat-head img { width: 38px; height: auto; }
.chat-head-text { flex: 1; min-width: 0; }
.chat-head-text strong { display: block; font-size: 1rem; line-height: 1.2; }
.chat-head-text span { font-size: .76rem; opacity: .9; }
.chat-close {
  width: 34px; height: 34px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.18); color: #fff; font-size: 1.5rem; line-height: 1; flex: none;
}
.chat-close:hover { background: rgba(255,255,255,.32); }

.chat-log { flex: 1; overflow-y: auto; padding: 16px 14px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 84%; padding: 11px 15px; border-radius: 16px; font-size: .93rem; line-height: 1.5; }
.chat-msg.bot  { align-self: flex-start; background: var(--white); border-bottom-left-radius: 5px; box-shadow: var(--shadow-sm); }
.chat-msg.user { align-self: flex-end; background: var(--teal); color: #fff; border-bottom-right-radius: 5px; }
.chat-msg a { color: var(--red); font-weight: 600; }
.chat-msg.user a { color: #fff; }

/* "Talk to a human" handoff shown when the assistant can't answer. */
.chat-handoff {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 12px; padding: 11px 16px; border-radius: 999px;
  background: var(--teal); color: #fff !important; font-weight: 700; font-size: .89rem;
  text-decoration: none; transition: background-color .15s ease;
}
.chat-handoff:hover { background: var(--teal-dark); }
.chat-handoff svg { width: 19px; height: 19px; fill: currentColor; flex: none; }

.chat-chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 14px 12px; flex: none; }
.chat-chip {
  background: var(--white); border: 2px solid var(--pink); color: var(--ink);
  border-radius: 999px; padding: 7px 14px; font-family: inherit; font-size: .82rem;
  font-weight: 600; cursor: pointer; transition: background-color .15s ease;
}
.chat-chip:hover { background: var(--pink); color: #fff; }

.chat-form { display: flex; gap: 8px; padding: 12px 14px; border-top: 2px solid #E9DCCB; flex: none; background: var(--white); }
.chat-form input {
  flex: 1; min-width: 0; padding: 11px 14px; border: 2px solid #E3D6C6; border-radius: 999px;
  font-family: inherit; font-size: .93rem; color: var(--ink);
}
.chat-form input:focus { outline: none; border-color: var(--teal); }
.chat-send {
  width: 44px; height: 44px; flex: none; border: 0; border-radius: 50%;
  background: var(--red); color: #fff; cursor: pointer; display: grid; place-items: center;
}
.chat-send:hover { background: var(--red-dark); }
.chat-send svg { width: 19px; height: 19px; fill: currentColor; }

/* ==========================================================================
   50s DINER LAYER
   Neon signage, checkerboard, chrome trim and atomic starbursts — in the
   Bev'Z red/teal/cream rather than the usual diner pink/mint.
   Applied with restraint: strong at the section breaks and headings, calm
   behind body copy so everything stays readable.
   ========================================================================== */

/* ---------- Checkerboard ---------- */
.checker {
  height: 26px;
  background-color: var(--cream);
  background-image:
    linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%),
    linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%);
  background-size: 26px 26px;
  background-position: 0 0, 13px 13px;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}
.checker-red  { background-color: var(--red); }
.checker-tan  { background-color: var(--tan); }
.checker-teal {
  background-color: var(--teal);
  background-image:
    linear-gradient(45deg, var(--tan) 25%, transparent 25%, transparent 75%, var(--tan) 75%),
    linear-gradient(45deg, var(--tan) 25%, transparent 25%, transparent 75%, var(--tan) 75%);
}
.checker-sm { height: 18px; background-size: 18px 18px; background-position: 0 0, 9px 9px; }

/* ---------- Chrome trim ---------- */
.chrome-rail {
  height: 9px;
  background: var(--chrome);
  border-top: 1px solid rgba(255,255,255,.85);
  border-bottom: 1px solid var(--chrome-edge);
}

/* ---------- Neon ---------- */
.neon {
  color: #FFF7EC;
  text-shadow:
    0 0 3px #FFFFFF,
    0 0 9px var(--neon-color, var(--red-bright)),
    0 0 20px var(--neon-color, var(--red-bright)),
    0 0 38px var(--neon-color, var(--red-bright));
}
.neon-teal { --neon-color: #63C6CA; }
.neon-red  { --neon-color: #FF5A55; }

/* A slow, subtle tube warm-up. Never runs for reduced-motion users. */
@keyframes neon-flicker {
  0%, 100%   { opacity: 1; }
  92%        { opacity: 1; }
  93%        { opacity: .72; }
  94%        { opacity: 1; }
  96%        { opacity: .82; }
  97%        { opacity: 1; }
}
@media (prefers-reduced-motion: no-preference) {
  .neon-flicker { animation: neon-flicker 7s linear infinite; }
}

/* Dark plaque a neon sign is mounted on. */
.neon-sign {
  display: inline-block; position: relative;
  background: var(--night);
  border-radius: 999px;
  padding: .3em 1.1em .42em;
  box-shadow:
    inset 0 0 0 3px rgba(255,255,255,.10),
    inset 0 0 26px rgba(0,0,0,.55),
    0 10px 30px rgba(36,27,25,.32);
}

/* ---------- Atomic starburst ---------- */
.starburst {
  position: absolute; z-index: 0; pointer-events: none;
  width: var(--sb-size, 48px); height: var(--sb-size, 48px);
  background: var(--sb-color, var(--teal-soft));
  opacity: var(--sb-opacity, .75);
  clip-path: polygon(
    50% 0%, 57% 36%, 76% 12%, 66% 42%, 96% 30%, 70% 50%,
    96% 70%, 66% 58%, 76% 88%, 57% 64%, 50% 100%, 43% 64%,
    24% 88%, 34% 58%, 4% 70%, 30% 50%, 4% 30%, 34% 42%, 24% 12%, 43% 36%
  );
}
@media (prefers-reduced-motion: no-preference) {
  .starburst { animation: sb-twinkle 4.5s ease-in-out infinite; }
  @keyframes sb-twinkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50%      { transform: scale(1.14) rotate(14deg); }
  }
}

/* ---------- Header as a chrome diner fascia ---------- */
.site-header { border-bottom: 0; }
.site-header::after {
  content: ''; display: block; height: 7px;
  background: var(--chrome);
  border-top: 2px solid var(--red);
  border-bottom: 1px solid var(--chrome-edge);
}

/* ---------- Hero ---------- */
.hero { padding-bottom: clamp(60px, 9vw, 110px); }

/* Diner awning stripes behind the hero. */
.hero-bg {
  background:
    repeating-linear-gradient(
      175deg,
      transparent 0 58px,
      rgba(224, 154, 149, .20) 58px 70px,
      transparent 70px 82px,
      rgba(116, 177, 179, .16) 82px 94px
    );
}

.hero-title .script {
  color: var(--teal-dark);
  text-shadow:
    2px 2px 0 var(--cream),
    4px 4px 0 var(--pink),
    6px 6px 0 rgba(56,43,39,.16);
}

/* Chrome-rimmed hero photo, like a diner counter edge. */
.hero-art > img:first-child {
  border: 0;
  padding: 7px;
  background: var(--chrome);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--chrome-edge);
}

/* ---------- Banners as chrome-rimmed neon placards ---------- */
.banner {
  border: 0;
  background: var(--night);
  color: #FFF7EC;
  padding: .3em 1em .42em;
  box-shadow:
    inset 0 0 0 3px rgba(255,255,255,.12),
    inset 0 0 24px rgba(0,0,0,.5),
    0 0 0 5px var(--red),
    0 0 0 8px var(--cream),
    0 10px 26px rgba(36,27,25,.28);
  text-shadow: 0 0 3px #fff, 0 0 10px #FF5A55, 0 0 22px #FF5A55, 0 0 40px #FF5A55;
}
.banner-teal {
  background: var(--night);
  box-shadow:
    inset 0 0 0 3px rgba(255,255,255,.12),
    inset 0 0 24px rgba(0,0,0,.5),
    0 0 0 5px var(--teal),
    0 0 0 8px var(--cream),
    0 10px 26px rgba(36,27,25,.28);
  text-shadow: 0 0 3px #fff, 0 0 10px #63C6CA, 0 0 22px #63C6CA, 0 0 40px #63C6CA;
}
.banner-red { box-shadow:
    inset 0 0 0 3px rgba(255,255,255,.12),
    inset 0 0 24px rgba(0,0,0,.5),
    0 0 0 5px var(--red),
    0 0 0 8px var(--cream),
    0 10px 26px rgba(36,27,25,.28); }

/* ---------- Menu as a backlit diner menu board ---------- */
.section-menu {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.07), transparent 62%),
    var(--night);
  color: var(--tan);
}
.section-menu .section-lede { color: rgba(255,249,233,.72); }
.section-menu .posters-lede { color: rgba(255,249,233,.72); }
.section-menu .banner { border-color: var(--night); }

/* Chrome rails top and bottom, like the board's frame. */
.section-menu::before,
.section-menu::after {
  content: ''; position: absolute; left: 0; right: 0; height: 9px;
  background: var(--chrome);
  border-top: 1px solid rgba(255,255,255,.8);
  border-bottom: 1px solid var(--chrome-edge);
}
.section-menu::before { top: 0; }
.section-menu::after  { bottom: 0; }

/* Cards sit in a chrome bezel: 3px of chrome showing around a coloured face. */
.menu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 0;
  padding: 3px;                       /* the chrome bezel */
  background: var(--chrome);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .34);
}
/* The coloured face.
   Brand red / deep teal rather than the dusty pink: cream-on-pink measures
   2.17:1, which fails WCAG AA even for large text. Red gives 4.74:1 and deep
   teal 5.77:1, and both read more like a real backlit menu board. */
.menu-card::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 11px;
  background: var(--red);
  z-index: 0;
}
.menu-card-teal::before { background: var(--teal-dark); }

.menu-card > h4,
.menu-card > p {
  position: relative;
  z-index: 1;
  padding-inline: 21px;
}
.menu-card > h4 { padding-top: 19px; }
.menu-card > p  { padding-bottom: 19px; }

.menu-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0, 0, 0, .42); }

.poster-btn { border-color: var(--chrome-edge); background: var(--chrome); padding: 5px; border-width: 0; }
.poster-btn img { border-radius: 9px; }

/* ---------- Buttons with a chrome lip ---------- */
.btn-primary {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    0 0 0 3px rgba(255,255,255,.75),
    0 0 0 4px var(--chrome-edge),
    var(--shadow-md);
}
.btn-ghost { box-shadow: 0 0 0 3px rgba(255,255,255,.5); }

/* ---------- Events ---------- */
.event-card, .admin-item { border-left-width: 10px; }
.cal-head { position: relative; }

/* ---------- Booking: neon on the dark teal ---------- */
.section-book { position: relative; }
.section-book h2 { text-shadow: 0 2px 0 rgba(0,0,0,.14); }
.section-book .banner {
  box-shadow:
    inset 0 0 0 3px rgba(255,255,255,.12),
    inset 0 0 24px rgba(0,0,0,.5),
    0 0 0 5px var(--red),
    0 0 0 8px var(--teal),
    0 10px 26px rgba(0,0,0,.3);
}

/* ---------- Footer ---------- */
.site-footer { position: relative; padding-top: clamp(50px, 7vw, 76px); }
.footer-name {
  color: #FFF7EC;
  text-shadow: 0 0 3px #fff, 0 0 10px #FF5A55, 0 0 24px #FF5A55, 0 0 44px #FF5A55;
}

/* ---------- Chat bubble: chrome lip to match ---------- */
.chat-fab {
  border-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    0 0 0 3px var(--tan),
    0 0 0 5px var(--chrome-edge),
    var(--shadow-lg);
}
.chat-panel { border-color: var(--chrome-edge); box-shadow: 0 0 0 4px var(--red), var(--shadow-lg); }

@media (max-width: 560px) {
  .checker { height: 18px; background-size: 18px 18px; background-position: 0 0, 9px 9px; }
  .banner { box-shadow:
      inset 0 0 0 3px rgba(255,255,255,.12),
      inset 0 0 20px rgba(0,0,0,.5),
      0 0 0 4px var(--red),
      0 0 0 6px var(--cream); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero-inner, .food-inner, .book-inner, .events-layout, .footer-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 420px; margin-inline: auto; }
  .hero-badge { left: auto; right: -14px; bottom: -20px; }
  .food-art { max-width: 420px; margin-inline: auto; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--cream); padding: 14px var(--gutter) 20px;
    border-bottom: 3px solid var(--red); box-shadow: var(--shadow-md);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 16px; font-size: 1.05rem; }
  .site-nav .nav-cta { text-align: center; margin-top: 6px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .field-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .poster-row { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .chat-fab { right: 12px; bottom: 12px; padding: 12px 18px 12px 15px; }
  .chat-fab span { display: none; }
  .chat-panel { right: 10px; bottom: 10px; width: calc(100vw - 20px); height: calc(100vh - 20px); }
}

@media print {
  .site-header, .chat-fab, .chat-panel, .hero-art, .section-book form, .lightbox { display: none !important; }
  body { background: #fff; }
}
