:root {
  --ink: #0b0b0c;
  --ink-soft: #171719;
  --paper: #f4f1ea;
  --white: #fffdf8;
  --gold: #c9a86a;
  --gold-bright: #e1c78e;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(11, 11, 12, 0.16);
  --mint: #b9cfc7;
  --rose: #c79c9f;
  --sand: #d0c1aa;
  --font-display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1240px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.panel-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 14px 4vw;
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
  background: linear-gradient(to bottom, rgba(11, 11, 12, 0.72), transparent);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: var(--line-light);
  background: rgba(244, 241, 234, 0.95);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.28em;
}

.brand-note {
  margin-top: 6px;
  font-size: 0.65rem;
  letter-spacing: 0.46em;
  opacity: 0.68;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 0.875rem;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.selection-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 8px 8px 15px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.selection-count {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero {
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  color: var(--white);
  background: var(--ink);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 148px clamp(28px, 5.5vw, 92px) 72px;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #816536;
}

.hero h1 {
  max-width: 730px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 5.6vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.hero-intro {
  max-width: 590px;
  margin: 34px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 650;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

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

.button-primary:hover {
  background: var(--gold-bright);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-gold {
  color: var(--ink);
  background: var(--gold-bright);
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.45);
  font-size: 0.92rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 690px;
  margin: auto 0 0;
  padding-top: 54px;
  border-top: 1px solid var(--line-dark);
}

.hero-facts div {
  display: grid;
  gap: 7px;
}

.hero-facts dt {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 253, 248, 0.66);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  background: #222;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 12, 0.18), transparent 35%);
  pointer-events: none;
}

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

.hero-visual figcaption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  color: rgba(255, 253, 248, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  color: var(--ink);
  border-bottom: 1px solid var(--line-light);
  background: var(--gold);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  padding: 15px 0;
  animation: drift 28s linear infinite;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.2em;
}

.marquee-track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

@keyframes drift {
  to {
    transform: translateX(-50%);
  }
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
  padding: 126px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 66px;
}

.section-heading h2,
.philosophy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading > p {
  margin: 0;
  color: rgba(11, 11, 12, 0.67);
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 24px;
}

.product-card {
  min-width: 0;
}

.product-art {
  position: relative;
  isolation: isolate;
  display: flex;
  aspect-ratio: 1.35 / 1;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  padding: clamp(24px, 3.5vw, 50px);
  overflow: hidden;
  color: var(--ink);
}

.product-art::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 58%;
  aspect-ratio: 1;
  top: -22%;
  right: -6%;
  border: 1px solid rgba(11, 11, 12, 0.24);
  border-radius: 50%;
}

.product-art::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10%;
  border: 1px solid rgba(11, 11, 12, 0.13);
}

.product-art-mint {
  background: linear-gradient(140deg, #dbe9e4 0%, var(--mint) 100%);
}

.product-art-sand {
  background: linear-gradient(140deg, #ece4d8 0%, var(--sand) 100%);
}

.product-art-rose {
  background: linear-gradient(140deg, #e4ccce 0%, var(--rose) 100%);
}

.product-art-black {
  color: var(--white);
  background: linear-gradient(140deg, #323235 0%, #0d0d0f 78%);
}

.product-art-black::before,
.product-art-black::after {
  border-color: rgba(255, 255, 255, 0.2);
}

.product-category {
  position: absolute;
  top: 25px;
  left: clamp(24px, 3.5vw, 50px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.product-monogram {
  position: absolute;
  top: 50%;
  right: clamp(24px, 4vw, 60px);
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(6.5rem, 12vw, 11rem);
  line-height: 1;
  opacity: 0.17;
}

.product-art > p {
  margin: 0 0 5px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.product-art > small {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.product-info {
  padding: 25px 4px 0;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.product-title-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
}

.product-title-row p {
  margin: 4px 0 0;
  color: rgba(11, 11, 12, 0.56);
  font-size: 0.84rem;
}

.product-title-row strong {
  white-space: nowrap;
  font-size: 0.95rem;
}

.product-title-row .price-request {
  color: rgba(11, 11, 12, 0.57);
  font-size: 0.76rem;
  font-weight: 600;
}

.product-description {
  max-width: 540px;
  min-height: 54px;
  margin: 20px 0 24px;
  color: rgba(11, 11, 12, 0.72);
  font-size: 0.92rem;
  line-height: 1.65;
}

.add-button {
  display: flex;
  width: 100%;
  min-height: 51px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--ink);
  border: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 650;
}

.add-button span:last-child {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  transition: transform 170ms ease;
}

.add-button:hover span:last-child {
  transform: rotate(90deg);
}

.add-button.is-added {
  color: #70592e;
}

.philosophy {
  position: relative;
  display: grid;
  min-height: 680px;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 90%, rgba(201, 168, 106, 0.16), transparent 30%),
    var(--ink-soft);
}

.philosophy-number {
  align-self: end;
  margin: 0 0 -8vw -2vw;
  color: rgba(201, 168, 106, 0.12);
  font-family: var(--font-display);
  font-size: clamp(24rem, 50vw, 48rem);
  line-height: 0.65;
}

.philosophy-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 90px 8vw 90px 5vw;
}

.philosophy-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 34px 0 36px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
}

.text-link-light {
  border-color: var(--line-dark);
}

.ritual-heading {
  margin-bottom: 54px;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.ritual-grid li {
  min-height: 285px;
  padding: 30px 34px 35px 0;
  border-right: 1px solid var(--line-light);
}

.ritual-grid li + li {
  padding-left: 34px;
}

.ritual-grid li:last-child {
  border-right: 0;
}

.ritual-grid span {
  color: #876a38;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.ritual-grid h3 {
  margin: 56px 0 14px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}

.ritual-grid p {
  margin: 0;
  color: rgba(11, 11, 12, 0.63);
  line-height: 1.7;
}

.final-cta {
  display: grid;
  place-items: center;
  padding: 120px 24px;
  text-align: center;
  color: var(--white);
  background: #242120;
}

.final-cta h2 {
  max-width: 800px;
}

.final-cta > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 34px;
  color: rgba(255, 253, 248, 0.65);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 64px 4vw;
  color: var(--white);
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}

.footer-brand p {
  margin: 16px 0 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 28px;
  color: rgba(255, 253, 248, 0.57);
  font-size: 0.78rem;
}

.footer-meta p {
  margin: 0;
}

.footer-meta a {
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}

.selection-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
  backdrop-filter: blur(5px);
  transition: opacity 220ms ease;
}

.selection-backdrop.is-visible {
  opacity: 1;
}

.selection-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  display: flex;
  width: min(490px, 100%);
  height: 100dvh;
  flex-direction: column;
  padding: 30px;
  background: var(--paper);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.2);
  transform: translateX(105%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.selection-panel.is-open {
  transform: translateX(0);
}

.selection-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line-light);
}

.selection-header .eyebrow {
  margin-bottom: 10px;
}

.selection-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 400;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}

.selection-empty {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.selection-empty > span {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 3.4rem;
}

.selection-empty h3 {
  margin: 28px 0 8px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
}

.selection-empty p {
  max-width: 280px;
  margin: 0 0 26px;
  color: rgba(11, 11, 12, 0.62);
}

.selection-content {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
}

.selection-list {
  min-height: 0;
  flex: 1;
  margin: 0;
  padding: 6px 0;
  overflow-y: auto;
  list-style: none;
}

.selection-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
}

.selection-swatch {
  display: grid;
  width: 58px;
  height: 68px;
  place-items: center;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.selection-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 400;
}

.selection-item p {
  margin: 4px 0 0;
  color: rgba(11, 11, 12, 0.58);
  font-size: 0.75rem;
}

.remove-button {
  min-width: 44px;
  min-height: 44px;
  color: rgba(11, 11, 12, 0.56);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.selection-summary {
  padding: 22px 0;
  border-top: 1px solid var(--ink);
}

.selection-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.selection-summary strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
}

.selection-summary p {
  margin: 10px 0 0;
  color: rgba(11, 11, 12, 0.56);
  font-size: 0.75rem;
}

.order-form {
  display: grid;
  gap: 14px;
  padding: 0 0 8px;
}

.order-form-heading {
  margin-bottom: 2px;
}

.order-form-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
}

