:root {
  --paper: #fcfaff;
  --sand-50: #f5f0fb;
  --sand-100: #e9def5;
  --sand-200: #d8c6eb;
  --ink: #2d2833;
  --muted: #746b7d;
  --white: #fffaff;
  --accent: #9a79b8;
  --line: rgba(64, 49, 76, 0.14);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 46px;
  --shadow: 0 22px 70px rgba(60, 47, 33, 0.09);
  --content: min(1180px, calc(100vw - 184px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 5%, rgba(216, 198, 235, 0.42), transparent 28rem),
    var(--paper);
  font-family: "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

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(165, 116, 79, 0.55);
  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;
}

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

.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.048em;
  line-height: 0.92;
}

h1 {
  font-size: clamp(4rem, 7.2vw, 7.9rem);
}

h2 {
  font-size: clamp(3.4rem, 6vw, 6.8rem);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

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

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

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

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

.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: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(34px, 6vw, 100px);
  padding-block: 70px 110px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__intro {
  max-width: 520px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  box-shadow: var(--shadow);
  background: var(--sand-100);
}

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

.hero__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 64%, rgba(31, 25, 19, 0.2));
}

.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 {
  position: absolute;
  bottom: 36px;
  left: 0;
  display: flex;
  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: 120px 150px;
}

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

.teasers .section-heading {
  max-width: 760px;
  margin-bottom: 70px;
}

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

.teaser-card {
  display: block;
}

.teaser-card--offset {
  transform: translateY(52px);
}

.teaser-card__image {
  display: block;
  aspect-ratio: 0.78;
  background: var(--sand-100);
  box-shadow: 0 16px 44px rgba(60, 47, 33, 0.06);
}

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

.teaser-card:nth-child(1) img {
  object-position: 12% center;
}

.teaser-card:nth-child(2) img {
  object-position: 50% center;
}

.teaser-card:nth-child(3) img {
  object-position: 88% center;
}

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

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

.teaser-card__meta strong {
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
}

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

.spin-story {
  position: relative;
  height: 280vh;
  background: var(--sand-50);
}

.spin-stage {
  position: sticky;
  top: 0;
  display: grid;
  width: 100%;
  min-height: 100svh;
  grid-template-columns: minmax(300px, 0.75fr) minmax(420px, 1.25fr);
  align-items: center;
  gap: 4vw;
  padding: 70px max(7vw, 148px);
  overflow: hidden;
}

.spin-stage__copy {
  position: relative;
  z-index: 2;
}

.spin-stage__copy p:last-child {
  max-width: 390px;
  margin: 30px 0 0;
  color: var(--muted);
}

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

.spin-stage__halo {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 253, 255, 0.99) 0 39%, transparent 70%),
    linear-gradient(145deg, rgba(255, 252, 255, 0.8), rgba(216, 198, 235, 0.48));
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.82);
  transform: scale(var(--halo-scale, 0.86));
}

.spin-product {
  position: relative;
  z-index: 1;
  width: 62%;
  max-height: 72%;
  object-fit: contain;
  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-index,
.spin-label {
  position: absolute;
  z-index: 2;
  color: var(--muted);
  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-progress {
  position: absolute;
  right: 36px;
  bottom: 9vh;
  left: 148px;
  height: 1px;
  background: var(--line);
}

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

.offers {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(45px, 8vw, 120px);
  padding-block: 160px;
}

.offers__intro {
  align-self: start;
  position: sticky;
  top: 90px;
}

.offers__intro > p {
  max-width: 410px;
  margin-top: 34px;
  color: var(--muted);
}

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

.product-card:nth-child(even) {
  transform: translateY(82px);
}

.product-card__image {
  position: relative;
  aspect-ratio: 0.82;
  background: var(--sand-100);
}

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

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

.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;
  background: rgba(255, 254, 251, 0.86);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.product-card__body {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 5px 0;
}

.product-card__body p {
  margin: 0 0 2px;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.45rem;
}

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

.round-link {
  display: inline-flex;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

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

.social {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 22px;
  padding-block: 130px;
}

.social__card {
  display: flex;
  min-height: 680px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(34px, 5vw, 70px);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
}

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

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

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

.social__tile {
  overflow: hidden;
  border-radius: var(--radius-md);
  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: 78vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 130px;
  text-align: center;
}

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

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

.contact__email {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2.8rem);
}

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

.footer__brand {
  color: var(--ink);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}

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

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

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

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

  .side-nav {
    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(252, 250, 255, 0.9);
    box-shadow: 0 10px 30px rgba(50, 40, 29, 0.06);
    backdrop-filter: blur(18px);
  }

  .mobile-header__brand {
    font-family: "Iowan Old Style", Georgia, serif;
    letter-spacing: 0.08em;
  }

  .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.5rem, 15vw, 6rem);
  }

  h2 {
    font-size: clamp(3.2rem, 13vw, 5.5rem);
  }

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

  .hero__copy {
    max-width: 650px;
  }

  .hero__visual {
    aspect-ratio: 0.86;
  }

  .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;
  }

  .offers {
    display: block;
    padding-block: 100px 150px;
  }

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

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

  .offer-grid {
    gap: 52px 14px;
  }

  .product-card:nth-child(even) {
    transform: translateY(58px);
  }

  .product-card__body {
    display: block;
  }

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

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

  .social__card {
    min-height: 600px;
  }

  .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;
  }

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

  .product-card__body {
    display: flex;
  }

  .round-link {
    margin-top: 0;
  }

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

  .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);
  }
}
