/* ===========================================================
   CHEZ LEON — French Fusion Bistro
   Design System
   =========================================================== */

:root {
  /* Colors — derived from the truck wrap & logo, not generic defaults */
  --cl-ink: #0B0E14;          /* deep blue-black, warmer than pure black */
  --cl-cream: #F7F2E7;        /* warm cream surface */
  --cl-cream-soft: #EFE8D8;   /* slightly deeper cream for cards */
  --cl-blue: #5B8FB0;         /* dusty French blue from the truck turquoise */
  --cl-red: #9B3B3B;          /* muted bordeaux from the hibiscus red */
  --cl-gold: #C9974A;         /* warmth/value accent for donations */
  --cl-gold-soft: #E8D9B8;
  --cl-white: #FFFFFF;
  --cl-text-on-dark: #F3EEE3;
  --cl-text-muted: #B9B2A2;

  /* Typography */
  --font-display: 'Caveat', cursive;
  --font-body: 'Lora', serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --radius: 14px;
  --shadow-soft: 0 12px 32px rgba(11, 14, 20, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cl-cream);
  color: var(--cl-ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 var(--space-sm) 0;
  color: var(--cl-ink);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); }

p { margin: 0 0 var(--space-sm) 0; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--cl-red);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--cl-red);
  display: inline-block;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Visually hidden, for skip links / a11y labels */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--cl-blue);
  outline-offset: 3px;
}

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  display: inline-block;
  padding: 0.55rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn-primary {
  background: var(--cl-red);
  color: var(--cl-white);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); background: #832F2F; }

.btn-gold {
  background: var(--cl-gold);
  color: var(--cl-ink);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); background: #B6843A; }

.btn-blue {
  background: var(--cl-blue);
  color: var(--cl-white);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); background: #4A7A99; }

.btn-outline {
  background: transparent;
  border-color: var(--cl-text-on-dark);
  color: var(--cl-text-on-dark);
}
.btn-outline:hover { background: rgba(247,242,231,0.12); transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--cl-ink);
  color: var(--cl-ink);
}
.btn-outline-dark:hover { background: var(--cl-ink); color: var(--cl-text-on-dark); }

/* ===========================================================
   NAVIGATION
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cl-ink);
  border-bottom: 1px solid rgba(247,242,231,0.08);
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.7rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cl-text-on-dark);
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--cl-blue);
  transition: width 0.2s ease;
}

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

.nav-links a.active { color: var(--cl-blue); }

/* --- Dropdown (Blog) --- */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cl-text-on-dark);
  padding: 0.3rem 0;
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--cl-ink);
  border: 1px solid rgba(247,242,231,0.1);
  border-radius: 10px;
  min-width: 200px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 50;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.dropdown-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(2px);
}

.nav-item-dropdown:hover .nav-dropdown-toggle svg,
.nav-item-dropdown.dropdown-open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 0.5rem 1.1rem;
  font-size: 1.15rem;
  white-space: nowrap;
  color: var(--cl-text-on-dark);
}

.nav-dropdown-menu li a::after { display: none; }
.nav-dropdown-menu li a:hover {
  background: rgba(247,242,231,0.06);
  color: var(--cl-blue);
}

@media (max-width: 860px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    background: rgba(247,242,231,0.04);
    box-shadow: none;
    border: none;
    width: 100%;
    text-align: center;
  }
  .nav-item-dropdown.dropdown-open .nav-dropdown-menu { display: block; }
  .nav-dropdown-toggle { justify-content: center; width: 100%; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cl-text-on-dark);
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cl-ink);
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(247,242,231,0.08);
    display: none;
  }
  .nav-links.open { display: flex; }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,14,20,0.25) 0%, rgba(11,14,20,0.55) 55%, rgba(11,14,20,0.92) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  max-width: 1180px;
  margin: 0 auto;
  color: var(--cl-text-on-dark);
}

.hero h1 {
  color: var(--cl-white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  max-width: 900px;
  margin-bottom: 0.1rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--cl-white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  max-width: 700px;
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.15;
}

.hero-sub {
  font-size: 1.2rem;
  max-width: 560px;
  color: var(--cl-text-on-dark);
  margin-bottom: var(--space-md);
}

.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--cl-text-on-dark);
  opacity: 0.75;
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   SECTIONS — general
   =========================================================== */
.section {
  padding: var(--space-xl) 0;
}

.section-dark {
  background: var(--cl-ink);
  color: var(--cl-text-on-dark);
}
.section-dark .container {
  /* Prevents the last child's margin-bottom (e.g. .menu-section)
     from collapsing through the container and creating a visible
     gap between this section and the next one. */
  overflow: hidden;
}
.section-dark h2, .section-dark h3 { color: var(--cl-white); }
.section-dark p { color: var(--cl-text-on-dark); }