.order-form-heading p {
  margin: 5px 0 0;
  color: rgba(11, 11, 12, 0.58);
  font-size: 0.8rem;
}

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

.form-field > span {
  font-size: 0.82rem;
  font-weight: 650;
}

.form-field input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(11, 11, 12, 0.28);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 253, 248, 0.52);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field input::placeholder {
  color: rgba(11, 11, 12, 0.4);
}

.form-field input:focus {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(201, 168, 106, 0.38);
}

.form-error {
  margin: -2px 0 0;
  color: #8a2c2c;
  font-size: 0.8rem;
}

.form-note {
  margin: -5px 0 0;
  color: rgba(11, 11, 12, 0.52);
  font-size: 0.72rem;
  text-align: center;
}

.order-form .button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.clear-button {
  min-height: 44px;
  color: rgba(11, 11, 12, 0.56);
  border: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  max-width: min(390px, calc(100% - 48px));
  padding: 14px 18px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

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

  .hero-copy {
    min-height: 720px;
    padding-top: 138px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .philosophy {
    min-height: 620px;
    grid-template-columns: 0.55fr 1.45fr;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 18px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-note {
    display: none;
  }

  .selection-button > span:first-child {
    display: none;
  }

  .selection-button {
    padding: 6px;
    border-color: transparent;
  }

  .hero-copy {
    min-height: 680px;
    padding: 124px 22px 46px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.7rem);
  }

  .hero-intro {
    margin-top: 26px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
  }

  .hero-facts {
    gap: 10px;
    padding-top: 30px;
  }

  .hero-facts dd {
    font-size: 0.72rem;
  }

  .hero-visual {
    min-height: 490px;
  }

  .hero-visual figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    font-size: 0.64rem;
  }

  .section-shell {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .philosophy h2,
  .final-cta h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .product-art {
    aspect-ratio: 1.08 / 1;
    min-height: 0;
  }

  .product-description {
    min-height: 0;
  }

  .philosophy {
    display: block;
    min-height: 650px;
  }

  .philosophy-number {
    position: absolute;
    bottom: 0;
    left: -12vw;
    margin: 0;
    font-size: 34rem;
  }

  .philosophy-copy {
    padding: 96px 22px;
  }

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

  .ritual-grid li,
  .ritual-grid li + li {
    min-height: 0;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .ritual-grid h3 {
    margin-top: 30px;
  }

  .final-cta {
    padding: 92px 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 50px 22px;
  }

  .footer-meta {
    justify-content: flex-start;
  }

  .selection-panel {
    padding: 24px 20px;
  }
}

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

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