/* ═══════════════════════════════════════════════
   BOCA BAR & KITCHEN — Demo Site
   Palette: #1A1A1A / #C9A84C / #F5F0E8 / #2E2B25
   ═══════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────── */
:root {
  --bg:         #1A1A1A;
  --bg-2:       #2E2B25;
  --bg-3:       #242018;
  --gold:       #C9A84C;
  --gold-dim:   #a8872e;
  --gold-light: #e0c47a;
  --cream:      #F5F0E8;
  --text:       #e8e0d0;
  --muted:      #9a8f7e;
  --white:      #ffffff;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;

  --shadow-card: 0 4px 24px rgba(0,0,0,.45);
  --shadow-hover: 0 8px 36px rgba(0,0,0,.6);

  --transition: 0.25s ease;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
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; background: none; border: none; color: inherit; font: inherit; }
input, textarea, select { font: inherit; }

/* ── MEDIA FILL UTILITY ──────────────────────── */
.media, .img-fill, figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ── TYPOGRAPHY ──────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--cream);
}
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-label--light { color: var(--gold-light); }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .section-title { margin-bottom: 0; }

/* ── LAYOUT ──────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  padding: 14px 28px;
  min-height: 48px;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: var(--gold);
  color: #1A1A1A;
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
}
.btn--gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--gold-outline:hover {
  background: rgba(201,168,76,.12);
  box-shadow: 0 0 0 2px var(--gold);
}
.btn--outline {
  background: rgba(245,240,232,.08);
  color: var(--cream);
  border-color: rgba(245,240,232,.55);
}
.btn--outline:hover {
  border-color: var(--cream);
  background: rgba(245,240,232,.15);
  box-shadow: 0 0 0 1px rgba(245,240,232,.3);
}
.btn--lg { padding: 16px 36px; font-size: 15px; min-height: 56px; }
.btn--sm { padding: 10px 20px; font-size: 13px; min-height: 44px; }
.btn--block { width: 100%; justify-content: center; }

/* ── HEADER ──────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  background: linear-gradient(to bottom, rgba(26,26,26,.95) 0%, rgba(26,26,26,0) 100%);
  transition: background 0.3s;
}
.site-header.scrolled {
  background: rgba(26,26,26,.97);
  box-shadow: 0 1px 24px rgba(0,0,0,.5);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.site-logo { flex-shrink: 0; }
.desktop-nav { margin-left: auto; }
.desktop-nav ul {
  display: flex;
  gap: 8px;
}
.desktop-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: color var(--transition), background var(--transition);
}
.desktop-nav a:hover { color: var(--gold); background: rgba(201,168,76,.08); }
.header-cta { margin-left: 16px; }
.mobile-menu__trigger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border-radius: var(--r-sm);
}
.mobile-menu__trigger:hover { background: rgba(201,168,76,.1); }
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, width 0.25s;
}
.hamburger span:nth-child(2) { width: 16px; }
[aria-expanded="true"] .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; width: 22px; }
[aria-expanded="true"] .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ─────────────────────────────── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  background: var(--bg-2);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  overflow-y: auto;
}
.mobile-menu__overlay.is-open {
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}
.mobile-menu__panel { display: flex; flex-direction: column; flex: 1; padding: 0 24px 32px; }
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(201,168,76,.15);
  margin-bottom: 8px;
}
.mobile-menu__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 3px;
}
.mobile-menu__close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  color: var(--cream);
}
.mobile-menu__close:hover { background: rgba(201,168,76,.1); color: var(--gold); }
.mobile-menu__list { margin-top: 16px; }
.mobile-menu__item {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cream);
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,240,232,.07);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu__item:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu__footer {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu__tel {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.mobile-menu__tel a { color: var(--gold); font-weight: 600; }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,.82) 0%,
    rgba(26,26,26,.55) 60%,
    rgba(46,43,37,.70) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 72px;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: .85;
}
.hero__title {
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: var(--cream);
  line-height: 0.95;
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(245,240,232,.75);
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 400px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(245,240,232,.4);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── CARD GRID ───────────────────────────────── */
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ── MENU CARDS ──────────────────────────────── */
.menu-section { background: var(--bg); }
.card--menu {
  background: var(--bg-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201,168,76,.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card--menu:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,.25);
}
.card--menu.card--featured { border-color: rgba(201,168,76,.3); }
.card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.card--menu:hover .card__media img { transform: scale(1.06); }
.card__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,.85) 0%, transparent 60%);
}
.card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.card__title {
  font-size: 1.8rem;
  color: var(--cream);
}
.card--featured .card__title { color: var(--gold); }
.card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

