/* Updated v2: placeholder contrast, about visual fix */
/* ═══════════════════════════════════════════
   VOLDAAN OUDEWATER — Design System
   Kleurpalet: Bosgroen #2D4A3E, Amber #F5A623,
   Beige #E8E0D5, Wit #FFFFFF, Bijna-zwart #1A1A1A
═══════════════════════════════════════════ */

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

:root {
  --green:       #2D4A3E;
  --green-dark:  #1e3329;
  --green-mid:   #3d6555;
  --amber:       #F5A623;
  --amber-dark:  #d48c0f;
  --beige:       #E8E0D5;
  --beige-light: #F5F0E8;
  --white:       #FFFFFF;
  --ink:         #1A1A1A;
  --ink-soft:    #3D3D3D;
  --ink-muted:   #6B6B6B;
  --border:      rgba(45,74,62,.15);

  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'Barlow', sans-serif;

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

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

  --topbar-h: 42px;
  --header-h: 68px;
}

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

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

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

a { color: inherit; text-decoration: none; }

ul[role="list"] { list-style: none; }

/* ── Media / image-fill helpers ────────── */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.about__img-main img, .about__jacket-badge img,
.photo-strip__item img, .card__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Typography ─────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.05; text-transform: uppercase; letter-spacing: .02em; }

/* ── Container ──────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Buttons ────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-sm); font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; border: 2px solid transparent; transition: all .2s ease;
  white-space: nowrap;
}
.btn--primary   { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.btn--primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); }
.btn--outline   { background: transparent; color: var(--green); border-color: var(--green); }
.btn--outline:hover { background: var(--green); color: var(--white); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn--outline-light:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn--lg  { padding: 16px 36px; font-size: 1.1rem; }
.btn--full { width: 100%; }

/* ── Section ────────────────────────────── */
.section { padding: 80px 0; }
.section--green { background: var(--green); }
.section--warm  { background: var(--beige-light); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-label {
  display: inline-block; font-family: var(--font-body); font-size: .75rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 10px;
}
.section-label--light { color: var(--amber); }
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem); color: var(--ink); margin-bottom: 14px;
}
.section-title--light { color: var(--white); }
.section-desc { font-size: 1.05rem; color: var(--ink-muted); max-width: 560px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════ */
.topbar {
  position: sticky; top: 0; z-index: 200;
  background: var(--green-dark); color: var(--white);
  height: var(--topbar-h);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 100%;
}
.topbar__hours { font-size: .8rem; font-weight: 500; opacity: .9; }
.topbar__call {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: .9rem; font-weight: 700; letter-spacing: .04em;
  color: var(--amber); transition: opacity .2s;
}
.topbar__call:hover { opacity: .8; }
.topbar__call svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════ */
.site-header {
  position: sticky; top: var(--topbar-h); z-index: 190;
  background: var(--white); border-bottom: 1px solid var(--border);
  height: var(--header-h); transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

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

.nav-logo {
  display: flex; flex-direction: column; gap: 0;
  font-family: var(--font-head); text-transform: uppercase;
  line-height: 1; text-decoration: none;
}
.nav-logo__text { font-size: 1.4rem; font-weight: 900; color: var(--green); letter-spacing: .06em; }
.nav-logo__sub  { font-size: .65rem; font-weight: 700; color: var(--amber); letter-spacing: .2em; }

.nav-links {
  display: none; list-style: none; gap: 32px;
}
.nav-links a {
  font-family: var(--font-body); font-size: .9rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft);
  transition: color .2s;
}
.nav-links a:hover { color: var(--green); }

.nav-cta-wrap { display: flex; align-items: center; gap: 12px; }

/* ── Hamburger ───────────────────────────── */
.mobile-menu__trigger {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  padding: 0;
}
.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all .25s ease;
}
.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 OVERLAY
═══════════════════════════════════════════ */
.mobile-menu__overlay {
  position: fixed; inset: 0; z-index: 1000;
  width: 100%; height: 100svh;
  background: var(--green-dark);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu__overlay:not([aria-hidden="true"]),
.mobile-menu__overlay.is-open {
  transform: translateX(0);
}
.mobile-menu__overlay[aria-hidden="true"] { pointer-events: none; }

.mobile-menu__panel { display: flex; flex-direction: column; flex: 1; padding: 0 24px 40px; }

.mobile-menu__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}
.mobile-menu__brand {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 900;
  text-transform: uppercase; color: var(--white); letter-spacing: .06em;
}
.mobile-menu__brand em { color: var(--amber); font-style: normal; }

