/* ═══════════════════════════════════════════════════════════
   LA FONTANA — PIZZERIA RISTORANTE HOUTEN
   Design: Deep Crimson #9B1B2A + Warm Ivory #F5EFC8
   Type: Playfair Display + Lato
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --crimson: #9B1B2A;
  --crimson-dark: #7a1420;
  --crimson-light: #c0313e;
  --ivory: #F5EFC8;
  --ivory-dark: #e8dfa8;
  --white: #FFFFFF;
  --charcoal: #2C2C2C;
  --charcoal-light: #4a4a4a;
  --grey-100: #f8f5f0;
  --grey-200: #ede8df;
  --grey-400: #a09080;

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

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

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

  --shadow-sm: 0 2px 8px rgba(44,44,44,.08);
  --shadow-md: 0 4px 24px rgba(44,44,44,.12);
  --shadow-lg: 0 8px 40px rgba(44,44,44,.16);

  --nav-h: 72px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

/* Image-fill safety net */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.sfeer-strip__img-wrap img, .card__media img, .cta-band__bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }

.label-ornament {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--crimson);
  margin-bottom: 0.4rem;
}
.label-ornament--light { color: var(--ivory); }

.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-header h2 { margin-bottom: 0.75rem; }
.section-sub { font-size: 1.05rem; color: var(--charcoal-light); max-width: 560px; margin: 0 auto; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--crimson);
  color: var(--white);
  border: 2px solid var(--crimson);
}
.btn--primary:hover {
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  box-shadow: 0 4px 16px rgba(155,27,42,.35);
}

.btn--secondary {
  background: var(--ivory);
  color: var(--crimson);
  border: 2px solid var(--ivory-dark);
}
.btn--secondary:hover { background: var(--ivory-dark); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn--crimson-outline {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(245,239,200,.5);
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
}
.btn--crimson-outline:hover { border-color: var(--ivory); background: rgba(245,239,200,.1); }

.btn--lg { padding: 0.85rem 1.8rem; font-size: 0.95rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(44,44,44,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,239,200,.1);
  transition: background var(--transition);
}
.site-header.scrolled {
  background: var(--charcoal);
}

.header__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-text { display: flex; flex-direction: column; gap: 0 }
.logo-text__main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.logo-text__sub {
  font-size: 0.68rem;
  color: var(--ivory);
  letter-spacing: 0.06em;
  opacity: 0.8;
}

/* Desktop nav */
.desktop-nav { display: none; }
@media (min-width: 768px) {
  .desktop-nav { display: block; }
  .desktop-nav__list { display: flex; gap: var(--space-lg); }
  .desktop-nav__link {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.85;
    transition: opacity var(--transition), color var(--transition);
  }
  .desktop-nav__link:hover { opacity: 1; color: var(--ivory); }
}

/* ── HAMBURGER ───────────────────────────────────────────── */
.mobile-menu__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: background var(--transition);
}
.mobile-menu__trigger:hover { background: rgba(255,255,255,.1); }

.hamburger { display: flex; flex-direction: column; gap: 5px; pointer-events: none; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.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; }
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

/* ── MOBILE MENU OVERLAY ─────────────────────────────────── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100%;
  height: 100svh;
  background: var(--crimson);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}
.mobile-menu__overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: opacity 0.15s ease, visibility 0.15s ease; transform: none; }
}

.mobile-menu__panel { flex: 1; display: flex; flex-direction: column; }
.mobile-menu__panel--root {
  padding: var(--space-md) var(--space-lg) var(--space-xl);
}

.mobile-menu__close {
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  color: var(--white);
  margin-bottom: var(--space-md);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-menu__close:hover { background: rgba(255,255,255,.12); }

.mobile-menu__brand {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

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

.mobile-menu__item {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu__item:hover { color: var(--ivory); padding-left: 0.5rem; }

.mobile-menu__footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mobile-menu__footer p { display: flex; align-items: center; gap: 0.4rem; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero__media {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,8,8,.5) 0%,
    rgba(44,20,20,.55) 60%,
    rgba(44,20,20,.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: var(--space-md);
  max-width: 760px;
}
.hero__eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ivory);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.hero__sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.88);
  max-width: 540px;
  margin: 0 auto var(--space-lg);
  line-height: 1.65;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }

.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
  animation: bounce 2.4s ease-in-out infinite;
  transition: color var(--transition);
}
.hero__scroll:hover { color: var(--white); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── WELKOMSSECTIE ───────────────────────────────────────── */
.welkom {
  padding: var(--space-2xl) 0;
  background: var(--grey-100);
}
.welkom__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 768px) {
  .welkom__inner { grid-template-columns: 1fr 1fr; }
}

