/* ===================================================================
   DE KAPPER VAN NU — Stylesheet
   Palette: #1a1a1a | #8aab8a | #f5f0eb | #ffffff | #c9a96e
   =================================================================== */

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

:root {
  --black:    #1a1a1a;
  --green:    #8aab8a;
  --green-dk: #6b8d6b;
  --cream:    #f5f0eb;
  --white:    #ffffff;
  --gold:     #c9a96e;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius:   12px;
  --shadow:   0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:0 8px 40px rgba(0,0,0,.16);
  --header-h: 72px;
}

html { scroll-behavior: smooth; }

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

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

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

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

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  min-height: 48px;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--hero {
  background: var(--green);
  color: var(--white);
  font-size: 1rem;
  padding: 16px 36px;
  box-shadow: 0 4px 20px rgba(138,171,138,.4);
}
.btn--hero:hover {
  background: var(--green-dk);
  box-shadow: 0 6px 28px rgba(138,171,138,.5);
}

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

.btn--submit {
  width: 100%;
  justify-content: center;
  background: var(--green);
  color: var(--white);
}
.btn--submit:hover { background: var(--green-dk); }

.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  background: #25d366;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  min-height: 48px;
  transition: background .2s, transform .15s;
  margin-top: 8px;
}
.btn--whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(26,26,26,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-monogram {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: .05em;
  line-height: 1;
  background: rgba(138,171,138,.12);
  border: 1px solid rgba(138,171,138,.3);
  border-radius: 6px;
  padding: 4px 8px;
}
.logo-name {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .03em;
}

/* Desktop nav */
.desktop-nav { margin-left: auto; }
.desktop-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.desktop-nav a {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s;
}
.desktop-nav a:hover { color: var(--green); }

/* CTA pill */
.btn-afspraak {
  flex-shrink: 0;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--green);
  color: var(--white);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: background .2s;
}
.btn-afspraak:hover { background: var(--green-dk); }

/* Hamburger */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

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

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

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__close svg { width: 28px; height: 28px; }

.mobile-menu__list {
  margin-top: 32px;
  flex: 1;
}
.mobile-menu__list li + li { border-top: 1px solid rgba(255,255,255,.08); }

.mobile-menu__item {
  display: flex;
  align-items: center;
  padding: 18px 0;
  color: var(--white);
  font-size: 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .2s;
  min-height: 56px;
}
.mobile-menu__item:hover { color: var(--green); }

.mobile-menu__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 0 16px;
  padding: 16px;
  background: var(--green);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  min-height: 56px;
  transition: background .2s;
}
.mobile-menu__cta:hover { background: var(--green-dk); }

/* ── SECTION SHARED ──────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-eyebrow--light { color: var(--green); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--black);
}
.section-title--light { color: var(--white); }
.section-sub {
  margin-top: 16px;
  font-size: 1.05rem;
  color: rgba(26,26,26,.65);
  max-width: 560px;
  margin-inline: auto;
}
.section-sub--light { color: rgba(255,255,255,.7); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__img {
  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,.78) 0%, rgba(26,26,26,.45) 60%, rgba(26,26,26,.2) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero__eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--green);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.6;
}

/* ── USP BAR ─────────────────────────────────────────────────── */
.usp-bar {
  background: var(--cream);
  border-bottom: 1px solid rgba(26,26,26,.08);
  padding: 20px 0;
}
.usp-bar__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.usp-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.usp-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(138,171,138,.15);
  border-radius: 50%;
  color: var(--green);
  flex-shrink: 0;
}
.usp-bar__icon svg { width: 20px; height: 20px; }
.usp-bar__text {
  font-size: .95rem;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}

/* ── CURLSYS SECTION ─────────────────────────────────────────── */
.curlsys-section {
  background: var(--black);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.curlsys-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(138,171,138,.12) 0%, transparent 70%);
  pointer-events: none;
}
.curlsys-section__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.curlsys-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(201,169,110,.4);
  border-radius: 50px;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.curlsys-section__badge svg { width: 16px; height: 16px; }
.curlsys-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.curlsys-section__body {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 40px;
}
.curlsys-section__features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.curlsys-section__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}
.curlsys-section__feat svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  flex-shrink: 0;
}