.mobile-menu__close {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: rgba(255,255,255,.1);
  border: none; border-radius: 50%; cursor: pointer; color: var(--white);
}
.mobile-menu__close svg { width: 20px; height: 20px; }
.mobile-menu__close:hover { background: rgba(255,255,255,.2); }

.mobile-menu__list { list-style: none; flex: 1; }
.mobile-menu__item {
  display: block; padding: 16px 0;
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em; color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s, padding-left .2s;
}
.mobile-menu__item:hover { color: var(--amber); padding-left: 8px; }

.mobile-menu__footer {
  display: flex; flex-direction: column; gap: 12px; margin-top: 32px;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.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(
    135deg,
    rgba(30,51,41,.85) 0%,
    rgba(45,74,62,.65) 50%,
    rgba(26,26,26,.4) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 100px 20px 80px;
}
.hero__eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(3.5rem, 10vw, 7rem); font-weight: 900;
  color: var(--white); line-height: .95; margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem); color: rgba(255,255,255,.85);
  margin-bottom: 36px; max-width: 540px; line-height: 1.5;
}
.hero__cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__rating { display: flex; align-items: center; gap: 10px; }
.hero__rating-text { font-size: .85rem; color: rgba(255,255,255,.75); font-weight: 500; }

.stars-row { display: flex; gap: 2px; }
.stars-row svg { width: 18px; height: 18px; }

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.6); animation: bounce 2s infinite;
}
.hero__scroll svg { width: 28px; height: 28px; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ═══════════════════════════════════════════
   PHOTO STRIP
═══════════════════════════════════════════ */
.photo-strip { background: var(--green-dark); overflow: hidden; }
.photo-strip__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 220px;
}
.photo-strip__item {
  position: relative; overflow: hidden; margin: 0;
}
.photo-strip__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.photo-strip__item:hover img { transform: scale(1.06); }

/* ═══════════════════════════════════════════
   MENU SECTION
═══════════════════════════════════════════ */
.menu-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 40px;
}
.menu-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 50px;
  border: 2px solid var(--border); background: var(--white);
  font-family: var(--font-body); font-size: .85rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink-muted);
  cursor: pointer; transition: all .2s;
}
.menu-tab svg { width: 16px; height: 16px; }
.menu-tab:hover { border-color: var(--green); color: var(--green); }
.menu-tab--active { background: var(--green); color: var(--white); border-color: var(--green); }

.menu-panel { display: none; }
.menu-panel--active { display: block; }

