/* ===================================================
   IN DEN BOEKENKAST — Grandcafé Capelle aan den IJssel
   Design: Warm literair, goud & donker, serif headings
   =================================================== */

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

:root {
  --gold: #C9A84C;
  --gold-deep: #B8860B;
  --dark: #1A1A1A;
  --dark-2: #2C2C2C;
  --white: #FFFFFF;
  --light: #F5F5F5;
  --light-warm: #F5F0E8;
  --text: #2C2C2C;
  --text-muted: #6B6B6B;
  --radius: 4px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
  --header-h: 72px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: 'Inter', 'Open Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* Image fill helper — prevents letterboxing in fixed-ratio containers */
.media, .img-fill, figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__media img, .hero__img,
.sfeerstrip__item img, .jazz__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  min-height: 48px;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-1px); }
.btn--lg { padding: 16px 36px; font-size: 0.95rem; }

.btn--primary { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(201,168,76,0.5); }
.btn--ghost-light:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

.btn--gold { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

.btn--outline { background: transparent; color: var(--dark); border-color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--dark); }

.btn--dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn--dark:hover { background: #333; border-color: #333; }

.btn--dark-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn--dark-outline:hover { background: var(--dark); color: var(--white); }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: background 0.3s;
}
.site-header.scrolled { background: rgba(26,26,26,0.98); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-crown { width: 32px; height: 26px; }
.logo-crown--lg { width: 40px; height: 32px; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.desktop-nav ul {
  display: flex;
  gap: 28px;
}
.desktop-nav ul a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.desktop-nav ul a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta { margin-left: 8px; }

/* ---- HAMBURGER ---- */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius);
}
.hamburger-bar {
  display: block;
  width: 24px;
  min-width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- MOBILE MENU OVERLAY ---- */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  height: 100dvh;
  height: 100svh;
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  padding: 28px 32px 48px;
  min-height: 100%;
}

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.mobile-menu__close svg { width: 24px; height: 24px; }
.mobile-menu__close:hover { background: rgba(255,255,255,0.1); }

.mobile-menu__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.mobile-menu__item {
  display: block;
  padding: 18px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
  min-height: 44px;
}
.mobile-menu__item:hover { color: var(--gold); }

.mobile-cta {
  margin-top: 40px;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 18px;
}

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

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.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.2) 0%,
    rgba(26,26,26,0.55) 50%,
    rgba(26,26,26,0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
  padding-top: var(--header-h);
}

.hero__tagline-small {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero__title em { color: var(--gold); font-style: italic; }

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease infinite;
}
.hero__scroll-hint svg { width: 24px; height: 24px; }

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

/* ---- SFEERSTRIP ---- */
.sfeerstrip { padding: 0; }
.sfeerstrip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.sfeerstrip__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.sfeerstrip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.sfeerstrip__item:hover img { transform: scale(1.04); }

/* ---- SECTION COMMON ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-ornament {
  margin-bottom: 20px;
}
.section-ornament svg {
  width: 120px;
  height: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-title--left { text-align: left; margin-bottom: 24px; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- MENU SECTION ---- */
.menu-section {
  padding: 96px 0 80px;
  background: var(--light-warm);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(201,168,76,0.12);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: 1px solid rgba(201,168,76,0.25);
}

.card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

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

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---- JAZZ SECTION ---- */
.jazz-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.jazz__bg-img {
  position: absolute;
  inset: 0;
}
.jazz__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.jazz__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.82);
}

.jazz__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}

.jazz__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: none; /* shown on larger screens */
}
.jazz__icon svg { width: 100%; height: 100%; }

.jazz__eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.jazz__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.jazz__desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}

.jazz__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- REVIEWS ---- */
.reviews-section {
  padding: 96px 0;
  background: var(--white);
}

.google-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 52px;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid #E8E8E8;
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}
.google-badge:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.google-logo { width: 32px; height: 32px; }
.google-badge__text {
  display: flex;
  flex-direction: column;
}
.google-badge__title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}
.google-badge__sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.google-badge__arrow { width: 20px; height: 20px; margin-left: 8px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  background: var(--light-warm);
  border-radius: 8px;
  padding: 32px 36px;
  border-left: 3px solid var(--gold);
  position: relative;
}
.review-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 8px;
  left: 24px;
  line-height: 1;
}

.review-card__stars { margin-bottom: 14px; }
.review-card__stars svg { width: 80px; height: 16px; }

.review-card__quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-card__name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
}
.review-card__via {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.review-card__via::before { content: '·'; margin-right: 8px; }

/* ---- CTA-BAND ---- */
.cta-band {
  background: var(--gold);
  padding: 72px 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 10px;
}
.cta-band__desc {
  font-size: 1rem;
  color: rgba(26,26,26,0.75);
  max-width: 440px;
}
.cta-band__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ---- CONTACT ---- */
.contact-section {
  padding: 96px 0;
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}
.contact-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text);
}
.contact-icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-list__item a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.contact-list__item a:hover { color: var(--gold); }

.usps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.usp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid rgba(201,168,76,0.35);
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--dark);
}
.usp svg { width: 16px; height: 16px; flex-shrink: 0; }

.openingstijden__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.hours-table tr { border-bottom: 1px solid rgba(0,0,0,0.06); }
.hours-table th {
  text-align: left;
  font-weight: 500;
  padding: 10px 16px 10px 0;
  color: var(--dark);
  white-space: nowrap;
}
.hours-table td {
  padding: 10px 0;
  color: var(--text-muted);
  text-align: right;
}
.hours-note {
  font-size: 0.8rem;
  color: var(--gold-deep);
  margin-top: 12px;
  font-style: italic;
}

/* ---- FOOTER ---- */
.footer-kit {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding-top: 72px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.35);
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; }

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-contact address p {
  margin-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer-contact a { color: rgba(255,255,255,0.75); }
.footer-contact a:hover { color: var(--gold); }

.footer-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.footer-hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-hours-table th {
  text-align: left;
  font-weight: 500;
  padding: 7px 12px 7px 0;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.footer-hours-table td {
  padding: 7px 0;
  text-align: right;
  color: rgba(255,255,255,0.5);
}
.footer-hours-note {
  font-size: 0.75rem;
  color: rgba(201,168,76,0.7);
  margin-top: 8px;
  font-style: italic;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-kvk {
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .desktop-nav ul { gap: 20px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .desktop-nav { display: none; }
  .mobile-menu__trigger { display: flex; }

  .hero__title { font-size: clamp(2.4rem, 9vw, 3.5rem); }

  .sfeerstrip__grid {
    grid-template-columns: 1fr;
  }
  .sfeerstrip__item { aspect-ratio: 16/9; }

  .menu-section { padding: 72px 0 64px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .jazz__content { flex-direction: column; gap: 32px; }
  .jazz__icon { display: block; }

  .reviews-grid { grid-template-columns: 1fr; gap: 20px; }

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

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

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

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

  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; justify-content: center; max-width: 300px; }

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

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

  .review-card { padding: 24px; }

  .footer-inner { grid-template-columns: 1fr; }

  .sfeerstrip__grid { grid-template-columns: 1fr; }
  .sfeerstrip__item { aspect-ratio: 4/3; }
}

/* ---- 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(--gold);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- BODY SCROLL LOCK ---- */
body.menu-open { overflow: hidden; }
