/* ============================================================
   Jack Garcia Coffee & Pastry — style.css v27
   ============================================================ */

:root {
  --bg:           #f5e9dc;
  --alt:          #e8d5b7;
  --accent:       #c49b63;
  --accent-hover: #a67c52;
  --text:         #3e2f1c;
  --header-h:     80px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Merriweather", serif;
  color: var(--text);
  background: var(--bg);
}

/* ── Topbar ───────────────────────────────────────────────── */
.topbar {
  background: var(--bg);
  height: var(--header-h);
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
}


/* ── Live opening status pill ─────────────────────────────── */
.topbar-status {
  display: none;
  align-items: center;
  gap: 6px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
}

.topbar-status--visible {
  display: inline-flex;
}

.topbar-status--open {
  background: rgba(46,125,50,0.12);
  color: #2e7d32;
}

.topbar-status--open::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2e7d32;
  flex-shrink: 0;
  animation: status-pulse 2s ease-in-out infinite;
}

.topbar-status--closed {
  background: rgba(62,47,28,0.07);
  color: var(--text);
  opacity: 0.6;
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.85); }
}

@media (max-width: 640px) {
  .topbar-status { display: none !important; }
}

/* Topbar opening hours */
.topbar-hours {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--text);
  opacity: 0.55;
  white-space: nowrap;
}

/* Topbar nav */
.topbar-nav {
  margin-left: auto;
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-nav a {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s ease;
  position: relative;
  padding-bottom: 2px;
}

.topbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.topbar-nav a:hover,
.topbar-nav a.active {
  opacity: 1;
}

.topbar-nav a.active::after,
.topbar-nav a:hover::after {
  width: 100%;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  margin-top: var(--header-h);
  height: 80vh;
  background: url('../images/hero-market-morning.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.42) 80%);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #ffffff;
  max-width: 720px;
  padding: 0 20px;
}

/* Hero entrance animations */
.hero-title,
.hero-sub,
.hero-btn {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.hero-title.hero-visible,
.hero-sub.hero-visible,
.hero-btn.hero-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-family: "Merriweather", serif;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.hero-content p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.40);
}

/* ── Decorative dividers ──────────────────────────────────── */
.divider {
  line-height: 0;
  overflow: hidden;
}

.divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.divider--wave {
  background: var(--alt); /* colour below the wave */
  margin-top: -2px;
}

.divider--wave svg path {
  fill: var(--bg); /* colour of the wave itself */
}

.divider--floral {
  background: var(--alt);
  margin-bottom: -2px;
}

.divider--floral svg path {
  fill: var(--alt);
}

.divider--wave-inv {
  background: var(--bg);
  margin-top: -2px;
}

.divider--wave-inv svg path {
  fill: var(--alt);
}

/* ── Scroll fade-in ───────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  background: var(--accent);
  color: #fffaf3;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.18s ease, box-shadow 0.25s ease;
  box-shadow: 0 3px 8px rgba(62,47,28,0.10);
  font-family: "Merriweather", serif;
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.6px;
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(62,47,28,0.18);
}

/* ── Sections ─────────────────────────────────────────────── */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: "Merriweather", serif;
}

.section p {
  max-width: 640px;
  margin: 0 auto 10px;
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.65;
  letter-spacing: 0.1px;
}

.section.light {
  background-color: var(--alt);
  background-image: url('../images/pattern-moorish-floral-800.webp');
  background-repeat: repeat;
  background-size: 300px auto;
  background-blend-mode: soft-light;
}

/* ── Menu grid ────────────────────────────────────────────── */
.menu-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.menu-item {
  background: #fff;
  border-radius: 8px;
  overflow: visible;
  width: 260px;
  box-shadow: 0 6px 18px rgba(62,47,28,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(62,47,28,0.10);
}

.menu-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(62,47,28,0.08);
}

.menu-meta {
  padding: 14px 16px;
  text-align: left;
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
}

.menu-meta h3 {
  margin: 0 0 6px;
  font-family: "Merriweather", serif;
  font-size: 1.05rem;
}

.menu-meta .desc {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: rgba(62,47,28,0.85);
}

.menu-meta .price {
  font-weight: 700;
  color: var(--text);
}

