/* ============================================================
   't Haasje — Restaurant Website CSS
   Palette: #C8102E (rood), #1A1A1A (zwart), #FFFFFF (wit)
   Fonts: Playfair Display (serif) + Open Sans (sans)
   ============================================================ */

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

:root {
  --red:       #C8102E;
  --red-dark:  #a60d25;
  --red-light: #f5c6ce;
  --black:     #1A1A1A;
  --gray-900:  #2B2B2B;
  --gray-700:  #4A4A4A;
  --gray-400:  #9E9E9E;
  --gray-100:  #F5F2EE;
  --warm-bg:   #FAF7F2;
  --white:     #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Open Sans', system-ui, sans-serif;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.16);
  --radius:     4px;
  --transition: 220ms ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}

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

/* Safeguard: all media/fill 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 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
  display: block;
}
.eyebrow--center { text-align: center; }

.lead { font-size: 1.1rem; line-height: 1.75; color: var(--gray-700); }
.section-title { margin-bottom: 0.75rem; }
.section-title.center { text-align: center; }
.section-sub { color: var(--gray-700); max-width: 600px; margin: 0 auto 2.5rem; text-align: center; }
.center { text-align: center; }

/* ── Containers ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Sections ── */
.section { padding: 5rem 0; }
.bg-warm { background: var(--warm-bg); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

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

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

.btn--hero {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
}
.btn--hero:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn--white { background: var(--white); color: var(--red); border-color: var(--white); }
.btn--white:hover { background: var(--gray-100); }

.btn--outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-white:hover { background: rgba(255,255,255,.1); }

.btn--full { width: 100%; justify-content: center; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,16,46,0.3);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-lockup { display: flex; align-items: center; gap: 0.75rem; }
.logo-svg { width: 44px; height: 51px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-serif); font-size: 1.25rem; color: var(--white); font-weight: 700; }
.logo-sub { font-size: 0.68rem; color: rgba(255,255,255,.55); letter-spacing: 0.06em; text-transform: uppercase; }

/* Desktop nav */
.desktop-nav ul { display: flex; align-items: center; gap: 0.25rem; }
.desktop-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: 0.45rem 0.9rem;
  border-radius: 2px;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.desktop-nav a:hover { color: var(--white); }
.desktop-nav .nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  margin-left: 0.5rem;
}
.desktop-nav .nav-cta:hover { background: var(--red-dark); }

/* ── MOBILE MENU ── */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;
  min-height: 100dvh;
  background: var(--black);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}
.mobile-menu__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1rem;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
}
.logo-svg--small { width: 36px; height: 42px; }

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 8px;
  display: flex;
}
.mobile-menu__close svg { width: 28px; height: 28px; }

.mobile-menu__list { padding: 0.5rem 0; flex: 1; }
.mobile-menu__list li { border-bottom: 1px solid rgba(255,255,255,.07); }
.mobile-menu__item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1.1rem 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  text-decoration: none;
}
.mobile-menu__item:hover { color: var(--red); }
.mobile-menu__item--cta {
  color: var(--red);
  font-weight: 700;
}
.mobile-menu__item--cta:hover { color: #ff2244; }

.mobile-menu__footer {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
}
.mobile-menu__footer p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

.hero__media {
  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(
    180deg,
    rgba(26,26,26,0.55) 0%,
    rgba(26,26,26,0.65) 50%,
    rgba(26,26,26,0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero__logo-wrap { margin-bottom: 0.5rem; }
.hero__rabbit { width: 80px; height: 92px; filter: drop-shadow(0 4px 16px rgba(0,0,0,.4)); }

.hero__title {
  font-family: var(--font-serif);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
  margin: 0;
}

.hero__tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,.9);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin: 0;
}

/* Trust badges */
.hero__badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  color: var(--white);
}
.badge--award svg, .badge--reviews svg { flex-shrink: 0; }
.badge__label { display: block; font-weight: 600; font-size: 0.82rem; line-height: 1.2; }
.badge__sub { display: block; font-size: 0.7rem; opacity: 0.75; }
.badge__stars { display: flex; gap: 2px; }

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

/* ── OVER ONS ── */
.over-ons__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}
.over-ons__text h2 { margin-bottom: 1rem; }
.over-ons__text p { margin-bottom: 1rem; }

.over-ons__pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--warm-bg);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pillar__icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.pillar strong { display: block; font-weight: 600; color: var(--black); font-size: 0.95rem; }
.pillar span { font-size: 0.82rem; color: var(--gray-700); }