.section-cream-soft { background: var(--cl-cream-soft); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg) auto;
}

.section-header.align-left { text-align: left; margin-left: 0; }

/* organic divider, echoes the truck's hibiscus motif without being literal */
.leaf-divider {
  display: block;
  width: 100%;
  height: 46px;
  margin: 0;
}

/* ===========================================================
   HOME — feature teasers
   =========================================================== */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.teaser-card {
  background: var(--cl-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}
.teaser-card:hover { transform: translateY(-6px); }

.teaser-card img { height: 220px; object-fit: cover; }

.teaser-card-body { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; }

.teaser-card-body h3 { margin-bottom: 0.4rem; }
.teaser-card-body p { color: #4a4438; flex: 1; }

@media (max-width: 900px) {
  .teaser-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   TRUCK STRIP / about teaser on home
   =========================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.split img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
}

/* ===========================================================
   MENU PAGE
   =========================================================== */
.menu-section { margin-bottom: var(--space-lg); }

.menu-section-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--cl-white);
  border-bottom: 2px solid var(--cl-blue);
  display: inline-block;
  padding-bottom: 0.2rem;
  margin-bottom: var(--space-md);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md) var(--space-lg);
}

@media (max-width: 760px) {
  .menu-grid { grid-template-columns: 1fr; }
}

.menu-item {
  border-bottom: 1px dashed rgba(247,242,231,0.18);
  padding-bottom: var(--space-sm);
}

.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cl-white);
}

.menu-item-price {
  color: var(--cl-gold);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.95rem;
  color: var(--cl-text-muted);
  margin-top: 0.25rem;
}

.menu-gallery-wrap {
  position: relative;
  margin-top: var(--space-lg);
}

.menu-gallery-scroll {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -ms-overflow-style: none;
  scrollbar-width: thin;
  scrollbar-color: var(--cl-blue) transparent;
}

.menu-gallery-scroll::-webkit-scrollbar {
  height: 8px;
}
.menu-gallery-scroll::-webkit-scrollbar-thumb {
  background: var(--cl-blue);
  border-radius: 999px;
}
.menu-gallery-scroll::-webkit-scrollbar-track {
  background: rgba(247,242,231,0.08);
  border-radius: 999px;
}

.menu-gallery-item {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.2s ease;
}
.menu-gallery-item:hover { transform: translateY(-4px); }
.menu-gallery-item:focus-visible { outline: 3px solid var(--cl-blue); outline-offset: 2px; }

.menu-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.menu-gallery-item-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.6rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(11,14,20,0.85));
  color: var(--cl-white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-align: left;
}

@media (max-width: 640px) {
  .menu-gallery-item { width: 220px; }
  .menu-gallery-item img { height: 170px; }
}

.menu-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cl-white);
  border: none;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: var(--cl-ink);
  transition: background 0.15s ease;
}
.menu-gallery-nav:hover { background: var(--cl-cream-soft); }
.menu-gallery-nav-prev { left: -8px; }
.menu-gallery-nav-next { right: -8px; }

@media (max-width: 860px) {
  .menu-gallery-nav { display: none; }
}

/* --- Lightbox --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(11,14,20,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 880px;
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  transform: scale(0.96);
  transition: transform 0.25s ease;
}
.lightbox-overlay.open .lightbox-content { transform: scale(1); }

.lightbox-content img {
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
  display: block;
}

.lightbox-caption {
  /* the "frosted glass" panel — translucent so the image shows through, with blur */
  background: rgba(247,242,231,0.62);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  padding: var(--space-md) var(--space-md) var(--space-lg);
}

.lightbox-caption h3 {
  font-size: 1.9rem;
  margin-bottom: 0.3rem;
  color: var(--cl-ink);
}