/* Menu CTA */
.menu-cta {
  margin-top: 28px;
  margin-bottom: 10px;
  text-align: center;
}

/* ── Visit ────────────────────────────────────────────────── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
  justify-content: center;
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
}

.visit-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "Inter", system-ui, sans-serif;
}

.visit-info .address {
  font-weight: 700;
  margin: 0 0 6px;
  font-family: "Merriweather", serif;
  letter-spacing: 0.2px;
}

.visit-info .hours {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.5;
}

/* Prominent opening hours block */
.hours-block {
  margin: 4px 0 8px;
  border: 1px solid rgba(62,47,28,0.12);
  border-radius: 6px;
  overflow: hidden;
}

.hours-heading {
  margin: 0;
  padding: 8px 14px;
  font-family: "Merriweather", serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  background: rgba(196,155,99,0.08);
  border-bottom: 1px solid rgba(62,47,28,0.10);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 14px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid rgba(62,47,28,0.06);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:last-child {
  font-weight: 600;
}

.hours-closed {
  opacity: 0.45;
}

.visit-ctas {
  display: flex;
  margin-top: 20px;
}

.visit-map {
  display: flex;
  justify-content: center;
}

.visit-map a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(62,47,28,0.12);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.visit-map a:hover {
  box-shadow: 0 10px 28px rgba(62,47,28,0.20);
  transform: translateY(-2px);
}

.visit-map img {
  width: 100%;
  display: block;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(245,233,220,0.7);
  padding: 32px 20px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 4px;
}

.footer-logo img {
  height: 120px;
  width: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.92;
}

.footer-copy {
  margin: 0;
  opacity: 0.55;
}

.footer-hours {
  font-size: 0.82rem;
  opacity: 0.6;
  letter-spacing: 0.3px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,233,220,0.75);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--accent);
}

/* ── Modal ────────────────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  z-index: 1100;
  inset: 0;
  background: rgba(30,20,10,0.65);
  padding: 20px;
  box-sizing: border-box;
}

.modal.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  animation: modalFadeIn 0.3s ease forwards;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-content {
  background: var(--bg);
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(30,20,10,0.35);
  overflow: hidden;
  margin-top: 40px;
  animation: modalSlideUp 0.35s ease forwards;
}

@keyframes modalSlideUp {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.modal-header {
  background: var(--text);
  padding: 24px 28px 20px;
  position: relative;
  flex-shrink: 0;
}

.modal-header h2 {
  font-family: "Merriweather", serif;
  font-size: 1.5rem;
  color: var(--bg);
  margin: 0 0 4px;
  letter-spacing: 0.5px;
}

.modal-sub {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
}

.close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(245,232,204,0.15);
  border: 1px solid rgba(245,232,204,0.25);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: var(--bg);
  transition: background 0.2s ease;
  padding: 0;
}

.close:hover {
  background: rgba(245,232,204,0.28);
}

.menu-tabs {
  display: flex;
  background: var(--alt);
  border-bottom: 1px solid rgba(62,47,28,0.12);
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 4px;
}

.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
  flex: 1;
  min-width: max-content;
  padding: 12px 12px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(62,47,28,0.5);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.menu-tab:hover { color: var(--text); }

.menu-tab.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.menu-tab--seasonal { color: var(--accent) !important; }

.menu-tab--seasonal.active {
  border-bottom-color: var(--accent);
  background: rgba(196,155,99,0.08);
}

#fullMenuList {
  overflow-y: auto;
  padding: 8px 0 16px;
  flex: 1;
}

.menu-row {
  padding: 14px 28px;
  border-bottom: 1px solid rgba(62,47,28,0.07);
  transition: background 0.15s ease;
}

.menu-row:last-child { border-bottom: none; }
.menu-row:hover { background: rgba(196,155,99,0.07); }

.menu-row__top {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 3px;
}

.menu-row__name {
  font-family: "Merriweather", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.menu-row__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(62,47,28,0.25);
  margin-bottom: 4px;
  min-width: 16px;
}

.menu-row__price {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.menu-row__desc {
  font-family: "Inter", sans-serif;
  font-size: 0.83rem;
  color: rgba(62,47,28,0.62);
  margin: 0;
  line-height: 1.5;
}

.menu-row__badge {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
  background: var(--accent);
  border-radius: 3px;
  padding: 1px 6px;
  margin-left: 0;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.menu-row__badges {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  vertical-align: middle;
}

.menu-diet-badge {
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.6;
}

.menu-row__allergens {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: rgba(245,232,204,0.4);
  margin: 4px 0 0;
  font-style: italic;
  line-height: 1.4;
}

.menu-row__badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: 7px;
}

.menu-badges-divider {
  width: 1px;
  height: 12px;
  background: rgba(245,232,204,0.2);
  margin: 0 2px;
  flex-shrink: 0;
}

.menu-allergen-badge {
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 10px;
  background: rgba(198,40,40,0.15);
  color: rgba(220,150,150,0.9);
  letter-spacing: 0.03em;
}


/* ── Steam animation ──────────────────────────────────────── */
.image-wrap {
  position: relative;
  overflow: visible;
}

