:root {
  color-scheme: light;
  --ink: #0d0f0d;
  --ink-2: #17231c;
  --paper: #f5efe4;
  --paper-2: #fff9ef;
  --soft: #e5d7c2;
  --muted: #6a6256;
  --green: #063f2d;
  --green-2: #0e6548;
  --gold: #c99a35;
  --gold-2: #f0ca75;
  --bronze: #8a6427;
  --cyan: var(--green-2);
  --magenta: var(--gold);
  --acid: var(--gold-2);
  --amber: var(--gold);
  --line: rgba(17, 17, 22, 0.14);
  --line-light: rgba(255, 250, 241, 0.18);
  --header-height: 86px;
  --shadow: 0 26px 70px rgba(17, 17, 22, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5%, 64px);
  border-bottom: 1px solid transparent;
  color: #fffaf1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active,
.site-header.is-solid {
  border-bottom-color: var(--line);
  background: rgba(244, 239, 231, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(17, 17, 22, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  border: 1px solid rgba(201, 154, 53, 0.34);
  border-radius: 18px;
  background: var(--paper-2);
  box-shadow: 0 14px 34px rgba(13, 15, 13, 0.14);
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.05rem;
  font-weight: 950;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 850;
  opacity: 0.72;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-weight: 850;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

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

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: end;
  padding: calc(var(--header-height) + 70px) clamp(18px, 5%, 72px) 58px;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.055) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(255, 250, 241, 0.045) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, #070806 0%, #102b20 48%, #211607 100%);
  background-size: 78px 78px, 78px 78px, auto;
  color: #fffaf1;
}

#artScene {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(17, 17, 22, 0.1), rgba(17, 17, 22, 0.58)),
    repeating-linear-gradient(90deg, transparent 0 4px, rgba(255, 250, 241, 0.018) 4px 5px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--acid);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green-2);
}

.hero h1 {
  max-width: 1060px;
  margin: 0;
  font-size: 6.6rem;
  line-height: 0.9;
}

.hero-copy > .eyebrow,
.hero-copy h1,
.hero-copy > p:not(.eyebrow),
.hero-actions {
  position: relative;
  z-index: 3;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 780px;
  margin: 28px 0 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 1.2rem;
}

.hero-actions,
.sub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-photo-orbit {
  position: absolute;
  top: clamp(54px, 8vw, 92px);
  right: clamp(-170px, -10vw, -74px);
  z-index: 2;
  width: min(560px, 42vw);
  height: clamp(198px, 22vw, 272px);
  margin-top: 0;
  overflow: hidden;
  border-block: 1px solid rgba(255, 250, 241, 0.18);
  perspective: 1100px;
  opacity: 0.92;
}

.hero-photo-orbit::before,
.hero-photo-orbit::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.hero-photo-orbit::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(234, 198, 110, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(255, 250, 241, 0.1) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(255, 250, 241, 0.07) 0 1px, transparent 1px 100%);
  background-size: auto, 46px 46px, 46px 46px;
  opacity: 0.42;
}

.hero-photo-orbit::after {
  background: radial-gradient(circle at 50% 42%, transparent 0 52%, rgba(7, 8, 6, 0.36) 74%, rgba(7, 8, 6, 0.72) 100%);
}

.hero-film-strip {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform-style: preserve-3d;
  animation: filmStripTurn 32s linear infinite;
  will-change: transform;
}

.hero-photo-orbit:hover .hero-film-strip {
  animation-play-state: paused;
}

.hero-film-frame {
  --step: 0deg;
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(120px, 14vw, 180px);
  aspect-ratio: 1.55;
  margin: 0;
  border: 10px solid #0a0b08;
  border-block-width: 24px;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.08), rgba(234, 198, 110, 0.14), rgba(255, 250, 241, 0.08)),
    #0a0b08;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 250, 241, 0.12);
  transform: translate(-50%, -50%) rotateY(var(--step)) translateZ(clamp(166px, 22vw, 278px));
  transform-style: preserve-3d;
}

.hero-film-frame::before,
.hero-film-frame::after {
  position: absolute;
  left: 0;
  right: 0;
  height: 9px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 250, 241, 0.8) 0 12px,
    transparent 12px 26px
  );
  content: "";
  opacity: 0.9;
}

.hero-film-frame::before {
  top: -17px;
}

.hero-film-frame::after {
  bottom: -17px;
}

.hero-film-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.hero-film-frame:nth-child(1) {
  --step: 0deg;
}

.hero-film-frame:nth-child(2) {
  --step: 45deg;
}

.hero-film-frame:nth-child(3) {
  --step: 90deg;
}

.hero-film-frame:nth-child(4) {
  --step: 135deg;
}

.hero-film-frame:nth-child(5) {
  --step: 180deg;
}

.hero-film-frame:nth-child(6) {
  --step: 225deg;
}

