:root {
  --paper: #f5f5f7;
  --sand-50: #f2eef7;
  --sand-100: #e9e1f2;
  --sand-200: #d8c9e7;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --white: #ffffff;
  --accent: #8f6aae;
  --accent-deep: #6f4b91;
  --line: rgba(29, 29, 31, 0.1);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 38px;
  --shadow: 0 18px 60px rgba(31, 24, 38, 0.08);
  --content: min(1200px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.47;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  display: none;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(143, 106, 174, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 100;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transform: translate(-50%, -180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.section-shell {
  width: var(--content);
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: 76px;
}

.rounded-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.9rem, 7vw, 6.65rem);
}

h2 {
  font-size: clamp(3.25rem, 5.8vw, 5.8rem);
}

h1 em,
h2 em {
  color: var(--accent);
  font-weight: inherit;
  font-style: normal;
}

h1 span,
h1 em {
  display: block;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

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

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

.button--dark:hover {
  background: var(--accent-deep);
  border-color: var(--accent);
}

.button--ghost {
  border-color: rgba(29, 29, 31, 0.42);
  background: rgba(255, 255, 255, 0.56);
}

.button--ghost:hover {
  background: var(--white);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(29, 29, 31, 0.07);
  background: rgba(250, 250, 252, 0.78);
  backdrop-filter: saturate(180%) blur(22px);
}

.site-header__inner {
  display: grid;
  width: min(1080px, calc(100% - 48px));
  min-height: 54px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.site-header__brand {
  justify-self: start;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav__link {
  position: relative;
  color: rgba(29, 29, 31, 0.72);
  font-size: 0.74rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.site-nav__link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--ink);
}

.site-nav__link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header__shop {
  justify-self: end;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
}

.side-nav {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  display: flex;
  width: 118px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 30px 18px 34px;
  border-right: 1px solid var(--line);
  background: rgba(252, 250, 255, 0.86);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.5rem;
}

.side-nav nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.side-nav__link {
  position: relative;
  display: flex;
  min-width: 80px;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: color 180ms ease;
}

.side-nav__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.35;
  transition: transform 180ms ease, opacity 180ms ease;
}

.side-nav__link:hover,
.side-nav__link.is-active {
  color: var(--ink);
}

.side-nav__link.is-active .side-nav__dot {
  opacity: 1;
  transform: scale(1.7);
}

.side-nav__number {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mobile-header {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: auto;
  flex-direction: column;
  align-items: center;
  gap: 54px;
  padding-block: 150px 96px;
  text-align: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 0.08em;
  line-height: 1;
}

.hero__intro {
  max-width: 690px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  letter-spacing: -0.015em;
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  box-shadow: 0 28px 90px rgba(42, 31, 52, 0.1);
  background: var(--sand-100);
}

.hero__visual--video {
  isolation: isolate;
  aspect-ratio: 4 / 5;
}

.hero__video-stack {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

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

.hero__visual video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1);
  transform-origin: center;
  transition: opacity 850ms ease, filter 800ms ease, transform 1400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero__visual video.is-active {
  opacity: 1;
}

.hero__visual--video:hover video {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.012);
}

/* Keep the portrait film compact on laptops and larger screens so its full
   frame is visible without making the hero section unnecessarily tall. */
@media (min-width: 821px) {
  .hero__visual--video {
    width: min(420px, 100%);
    margin-inline: auto;
  }
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 68%, rgba(24, 18, 29, 0.3));
}

.hero__visual figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue {
  display: none;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue__line {
  position: relative;
  display: block;
  width: 54px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue__line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--ink);
  animation: scroll-line 1.8s ease-in-out infinite;
  transform: translateX(-100%);
}

@keyframes scroll-line {
  50%,
  100% {
    transform: translateX(100%);
  }
}

.teasers {
  padding-block: 132px 156px;
}

.section-heading {
  display: flex;
  flex-direction: column;
}

.teasers .section-heading {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

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

.teaser-card {
  display: block;
  padding: 8px 8px 18px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 40px rgba(34, 24, 42, 0.04);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 420ms ease;
}

.teaser-card--offset {
  transform: none;
}

.teaser-card__image {
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  background: var(--sand-100);
}

.teaser-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.teaser-card:hover {
  box-shadow: 0 22px 54px rgba(34, 24, 42, 0.08);
  transform: translateY(-5px);
}

.teaser-card:hover img {
  transform: scale(1.018);
}

.teaser-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 12px 0;
}

.teaser-card__meta strong {
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.teaser-card__meta span {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.spin-story {
  position: relative;
  height: 280vh;
  color: var(--white);
  background: #111013;
}

.spin-stage {
  position: sticky;
  top: 0;
  display: flex;
  width: 100%;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 70px max(7vw, 148px);
  overflow: hidden;
}

.spin-stage__copy {
  display: none;
}

.spin-stage__copy p:last-child {
  max-width: 390px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.spin-stage .eyebrow {
  color: #cbb5df;
}

.spin-stage h2 em {
  color: #bea1d7;
}

.spin-stage__visual {
  position: relative;
  display: grid;
  width: min(50vw, 560px);
  aspect-ratio: 1;
  place-items: center;
}

.spin-stage__halo {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 237, 251, 0.18) 0 36%, transparent 68%),
    linear-gradient(145deg, rgba(115, 79, 144, 0.42), rgba(40, 30, 47, 0.2));
  box-shadow: inset 0 0 90px rgba(213, 188, 233, 0.1), 0 0 90px rgba(133, 93, 165, 0.1);
  transform: scale(var(--halo-scale, 0.86));
}

.spin-product {
  position: relative;
  z-index: 1;
  width: min(62%, 390px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  filter: drop-shadow(0 28px 30px rgba(70, 51, 35, 0.16));
  transform:
    translateY(var(--spin-y, 18px))
    rotate(var(--spin-angle, -24deg))
    scale(var(--spin-scale, 0.92));
  transition: filter 180ms ease;
  will-change: transform;
}

.spin-product.is-changing {
  animation: spin-product-change 420ms ease both;
}

@keyframes spin-product-change {
  0% {
    opacity: 0.45;
    transform:
      translateY(var(--spin-y, 18px))
      rotate(var(--spin-angle, -24deg))
      scale(calc(var(--spin-scale, 0.92) * 0.94));
  }

  100% {
    opacity: 1;
  }
}

.spin-index,
.spin-label {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.spin-index {
  top: 15%;
  right: 11%;
}

.spin-label {
  bottom: 13%;
  left: 8%;
}

.spin-options {
  display: grid;
  width: auto;
  grid-template-columns: repeat(4, 64px);
  gap: 12px;
}

.spin-option {
  display: block;
  width: 64px;
  min-width: 0;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  font: inherit;
  font-size: 0.66rem;
  letter-spacing: 0.02em;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.spin-option__image {
  display: block;
  width: 58px;
  height: 58px;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: #2a222d;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transition: border-color 220ms ease, box-shadow 320ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.spin-option__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spin-option > span:last-child {
  display: block;
  margin-top: 9px;
  font-size: 0.56rem;
  line-height: 1.2;
  text-align: center;
}

.spin-option:hover,
.spin-option.is-selected {
  color: var(--white);
}

.spin-option:hover .spin-option__image,
.spin-option.is-selected .spin-option__image {
  border-color: #cbb5df;
  box-shadow: 0 0 0 2px #111013, 0 0 0 4px #cbb5df, 0 12px 26px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.spin-option:focus-visible {
  outline: 2px solid #cbb5df;
  outline-offset: 5px;
}

.spin-progress {
  display: none;
}

.spin-progress__bar {
  display: block;
  width: var(--spin-percent, 0%);
  height: 100%;
  background: #c8addd;
}

.custom-process {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  padding-block: 138px 132px;
}

.custom-process__intro {
  max-width: 540px;
}

.custom-process__intro h2 {
  margin-bottom: 26px;
}

.custom-process__intro > p:not(.eyebrow) {
  max-width: 500px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.custom-process__step {
  display: flex;
  min-height: 255px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 14px 44px rgba(34, 24, 42, 0.035);
}

.custom-process__step > span {
  color: var(--accent-deep);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.custom-process__step h3 {
  margin: 36px 0 12px;
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.custom-process__step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.offers {
  display: block;
  padding-block: 154px 176px;
}

.offers__intro {
  position: static;
  max-width: 880px;
  margin: 0 auto 94px;
  text-align: center;
}

.offers__intro > p {
  max-width: 600px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.offer-groups {
  min-width: 0;
}

.offer-group + .offer-group {
  margin-top: 138px;
}

.offer-group__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding: 0 4px 18px;
  border-bottom: 1px solid var(--line);
}

.offer-group__heading h3 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(2.25rem, 3.6vw, 3.8rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.offer-group__heading span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-group__description {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

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

.product-card:nth-child(even) {
  transform: none;
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 8px 8px 24px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 38px rgba(34, 24, 42, 0.045);
  backface-visibility: hidden;
  transition:
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 1100ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.product-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 26px;
  background: var(--sand-100);
}

.product-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: var(--media-focus, 50% 50%);
  transition: transform 1300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card__image--figurine {
  background: linear-gradient(145deg, var(--sand-50), var(--sand-100));
}

.product-card__image--figurine img {
  padding: 0;
  object-fit: cover;
}

.product-card:hover {
  box-shadow: 0 24px 60px rgba(34, 24, 42, 0.09);
  transform: translateY(-6px);
}

.product-card:hover .product-card__image img {
  transform: scale(1.018);
}

.product-card__image--one img {
  object-position: 4% center;
}

.product-card__image--two img {
  object-position: 36% center;
}

.product-card__image--three img {
  object-position: 67% center;
}

.product-card__image--four img {
  object-position: 96% center;
}

.product-card__image > span {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.product-card__body {
  display: block;
  padding: 20px 14px 0;
}

.product-card__body > div {
  min-width: 0;
}

.product-card__body p {
  margin: 0 0 2px;
  font-family: inherit;
  font-size: 1.28rem;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.product-card__body div > span {
  color: var(--muted);
  font-size: 0.72rem;
}

.round-link {
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--sand-50);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 180ms ease, color 180ms ease;
}

.round-link:hover {
  background: var(--accent-deep);
  color: var(--white);
}

.social {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 18px;
  padding-block: 146px;
}

.social__card {
  display: flex;
  min-height: 700px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(38px, 5vw, 72px);
  border-radius: 34px;
  background: linear-gradient(145deg, #211a27, #151217 72%);
  color: var(--white);
  box-shadow: 0 26px 80px rgba(28, 20, 34, 0.14);
}

.social__card .eyebrow,
.social__card > p {
  color: rgba(255, 254, 251, 0.66);
}

.social__card h2 {
  max-width: 100%;
  font-size: clamp(3rem, 4.2vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.social__card > p {
  max-width: 460px;
}

.social__mosaic {
  display: grid;
  min-height: 700px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1.25fr 0.75fr;
  gap: 12px;
}

.social__tile {
  overflow: hidden;
  border-radius: 28px;
  background: var(--sand-100);
}

.social__tile--wide {
  grid-column: 1 / -1;
}

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

.social__tile:nth-child(1) img {
  object-position: center 44%;
}

.social__tile:nth-child(2) img {
  object-position: 15% center;
}

.social__tile:nth-child(3) img {
  object-position: 85% center;
}

.contact {
  display: flex;
  min-height: 72vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 160px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 30px;
}

.contact > p:not(.eyebrow) {
  max-width: 500px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact__email {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(111, 75, 145, 0.42);
  color: var(--accent-deep);
  font-size: clamp(1.35rem, 3vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.footer {
  display: grid;
  width: 100%;
  min-height: 190px;
  margin-left: 0;
  grid-template-columns: 0.8fr 1.2fr auto;
  align-items: start;
  gap: 50px;
  padding: 48px max(6vw, 46px) 30px;
  border-top: 1px solid var(--line);
  background: #ebe7ef;
  color: var(--muted);
  font-size: 0.75rem;
}

.footer__brand {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer p {
  max-width: 340px;
  margin: 0;
}

.footer nav {
  display: flex;
  gap: 20px;
}

.footer > span {
  align-self: end;
  grid-column: 3;
}

.reveal-ready {
  opacity: 0;
  translate: 0 22px;
  transition:
    opacity 680ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms),
    translate 680ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms);
}

.reveal-ready.is-visible {
  opacity: 1;
  translate: 0 0;
}

/* Keep the card hover motion smooth after the scroll reveal is attached. */
.product-card.reveal-ready,
.teaser-card.reveal-ready {
  transition:
    opacity 680ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms),
    translate 680ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1080px) {
  :root {
    --content: min(100% - 64px, 940px);
  }

  .side-nav {
    display: none;
  }

  .site-header {
    display: none;
  }

  .mobile-header {
    position: fixed;
    top: 12px;
    right: 16px;
    left: 16px;
    z-index: 40;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px 8px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(250, 250, 252, 0.84);
    box-shadow: 0 10px 30px rgba(34, 24, 42, 0.06);
    backdrop-filter: saturate(180%) blur(20px);
  }

  .mobile-header__brand {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.09em;
  }

  .mobile-menu-button {
    min-width: 68px;
    min-height: 40px;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font: inherit;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-menu {
    position: absolute;
    top: 68px;
    right: 0;
    display: flex;
    min-width: 210px;
    flex-direction: column;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .mobile-menu a:hover {
    background: var(--sand-50);
  }

  .hero {
    padding-top: 120px;
  }

  .spin-stage {
    padding-inline: 44px;
  }

  .spin-progress {
    left: 44px;
  }

  .footer {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --content: calc(100% - 32px);
    --radius-lg: 32px;
    --radius-md: 24px;
  }

  h1 {
    font-size: clamp(3.35rem, 14vw, 5.4rem);
  }

  h2 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
    padding-block: 130px 92px;
  }

  .hero__copy {
    max-width: 650px;
  }

  .hero__visual {
    aspect-ratio: 4 / 5;
  }

  .scroll-cue {
    display: none;
  }

  .teasers {
    padding-block: 90px 110px;
  }

  .teasers .section-heading {
    margin-bottom: 46px;
  }

  .teaser-grid {
    display: flex;
    margin-right: -16px;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .teaser-card {
    min-width: min(76vw, 360px);
    scroll-snap-align: start;
  }

  .teaser-card--offset {
    transform: none;
  }

  .spin-story {
    height: 240vh;
  }

  .spin-stage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 84px 18px 58px;
  }

  .spin-stage__copy {
    width: 100%;
    max-width: 560px;
  }

  .spin-stage__copy p:last-child {
    display: none;
  }

  .spin-stage__visual {
    width: min(94vw, 590px);
    flex: 0 1 auto;
  }

  .spin-label {
    max-width: 160px;
  }

  .spin-progress {
    right: 18px;
    bottom: 36px;
    left: 18px;
  }

  .custom-process {
    display: block;
    padding-block: 112px 108px;
  }

  .custom-process__intro {
    max-width: 650px;
  }

  .custom-process__steps {
    margin-top: 54px;
  }

  .offers {
    display: block;
    padding-block: 112px 142px;
  }

  .offers__intro {
    position: static;
    margin-bottom: 72px;
  }

  .offers__intro > p {
    max-width: 560px;
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px 14px;
  }

  .product-card:nth-child(even) {
    transform: none;
  }

  .product-card__body {
    display: block;
  }

  .round-link {
    margin-top: 14px;
  }

  .social {
    display: block;
    padding-block: 80px;
  }

  .social__card {
    min-height: 600px;
  }

  .social__card h2 {
    font-size: clamp(3rem, 8.5vw, 4.7rem);
  }

  .social__mosaic {
    min-height: 520px;
    margin-top: 14px;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
    padding-inline: 24px;
  }

  .footer nav {
    justify-content: flex-end;
  }

  .footer > span {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .eyebrow {
    margin-bottom: 15px;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero__visual figcaption {
    font-size: 0.56rem;
  }

  .offer-grid {
    display: block;
  }

  .offer-group + .offer-group {
    margin-top: 92px;
  }

  .offer-group__heading {
    margin-bottom: 26px;
  }

  .custom-process__steps {
    display: block;
    margin-top: 42px;
  }

  .custom-process__step {
    min-height: auto;
    margin-bottom: 12px;
  }

  .custom-process__step h3 {
    margin-top: 28px;
  }

  .offer-group__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .offer-group__description {
    font-size: 0.84rem;
  }

  .product-card,
  .product-card:nth-child(even) {
    margin-bottom: 22px;
    transform: none;
  }

  .product-card__body {
    display: block;
  }

  .round-link {
    margin-top: 14px;
  }

  .social__card {
    min-height: 540px;
    padding: 32px 24px;
  }

  .social__card h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .social__mosaic {
    min-height: 440px;
  }

  .contact {
    min-height: 68vh;
  }

  .contact__email {
    font-size: 1.2rem;
  }

  .footer {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 26px;
  }

  .footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

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

  .spin-product {
    transform: rotate(-8deg);
  }

  .hero__visual--video video,
  .hero__visual--video:hover video {
    filter: none;
    transform: none;
  }

  .hero__visual video {
    transition: opacity 120ms linear;
  }
}

@media (prefers-reduced-motion: reduce) and (hover: hover) {
  .product-card,
  .product-card.reveal-ready {
    transition:
      transform 1100ms cubic-bezier(0.16, 1, 0.3, 1) !important,
      box-shadow 1100ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .product-card:hover {
    transform: translateY(-3px);
  }

  .product-card__image img {
    transition: transform 1300ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .product-card:hover .product-card__image img {
    transform: scale(1.008);
  }
}