.image-wrap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
}

.steam {
  position: absolute;
  bottom: 75%;
  left: 50%;
  width: 18px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.65);
  filter: blur(6px);
  animation: steam 6s infinite ease-in-out;
  pointer-events: none;
  z-index: 2;
}

.steam1 { margin-left: -24px; animation-delay: 0s; }
.steam2 { margin-left: 0px;   animation-delay: 1s; }
.steam3 { margin-left: 24px;  animation-delay: 2s; }

@keyframes steam {
  0%   { transform: translateY(0) scaleX(1); opacity: 0; }
  20%  { opacity: 0.9; }
  70%  { transform: translateY(-60px) scaleX(2.2); opacity: 0.55; }
  100% { transform: translateY(-120px) scaleX(3.2); opacity: 0; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    background-image: url('../images/hero-market-morning-800.webp');
  }
  /* Christmas — swap hero image on mobile too */
  .hero.xmas-hero {
    background-image: url('../images/christmas-hero-market-morning-800.webp');
  }
}

/* ── Christmas hero image (desktop) ──────────────────────── */
/* .xmas-hero class is added by JS each December              */
.hero.xmas-hero {
  background-image: url('../images/christmas-hero-market-morning.webp');
}

@media (max-width: 880px) {
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .menu-grid {
    gap: 18px;
  }
  .menu-item {
    width: 100%;
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .topbar-hours {
    display: none; /* hide opening times from topbar on small screens — shown in footer */
  }
}

@media (max-width: 600px) {
  .logo img {
    height: 46px;
  }
  .topbar {
    height: 56px;
  }
  .hero {
    margin-top: calc(56px);
  }
  .topbar-nav {
    gap: 16px;
  }
  .topbar-nav a {
    font-size: 0.78rem;
  }
}

@media (max-width: 520px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .section {
    padding: 50px 20px;
  }
}

/* ── What to Expect strip ─────────────────────────────────── */
.expect-strip {
  background: var(--text);
  padding: 48px 20px;
}

.expect-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.expect-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.expect-icon {
  color: var(--accent);
  margin-bottom: 14px;
}

.expect-icon svg {
  width: 36px;
  height: 36px;
}

.expect-heading {
  font-family: "Merriweather", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg);
  margin: 0 0 8px;
  letter-spacing: 0.3px;
}

.expect-text {
  font-family: "Inter", sans-serif;
  font-size: 0.84rem;
  color: rgba(245,232,204,0.6);
  line-height: 1.55;
  margin: 0;
}

.expect-divider {
  width: 1px;
  height: 60px;
  background: rgba(245,232,204,0.15);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .expect-inner {
    flex-direction: column;
    gap: 32px;
  }
  .expect-divider {
    width: 48px;
    height: 1px;
  }
  .expect-item {
    padding: 0;
  }
}

/* ── Sticky directions button ─────────────────────────────── */
.sticky-directions {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 28px;
  box-shadow: 0 4px 20px rgba(62,47,28,0.35);
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s ease;
}

.sticky-directions--visible {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.sticky-directions:hover {
  background: var(--accent-hover);
}

/* Only show on mobile */
@media (min-width: 769px) {
  .sticky-directions {
    display: none !important;
  }
}

/* ── Pull quote ───────────────────────────────────────────── */
.pull-quote {
  border: none;
  margin: 36px auto;
  padding: 0;
  text-align: center;
  position: relative;
  max-width: 640px;
  display: block;
}

.pull-quote::before,
.pull-quote::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 18px;
  opacity: 0.6;
}