/* ── DIENSTEN SECTION ────────────────────────────────────────── */
.diensten-section {
  background: var(--cream);
  padding: 96px 0;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card--featured {
  background: var(--black);
  color: var(--white);
}
.card--featured .card__desc { color: rgba(255,255,255,.65); }
.card--featured .card__price { color: var(--gold); }
.card--featured .card__link { color: var(--green); }

.card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.card__icon {
  width: 52px;
  height: 52px;
  background: rgba(138,171,138,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.card__icon svg { width: 26px; height: 26px; }
.card--featured .card__icon { background: rgba(138,171,138,.15); }

.card__body { display: flex; flex-direction: column; flex: 1; }
.card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.card__desc {
  font-size: .92rem;
  color: rgba(26,26,26,.65);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 16px;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: gap .2s, color .2s;
}
.card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.card__link:hover { color: var(--green); }
.card__link:hover svg { transform: translateX(4px); }

/* ── GALLERY SECTION ─────────────────────────────────────────── */
.gallery-section {
  background: var(--black);
  padding: 96px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid figure.photo {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-grid figure.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-grid figure.photo:hover img { transform: scale(1.05); }

/* ── REVIEWS ─────────────────────────────────────────────────── */
.reviews-section {
  background: var(--cream);
  padding: 96px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.review-card__stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  margin-bottom: 16px;
}
.review-card__stars svg { width: 18px; height: 18px; }
.review-card__quote {
  font-size: 1rem;
  color: var(--black);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-style: normal;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-card__author strong { display: block; font-weight: 700; font-size: .95rem; }
.review-card__author span { font-size: .8rem; color: rgba(26,26,26,.5); }

.reviews-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(26,26,26,.55);
  font-size: .9rem;
}
.reviews-badge svg { color: var(--gold); }

/* ── OVER ONS ────────────────────────────────────────────────── */
.over-ons-section {
  background: var(--white);
  padding: 96px 0;
}
.over-ons-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.over-ons-section__photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.over-ons-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.over-ons-section__body {
  font-size: 1.05rem;
  color: rgba(26,26,26,.72);
  line-height: 1.75;
  margin-top: 20px;
}
.over-ons-section__body + .over-ons-section__body { margin-top: 14px; }
.over-ons-section__feats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.over-ons-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--black);
}
.over-ons-feat svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  flex-shrink: 0;
}

/* ── CONTACT / CTA-BAND ──────────────────────────────────────── */
.contact-section.cta-band {
  background: var(--black);
  padding: 96px 0 0;
}
.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 64px;
}
.contact-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.2;
}
.contact-section__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-section__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
}
.contact-section__list svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }
.contact-section__list a { color: rgba(255,255,255,.8); transition: color .2s; }
.contact-section__list a:hover { color: var(--green); }

/* Contact form */
.contact-section__form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-field input,
.form-field textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-size: .95rem;
  font-family: var(--font-body);
  transition: border-color .2s, background .2s;
  min-height: 48px;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,.3); }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(255,255,255,.09);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* Map */
.contact-section__map {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
}
.contact-section__map iframe { display: block; filter: grayscale(30%) brightness(.85); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer.footer-kit {
  background: #111;
  padding: 48px 0 0;
}
.footer-kit__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
}
.logo-monogram--footer {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: .05em;
  background: rgba(138,171,138,.12);
  border: 1px solid rgba(138,171,138,.25);
  border-radius: 6px;
  padding: 3px 7px;
}
.footer-kit__name {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 8px;
}
.footer-kit__tagline {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  margin-top: 6px;
}
.footer-kit__nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-kit__nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-kit__nav a:hover { color: var(--green); }

.footer-kit__social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-kit__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.65);
  transition: border-color .2s, color .2s;
}
.footer-kit__social a:hover { border-color: var(--green); color: var(--green); }
.footer-kit__social svg { width: 20px; height: 20px; }

.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 24px;
  text-align: center;
}
.footer-kit__bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}

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

/* ── 1024px ── */
@media (max-width: 1024px) {
  .over-ons-section__inner { gap: 40px; }
  .contact-section__inner { gap: 40px; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Header: hide desktop elements */
  .desktop-nav { display: none; }
  .btn-afspraak { display: none; }
  .mobile-menu__trigger { display: flex; margin-left: auto; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }

  /* USP bar */
  .usp-bar__list { gap: 24px; justify-content: flex-start; padding: 0 8px; }
  .usp-bar__text { font-size: .85rem; }

  /* Over ons */
  .over-ons-section__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .over-ons-section__media { order: -1; }

  /* Contact */
  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  .footer-kit__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .usp-bar__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 4px 0;
  }
  .curlsys-section__features { gap: 16px; flex-direction: column; align-items: center; }
}

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