/* ── OVER ONS ────────────────────────────────── */
.over-section { background: var(--bg-3); }
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.over-tekst .section-title { margin-bottom: 24px; }
.over-body {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}
.over-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.over-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.over-foto {
  position: relative;
}
.over-foto .media {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.over-foto .media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.over-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: #1A1A1A;
  padding: 16px 20px;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
}
.over-badge__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
}
.over-badge__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── EVENEMENTEN ─────────────────────────────── */
.evenementen-section { background: var(--bg); }
.card--event {
  background: var(--bg-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(245,240,232,.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card--event:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,.2);
}
.card--event--featured { border-color: rgba(201,168,76,.25); }
.card__media--event {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.card__media--event img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s;
}
.card--event:hover .card__media--event img { transform: scale(1.05); }
.event-date-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(26,26,26,.85);
  border: 1px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 6px 10px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.event-date-badge__day {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}
.event-date-badge__month {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.card__body--event {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.event-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  padding: 3px 8px;
  display: inline-block;
  width: fit-content;
}
.event-tag--gold { color: var(--gold); background: rgba(201,168,76,.12); }
.card__title--event { font-size: 1.5rem; }

/* ── IMPRESSIE / GALERIJ ──────────────────────── */
.impressie-section { background: var(--bg-3); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item--tall {
  aspect-ratio: 4/3;
}
figure.photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}
figure.photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover figure.photo img { transform: scale(1.06); }

/* ── CTA BAND ────────────────────────────────── */
.cta-band {
  background: var(--bg-2);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(201,168,76,.10) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,.07) 0%, transparent 70%);
  padding: 80px 24px;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(201,168,76,.15);
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .5;
}
.cta-band__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 8px;
}
.cta-band__sub {
  color: var(--muted);
  font-size: 15px;
}
.cta-band__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── CONTACT ──────────────────────────────────── */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 32px; }
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-list li svg { flex-shrink: 0; margin-top: 2px; }
.contact-list li strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.contact-list li span,
.contact-list li a {
  font-size: 15px;
  color: var(--text);
}
.contact-list li a:hover { color: var(--gold); }
.contact-hours { align-items: flex-start !important; }
.hours-table { margin-top: 4px; border-collapse: collapse; }
.hours-table td { font-size: 14px; color: var(--text); padding: 3px 16px 3px 0; }

.form-title {
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 24px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-row input,
.form-row textarea {
  background: var(--bg-2);
  border: 1px solid rgba(245,240,232,.12);
  border-radius: var(--r-sm);
  color: var(--cream);
  padding: 12px 16px;
  font-size: 15px;
  transition: border-color var(--transition);
  min-height: 48px;
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--muted); }

/* ── FOOTER ──────────────────────────────────── */
.footer-kit {
  background: #111;
  border-top: 1px solid rgba(201,168,76,.15);
  padding-top: 72px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.footer-col--brand { padding-right: 20px; }
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 20px 0 24px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  border: 1px solid rgba(245,240,232,.12);
  color: var(--muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.footer-socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,.08);
}
.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.footer-contact-list li svg { flex-shrink: 0; margin-top: 1px; opacity: .7; }
.footer-contact-list a { transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--gold); }
.footer-hours {
  margin-top: 16px;
  border-collapse: collapse;
  width: 100%;
}
.footer-hours td {
  font-size: 13px;
  color: var(--muted);
  padding: 4px 12px 4px 0;
}
.footer-hours td:last-child { color: var(--text); }
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,.06);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}
.footer-credit a { color: var(--gold); }
.footer-credit a:hover { text-decoration: underline; }

/* Scroll reveal removed — use CSS animations instead */

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .over-grid { grid-template-columns: 1fr; gap: 48px; }
  .over-badge { bottom: -16px; left: 0; }
  .over-foto .media { aspect-ratio: 16/9; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { gap: 48px; }
}

@media (max-width: 900px) {
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  .card-grid--3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; aspect-ratio: 16/9; }
  .gallery-item { aspect-ratio: 4/3; }

  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__ctas { justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }

  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .card-grid { gap: 16px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { aspect-ratio: 4/3; }
  .gallery-item--wide { grid-column: span 2; aspect-ratio: 16/9; }

  .cta-band { padding: 60px 16px; }
  .cta-band__ctas { flex-direction: column; width: 100%; }
  .cta-band__ctas .btn { width: 100%; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .over-badge { display: none; }
}

@media (max-width: 375px) {
  .hero__title { font-size: 3.2rem; }
  .mobile-menu__item { font-size: 28px; }
}
