/* =====================================================
   LOEF EN LIJ — Restaurant & Wijnbar
   Design system: Crimson red + Ivory + Near-black
   Fonts: Playfair Display (headings) + Inter (body)
===================================================== */

/* ===================== TOKENS ===================== */
:root {
  --color-accent: #C0392B;
  --color-accent-dark: #9B2D20;
  --color-accent-hover: #D44535;
  --color-dark: #1A1A1A;
  --color-dark-2: #2C2C2C;
  --color-cream: #F5F0E8;
  --color-cream-dark: #EDE6D8;
  --color-text: #2C2C2C;
  --color-text-muted: #6B6053;
  --color-text-light: #E8E0D4;
  --color-border: rgba(44,44,44,0.12);
  --color-border-light: rgba(232,224,212,0.18);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-card: 0 2px 16px rgba(26,26,26,0.10), 0 1px 4px rgba(26,26,26,0.06);
  --shadow-card-hover: 0 8px 32px rgba(26,26,26,0.16), 0 2px 8px rgba(26,26,26,0.10);

  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);

  --container-max: 1200px;
  --section-padding: clamp(56px, 8vw, 112px) 0;
}

/* ===================== RESET ====================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* Image fill pattern — critical for gallery/cards/hero */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img,
.img-fill > img,
figure.photo > img,
.gallery img,
.card img,
.hero__img,
.event-card__media > img,
.about-image > img,
.menu-photo > img,
.menu-wine-img > img,
.cta-band__media > img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===================== TYPOGRAPHY ================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: block;
}
.section-label--light { color: var(--color-accent); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: var(--color-dark);
}
.section-title--light { color: #F5F0E8; }

.section-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.section-intro--light { color: rgba(245,240,232,0.75); }

.body-lead {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
}

/* ===================== LAYOUT ==================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.section { padding: var(--section-padding); }
.section--cream { background: var(--color-cream); color: var(--color-text); }
.section--dark { background: var(--color-dark); color: var(--color-text-light); overflow: hidden; }

.section-header { margin-bottom: clamp(40px, 5vw, 64px); }
.section-header--center { text-align: center; }
.section-header--center .section-intro { margin: 0 auto; }

/* ===================== BUTTONS =================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  min-height: 48px;
  white-space: nowrap;
  text-decoration: none;
}

.btn-accent {
  background: var(--color-accent);
  color: #fff;
}
.btn-accent:hover, .btn-accent:focus-visible {
  background: var(--color-accent-hover);
  box-shadow: 0 4px 20px rgba(192,57,43,0.35);
  transform: translateY(-1px);
}

.btn-lg { padding: 18px 36px; font-size: 1rem; min-height: 56px; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; min-height: 40px; }
.btn-full { width: 100%; }

.btn-text-light {
  color: rgba(245,240,232,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.btn-text-light:hover { color: #fff; }

.btn-text-dark {
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.btn-text-dark:hover { gap: 10px; }

/* ===================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: var(--color-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
}
.logo-amp { color: var(--color-accent); }
.logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  padding: 4px 0;
}
.desktop-nav a:hover { color: #fff; }

.header-cta {
  margin-left: 16px;
  flex-shrink: 0;
}

/* Mobile trigger */
.mobile-menu__trigger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  transition: background var(--transition);
}
.mobile-menu__trigger:hover { background: rgba(255,255,255,0.1); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

/* Animate hamburger to X when open */
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================== MOBILE MENU ================ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--color-dark);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu__overlay.is-open {
  pointer-events: all;
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  min-height: 100dvh;
  padding: 24px clamp(24px, 6vw, 48px) 48px;
}

.mobile-menu__close {
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: background var(--transition);
  color: #fff;
  margin-bottom: 32px;
}
.mobile-menu__close svg { width: 24px; height: 24px; }
.mobile-menu__close:hover { background: rgba(255,255,255,0.1); }

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.mobile-menu__item {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 600;
  color: rgba(245,240,232,0.85);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition), padding-left var(--transition);
  text-decoration: none;
}
.mobile-menu__item:hover {
  color: #fff;
  padding-left: 8px;
}

.mobile-menu__cta {
  margin-top: 40px;
  text-align: center;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}

/* ===================== HERO ======================= */
.hero {
  position: relative;
  height: 100svh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,0.25) 0%,
    rgba(26,26,26,0.50) 50%,
    rgba(26,26,26,0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 clamp(20px, 6vw, 48px);
  max-width: 780px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 480px) {
  .hero__actions { flex-direction: row; justify-content: center; }
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: bounce 2.4s ease-in-out infinite;
}
.hero__scroll-indicator svg { width: 28px; height: 28px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===================== ABOUT ====================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
}

.about-text { display: flex; flex-direction: column; gap: 16px; }
.about-text p { color: var(--color-text-muted); line-height: 1.75; }

.about-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===================== MENU ======================= */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 900px) {
  .menu-grid {
    grid-template-columns: 1fr 380px 1fr;
    gap: 48px;
    align-items: start;
  }
}