/* ── Card Grid ───────────────────────────── */
.card-grid { display: grid; gap: 24px; }
.card-grid--menu { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.card { background: var(--white); border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.card--menu .card__img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.card--menu .card__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.card--menu:hover .card__img-wrap img { transform: scale(1.05); }
.card--no-img .card__img-wrap { display: none; }

.card__body { padding: 18px 20px; }
.card__name-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.card__name { font-size: 1.1rem; font-weight: 800; color: var(--ink); }
.card__price { font-family: var(--font-head); font-size: 1.15rem; font-weight: 900; color: var(--green); white-space: nowrap; }
.card__desc { font-size: .85rem; color: var(--ink-muted); line-height: 1.5; }

.menu-cta { text-align: center; margin-top: 40px; }

/* ═══════════════════════════════════════════
   OVER ONS
═══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}
.about__visual { position: relative; }
.about__img-main {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 16/10;
}
.about__img-main img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about__jacket-badge {
  position: absolute; bottom: -24px; right: -12px;
  width: 148px; height: 130px;
  border-radius: var(--r-md); overflow: hidden;
  border: 4px solid var(--green);
  box-shadow: var(--shadow-lg);
}
.about__jacket-badge img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__jacket-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(30,51,41,.9); color: var(--amber);
  font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 6px; text-align: center;
}

.about__content { padding-bottom: 24px; }
.about__lead { font-size: 1.15rem; font-weight: 600; color: rgba(255,255,255,.95); margin-bottom: 16px; line-height: 1.55; }
.about__body { font-size: .95rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 14px; }

.about__badges { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.about__badge {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 50px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: var(--white); font-size: .8rem; font-weight: 600; letter-spacing: .04em;
}
.about__badge svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════ */
.rating-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); padding: 10px 20px; border-radius: 50px;
  box-shadow: var(--shadow-sm); font-size: .85rem; font-weight: 600;
  color: var(--ink-muted); margin-top: 12px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.review-card {
  background: var(--white); padding: 28px 28px 24px;
  border-radius: var(--r-md); box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.review-card--featured {
  background: var(--green); border-color: var(--green);
  box-shadow: var(--shadow-md);
}
.review-card--featured .review-card__quote,
.review-card--featured .review-card__author { color: var(--white); }

.review-card__stars { display: flex; gap: 2px; margin-bottom: 16px; }
.review-card__stars svg { width: 18px; height: 18px; }
.review-card__quote {
  font-size: 1rem; color: var(--ink-soft); line-height: 1.65;
  font-style: italic; margin-bottom: 16px;
}
.review-card__author {
  font-size: .8rem; font-weight: 700; color: var(--ink-muted);
  letter-spacing: .06em; text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band {
  background: var(--amber); padding: 60px 0;
}
.cta-band__inner {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px;
}
.cta-band__title {
  font-size: clamp(2rem, 5vw, 3rem); color: var(--ink);
}
.cta-band__sub { font-size: 1rem; color: rgba(26,26,26,.75); margin-top: 4px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-band .btn--primary   { background: var(--green); color: var(--white); border-color: var(--green); }
.cta-band .btn--primary:hover { background: var(--green-mid); border-color: var(--green-mid); }
.cta-band .btn--outline   { background: transparent; color: var(--ink); border-color: var(--ink); }
.cta-band .btn--outline:hover { background: rgba(26,26,26,.08); }

/* ═══════════════════════════════════════════
   HOURS + CONTACT
═══════════════════════════════════════════ */
.hours-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
}

/* Hours */
.hours-block {}
.hours-table { border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; margin-top: 24px; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row--closed { opacity: .55; }
.hours-row--highlight { background: rgba(45,74,62,.04); }
.hours-day { font-weight: 600; }
.hours-time { font-weight: 700; color: var(--green); }
.hours-row--closed .hours-time { color: var(--ink-muted); font-weight: 500; }

/* Contact */
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item svg { width: 22px; height: 22px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 3px; }
.contact-item a { color: var(--green); font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }

.map-wrap { margin-top: 24px; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); }

/* Form */
.form-block { margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.form-group input,
.form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  background: var(--white); transition: border-color .2s;
  outline: none;
}
/* Placeholder contrast improvement */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-muted);
  opacity: 1;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer-kit {
  background: var(--green-dark); color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer-kit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 900;
  text-transform: uppercase; color: var(--white); letter-spacing: .06em;
  display: block; margin-bottom: 14px;
}
.footer-logo em { color: var(--amber); font-style: normal; }
.footer-tagline { font-size: .9rem; line-height: 1.6; max-width: 320px; }
.footer-socials { display: flex; gap: 14px; margin-top: 20px; }
.footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  transition: background .2s;
}
.footer-socials a:hover { background: var(--amber); color: var(--ink); }
.footer-socials svg { width: 18px; height: 18px; }

.footer-kit__heading {
  font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px;
}
.footer-hours { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-hours li { display: flex; justify-content: space-between; gap: 16px; font-size: .9rem; }
.footer-hours li span:first-child { color: rgba(255,255,255,.6); }
.footer-hours li span:last-child { font-weight: 600; color: var(--white); }

.footer-address { font-style: normal; display: flex; flex-direction: column; gap: 8px; }
.footer-address p { font-size: .9rem; }
.footer-address a { color: rgba(255,255,255,.8); transition: color .2s; }
.footer-address a:hover { color: var(--amber); }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.75); transition: color .2s; }
.footer-links a:hover { color: var(--amber); }

.footer-kit__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 8px; padding: 20px 0; font-size: .8rem; color: rgba(255,255,255,.4);
}
.footer-kit__demo-note a { color: var(--amber); }

/* ═══════════════════════════════════════════
   RESPONSIVE — md (768px+)
═══════════════════════════════════════════ */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .mobile-menu__trigger { display: none; }

  .photo-strip__track { height: 280px; }

  .about-grid { grid-template-columns: 1fr 1fr; }
  .about__jacket-badge { right: -20px; width: 180px; height: 160px; }

  .reviews-grid { grid-template-columns: repeat(3, 1fr); }

  .cta-band__inner { flex-direction: row; text-align: left; justify-content: space-between; }

  .hours-contact-grid { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr 1fr; }

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

/* ═══════════════════════════════════════════
   RESPONSIVE — lg (1024px+)
═══════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hours-contact-grid { grid-template-columns: 1fr 1fr 1fr; }

  .photo-strip__track { height: 320px; }
}

/* ═══════════════════════════════════════════
   BODY LOCK when mobile menu open
═══════════════════════════════════════════ */
body.menu-open { overflow: hidden; }

/* ═══════════════════════════════════════════
   ACCESSIBILITY — skip link, reduced motion
═══════════════════════════════════════════ */
.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;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