.pull-quote::after {
  margin: 18px auto 0;
}

.pull-quote p {
  font-family: "Merriweather", serif !important;
  font-size: 1.25rem !important;
  font-style: italic;
  color: var(--accent);
  line-height: 1.65;
  margin: 0 auto !important;
  max-width: 480px;
  text-align: center;
}

/* ── Reviews strip ────────────────────────────────────────── */
.reviews-strip {
  background: var(--text);
  padding: 64px 20px;
  text-align: center;
}

.reviews-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.reviews-header {
  margin-bottom: 40px;
}

.reviews-stars {
  font-size: 1.4rem;
  color: #f5c842;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.reviews-title {
  font-family: "Merriweather", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bg);
  margin: 0 0 16px;
}

.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(245,232,204,0.6);
  text-decoration: none;
  border: 1px solid rgba(245,232,204,0.2);
  border-radius: 20px;
  padding: 6px 14px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.reviews-google-link:hover {
  color: var(--bg);
  border-color: rgba(245,232,204,0.5);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: rgba(245,232,204,0.06);
  border: 1px solid rgba(245,232,204,0.12);
  border-radius: 10px;
  padding: 28px 24px 22px;
  margin: 0;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.review-card:hover {
  background: rgba(245,232,204,0.10);
  border-color: rgba(245,232,204,0.22);
}

.review-card__stars {
  font-size: 0.9rem;
  color: #f5c842;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card__text {
  font-family: "Merriweather", serif;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(245,232,204,0.88);
  margin: 0 0 18px;
}

.review-card__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.review-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(196,155,99,0.4);
}

.review-card__via {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: rgba(245,232,204,0.35);
}

.review-card__via {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: rgba(245,232,204,0.35);
}

/* ── Leave a Review CTA ───────────────────────────────────── */
.reviews-cta {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.reviews-leave-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #3e2f1c;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.reviews-leave-btn:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.28);
  transform: translateY(-2px);
}

.reviews-cta__note {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(245,232,204,0.55);
  margin: 0;
}

@media (max-width: 720px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ── Accessibility ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .steam { animation: none; }
  html   { scroll-behavior: auto; }
  .hero-title,
  .hero-sub,
  .hero-btn,
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   EASTER SEASONAL SPLASH
   ═══════════════════════════════════════════════════════════ */

.easter-splash,
.seasonal-splash {
  background-color: var(--bg);
  background-image: url('../images/pattern-moorish-floral-800.webp');
  background-repeat: repeat;
  background-size: 280px auto;
  background-blend-mode: soft-light;
  padding: 50px 20px 40px;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(196,155,99,0.20);
  border-bottom: 1px solid rgba(196,155,99,0.20);
}

/* Decorative rule */
.easter-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto 28px;
}

.easter-rule__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.easter-rule__icon {
  color: var(--accent);
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Bottom rule has less margin */
.easter-splash .easter-rule:last-of-type {
  margin: 28px auto 0;
}

.easter-header {
  max-width: 600px;
  margin: 0 auto 36px;
}

.easter-dates {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}

.easter-title {
  font-family: "Merriweather", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.2;
}

.easter-sub {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(62,47,28,0.75);
  margin: 0;
}

/* Easter cards grid — reuses .menu-item, just centred */
.easter-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 900px;
}

/* Single item — centred and slightly wider card */
.easter-grid--single {
  max-width: 320px;
}

.easter-grid--single .menu-item {
  width: 100%;
}

/* Alias so seasonal-splash uses same styles as easter-splash */
.seasonal-splash { }
.seasonal-splash .easter-rule__line,
.seasonal-splash .easter-header,
.seasonal-splash .easter-grid,
.seasonal-splash .easter-note { }

/* Image wrapper with badge */
.easter-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  height: 160px;
  background: var(--alt);
}

.easter-img-wrap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(62,47,28,0.08);
  border-radius: 0;
  position: relative;
  z-index: 1;
}

/* Placeholder shown when image not yet added */
.easter-img-wrap.img-placeholder {
  background: linear-gradient(135deg, var(--alt) 0%, #d4b896 100%);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.easter-img-wrap.img-placeholder::after {
  content: 'Image coming soon';
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  color: rgba(62,47,28,0.45);
  letter-spacing: 0.5px;
}

/* Seasonal badge on card image */
.easter-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accent);
  color: #fffaf3;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

