@font-face {
  font-family: "Zueri Sans";
  src: url("assets/fonts/Manrope-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Zueri Editorial";
  src: url("assets/fonts/BodoniModa-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --violet: #362d62;
  --violet-deep: #211b4f;
  --powder-blue: #bec9e8;
  --powder-blue-light: #dce4f5;
  --paper: #f8f6ef;
  --white: #fff;
  --ink: #28224f;
  --muted: #68627c;
  --line: rgba(54, 45, 98, 0.24);
  --page-gutter: clamp(1.25rem, 4vw, 4rem);
  --section-space: clamp(5.5rem, 10vw, 10rem);
  --header-height: 7rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Zueri Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #e95059;
  outline-offset: 4px;
}

::selection {
  background: var(--violet);
  color: var(--white);
}

.page-shell {
  width: min(100%, 96rem);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.section {
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  background: var(--violet);
  color: var(--white);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Zueri Editorial", Didot, "Bodoni 72", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.055em;
}

h1 {
  margin-bottom: 1.8rem;
  font-size: clamp(4rem, 7.5vw, 8rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3.4rem, 6.6vw, 6rem);
  line-height: 1.02;
}

.text-link {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    gap 250ms var(--ease),
    color 200ms ease;
}

.text-link:hover {
  gap: 3.2rem;
  color: #51438f;
}

.text-link span {
  font-size: 1.35rem;
  font-weight: 400;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    height 250ms var(--ease),
    background-color 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease;
}

.site-header.is-scrolled {
  height: 5.25rem;
  border-bottom-color: rgba(54, 45, 98, 0.14);
  background: rgba(248, 246, 239, 0.9);
  box-shadow: 0 0.5rem 2rem rgba(33, 27, 79, 0.05);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: 8rem 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 4.8rem;
  align-self: start;
  margin-top: 1.35rem;
  transition:
    width 250ms var(--ease),
    margin 250ms var(--ease);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-header.is-scrolled .brand {
  width: 3.4rem;
  margin-top: 0.55rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4.5rem);
}

.site-nav a,
.header-order-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a::after,
.header-order-link::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

.site-nav a:hover::after,
.header-order-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-order-link {
  justify-self: end;
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  background: linear-gradient(
    135deg,
    #d8e2f5 0%,
    var(--powder-blue) 55%,
    #d5def1 100%
  );
}

.hero::before {
  position: absolute;
  inset: 10% -10% auto auto;
  width: 52rem;
  height: 52rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.48),
    transparent 68%
  );
  content: "";
  pointer-events: none;
}

.hero__grid {
  display: grid;
  min-height: clamp(47rem, 91vh, 62rem);
  padding-top: calc(var(--header-height) + clamp(3rem, 7vh, 6rem));
  padding-bottom: clamp(3.75rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 0.94fr) minmax(23rem, 0.86fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 1rem;
  animation: hero-copy-in 900ms 120ms both var(--ease);
}

.hero__lead {
  max-width: 32rem;
  margin-bottom: 2.8rem;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem clamp(2rem, 4vw, 4.5rem);
}

.hero__place {
  margin: clamp(3.5rem, 8vh, 7rem) 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  z-index: 1;
  align-self: end;
  margin: 0;
  animation: hero-jar-in 1100ms 200ms both var(--ease);
}

.hero__visual img {
  width: min(100%, 43rem);
  max-height: min(76vh, 51rem);
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 2rem 1.5rem rgba(39, 32, 75, 0.22));
  transform: translateY(2.6rem) rotate(1deg);
}

.hero__visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.proof-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(248, 246, 239, 0.96);
}

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

.proof-point {
  display: grid;
  min-height: 10rem;
  padding: clamp(1.7rem, 3vw, 3rem);
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: clamp(1rem, 2vw, 2.25rem);
}

.proof-point + .proof-point {
  border-left: 1px solid var(--line);
}