.menu-photo {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  order: -1;
}
@media (min-width: 900px) {
  .menu-photo { order: 0; }
}
.menu-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.menu-category { display: flex; flex-direction: column; gap: 20px; }
.menu-cat-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #F5F0E8;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245,240,232,0.15);
}
.menu-cat-title svg { width: 20px; height: 20px; opacity: 0.7; flex-shrink: 0; }

.menu-list { display: flex; flex-direction: column; gap: 4px; }
.menu-list li { padding: 12px 0; border-bottom: 1px solid rgba(245,240,232,0.08); }
.menu-list li:last-child { border-bottom: none; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.menu-item__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #F5F0E8;
}
.menu-item__price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
}
.menu-item__desc {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.4;
}

/* Menu bottom row (desserts + photo + wine) */
.menu-bottom-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 48px;
}
@media (min-width: 900px) {
  .menu-bottom-row {
    grid-template-columns: 1fr 280px 1.4fr;
    gap: 48px;
    align-items: start;
  }
}
.menu-dessert-photo {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  order: -1;
}
@media (min-width: 900px) {
  .menu-dessert-photo { order: 0; }
}
.menu-dessert-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-desserts { display: flex; flex-direction: column; gap: 20px; }
.menu-wine-highlight { display: flex; flex-direction: column; }


/* Wine card */
.menu-footer { margin-top: 24px; margin-bottom: 0; }
.menu-wine-card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-dark-2);
  border: 1px solid rgba(245,240,232,0.12);
}
@media (min-width: 640px) {
  .menu-wine-card { grid-template-columns: 1fr 1fr; }
}

.menu-wine-img {
  aspect-ratio: 16 / 10;
}
@media (min-width: 640px) {
  .menu-wine-img { aspect-ratio: auto; min-height: 260px; }
}
.menu-wine-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.menu-wine-text {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.wine-icon { width: 36px; height: 36px; color: var(--color-accent); }
.menu-wine-text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #F5F0E8;
}
.menu-wine-text p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.7;
}

/* ===================== AGENDA ===================== */
.event-grid.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) {
  .event-grid.card-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .event-grid.card-grid { grid-template-columns: repeat(3, 1fr); }
}

.card.event-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.card.event-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.event-card__date {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  text-align: center;
  min-width: 52px;
}
.event-card__day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.event-card__month {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
}

.event-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.event-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.event-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.event-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.event-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.25;
}

.event-card__desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
}

.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.event-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.event-card__meta svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ===================== CTA BAND =================== */
.cta-band {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.cta-band__media {
  position: absolute;
  inset: 0;
}
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.55) 60%, rgba(26,26,26,0.3) 100%);
}
.cta-band__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 72px;
  padding-bottom: 72px;
  max-width: 600px;
}
.cta-band__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 16px;
}
.cta-band__text {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===================== RESERVEREN ================= */
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 768px) {
  .reserve-grid { grid-template-columns: 1fr 1.4fr; }
}

.reserve-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reserve-text p { color: var(--color-text-muted); line-height: 1.75; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text);
}
.contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Form */
.reserve-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-cream);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6053' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 44px; }

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ===================== FOOTER ==================== */
.footer-kit {
  background: var(--color-dark);
  color: var(--color-text-light);
}

.footer-inner {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 640px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 40px; }
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { font-size: 1.75rem; color: #fff; }
.footer-logo-sub { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: -6px; }
.footer-tagline { font-size: 0.88rem; color: rgba(245,240,232,0.55); line-height: 1.65; max-width: 260px; margin-top: 4px; }

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--transition), color var(--transition);
}
.footer-socials a:hover { border-color: var(--color-accent); color: var(--color-accent); }
.footer-socials svg { width: 18px; height: 18px; }

.footer-nav h3,
.footer-hours h3,
.footer-contact h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.7);
  transition: color var(--transition);
}
.footer-nav a:hover { color: #fff; }

.footer-hours ul { display: flex; flex-direction: column; gap: 8px; }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.65);
  gap: 8px;
}
.footer-hours li.closed { opacity: 0.4; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.65);
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-accent); margin-top: 2px; }
.footer-contact-item a { color: rgba(245,240,232,0.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-credit a { color: var(--color-accent); }

/* ===================== SCREEN READER ============== */
.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;
}

/* ===================== RESPONSIVE ================= */
@media (max-width: 767px) {
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  .hero__title { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero__subtitle { font-size: 0.95rem; }

  .menu-grid { gap: 32px; }
  .menu-category--right { order: 3; }

  .cta-band__content { max-width: 100%; }
}

@media (min-width: 768px) {
  .mobile-menu__trigger { display: none; }
  .mobile-menu__overlay { display: none !important; }
}

/* ===================== SCROLL ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 1;
  transform: none;
}
.reveal.is-visible {
  animation: fadeInUp 0.55s ease forwards;
}

/* Fix: ensure all reveal items are always visible (fallback if JS doesn't run) */
.card, .menu-category, .about-grid > *, .reserve-grid > * {
  opacity: 1;
}