.easter-note {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.82rem;
  color: rgba(62,47,28,0.5);
  margin: 24px 0 0;
  font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
  .easter-title {
    font-size: 1.7rem;
  }
  .easter-grid {
    gap: 18px;
  }
  .easter-item {
    width: 100%;
    max-width: 520px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   CHRISTMAS SEASON STYLES  (1–25 December, injected by JS)
   ══════════════════════════════════════════════════════════════════════════════ */

/* CHRISTMAS GREETING — gold italic hero subheading */
.xmas-greeting {
  color: var(--accent) !important;
  font-style: italic;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6) !important;
}

/* SNOW CANVAS */
#xmasSnowCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* HERO WINTER TINT */
.xmas-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(20, 40, 80, 0.22) 0%,
    rgba(10, 25, 55, 0.14) 60%,
    rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 1;
}

/* SNOWFLAKE ACCENTS */
.xmas-flake {
  display: inline-block;
  color: var(--accent);
  font-size: 0.65em;
  opacity: 0.7;
  vertical-align: middle;
  animation: xmasFlakeSpin 8s linear infinite;
}

@keyframes xmasFlakeSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Christmas Wednesdays Popup ─────────────────────────────────────────────── */
.xmas-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(10, 20, 12, 0.80);
  padding: 16px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
.xmas-popup.open {
  display: flex;
  animation: xmasFadeIn 0.4s ease forwards;
}
@keyframes xmasFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.xmas-popup__box {
  position: relative;
  background: #162318;
  border: 1px solid rgba(196,155,99,0.35);
  border-radius: 14px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 32px 100px rgba(0,0,0,0.6);
  overflow: hidden;
  animation: xmasSlideUp 0.4s ease forwards;
}
@keyframes xmasSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.xmas-popup__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.07);
  border: none;
  color: rgba(245,232,204,0.6);
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}
.xmas-popup__close:hover {
  background: rgba(255,255,255,0.14);
  color: #f5e9dc;
}
.xmas-popup__header {
  background: #1e3324;
  padding: 32px 28px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(196,155,99,0.2);
}
.xmas-popup__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
  opacity: 0.85;
}
.xmas-popup__title {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #f5e9dc;
  line-height: 1.15;
  margin: 0 0 16px;
}
.xmas-popup__status {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(196,155,99,0.12);
  border: 1px solid rgba(196,155,99,0.3);
  border-radius: 20px;
  padding: 5px 14px;
}
.xmas-popup__status--tonight {
  color: #f5e9dc;
  background: #8b2020;
  border-color: #a02828;
  animation: tonightPulse 2s ease-in-out infinite;
}
@keyframes tonightPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139,32,32,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(139,32,32,0); }
}
.xmas-popup__body {
  padding: 24px 28px 28px;
}
.xmas-popup__dates {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f5e9dc;
  text-align: center;
  margin: 0 0 4px;
}
.xmas-popup__hours {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(245,232,204,0.55);
  text-align: center;
  letter-spacing: 0.04em;
  margin: 0 0 22px;
}
.xmas-popup__items {
  border-top: 1px solid rgba(196,155,99,0.2);
  border-bottom: 1px solid rgba(196,155,99,0.2);
  padding: 16px 0;
  margin-bottom: 20px;
}
.xmas-popup__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
}
.xmas-popup__item-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #f5e9dc;
}
.xmas-popup__item-price {
  font-family: 'Merriweather', serif;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
  margin-left: 12px;
}
.xmas-popup__brandy {
  text-align: center;
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--accent);
  background: rgba(196,155,99,0.08);
  border: 1px solid rgba(196,155,99,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  line-height: 1.5;
}
.xmas-popup__brandy-star {
  font-style: normal;
  font-size: 0.65rem;
  vertical-align: middle;
  margin: 0 6px;
  opacity: 0.7;
}
@media (max-width: 480px) {
  .xmas-popup__title  { font-size: 1.8rem; }
  .xmas-popup__header { padding: 28px 20px 20px; }
  .xmas-popup__body   { padding: 20px 20px 24px; }
}