.proof-point span {
  font-family: "Zueri Editorial", Didot, Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.proof-point p {
  margin: 0;
  font-size: clamp(1rem, 1vw, 1.08rem);
  line-height: 1.45;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
}

@keyframes hero-jar-in {
  from {
    opacity: 0;
    transform: translateY(4rem) scale(0.95);
  }
}

/* Section heading */
.section-heading {
  display: grid;
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 9rem);
}

.section-heading > p {
  max-width: 33rem;
  margin: 0 0 0.65rem;
  color: var(--muted);
}

/* Products */
.products {
  overflow: clip;
  background: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.1rem, 2vw, 2rem);
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 38rem;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  transition:
    border-color 250ms ease,
    transform 350ms var(--ease),
    box-shadow 350ms var(--ease);
}

.product-card--dill {
  --product-accent: #51438f;
}

.product-card--knoblauch-thymian {
  --product-accent: #168458;
}

.product-card--chili {
  --product-accent: #ed4b55;
}

.product-card--kaffir-ingwer {
  --product-accent: #a99b17;
}

.product-card--relish-original {
  --product-accent: #ee8c52;
}

.product-card--relish-chili {
  --product-accent: #c34d76;
}

.product-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 0.38rem;
  background: var(--product-accent);
  content: "";
}

.product-card:hover {
  border-color: var(--product-accent);
  box-shadow: 0 1.5rem 4rem rgba(42, 34, 79, 0.1);
  transform: translateY(-0.5rem);
}

.product-card__number {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  color: color-mix(in srgb, var(--product-accent) 60%, var(--ink));
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.product-card__title-wrap {
  position: relative;
  z-index: 2;
  min-height: 8.75rem;
  padding: 2.25rem 2rem 1rem;
}

.product-card__type {
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card h3 {
  max-width: 17rem;
  margin: 0;
  font-family: "Zueri Editorial", Didot, Georgia, serif;
  font-size: clamp(2rem, 2.65vw, 3.15rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.product-card__visual {
  position: relative;
  display: grid;
  min-height: 29.25rem;
  overflow: visible;
  flex: 1;
  place-items: center;
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, var(--product-accent) 10%, transparent) 100%
  );
}

.product-card__visual::after {
  position: absolute;
  right: 12%;
  bottom: 1.8rem;
  left: 12%;
  height: 1.2rem;
  border-radius: 50%;
  background: rgba(35, 27, 72, 0.17);
  content: "";
  filter: blur(0.65rem);
}

.product-card__image {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  width: auto;
  height: 23.5rem;
  object-fit: contain;
  filter: drop-shadow(0 1rem 0.8rem rgba(38, 29, 77, 0.12));
  transition: transform 600ms var(--ease);
}

.product-card:hover .product-card__image {
  transform: scale(1.035) rotate(-1deg);
}

.product-card:hover .product-card__image--placeholder {
  transform: scale(1.035) rotate(1.5deg);
}

.product-card__copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.4rem 2rem 1.55rem;
  border-top: 1px solid var(--line);
  align-self: end;
  backdrop-filter: blur(0.45rem);
  background: rgba(248, 246, 239, 0.88);
  grid-area: 1 / 1;
  justify-self: stretch;
  -webkit-backdrop-filter: blur(0.45rem);
}

.product-card__description {
  min-height: 3.4rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.05rem, 1vw, 1.12rem);
  line-height: 1.55;
}

.product-card__price {
  display: flex;
  margin: 0 0 1rem;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 650;
}

.product-card__price strong {
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
}

.product-card details {
  border-top: 1px solid var(--line);
}