.hero-film-frame:nth-child(7) {
  --step: 270deg;
}

.hero-film-frame:nth-child(8) {
  --step: 315deg;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 0;
  padding: 0 22px;
  font-weight: 950;
  cursor: pointer;
}

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

.button-ghost {
  background: rgba(255, 250, 241, 0.04);
  color: #fffaf1;
}

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

.hero-index {
  position: absolute;
  right: clamp(18px, 5%, 72px);
  bottom: 58px;
  z-index: 2;
  display: grid;
  width: min(310px, 36vw);
  gap: 10px;
  color: rgba(255, 250, 241, 0.72);
  font-weight: 850;
}

.hero-index span {
  border-top: 1px solid rgba(255, 250, 241, 0.22);
  padding-top: 10px;
}

.studio-section,
.packages-section,
.contact-section,
.legal-main {
  padding: 96px clamp(18px, 5%, 72px);
  background: var(--paper);
}

.visuals-section {
  padding: 96px clamp(18px, 5%, 72px);
  background:
    radial-gradient(circle at 78% 12%, rgba(201, 154, 53, 0.2), transparent 34%),
    linear-gradient(135deg, #fff9ef 0%, #f3e7d4 52%, #e5d7c2 100%);
}

.services-section,
.process-section {
  padding: 96px clamp(18px, 5%, 72px);
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.055) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(255, 250, 241, 0.045) 0 1px, transparent 1px 100%),
    var(--ink);
  background-size: 70px 70px, 70px 70px, auto;
  color: #fffaf1;
}

.section-head {
  width: min(980px, 100%);
  margin: 0 auto 44px;
}

.section-head.light {
  color: #fffaf1;
}

.section-head h2,
.contact-copy h2,
.legal-hero h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 0.98;
}

.section-head p:not(.eyebrow),
.contact-copy p,
.legal-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-head.light p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.72);
}

.studio-grid,
.service-grid,
.package-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 14px;
}

.visual-grid {
  display: grid;
  width: min(1280px, 100%);
  margin: 0 auto;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.premium-story-grid {
  display: grid;
  width: min(1280px, 100%);
  margin: 0 auto 42px;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.visual-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 15, 13, 0.16);
  background: var(--ink);
  box-shadow: 0 18px 54px rgba(13, 15, 13, 0.13);
}

.visual-card.wide {
  grid-column: span 2;
}

.visual-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  aspect-ratio: 1.16;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.visual-card.wide img {
  aspect-ratio: 1.92;
}

.premium-story-card.lead {
  grid-column: span 2;
  grid-row: span 2;
}

.premium-story-card.lead img {
  min-height: 560px;
  aspect-ratio: 1.1;
}

.premium-story-card img {
  min-height: 272px;
  aspect-ratio: 1.34;
}

.premium-story-card.wide {
  grid-column: span 2;
}

.premium-story-card.wide img {
  aspect-ratio: 1.92;
}

.visual-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(13, 15, 13, 0.78));
  content: "";
}

.visual-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.055);
}

.visual-card figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  color: #fff9ef;
}

.visual-card figcaption span,
.visual-card figcaption strong {
  display: block;
}

.visual-card figcaption span {
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.visual-card figcaption strong {
  font-size: 1.35rem;
  line-height: 1.05;
}

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

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

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

.studio-grid article,
.service-grid article,
.package-grid article {
  min-height: 280px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  padding: 30px;
}

.service-grid article {
  border-color: var(--line-light);
  background: rgba(255, 250, 241, 0.06);
}

.package-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  box-shadow: 0 18px 54px rgba(17, 17, 22, 0.09);
}

.package-grid article.featured {
  background: var(--ink);
  color: #fffaf1;
}

.studio-grid span,
.service-grid span,
.package-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--green-2);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-grid span,
.package-grid article.featured span {
  color: var(--acid);
}

.studio-grid h3,
.service-grid h3,
.package-grid h3 {
  margin: 0 0 14px;
  font-size: 1.65rem;
  line-height: 1.05;
}

.studio-grid p,
.service-grid p,
.package-grid p,
.package-grid li {
  margin: 0;
  color: var(--muted);
}

.service-grid p,
.package-grid article.featured li {
  color: rgba(255, 250, 241, 0.72);
}

.package-grid strong {
  font-size: 2rem;
  line-height: 1;
}

.package-grid ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding-left: 18px;
}

.process-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  align-items: start;
  border: 1px solid var(--line-light);
  background: rgba(255, 250, 241, 0.06);
  padding: 24px;
}

.process-list span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  background: var(--acid);
  color: var(--ink);
  font-weight: 950;
}

.process-list h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.process-list p {
  margin: 0;
  color: rgba(255, 250, 241, 0.72);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.64fr);
  gap: 42px;
  align-items: start;
}

