:root {
  --ink: #1f1710;
  --ink-2: #fffaf2;
  --ink-3: #f4eadb;
  --cream: #1f1710;
  --muted: #6f6254;
  --gold: #c4994f;
  --gold-2: #9f7330;
  --line: rgba(99, 73, 39, .18);
  --shade: rgba(255, 250, 242, .78);
  --radius: 8px;
  --nav-h: 76px;
  --x: clamp(18px, 5vw, 84px);
  --section-y: clamp(48px, 7vw, 86px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--ink-2);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

button,
input {
  font: inherit;
  color: inherit;
}

button:not(:disabled) {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

fieldset {
  min-width: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: .98;
  font-weight: 600;
}

h1 {
  max-width: 720px;
  font-size: clamp(58px, 12vw, 132px);
}

h2 {
  max-width: 760px;
  font-size: clamp(38px, 6vw, 74px);
}

h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--x);
  gap: 16px;
  background: rgba(255, 250, 242, .9);
  border-bottom: 1px solid rgba(99, 73, 39, .1);
  box-shadow: 0 12px 30px rgba(31, 23, 16, .06);
  backdrop-filter: blur(16px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-solid,
.site-header.menu-open {
  background: rgba(255, 250, 242, .97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(31, 23, 16, .08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(196, 153, 79, .58);
  border-radius: 50%;
  color: var(--gold-2);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
}

.brand-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
}

.brand-text span {
  color: var(--gold);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
}

.desktop-nav a {
  color: #5d5144;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: color .2s ease;
}

.desktop-nav a:hover {
  color: var(--gold-2);
}

.desktop-nav .nav-button {
  border: 1px solid rgba(196, 153, 79, .52);
  border-radius: 4px;
  padding: 10px 18px;
  background: var(--gold);
  color: #1f1710;
}

.header-book-button {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--gold);
  color: #1f1710;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .62);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 45;
  top: var(--nav-h);
  left: 0;
  right: 0;
  display: grid;
  gap: 18px;
  padding: 24px var(--x) 30px;
  background: rgba(255, 250, 242, .98);
  border-bottom: 1px solid var(--line);
  transform: translateY(-120%);
  transition: transform .24s ease;
}

.mobile-menu.is-open {
  transform: none;
}

.mobile-menu a:not(.btn) {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: .45;
  transform: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-2);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 250, 242, .74);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 54px) var(--x) clamp(42px, 6vw, 76px);
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, .96) 0%, rgba(255, 250, 242, .72) 46%, rgba(255, 250, 242, .18) 100%),
    linear-gradient(0deg, rgba(255, 250, 242, .9) 0%, rgba(255, 250, 242, .08) 54%, rgba(255, 250, 242, .82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero-copy {
  max-width: 570px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-card {
  position: absolute;
  right: var(--x);
  bottom: clamp(26px, 5vw, 56px);
  z-index: 1;
  width: min(280px, calc(100vw - 36px));
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, .86);
  box-shadow: 0 18px 48px rgba(31, 23, 16, .12);
  backdrop-filter: blur(14px);
}

.hero-card span,
.panel-label {
  display: block;
  margin-bottom: 9px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-card strong,
.hero-card small {
  display: block;
}

.hero-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
}

.hero-card small {
  margin-top: 6px;
  color: var(--muted);
}

.gallery-section,
.services-section,
.about-section,
.contact-section {
  padding: var(--section-y) var(--x);
}

.section-head {
  margin-bottom: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.38fr 1fr 1fr;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-3);
}

.gallery-item.large {
  min-height: 410px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 11, 8, .62), transparent 54%);
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  color: rgba(242, 231, 210, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.work-page {
  background: var(--ink-2);
}

.work-hero {
  padding: calc(var(--nav-h) + 64px) var(--x) 34px;
}

.work-hero h1 {
  color: var(--ink);
}

.work-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.work-gallery-section {
  padding-top: 28px;
}

.work-gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-section {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 96px);
  background: #fff;
  border-block: 1px solid var(--line);
}