.lightbox-caption p {
  margin: 0;
  color: #2c2820;
  font-size: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(247,242,231,0.85);
  backdrop-filter: blur(10px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: var(--cl-ink);
  transition: background 0.15s ease;
}
.lightbox-close:hover { background: var(--cl-white); }

.lightbox-arrow {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(247,242,231,0.85);
  backdrop-filter: blur(10px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: var(--cl-ink);
  transition: background 0.15s ease;
}
.lightbox-arrow:hover { background: var(--cl-white); }
.lightbox-arrow-prev { left: 14px; }
.lightbox-arrow-next { right: 14px; }

@media (prefers-reduced-motion: reduce) {
  .lightbox-overlay, .lightbox-content { transition: none; }
}

.menu-note {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 1.05rem;
  color: var(--cl-text-muted);
}

/* ===========================================================
   LOCATIONS PAGE
   =========================================================== */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cl-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.schedule-table th, .schedule-table td {
  padding: 1rem 1.4rem;
  text-align: left;
  border-bottom: 1px solid var(--cl-cream-soft);
}

.schedule-table th {
  font-family: var(--font-display);
  font-size: 1.3rem;
  background: var(--cl-cream-soft);
}

.schedule-table tr:last-child td { border-bottom: none; }

.placeholder-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cl-gold-soft);
  color: #6b4e1c;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-top: var(--space-md);
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-top: var(--space-lg);
  border: 0;
  width: 100%;
  min-height: 360px;
}

/* ===========================================================
   ABOUT PAGE
   =========================================================== */
.about-story p { font-size: 1.08rem; }

.about-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  align-items: stretch;
}
.about-gallery img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 560px;
  box-shadow: var(--shadow-soft);
  display: block;
}
.about-gallery .stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-sm);
}
.about-gallery .stack img { max-height: 274px; }

@media (max-width: 900px) {
  .about-gallery { grid-template-columns: 1fr; }
  .about-gallery img { max-height: 320px; }
  .about-gallery .stack img { max-height: 220px; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.value-card {
  background: var(--cl-white);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
}

.value-card h3 { color: var(--cl-red); }

@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   DONATIONS PAGE
   =========================================================== */
.donation-hero {
  background: linear-gradient(135deg, var(--cl-ink) 0%, #1a2230 100%);
  color: var(--cl-text-on-dark);
  text-align: center;
  padding: var(--space-xl) 0;
}

.donation-hero .eyebrow { color: var(--cl-gold); }
.donation-hero .eyebrow::before { background: var(--cl-gold); }

.tracker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.tracker-card {
  background: rgba(247,242,231,0.06);
  border: 1px solid rgba(201,151,74,0.35);
  border-radius: var(--radius);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}

.tracker-number {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--cl-gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.tracker-label {
  font-size: 0.95rem;
  color: var(--cl-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .tracker-grid { grid-template-columns: 1fr; }
}

.progress-wrap { margin-top: var(--space-lg); max-width: 700px; margin-left: auto; margin-right: auto; }

.progress-bar-track {
  width: 100%;
  height: 18px;
  background: rgba(247,242,231,0.12);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cl-gold), #E8C77E);
  border-radius: 999px;
  width: 62%; /* placeholder value, edit me */
}

.progress-caption {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--cl-text-muted);
  margin-top: 0.5rem;
}

.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.how-step {
  text-align: center;
}

.how-step .step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--cl-red);
  display: block;
}

@media (max-width: 900px) {
  .how-it-works { grid-template-columns: 1fr; }
}

.donate-cta-box {
  background: var(--cl-gold);
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
  color: var(--cl-ink);
  box-shadow: var(--shadow-soft);
}

.donate-cta-box h2 { color: var(--cl-ink); }

.donate-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.venmo-donate-block {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--cl-white);
  border-radius: var(--radius);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.venmo-qr-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.venmo-donate-text { display: flex; flex-direction: column; }

.venmo-donate-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cl-ink);
  margin: 0 0 0.15rem 0;
}

.venmo-donate-handle {
  font-size: 1.05rem;
  color: var(--cl-red);
  font-weight: 600;
  margin: 0;
}

@media (max-width: 540px) {
  .venmo-donate-block {
    flex-direction: column;
    text-align: center;
  }
  .venmo-donate-text { align-items: center; }
}

/* ===========================================================
   CONTACT PAGE
   =========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form-field { margin-bottom: var(--space-sm); }

.form-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #d8cfb8;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--cl-white);
  color: var(--cl-ink);
}

.form-field textarea { min-height: 140px; resize: vertical; }

.contact-info-card {
  background: var(--cl-ink);
  color: var(--cl-text-on-dark);
  border-radius: var(--radius);
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
}

.contact-info-card h3 { color: var(--cl-white); }

.social-row {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.social-row a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(247,242,231,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.social-row a:hover { background: var(--cl-blue); }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: var(--cl-ink);
  color: var(--cl-text-muted);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer-grid img { height: 56px; margin-bottom: var(--space-sm); }

.footer-grid h4 {
  font-family: var(--font-display);
  color: var(--cl-text-on-dark);
  font-size: 1.4rem;
}

.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a:hover { color: var(--cl-blue); }

.footer-bottom {
  border-top: 1px solid rgba(247,242,231,0.1);
  padding-top: var(--space-sm);
  text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   BLOG
   =========================================================== */
