/* ========================================
   't Vliegend Paard — Café-Restaurant Nieuwkoop
   Design: warm historisch grand café
   ======================================== */

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

:root {
  --brown:    #7B5C3A;
  --brown-dk: #5C4028;
  --bordeaux: #5C1F3A;
  --bordeaux-dk: #45172B;
  --gold:     #C9A84C;
  --gold-lt:  #E0C06A;
  --cream:    #F5F0E8;
  --cream-dk: #EDE6D8;
  --dark:     #2C2C2C;
  --text:     #3D2B1F;
  --text-light: #7A6050;

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

  --nav-h: 72px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(44,28,14,0.12);
  --shadow-md: 0 8px 40px rgba(44,28,14,0.18);
}

html { scroll-behavior: smooth; }

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

/* Body scroll lock when mobile menu open */
body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* === MEDIA / IMG FILL === */
.media, .img-fill, figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.service-card__img img, .about-grid__img .media img,
.event-split__img .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === TYPOGRAPHY === */
h1, h2, h3 {
  font-family: var(--ff-display);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.eyebrow {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.eyebrow--gold { color: var(--gold); }

/* === CONTAINER === */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* === SECTIONS === */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--cream { background: var(--cream); }
.section--brown  { background: var(--brown); color: var(--cream); }
.section--brown h2, .section--brown h3 { color: var(--cream); }
.section--brown p { color: rgba(245,240,232,0.85); }
.section--brown .eyebrow { color: var(--gold); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header p { color: var(--text-light); margin-top: 0.75rem; }
.section-header--light p { color: rgba(245,240,232,0.8); }
.section-header--light h2 { color: var(--cream); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--bordeaux);
  color: var(--cream);
  border-color: var(--bordeaux);
}
.btn--primary:hover {
  background: var(--bordeaux-dk);
  border-color: var(--bordeaux-dk);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.6);
}
.btn--outline:hover {
  background: rgba(245,240,232,0.12);
  border-color: var(--cream);
}

.btn--nav {
  background: var(--bordeaux);
  color: var(--cream);
  border-color: var(--bordeaux);
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}
.btn--nav:hover { background: var(--bordeaux-dk); border-color: var(--bordeaux-dk); }

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn--whatsapp:hover { background: #1aad55; border-color: #1aad55; }

.btn--large { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* === HEADER / NAV === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(28, 15, 7, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: background 0.3s;
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.logo__script {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
  white-space: nowrap;
}
.logo__sub {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
}
.logo--footer .logo__script { font-size: 1.6rem; color: var(--gold); }
.logo--footer .logo__sub { color: rgba(245,240,232,0.5); }

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.desktop-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(245,240,232,0.85);
  transition: color 0.2s;
  white-space: nowrap;
}
.desktop-nav a:hover { color: var(--gold); }

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

/* === MOBILE MENU OVERLAY === */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--brown-dk);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  min-height: 100svh;
  overflow-y: auto;
  /* Hidden state */
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu__overlay.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.mobile-menu__close svg { width: 28px; height: 28px; }

.mobile-menu__panel { width: 100%; text-align: center; }

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 2rem 1rem;
}

.mobile-menu__item {
  display: block;
  width: 100%;
  max-width: 320px;
  padding: 1rem 1.5rem;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cream);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu__item:hover { color: var(--gold); background: rgba(255,255,255,0.05); }

.mobile-menu__item--cta {
  margin-top: 1rem;
  background: var(--bordeaux);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 0.9rem 2rem;
}
.mobile-menu__item--cta:hover { background: var(--bordeaux-dk); color: var(--cream); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(28, 15, 7, 0.75) 0%,
    rgba(92, 31, 58, 0.45) 60%,
    rgba(28, 15, 7, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem clamp(1rem, 4vw, 2rem);
  max-width: 680px;
  padding-left: clamp(1rem, 8vw, 6rem);
}

.hero__eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero__title {
  color: #fff;
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245,240,232,0.9);
  margin-bottom: 2.25rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* === ABOUT GRID === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-grid__img .media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-grid__text h2 { color: var(--bordeaux); margin-bottom: 1rem; }
.about-grid__text p { color: var(--text-light); margin-bottom: 1rem; }

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--text);
}
.check-list svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  stroke: var(--gold);
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

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