.product-card summary {
  display: flex;
  min-height: 3.4rem;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card summary::-webkit-details-marker {
  display: none;
}

.product-card__summary-label--open {
  display: none;
}

.product-card__summary-icon,
.product-card__summary-icon::after {
  display: block;
  width: 1.05rem;
  height: 1.5px;
  background: currentColor;
  content: "";
}

.product-card__summary-icon {
  transition: transform 200ms ease;
}

.product-card__summary-icon::after {
  transform: rotate(90deg);
}

.product-card details[open] summary {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 1.25rem;
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  min-height: 0;
  border: 1px solid var(--product-accent);
  border-radius: 50%;
  background: rgba(248, 246, 239, 0.96);
  box-shadow: 0 0.5rem 1.5rem rgba(40, 34, 79, 0.12);
  gap: 0;
  place-content: center;
  place-items: center;
  transform: translateY(-50%);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.product-card details[open] summary:hover {
  background: var(--product-accent);
  color: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.product-card details[open] .product-card__summary-label--closed {
  display: none;
}

.product-card details[open] .product-card__summary-label--open {
  position: absolute;
  display: block;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.product-card details[open] .product-card__summary-icon {
  transform: rotate(45deg);
}

.product-card details[open] .product-card__details {
  padding-top: 0.5rem;
}

.product-card__details {
  padding: 0.25rem 0 0.5rem;
  font-size: 0.95rem;
}

.product-card__tablist {
  display: grid;
  min-height: 2.25rem;
  margin-bottom: 0.65rem;
  border: 1px solid rgba(54, 45, 98, 0.2);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card__tab {
  min-width: 0;
  padding: 0.55rem 0.45rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.product-card__tab + .product-card__tab {
  border-left: 1px solid rgba(54, 45, 98, 0.2);
}

.product-card__tab[aria-selected="true"] {
  background: var(--product-accent);
  color: var(--white);
}

.product-card__tab:not([aria-selected="true"]):hover {
  color: var(--product-accent);
}

.product-card__tab:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid var(--product-accent);
  outline-offset: 2px;
}

.product-card__tab-panel {
  min-height: 14.5rem;
}

.product-card__tab-panel[hidden] {
  display: none;
}

.product-card__tab-panel--details > p {
  color: var(--muted);
}

.product-card__details dl,
.product-card__details dd {
  margin: 0;
}

.product-card__details dl > div {
  padding-block: 0.6rem;
  border-top: 1px solid rgba(54, 45, 98, 0.14);
}

.product-card__details dl > div:first-child {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 1rem;
}

.product-card__details dl > div:first-child dt {
  margin-bottom: 0;
}

.product-card__details dl > div:first-child dd {
  text-align: right;
}

.product-card__details dt {
  margin-bottom: 0.2rem;
  font-weight: 750;
}

.product-card__details dd {
  color: var(--muted);
  line-height: 1.5;
}

.product-card__details small {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
}

.product-card__nutrition-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}

.product-card__nutrition-table caption {
  padding: 0.15rem 0 0.55rem;
  font-weight: 750;
  text-align: left;
}

.product-card__nutrition-table th,
.product-card__nutrition-table td {
  padding: 0.55rem 0;
  border-top: 1px solid rgba(54, 45, 98, 0.14);
  line-height: 1.15;
}

.product-card__nutrition-table th {
  color: var(--muted);
  font-weight: 650;
  text-align: left;
}

.product-card__nutrition-table td {
  font-weight: 650;
  text-align: right;
  white-space: nowrap;
}

.swipe-hint {
  display: none;
}

.products__order {
  display: flex;
  margin-top: clamp(3.5rem, 6vw, 6rem);
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.products__order .button {
  min-width: 17.5rem;
}

/* Resale CTA */
.resale-cta {
  color: var(--white);
  background: var(--violet);
}

.resale-cta__inner {
  display: flex;
  padding-block: clamp(3rem, 5vw, 4.5rem);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.resale-cta__intro {
  max-width: 36rem;
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.35;
}

.resale-cta .button {
  min-width: min(100%, 20rem);
}

/* Why */
.why {
  background: var(--white);
}

.why.section {
  padding-block: clamp(4.5rem, 7vw, 7rem);
}

.why__inner {
  display: grid;
  grid-template-columns: minmax(15rem, 0.9fr) minmax(0, 2.35fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 7rem);
}

.why__intro {
  padding: 0;
}

.why__intro h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 3.2vw, 3.5rem);
  line-height: 1.05;
}

.why__intro > p {
  max-width: 26rem;
  margin: 0;
  font-size: clamp(1.05rem, 1.15vw, 1.16rem);
  line-height: 1.6;
}

.why__reasons {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why__reasons li {
  display: flex;
  min-width: 0;
  padding-inline: clamp(1.35rem, 2.5vw, 2.75rem);
  flex-direction: column;
  align-items: flex-start;
}

.why__reasons li + li {
  border-left: 1px solid var(--line);
}

.why__reasons li:first-child {
  padding-left: 0;
}

.why__reasons li:last-child {
  padding-right: 0;
}

.why__icon {
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why__reasons h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.why__reasons h3::after {
  display: block;
  width: 2rem;
  margin-block: 1rem;
  border-top: 1px solid var(--line);
  content: "";
}

.why__reasons p {
  max-width: 14rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1vw, 1.05rem);
  line-height: 1.55;
}

/* Timeline */
.timeline {
  overflow: hidden;
  background: var(--paper);
}

.timeline__heading {
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.timeline__heading h2 {
  max-width: 62rem;
}

@media (min-width: 68.01rem) {
  .timeline__heading h2 {
    line-height: 1.12;
  }
}

.timeline__list {
  position: relative;
}

.timeline__list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline-event {
  position: relative;
  display: grid;
  height: clamp(30rem, 42vw, 38rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.timeline-event + .timeline-event {
  margin-top: clamp(4rem, 7vw, 7rem);
}

.timeline-event:nth-child(even) .timeline-event__media {
  grid-column: 2;
}

.timeline-event:nth-child(even) .timeline-event__content {
  grid-row: 1;
  grid-column: 1;
  padding-right: clamp(3rem, 8vw, 8rem);
  padding-left: 0;
  text-align: right;
}

.timeline-event__media {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--powder-blue);
}

.timeline-event__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 900ms var(--ease),
    filter 500ms ease;
}

.timeline-event:hover .timeline-event__media img {
  filter: saturate(0.9);
  transform: scale(1.035);
}

.timeline-event__content {
  position: relative;
  display: flex;
  padding-left: clamp(3rem, 8vw, 8rem);
  flex-direction: column;
  justify-content: center;
}

.timeline-event__date {
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.timeline-event__marker {
  position: absolute;
  top: 50%;
  left: 0;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid var(--violet);
  background: var(--paper);
  place-items: center;
  font-family: "Zueri Editorial", Didot, Georgia, serif;
  font-size: 1.35rem;
  transform: translate(-50%, -50%);
}

.timeline-event:nth-child(even) .timeline-event__marker {
  right: 0;
  left: auto;
  transform: translate(50%, -50%);
}

.timeline-event__content h3 {
  max-width: 32rem;
  margin: 0 0 1.1rem;
  font-family: "Zueri Editorial", Didot, Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.timeline-event:nth-child(even) .timeline-event__content h3 {
  margin-left: auto;
}

.timeline-event__content > p:last-child {
  max-width: 31rem;
  margin: 0;
  color: var(--muted);
}

.timeline-event:nth-child(even) .timeline-event__content > p:last-child {
  margin-left: auto;
}

/* Closing CTA */
.closing-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(32, 26, 77, 0.98) 0%,
      rgba(54, 45, 98, 0.94) 54%,
      rgba(54, 45, 98, 0.45) 100%
    ),
    url("assets/images/production/04-today.webp") center 56% / cover no-repeat;
}

.closing-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 34rem;
  padding-block: clamp(5rem, 9vw, 9rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.55fr);
  align-items: end;
  gap: clamp(3rem, 9vw, 10rem);
}

.closing-cta h2 {
  font-size: clamp(3.75rem, 7vw, 7rem);
  white-space: nowrap;
}

.closing-cta__shop-link {
  min-width: 14rem;
  margin-top: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--white);
}

.closing-cta__shop-link:hover {
  color: var(--white);
}

.reseller-terms {
  margin-bottom: 1.75rem;
  padding-block: 1.15rem;
  border-block: 1px solid rgba(255, 255, 255, 0.42);
}

.reseller-terms h3 {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.reseller-terms dl {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.reseller-terms dl > div {
  display: flex;
  padding-block: 0.25rem;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.reseller-terms dt,
.reseller-terms dd {
  margin: 0;
}

.reseller-terms dd {
  font-weight: 750;
  text-align: right;
  white-space: nowrap;
}

.reseller-terms > p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  min-height: 3.8rem;
  padding: 0.8rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  border: 1px solid currentColor;
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    color 250ms ease,
    background 250ms ease,
    gap 250ms var(--ease);
}

.button:hover {
  gap: 3.8rem;
}

.button--light:hover {
  background: var(--white);
  color: var(--violet);
}

.button--primary {
  border-color: var(--violet);
  background: var(--violet);
  color: var(--white);
}

.button--primary:hover {
  background: transparent;
  color: var(--violet);
}

.button span {
  font-size: 1.3rem;
}

/* Footer */
.site-footer {
  background: var(--violet-deep);
  color: var(--white);
}

.site-footer__main {
  display: grid;
  min-height: 19rem;
  padding-block: clamp(3rem, 6vw, 6rem);
  grid-template-columns: 10rem 1fr auto;
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

.site-footer__brand {
  display: inline-flex;
  width: 6rem;
  filter: brightness(0) invert(1);
}

.site-footer__main > p {
  max-width: 24rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.external-link-icon {
  display: block;
  width: 1.15em;
  height: 1.15em;
  overflow: visible;
  flex: 0 0 auto;
}

.external-link-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.site-footer__links a {
  display: flex;
  min-width: 11rem;
  min-height: 2.75rem;
  padding-block: 0.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 1rem;
  text-decoration: none;
}

.site-footer__links a:hover {
  border-color: var(--white);
}

.site-footer__meta {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
}

.site-footer__meta p {
  margin: 0;
}

.site-footer__meta > div {
  display: flex;
  gap: 1.5rem;
}

.site-footer__meta a,
.site-footer__meta button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  text-decoration: none;
}

.site-footer__meta button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-footer__meta a:hover,
.site-footer__meta button:hover {
  text-decoration: underline;
}

/* Cookie Consent */
.cookie-consent[hidden],
.cookie-consent__settings[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  z-index: 2100;
  right: clamp(0.75rem, 2.5vw, 2rem);
  bottom: clamp(0.75rem, 2.5vw, 2rem);
  left: clamp(0.75rem, 2.5vw, 2rem);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent__panel {
  position: relative;
  width: min(100%, 54rem);
  max-height: calc(100vh - clamp(1.5rem, 5vw, 4rem));
  overflow-y: auto;
  padding: clamp(1.25rem, 2.7vw, 2.1rem);
  border: 1px solid rgba(54, 45, 98, 0.42);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(190, 201, 232, 0.72), rgba(248, 246, 239, 0.98) 58%),
    var(--paper);
  color: var(--ink);
  box-shadow: 0 1.4rem 4.5rem rgba(22, 17, 58, 0.3);
  pointer-events: auto;
}

.cookie-consent__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--violet);
  border-radius: 0;
  background: transparent;
  color: var(--violet);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-consent__close:hover,
.cookie-consent__close:focus-visible {
  background: var(--violet);
  color: var(--white);
}

.cookie-consent__eyebrow {
  margin-right: 3rem;
  margin-bottom: 0.3rem;
  color: var(--violet);
}

.cookie-consent__title {
  max-width: 42rem;
  margin: 0 3rem 0.55rem 0;
  color: var(--violet-deep);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.15;
}

.cookie-consent__description {
  max-width: 47rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.cookie-consent__description a,
.cookie-consent__settings-toggle {
  color: var(--violet);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cookie-consent__settings-toggle {
  appearance: none;
  margin: 0.85rem 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cookie-consent__settings {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(54, 45, 98, 0.2);
}

.cookie-consent__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(54, 45, 98, 0.2);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.4);
}

.cookie-consent__category h3,
.cookie-consent__category strong {
  display: block;
  margin: 0 0 0.15rem;
  color: var(--violet-deep);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.cookie-consent__category p,
.cookie-consent__category small {
  display: block;
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.cookie-consent__category--selectable {
  cursor: pointer;
}

.cookie-consent__status {
  flex: 0 0 auto;
  padding: 0.35rem 0.65rem;
  background: var(--powder-blue);
  color: var(--violet-deep);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.cookie-consent__switch {
  position: relative;
  flex: 0 0 auto;
}

.cookie-consent__switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.cookie-consent__switch > span[aria-hidden="true"] {
  position: relative;
  display: block;
  width: 3.25rem;
  height: 1.85rem;
  border: 2px solid var(--muted);
  border-radius: 999px;
  background: var(--white);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.cookie-consent__switch > span[aria-hidden="true"]::after {
  position: absolute;
  top: 0.18rem;
  left: 0.2rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: var(--muted);
  content: "";
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cookie-consent__switch input:checked + span[aria-hidden="true"] {
  border-color: var(--violet);
  background: var(--violet);
}

.cookie-consent__switch input:checked + span[aria-hidden="true"]::after {
  background: var(--white);
  transform: translateX(1.35rem);
}

.cookie-consent__switch input:focus-visible + span[aria-hidden="true"] {
  outline: 3px solid rgba(233, 80, 89, 0.38);
  outline-offset: 3px;
}

.cookie-consent__save,
.cookie-consent__decision {
  appearance: none;
  min-height: 2.85rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--violet);
  border-radius: 0;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cookie-consent__save,
.cookie-consent__decision--primary {
  background: var(--violet);
  color: var(--white);
}

.cookie-consent__decision--secondary {
  background: transparent;
  color: var(--violet);
}

.cookie-consent__save {
  justify-self: end;
}

.cookie-consent__save:hover,
.cookie-consent__save:focus-visible,
.cookie-consent__decision:hover,
.cookie-consent__decision:focus-visible {
  border-color: var(--violet-deep);
  background: var(--violet-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.cookie-consent__decisions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.15rem;
}

@media (max-width: 640px) {
  .cookie-consent {
    right: max(0.6rem, env(safe-area-inset-right));
    bottom: max(0.6rem, env(safe-area-inset-bottom));
    left: max(0.6rem, env(safe-area-inset-left));
  }

  .cookie-consent__panel {
    max-height: calc(100vh - 1.2rem);
    padding: 1.15rem;
  }

  .cookie-consent__category {
    align-items: flex-start;
  }

  .cookie-consent__decisions {
    grid-template-columns: 1fr;
  }

  .cookie-consent__decision,
  .cookie-consent__save {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent * {
    transition: none !important;
  }
}

/* Legal dialogs */
.legal-dialog {
  width: min(calc(100% - 2rem), 42rem);
  max-height: min(85vh, 48rem);
  padding: 0;
  overflow: auto;
  border: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 2rem 7rem rgba(22, 17, 58, 0.36);
}

.legal-dialog::backdrop {
  background: rgba(24, 18, 60, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.legal-dialog__inner {
  position: relative;
  padding: clamp(2rem, 6vw, 5rem);
}

.legal-dialog h2 {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 7vw, 5rem);
}

.legal-dialog address {
  margin-bottom: 1.5rem;
  font-style: normal;
}

.legal-dialog a {
  color: var(--violet);
}

.sales-dialog {
  width: min(calc(100% - 2rem), 64rem);
  max-height: 90vh;
}

.sales-dialog h2 {
  margin-bottom: 1rem;
}

.sales-dialog__intro {
  max-width: 38rem;
  margin-bottom: 2.5rem;
  color: var(--muted);
}

.sales-location-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sales-location {
  display: grid;
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: background 220ms ease;
}

.sales-location:hover {
  background: var(--powder-blue);
}

.sales-location img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform 350ms var(--ease);
}

.sales-location:hover img {
  transform: scale(1.025);
}

.sales-location__label {
  display: flex;
  min-height: 2.75rem;
  padding-top: 0.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(54, 45, 98, 0.16);
  font-size: 0.88rem;
  font-weight: 750;
}

.sales-dialog__note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-dialog__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
  border: 1px solid var(--violet);
  border-radius: 0;
  background: transparent;
  place-items: center;
  font-size: 1.5rem;
  line-height: 1;
}

.legal-dialog__close:hover {
  background: var(--violet);
  color: var(--white);
}

/* Tablet */
@media (max-width: 68rem) {
  :root {
    --header-height: 6.25rem;
  }

  .site-header__inner {
    grid-template-columns: 6rem 1fr auto;
  }

  .site-nav {
    gap: 1.75rem;
  }

  .header-order-link {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.78fr);
    gap: 1rem;
  }

  .hero__visual img {
    transform: translate(1.5rem, 1.5rem) rotate(1deg);
  }

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

  .product-card {
    min-height: 38rem;
  }

  .timeline-event {
    height: 30rem;
  }

  .closing-cta h2 {
    white-space: normal;
  }
}

/* Mobile */
@media (max-width: 48rem) {
  :root {
    --page-gutter: 1.25rem;
    --section-space: 5.5rem;
    --header-height: 5.25rem;
  }

  html {
    scroll-padding-top: 5.75rem;
  }

  h1 {
    font-size: clamp(3.75rem, 18vw, 6rem);
  }

  h2 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .timeline__heading h2 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10vw, 3.2rem);
    line-height: 1.08;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .site-header.is-scrolled,
  .site-header:has(.site-nav.is-open) {
    background: rgba(248, 246, 239, 0.96);
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand,
  .site-header.is-scrolled .brand {
    width: 3.15rem;
    align-self: auto;
    margin-top: 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    padding: 0;
    border: 0;
    background: transparent;
    place-content: center;
    gap: 0.45rem;
  }

  .menu-toggle span {
    display: block;
    width: 1.75rem;
    height: 1px;
    background: currentColor;
    transition: transform 250ms var(--ease);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.25rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-0.25rem) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: flex;
    height: 0;
    overflow: hidden;
    padding-inline: var(--page-gutter);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(248, 246, 239, 0.98);
    opacity: 0;
    transition: opacity 180ms ease;
  }

  .site-nav.is-open {
    height: 19rem;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding-bottom: 1.5rem;
    opacity: 1;
  }

  .site-nav a {
    display: flex;
    min-height: 4.4rem;
    align-items: center;
    border-top: 1px solid var(--line);
    font-family: "Zueri Editorial", Didot, Georgia, serif;
    font-size: 1.85rem;
    font-weight: 600;
    letter-spacing: -0.03em;
  }

  .site-nav a::after {
    display: none;
  }

  .hero__grid {
    min-height: auto;
    padding-top: calc(var(--header-height) + 4.5rem);
    padding-bottom: 1.5rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero__copy {
    padding-top: 0;
  }

  .hero__lead {
    max-width: 28rem;
    font-size: 1.05rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .text-link {
    width: 100%;
  }

  .hero__place {
    display: none;
  }

  .hero__visual {
    display: grid;
    width: 100%;
    height: min(125vw, 36rem);
    align-self: auto;
    overflow: hidden;
    place-items: center;
  }

  .hero__visual img {
    width: auto;
    height: min(108vw, 32rem);
    max-width: 94%;
    max-height: none;
    margin: 1.5rem auto;
    transform: translateY(0) rotate(1deg);
  }

  .hero__visual figcaption {
    display: none;
  }

  .proof-strip__inner {
    grid-template-columns: 1fr;
  }

  .proof-point {
    min-height: auto;
    padding: 1.45rem 0;
    grid-template-columns: 3rem 1fr;
  }

  .proof-point + .proof-point {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-point span {
    font-size: 1.8rem;
  }

  .proof-point p br {
    display: none;
  }

  .section-heading {
    display: block;
    margin-bottom: 3rem;
  }

  .section-heading > p {
    margin-top: 1.5rem;
  }

  .product-grid {
    width: 100%;
    padding-inline: var(--page-gutter);
    overflow-x: auto;
    grid-template-columns: none;
    grid-auto-columns: min(85vw, 22rem);
    grid-auto-flow: column;
    gap: 1rem;
    scroll-padding-inline: var(--page-gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }

  .product-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    min-height: 37rem;
    scroll-snap-align: start;
  }

  .product-card:hover {
    box-shadow: none;
    transform: none;
  }

  .product-card__title-wrap {
    min-height: 8rem;
    padding: 2rem 1.5rem 0.8rem;
  }

  .product-card h3 {
    font-size: 2.5rem;
  }

  .product-card__visual {
    min-height: 29rem;
  }

  .product-card__image {
    height: 21.5rem;
  }

  .product-card__copy {
    padding: 1.25rem 1.5rem 1.4rem;
  }

  .swipe-hint {
    display: flex;
    margin-top: 1.2rem;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .why__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why__intro {
    padding: 0;
  }

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

  .why__reasons li {
    display: grid;
    padding: 1.5rem 0;
    grid-template-columns: 3.6rem 1fr;
    align-items: start;
    gap: 0 1rem;
  }

  .why__reasons li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .why__icon {
    width: 3rem;
    height: 3rem;
    margin: 0;
    grid-row: 1 / span 2;
  }

  .why__reasons p {
    max-width: none;
  }

  .timeline__list::before {
    left: calc(var(--page-gutter) + 3.8rem);
  }

  .timeline-event,
  .timeline-event:nth-child(even) {
    display: grid;
    height: auto;
    min-height: auto;
    padding-left: 3.8rem;
    grid-template-columns: 1fr;
  }

  .timeline-event + .timeline-event {
    margin-top: 4.5rem;
  }

  .timeline-event__media,
  .timeline-event:nth-child(even) .timeline-event__media {
    height: clamp(20rem, 95vw, 27rem);
    min-height: 0;
    grid-row: auto;
    grid-column: auto;
  }

  .timeline-event__content,
  .timeline-event:nth-child(even) .timeline-event__content {
    display: block;
    padding: 2rem 0 0;
    grid-row: auto;
    grid-column: auto;
    text-align: left;
  }

  .timeline-event__marker,
  .timeline-event:nth-child(even) .timeline-event__marker {
    top: calc(0rem - clamp(10rem, 47.5vw, 13.5rem) - 1.4rem);
    right: auto;
    left: 0;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1rem;
    transform: translateX(-50%);
  }

  .timeline-event__content h3,
  .timeline-event:nth-child(even) .timeline-event__content h3,
  .timeline-event:nth-child(even) .timeline-event__content > p:last-child {
    margin-left: 0;
  }

  .timeline-event__content h3 {
    font-size: 2.75rem;
  }

  .closing-cta {
    background:
      linear-gradient(
        180deg,
        rgba(32, 26, 77, 0.97) 0%,
        rgba(54, 45, 98, 0.9) 70%,
        rgba(54, 45, 98, 0.68) 100%
      ),
      url("assets/images/production/04-today.webp") center / cover no-repeat;
  }

  .closing-cta__inner {
    min-height: 37rem;
    padding-block: 5rem;
    grid-template-columns: 1fr;
    align-content: space-between;
    gap: 4rem;
  }

  .closing-cta h2 {
    font-size: clamp(3.25rem, 14vw, 5rem);
    line-height: 1.05;
  }

  .button {
    width: 100%;
  }

  .products__order .button {
    min-width: 0;
  }

  .sales-dialog .legal-dialog__inner {
    padding: 2rem 1rem;
  }

  .sales-dialog h2 {
    padding-right: 2.5rem;
    font-size: clamp(3rem, 15vw, 5rem);
  }

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

  .sales-location {
    padding: 0.65rem;
  }

  .sales-location__label {
    font-size: 0.8rem;
  }

  .site-footer__main {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer__brand {
    width: 5rem;
  }

  .site-footer__links {
    margin-top: 1rem;
  }

  .site-footer__links a {
    width: 100%;
  }

  .site-footer__meta {
    padding-block: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
  }
}

@media (max-width: 24rem) {
  .product-grid {
    grid-auto-columns: 90vw;
  }

  .product-card h3 {
    font-size: 2.2rem;
  }

  .timeline-event {
    padding-left: 3.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