.over-ons__img-wrap { position: relative; }
.award-float {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border: 2px solid var(--red-light);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
}
.award-float strong { display: block; font-weight: 700; color: var(--black); }
.award-float span { font-size: 0.72rem; color: var(--gray-700); display: block; }

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

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

.card--featured {
  border: 2px solid var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card--featured:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.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.04); }

.card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card__body h3 { margin: 0; }
.card__body p { color: var(--gray-700); font-size: 0.92rem; flex: 1; }
.card__body .btn { margin-top: auto; align-self: flex-start; }

.card__tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

/* ── WORKSHOPS ── */
.workshops__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.workshops__text h2 { margin-bottom: 1rem; }
.workshops__text .lead { margin-bottom: 1.5rem; }

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--gray-900);
}
.check-list li svg { flex-shrink: 0; }

/* ── GROEPEN ── */
.groepen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.groepen-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--red);
  transition: transform var(--transition), box-shadow var(--transition);
}
.groepen-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.groepen-card__icon {
  width: 60px;
  height: 60px;
  background: var(--warm-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.groepen-card h3 { margin-bottom: 0.6rem; }
.groepen-card p { font-size: 0.92rem; color: var(--gray-700); margin-bottom: 1rem; }
.groepen-card ul { padding-left: 0; }
.groepen-card ul li {
  font-size: 0.85rem;
  color: var(--gray-700);
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}
.groepen-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
}

.groepen-img-wrap {
  margin-top: 2.5rem;
}

/* ── GALLERY ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 2rem;
}
figure.photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: 0;
}
figure.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
figure.photo:hover img { transform: scale(1.06); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-block {
  background: var(--warm-bg);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 3px solid var(--red);
}
.contact-block__icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.contact-block h3 { margin-bottom: 1rem; }
.contact-block address p { margin-bottom: 0.6rem; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.contact-link:hover { text-decoration: underline; }
.contact-note { font-size: 0.82rem; color: var(--gray-400); margin-top: 0.75rem; }

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.35rem 0; font-size: 0.9rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table .closed td { color: var(--gray-400); }

/* Contact form */
.contact-block--form { background: var(--white); border: 1px solid var(--gray-100); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--gray-900); }
.form-group input,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #DDD;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Map */
.map-wrap { border-radius: var(--radius); overflow: hidden; }
.map-caption { font-size: 0.8rem; color: var(--gray-400); text-align: center; margin-top: 0.5rem; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--red);
  padding: 3.5rem 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.4rem; font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-band p { color: rgba(255,255,255,.85); }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer-kit {
  background: var(--gray-900);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 2rem;
}
.footer-kit__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem 3rem;
  margin-bottom: 3rem;
}

.footer-col--brand p { font-size: 0.88rem; opacity: 0.75; margin-top: 1rem; margin-bottom: 1rem; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.footer-logo strong { display: block; font-family: var(--font-serif); font-size: 1.15rem; color: var(--white); }
.footer-logo span { font-size: 0.7rem; opacity: 0.55; text-transform: uppercase; letter-spacing: 0.06em; }

.footer-award {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.7);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--red); }

.footer-col address { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col address p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,.7);
}
.footer-col address a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-col address a:hover { color: var(--red); }

.footer-hours { border-collapse: collapse; width: 100%; }
.footer-hours td { padding: 0.3rem 0; font-size: 0.85rem; color: rgba(255,255,255,.7); }
.footer-hours td:last-child { text-align: right; }

.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
}
.footer-demo-note a { color: var(--red); text-decoration: none; }
.footer-demo-note a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .over-ons__inner { grid-template-columns: 1fr; }
  .over-ons__img-wrap { max-width: 500px; }
  .footer-kit__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  /* Nav: hide desktop, show hamburger */
  .desktop-nav { display: none; }
  .mobile-menu__trigger { display: flex; }

  /* Hero */
  .hero__rabbit { width: 60px; height: 69px; }

  /* Over ons */
  .over-ons__inner { grid-template-columns: 1fr; gap: 2rem; }
  .over-ons__img-wrap { display: none; }

  /* Cards */
  .card-grid--3 { grid-template-columns: 1fr; }
  .card--featured { transform: none; }

  /* Workshops */
  .workshops__inner { grid-template-columns: 1fr; gap: 2rem; }

  /* Groepen */
  .groepen-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery { grid-template-columns: repeat(3, 1fr); }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

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

  /* Footer */
  .footer-kit__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-kit__bottom { flex-direction: column; text-align: center; }

  /* Badge layout */
  .hero__badges { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero__tagline { font-size: 0.95rem; }
  .logo-sub { display: none; }
}

/* ── 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-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