.blog-filter-row {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.blog-filter-pill {
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  border: 1.5px solid var(--cl-ink);
  color: var(--cl-ink);
  transition: background 0.18s ease, color 0.18s ease;
}

.blog-filter-pill:hover {
  background: rgba(11,14,20,0.06);
}

.blog-filter-pill.active {
  background: var(--cl-ink);
  color: var(--cl-white);
}

.blog-empty-state {
  text-align: center;
  max-width: 480px;
  margin: var(--space-lg) auto;
  padding: var(--space-lg) var(--space-md);
  background: var(--cl-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.blog-empty-state h2 { font-size: 1.9rem; }
.blog-empty-state p { color: #6b6354; margin-bottom: 0; }

/* Reserved for when real posts are added — see HTML comments in
   blog.html / blog-news.html / blog-deals.html for usage examples. */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (max-width: 960px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
  background: var(--cl-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}
.blog-card:hover { transform: translateY(-4px); }

.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.blog-card-body { padding: var(--space-sm) var(--space-md) var(--space-md); }

.blog-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cl-blue);
  margin-bottom: 0.4rem;
}

.blog-card-tag-deal { color: var(--cl-gold); }

.blog-card-body h3 { font-size: 1.5rem; margin-bottom: 0.2rem; }

.blog-card-date {
  font-size: 0.85rem;
  color: #9a9382;
  margin-bottom: 0.5rem;
}


/* ===========================================================
   UBER EATS ORDER BUTTON
   Colors match Uber Eats' own brand palette (black + their green,
   #06C167) so the button is instantly recognizable as "the Uber Eats
   way to order" without using their logo or trademarked assets.
   =========================================================== */
.ubereats-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #06C167;
  color: #000000;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.ubereats-btn:hover {
  background: #05A659;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(6,193,103,0.35);
}

.platform-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FFFFFF;
  flex-shrink: 0;
}
.ubereats-btn svg { flex-shrink: 0; }

/* DoorDash button — colors match their own brand palette
   (red #FF3008 on white) so it's instantly recognizable, without
   using their logo or trademarked assets. */
.doordash-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FF3008;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.doordash-btn:hover {
  background: #E22B07;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255,48,8,0.35);
}
.doordash-btn svg { flex-shrink: 0; }

.order-platform-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.order-divider-or {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--cl-text-muted);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: var(--space-md) 0;
}
.order-divider-or::before,
.order-divider-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(247,242,231,0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Variant with no transform — used for elements at the very top of a
   section-dark block, where the translateY's compositing layer can
   cause a brief visible seam (cream body background showing through)
   during fast scrolling, before the reveal transition completes. */
.reveal-no-transform {
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===========================================================
   LEAF DIVIDERS
   ===========================================================
   Decorative torn-edge style transitions between sections, using
   the Chez Leon hibiscus/leaf motif (recolored to the site palette)
   instead of a plain straight line. Available site-wide.

   Variants:
     .leaf-divider        — leaves hang down from above (top-hanging),
                             dark background, light leaves
     .leaf-divider-bottom — mirrored: leaves grow up from below,
                             dark background, light leaves
     .leaf-divider-light  — leaves hang down from above, cream-soft
                             background, dark leaves (for use between
                             two light/cream sections where light
                             leaves wouldn't have enough contrast)
*/
.leaf-divider {
  width: 100%;
  height: 95px;
  background-color: var(--cl-ink);
  background-image: url('../images/leaf-divider-on-dark.png');
  background-repeat: repeat-x;
  background-position: top center;
  background-size: auto 95px;
}
.leaf-divider-bottom {
  width: 100%;
  height: 95px;
  background-color: var(--cl-ink);
  background-image: url('../images/leaf-divider-on-dark-flipped.png');
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 95px;
}
.leaf-divider-light {
  width: 100%;
  height: 95px;
  background-color: var(--cl-cream-soft);
  background-image: url('../images/leaf-divider-on-light.png');
  background-repeat: repeat-x;
  background-position: top center;
  background-size: auto 95px;
}
.leaf-divider-light-bottom {
  width: 100%;
  height: 95px;
  background-color: var(--cl-cream-soft);
  background-image: url('../images/leaf-divider-on-light-flipped.png');
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 95px;
}
@media (max-width: 700px) {
  .leaf-divider { height: 60px; background-size: auto 60px; }
  .leaf-divider-bottom { height: 60px; background-size: auto 60px; }
  .leaf-divider-light { height: 60px; background-size: auto 60px; }
  .leaf-divider-light-bottom { height: 60px; background-size: auto 60px; }
}