.welkom__heading {
  margin-bottom: var(--space-sm);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}
.welkom__body {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.welkom__uren { margin-top: var(--space-md); }
.uren-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-left: 3px solid var(--crimson);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-sm);
}
.uren-badge svg { color: var(--crimson); flex-shrink: 0; margin-top: 2px; }
.uren-badge__text { display: flex; flex-direction: column; gap: 0.2rem; font-size: 0.9rem; }
.uren-badge__text strong { font-weight: 700; color: var(--charcoal); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.uren-badge__closed { color: var(--crimson); font-weight: 600; font-size: 0.82rem; }

.welkom__quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--crimson);
  text-align: center;
}
.welkom__quote-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin: var(--space-sm) 0;
}
.welkom__quote-card cite {
  font-size: 0.82rem;
  color: var(--grey-400);
  font-style: normal;
  letter-spacing: 0.04em;
}

/* ── SFEER STRIP ─────────────────────────────────────────── */
.sfeer-strip { overflow: hidden; }

.sfeer-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 600px) {
  .sfeer-strip__grid { grid-template-columns: 1fr 1fr 1fr; }
}

.sfeer-strip__panel {
  position: relative;
  overflow: hidden;
}
@media (min-width: 600px) {
  .sfeer-strip__panel--large { /* same size in 3-col */ }
}

.sfeer-strip__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
@media (min-width: 600px) {
  .sfeer-strip__img-wrap { aspect-ratio: 1 / 1; }
}

.sfeer-strip__img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.sfeer-strip__panel:hover .sfeer-strip__img-wrap img { transform: scale(1.04); }

figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(20,8,8,.85) 0%, transparent 100%);
  padding: var(--space-lg) var(--space-sm) var(--space-sm);
  display: flex; flex-direction: column; gap: 0.2rem;
}
.sfeer-strip__caption-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ivory);
  display: block;
}
.sfeer-strip__caption-text {
  font-size: 0.8rem;
  color: rgba(245,239,200,.75);
  display: block;
}
/* Crimson accent on caption-label */
.sfeer-strip__panel figcaption::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--crimson);
  margin-bottom: 0.4rem;
}

/* ── MENU HIGHLIGHTS ─────────────────────────────────────── */
.menu-highlights {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 600px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .card-grid { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.card:hover .card__media img { transform: scale(1.05); }

.card__body {
  flex: 1;
  display: flex; flex-direction: column;
  padding: var(--space-sm) var(--space-md) var(--space-md);
}
.card__category {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--crimson);
  margin-bottom: 0.4rem;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.card__desc {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  line-height: 1.55;
  flex: 1;
  margin-bottom: var(--space-sm);
}
.card__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--grey-200);
}
.card__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--crimson);
}
.card__cta {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--crimson);
  border-bottom: 1px solid var(--crimson);
  padding-bottom: 1px;
  transition: opacity var(--transition);
}
.card__cta:hover { opacity: 0.7; }