.services-intro {
  align-self: start;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.services-intro > p {
  max-width: 430px;
  margin: 18px 0 20px;
  color: var(--muted);
}

.booking-panel {
  margin-top: 22px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(196, 153, 79, .32);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, .96);
  box-shadow: 0 22px 70px rgba(31, 23, 16, .12);
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.booking-step {
  display: grid;
  place-items: center;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.booking-step.is-active,
.booking-step.is-done {
  border-color: var(--gold);
  background: rgba(196, 153, 79, .14);
  color: var(--gold-2);
}

.booking-status h3 {
  font-size: 30px;
}

.booking-status p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.selected-summary {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(196, 153, 79, .36);
  border-radius: 6px;
  background: rgba(196, 153, 79, .08);
}

.selected-summary strong,
.selected-summary span {
  display: block;
}

.selected-summary strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
}

.selected-summary span {
  color: var(--muted);
  font-size: 13px;
}

.booking-form {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.booking-fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-fieldset:disabled {
  opacity: .48;
}

.booking-fieldset legend {
  margin-bottom: 8px;
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.booking-fieldset .time-legend {
  margin-top: 12px;
}

.date-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(86px, 1fr);
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-color: var(--gold) rgba(255, 255, 255, .08);
}

.date-option,
.time-option {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fffdf8;
  color: var(--ink);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.date-option:hover,
.time-option:hover {
  border-color: rgba(196, 153, 79, .58);
  background: rgba(196, 153, 79, .08);
}

.date-option.is-selected,
.time-option.is-selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.date-option {
  display: grid;
  gap: 2px;
  justify-items: center;
  min-height: 78px;
  padding: 10px 8px;
}

.date-option span:first-child {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.date-option strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: .9;
}

.date-option small {
  font-size: 11px;
  font-weight: 800;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.time-option {
  min-height: 44px;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 900;
}

.empty-times {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.form-field input {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(196, 153, 79, .24);
  border-radius: 5px;
  background: #fffdf8;
  outline: none;
  transition: border-color .18s ease, background .18s ease;
}

.form-field input:focus {
  border-color: var(--gold);
  background: rgba(196, 153, 79, .06);
}

.form-field.has-error input {
  border-color: #d56f5f;
  background: rgba(213, 111, 95, .08);
}

.field-error {
  min-height: 18px;
  margin: 0;
  color: #e69b8d;
  font-size: 12px;
  font-weight: 700;
}

.form-message {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.form-message:empty {
  display: none;
}

.form-message.is-error {
  border-color: rgba(213, 111, 95, .52);
  background: rgba(213, 111, 95, .1);
  color: #f1b2a7;
}

.form-message.is-success {
  border-color: rgba(196, 153, 79, .6);
  background: rgba(196, 153, 79, .13);
  color: var(--ink);
}

.service-categories {
  display: grid;
  gap: 26px;
}

.service-category {
  display: grid;
  gap: 14px;
}

.category-title {
  color: var(--cream);
  font-size: clamp(30px, 4vw, 48px);
}

.service-list {
  display: grid;
  gap: 10px;
}

.service-list.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: clamp(16px, 2.4vw, 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  width: 100%;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.booking-service:hover,
.booking-service:focus-visible {
  border-color: rgba(196, 153, 79, .58);
  background: rgba(196, 153, 79, .08);
  transform: translateY(-1px);
  outline: none;
}

.booking-service.is-selected {
  border-color: var(--gold);
  background: rgba(196, 153, 79, .16);
  box-shadow: inset 0 0 0 1px rgba(196, 153, 79, .26);
}

.booking-service.is-selected::after {
  content: "Geselecteerd";
  justify-self: end;
  grid-column: 1 / -1;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.service-card.featured {
  background: rgba(196, 153, 79, .1);
  border-color: rgba(196, 153, 79, .48);
}

.service-card h4 {
  font-size: clamp(22px, 3vw, 31px);
}

.service-card p {
  max-width: 560px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.service-meta {
  min-width: 100px;
  text-align: right;
}

.service-meta span,
.service-meta strong {
  display: block;
}

.service-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-meta strong {
  color: var(--gold-2);
  font-size: clamp(21px, 2.4vw, 25px);
  white-space: nowrap;
}

.about-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ink-3);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-panel {
  min-height: 220px;
  padding: clamp(24px, 3.4vw, 42px);
  background: var(--ink-2);
}

.contact-panel h3 {
  margin-bottom: 18px;
}

.contact-panel a {
  color: var(--gold-2);
}

.contact-panel p {
  color: var(--muted);
}

.hours dl {
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}

.hours div:last-child {
  border-bottom: 0;
}

.hours dt,
.hours dd {
  margin: 0;
  font-size: 14px;
}

.hours dt {
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px var(--x);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
}

.site-footer a {
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
  text-align: right;
}

.powered-by {
  color: rgba(31, 23, 16, .62);
  font-size: 14px;
  font-weight: 700;
}

.powered-by a {
  display: inline-block;
  margin-left: 4px;
  background: linear-gradient(90deg, #8d79ff 0%, #6373ff 48%, #4c5dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: .12s;
}

.delay-2 {
  transition-delay: .22s;
}

@media (max-width: 1060px) {
  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

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

  .gallery-item.large {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .services-section,
  .about-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-intro {
    position: static;
  }

  .service-list.two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  :root {
    --nav-h: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .brand-text {
    font-size: 21px;
  }

  .desktop-nav {
    display: none;
  }

  .header-book-button {
    display: inline-flex;
    margin-left: auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero {
    min-height: 74svh;
    padding-top: calc(var(--nav-h) + 42px);
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(255, 250, 242, .94) 0%, rgba(255, 250, 242, .7) 58%, rgba(255, 250, 242, .84) 100%),
      linear-gradient(90deg, rgba(255, 250, 242, .9), rgba(255, 250, 242, .24));
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-actions,
  .mobile-menu .btn {
    align-items: stretch;
  }

  .hero-actions .btn,
  .mobile-menu .btn {
    width: 100%;
  }

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

  .gallery-item,
  .gallery-item.large {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .time-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    min-width: 0;
  }

  .about-image img {
    aspect-ratio: 4 / 3;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 440px) {
  .site-header {
    gap: 8px;
  }

  .brand-text {
    max-width: 82px;
    white-space: normal;
    line-height: .9;
    font-size: 18px;
  }

  .brand {
    gap: 10px;
  }

  .header-book-button {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .eyebrow {
    letter-spacing: 1.6px;
  }

  .contact-panel {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