.service-card__body {
  padding: 1.5rem;
}
.service-card__icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.service-card__icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
}
.service-card__body h3 {
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.service-card__body p { color: rgba(245,240,232,0.78); font-size: 0.9rem; }
.service-card__hours {
  margin-top: 0.75rem;
  font-size: 0.78rem !important;
  color: var(--gold) !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* === CTA BAND === */
.cta-band {
  background: var(--bordeaux);
  padding: 4rem 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band__text h2 { color: var(--cream); margin-bottom: 0.5rem; }
.cta-band__text p { color: rgba(245,240,232,0.8); max-width: 480px; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* === GALLERY === */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 220px;
  gap: 0.75rem;
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.04); }

/* Mosaic: tall left spans 2 rows, 4 tiles fill right */
.gallery__item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.gallery__item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery__item:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery__item:nth-child(4) { grid-column: 2; grid-row: 2; }
.gallery__item:nth-child(5) { grid-column: 3; grid-row: 2; }

/* === EVENT SPLIT === */
.event-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.event-split__img .media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.event-split__text h2 { color: var(--cream); margin-bottom: 1rem; }
.event-split__text p { color: rgba(245,240,232,0.8); margin-bottom: 1rem; }

.event-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.event-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
  font-weight: 600;
}
.event-list svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  stroke: var(--gold);
}
.event-note {
  font-style: italic;
  color: rgba(245,240,232,0.65) !important;
  font-size: 0.9rem !important;
  margin-bottom: 1.5rem !important;
}

/* === CONTACT GRID === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.info-card {
  background: #fff;
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.info-card__icon {
  width: 48px; height: 48px;
  background: rgba(92,31,58,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.info-card__icon svg {
  width: 22px; height: 22px;
  stroke: var(--bordeaux);
}
.info-card h3 {
  font-size: 1.1rem;
  color: var(--bordeaux);
  margin-bottom: 1rem;
}

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.hours-table td { padding: 0.35rem 0; color: var(--text); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--bordeaux); }
.hours-table .closed td { color: var(--text-light); }
.hours-table .closed td:last-child { color: var(--text-light); font-weight: 400; }
.hours-table tr:not(:last-child) td { border-bottom: 1px solid var(--cream-dk); }

address p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
address a { color: var(--bordeaux); font-weight: 600; }
address a:hover { text-decoration: underline; }
.inline-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--bordeaux);
}

.map-placeholder {
  margin-top: 1.25rem;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bordeaux);
  padding: 0.5rem 1rem;
  border: 1px solid var(--bordeaux);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.map-link svg { width: 14px; height: 14px; stroke: currentColor; }
.map-link:hover { background: var(--bordeaux); color: var(--cream); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; flex-direction: column; gap: 0.35rem; }
.form-row label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-light); }
.form-row input,
.form-row textarea {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--cream-dk);
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
}

/* === FOOTER === */
.footer-kit {
  background: var(--dark);
  color: var(--cream);
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--bordeaux);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.6);
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.75);
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-hours .dimmed { color: rgba(245,240,232,0.4); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(245,240,232,0.75);
}
.footer-contact svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--gold);
}
.footer-contact a { color: rgba(245,240,232,0.75); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-credit a { color: var(--gold); }
.footer-credit a:hover { text-decoration: underline; }

/* === FLOATING CTA === */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bordeaux);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(92,31,58,0.45);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.floating-cta svg { width: 18px; height: 18px; stroke: currentColor; }
.floating-cta:hover {
  background: var(--bordeaux-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(92,31,58,0.55);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .info-card--form { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .desktop-nav { display: none; }
  .mobile-menu__trigger { display: flex; }

  .hero__content { padding-left: clamp(1rem, 6vw, 2.5rem); max-width: 100%; }
  .hero__title { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  .about-grid { grid-template-columns: 1fr; }
  .about-grid__img { order: -1; }
  .about-grid__img .media { aspect-ratio: 16 / 9; }

  .services-grid { grid-template-columns: 1fr; }

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

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 180px 180px;
  }
  .gallery__item:nth-child(1) { grid-column: 1 / -1; grid-row: 1; }
  .gallery__item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .gallery__item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery__item:nth-child(4) { grid-column: 1; grid-row: 3; }
  .gallery__item:nth-child(5) { grid-column: 2; grid-row: 3; }

  .event-split { grid-template-columns: 1fr; }
  .event-split__img { order: -1; }
  .event-split__img .media { aspect-ratio: 16/9; }

  .contact-grid { grid-template-columns: 1fr; }
  .info-card--form { grid-column: auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .floating-cta span { display: none; }
  .floating-cta { padding: 0.85rem; border-radius: 50%; }
  .floating-cta svg { width: 22px; height: 22px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