.menu-highlights__footer {
  margin-top: var(--space-xl);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-sm);
}
.menu-highlights__note {
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

/* ── CTA-BAND ────────────────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) 0;
  text-align: center;
}
.cta-band__bg {
  position: absolute; inset: 0;
}
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-band__overlay {
  position: absolute; inset: 0;
  background: rgba(100,10,20,.80);
}

.cta-band__inner {
  position: relative; z-index: 2;
  color: var(--white);
  max-width: 640px; margin: 0 auto;
  padding: 0 var(--space-md);
}
.cta-band__heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}
.cta-band__sub {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}
.cta-band__actions {
  display: flex; flex-wrap: wrap; gap: var(--space-md); justify-content: center;
  margin-bottom: var(--space-md);
}
.cta-band__hours {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
}
.cta-band__hours svg { flex-shrink: 0; }

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section {
  padding: var(--space-2xl) 0;
  background: var(--grey-100);
}
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 768px) {
  .contact-section__grid { grid-template-columns: 1fr 1.2fr; }
}

.contact-info h2 { margin-bottom: var(--space-lg); }

.contact-list { display: flex; flex-direction: column; gap: var(--space-md); }
.contact-list__item {
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.contact-list__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  border: 1px solid var(--grey-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson);
  box-shadow: var(--shadow-sm);
}
.contact-list__item > div:last-child {
  display: flex; flex-direction: column; gap: 0.15rem;
  font-size: 0.9rem;
}
.contact-list__item strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey-400); }
.contact-list__item a { color: var(--charcoal); font-weight: 600; }
.contact-list__item a:hover { color: var(--crimson); }
.closed-label { color: var(--crimson); font-weight: 600; font-size: 0.85rem; }

.maps-btn { margin-top: var(--space-lg); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
}
.form-heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: var(--space-lg);
  color: var(--charcoal);
}

.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }
.form-row { display: flex; flex-direction: column; gap: 0.35rem; }
.form-row label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal-light);
}
.form-row label span { color: var(--crimson); }
.form-row input, .form-row textarea {
  padding: 0.7rem var(--space-sm);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(155,27,42,.12);
}
.form-row textarea { resize: vertical; min-height: 110px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer-kit {
  background: var(--crimson);
  color: var(--white);
  padding: var(--space-2xl) 0 0;
}

.footer-kit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,.15);
}
@media (min-width: 600px) { .footer-kit__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .footer-kit__grid { grid-template-columns: 1.5fr 1fr 1.2fr 1fr; } }

.footer-kit__tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-top: var(--space-sm);
}

.footer-kit__heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}

.footer-kit__list {
  display: flex; flex-direction: column; gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,.75);
}
.footer-kit__list li { display: flex; align-items: flex-start; gap: 0.4rem; }
.footer-kit__list li svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.footer-kit__list a { color: rgba(255,255,255,.8); transition: color var(--transition); }
.footer-kit__list a:hover { color: var(--white); }

.footer-kit__hours {
  display: flex; flex-direction: column; gap: 0.45rem;
  font-size: 0.88rem;
}
.footer-kit__hours li {
  display: flex; justify-content: space-between;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
}
.footer-kit__hours .closed { color: rgba(255,255,255,.45); font-style: italic; }

.footer-kit__reserve { margin-top: var(--space-md); }

.footer-logo { margin-bottom: var(--space-sm); }

.footer-kit__bottom {
  padding: var(--space-md) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
}
.footer-kit__credit a { color: rgba(255,255,255,.6); }
.footer-kit__credit a:hover { color: var(--white); }

/* ── RESPONSIVE TWEAKS ───────────────────────────────────── */
@media (max-width: 599px) {
  .hero__ctas { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; max-width: 280px; justify-content: center; }
  .cta-band__actions { flex-direction: column; align-items: stretch; }
  .cta-band__hours { flex-direction: column; gap: 0.2rem; text-align: center; }
  .contact-form-wrap { padding: var(--space-lg) var(--space-sm); }
}

/* ── ACCESSIBILITY ───────────────────────────────────────── */
.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;
}
:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 2px;
}