.contact-copy {
  max-width: 760px;
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.direct-contact a {
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--green-2);
  padding: 14px 16px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(17, 17, 22, 0.08);
}

.direct-contact a:hover {
  border-color: var(--green-2);
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  padding: 24px;
  box-shadow: 0 18px 54px rgba(17, 17, 22, 0.09);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-2);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5%, 72px);
  background: var(--ink);
  color: rgba(255, 250, 241, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
}

.footer-links a,
.footer-links button {
  border: 0;
  background: transparent;
  color: #fffaf1;
  padding: 0;
  font-weight: 850;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  width: min(480px, calc(100% - 48px));
  gap: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.96);
  padding: 18px;
  box-shadow: var(--shadow);
}

.cookie-banner[hidden],
.cookie-panel[hidden] {
  display: none;
}

.cookie-banner strong,
.cookie-panel-card strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 44px;
  padding-inline: 15px;
}

.cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: rgba(17, 17, 22, 0.54);
  padding: 18px;
}

.cookie-panel-card {
  display: grid;
  width: min(520px, 100%);
  gap: 16px;
  background: var(--paper-2);
  padding: 24px;
}

.cookie-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-panel-head button {
  border: 0;
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}

.cookie-panel-card label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.cookie-panel-card label span {
  color: var(--muted);
}

.text-button {
  justify-self: start;
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  color: var(--green-2);
  padding: 0 0 3px;
  font-weight: 900;
  cursor: pointer;
}

.legal-main {
  padding-top: calc(var(--header-height) + 78px);
}

.legal-hero,
.legal-article {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-hero {
  margin-bottom: 42px;
}

.legal-article {
  display: grid;
  border: 1px solid var(--line);
  background: var(--paper-2);
  box-shadow: 0 18px 54px rgba(17, 17, 22, 0.08);
}

.legal-article section {
  display: grid;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 28px;
}

.legal-article h2 {
  margin: 0;
  font-size: 1.5rem;
}

.legal-article p,
.legal-article li {
  margin: 0;
  color: var(--muted);
}

.legal-note {
  margin: 0;
  border-left: 4px solid var(--acid);
  padding: 22px 28px;
  color: var(--ink) !important;
  font-weight: 850;
}

@keyframes markTurn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes filmStripTurn {
  from {
    transform: rotateX(-8deg) rotateY(0deg);
  }

  to {
    transform: rotateX(-8deg) rotateY(-360deg);
  }
}

@media (max-width: 1050px) {
  .hero h1 {
    font-size: 4.8rem;
  }

  .hero-photo-orbit {
    position: relative;
    top: auto;
    right: auto;
    width: min(920px, 100%);
    height: 300px;
    margin-top: 28px;
  }

  .hero-film-frame {
    width: 186px;
    transform: translate(-50%, -50%) rotateY(var(--step)) translateZ(260px);
  }

  .section-head h2,
  .contact-copy h2,
  .legal-hero h1 {
    font-size: 3.2rem;
  }

  .studio-grid,
  .service-grid,
  .package-grid,
  .premium-story-grid,
  .visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-card.wide {
    grid-column: span 2;
  }

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

@media (max-width: 760px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand {
    max-width: calc(100vw - 92px);
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    min-height: calc(100svh - var(--header-height));
    align-content: start;
    background: rgba(244, 239, 231, 0.98);
    color: var(--ink);
    padding: 30px 18px;
  }

  .site-header.nav-active .site-nav {
    display: grid;
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    font-size: 1.4rem;
  }

  .hero {
    min-height: 720px;
    padding: calc(var(--header-height) + 54px) 18px 36px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-index {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 34px;
  }

  .hero-photo-orbit {
    height: 276px;
    margin-top: 24px;
  }

  .hero-film-frame {
    width: 158px;
    border-width: 8px;
    border-block-width: 20px;
    transform: translate(-50%, -50%) rotateY(var(--step)) translateZ(215px);
  }

  .studio-section,
  .packages-section,
  .contact-section,
  .services-section,
  .process-section,
  .visuals-section,
  .legal-main {
    padding: 68px 18px;
  }

  .section-head h2,
  .contact-copy h2,
  .legal-hero h1 {
    font-size: 2.45rem;
  }

  .studio-grid,
  .service-grid,
  .package-grid,
  .premium-story-grid,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .visual-card.wide,
  .premium-story-card.lead,
  .premium-story-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .visual-card img,
  .premium-story-card.lead img,
  .visual-card.wide img {
    min-height: 280px;
    aspect-ratio: 1.2;
  }

  .studio-grid article,
  .service-grid article,
  .package-grid article {
    min-height: 0;
    padding: 22px;
  }

  .process-list li {
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 18px;
  }

  .process-list span {
    width: 52px;
    height: 52px;
  }

  .hero-actions,
  .cookie-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}

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

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