:root {
  --paper: #f7f4ec;
  --paper-deep: #ebe4d6;
  --paper-warm: #fffaf0;
  --ink: #171713;
  --muted: #686155;
  --espresso: #8a4e29;
  --espresso-dark: #4c2b1d;
  --sage: #71816e;
  --sage-soft: #dce2d7;
  --line: rgba(23, 23, 19, 0.14);
  --card: rgba(255, 252, 243, 0.82);
  --shadow: 0 24px 70px rgba(54, 42, 28, 0.14);
  --display: "Bodoni Moda", Georgia, serif;
  --body: "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 236, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  padding: 0 34px;
}

.nav-wordmark {
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 48px);
  letter-spacing: 0.28em;
  line-height: 1;
  white-space: nowrap;
}

.nav-links,
.nav-actions,
.footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.nav-actions button,
.menu-button,
.mobile-menu button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-shop {
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
}

.menu-button {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
  background: var(--paper);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--display);
  font-size: 42px;
}

.hero {
  min-height: min(100svh, 860px);
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
  padding: 96px 42px 34px;
  position: relative;
}

.hero::after {
  content: "STUDIO";
  position: absolute;
  left: 2vw;
  bottom: 1vh;
  z-index: -1;
  font-size: clamp(90px, 18vw, 260px);
  font-weight: 700;
  letter-spacing: -0.06em;
  color: rgba(23, 23, 19, 0.04);
}

.hero-copy {
  max-width: 600px;
  padding-left: clamp(0px, 7vw, 110px);
  position: relative;
}

.hero-copy::after {
  content: "";
  display: block;
  width: min(220px, 42vw);
  height: 1px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--espresso), transparent);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--espresso);
  font-size: clamp(50px, 5.8vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.campaign p,
.fit-card p,
.proof-grid p,
.product-card p,
.footer p {
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.75;
}

.hero-actions,
.card-actions,
.drawer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.button-secondary {
  background: rgba(255, 255, 255, 0.42);
}

.hero-media {
  position: relative;
  margin: 0;
  min-height: clamp(460px, 60svh, 680px);
  border: 1px solid rgba(23, 23, 19, 0.12);
  overflow: hidden;
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 23, 19, 0.18), transparent 34%),
    linear-gradient(180deg, transparent 62%, rgba(23, 23, 19, 0.18));
  mix-blend-mode: multiply;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 60% center;
}

.hero-media figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  background: rgba(247, 244, 236, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-media span,
.product-meta,
.cart-summary,
.search-field span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-proof p {
  margin: 0;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-right: 1px solid var(--line);
}

.hero-proof p:last-child {
  border-right: 0;
}

.hero-proof span {
  color: var(--muted);
}

.ticker {
  display: flex;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.ticker span {
  flex: 1;
  min-width: max-content;
  padding: 16px 28px;
  text-align: center;
  border-right: 1px solid rgba(247, 244, 236, 0.18);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section {
  padding: clamp(70px, 9vw, 130px) 42px;
}

.story-scroll {
  padding-top: clamp(74px, 10vw, 150px);
  padding-bottom: clamp(74px, 10vw, 150px);
  background:
    linear-gradient(180deg, rgba(247, 244, 236, 0), var(--paper-warm) 18%, var(--paper-warm) 86%, rgba(247, 244, 236, 0));
}

.story-intro {
  max-width: 900px;
  margin: 0 auto clamp(34px, 6vw, 78px);
  text-align: center;
}

.story-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.story-intro p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.75;
}

.story-map {
  max-width: 820px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255, 252, 243, 0.74);
}

.story-map a {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  color: var(--espresso-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-map a:last-child {
  border-right: 0;
}

.story-chapters {
  display: grid;
  gap: clamp(28px, 5vw, 70px);
}

.story-chapter {
  scroll-margin-top: 96px;
  min-height: 78svh;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: center;
  opacity: 0.58;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.story-chapter.is-active {
  opacity: 1;
  transform: translateY(0);
}

.story-media {
  position: sticky;
  top: 92px;
  height: min(70svh, 720px);
  border: 1px solid var(--line);
  background: var(--paper-deep);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-media img,
.story-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-chapter:first-child .story-media img,
.story-chapter:first-child .story-media video {
  object-fit: contain;
  background: #e3dfd2;
}

.story-copy {
  max-width: 520px;
  padding: clamp(22px, 4vw, 54px);
  border-left: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 252, 243, 0.86), rgba(235, 228, 214, 0.48));
}

.story-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chapter-kicker {
  margin-bottom: 18px;
  color: var(--espresso);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.96;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
}

.story-proof-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.story-proof-list li {
  position: relative;
  padding-left: 22px;
  color: var(--espresso-dark);
  font-size: 14px;
  line-height: 1.55;
}

.story-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 1px;
  background: var(--espresso);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading h2,
.campaign h2,
.fit-card h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter,
.hold-selector button,
.size-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter.is-active,
.hold-selector button.is-active,
.size-button.is-active {
  border-color: var(--sage);
  background: var(--sage);
  color: white;
}

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

.product-card {
  min-width: 0;
  background: rgba(255, 252, 243, 0.52);
  border: 1px solid var(--line);
  display: grid;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--paper-deep);
}

.product-card-body {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.product-card h3 {
  margin-bottom: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
}

.price-row,
.card-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.card-meta-row {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.campaign {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: stretch;
  padding-top: 0;
}

.campaign img,
.campaign video {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.campaign > div {
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 86px);
  background: var(--sage);
  color: white;
}

.campaign p {
  color: rgba(255, 255, 255, 0.78);
}

.campaign .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.campaign .button {
  width: fit-content;
  border-color: white;
  background: white;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(23, 23, 19, 0.18);
}

.campaign .button:hover,
.campaign .button:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

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

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

.noscript-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 252, 243, 0.58);
  padding: 22px;
}

.noscript-grid strong,
.noscript-grid span {
  display: block;
}

.noscript-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.proof-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 252, 243, 0.5);
  padding: 12px;
}

.proof-grid img,
.proof-grid video {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.proof-grid h3 {
  margin: 18px 0 8px;
  font-size: clamp(30px, 3vw, 46px);
}

.fit {
  padding-top: 0;
}

.fit-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(220px, 0.72fr) minmax(260px, 0.75fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 5vw, 70px);
  border: 1px solid var(--line);
  background: var(--sage-soft);
}

.fit-visual {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(23, 23, 19, 0.12);
  background: var(--paper-deep);
}

.hold-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hold-result {
  margin: 0;
}

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

.support-strip article {
  border: 1px solid var(--line);
  background: rgba(255, 252, 243, 0.54);
  padding: 22px;
}

.support-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.support-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  padding: clamp(70px, 11vw, 150px) 42px;
  text-align: center;
  background: var(--paper-deep);
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px 42px;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

.drawer {
  width: min(560px, calc(100vw - 24px));
  max-height: calc(100svh - 24px);
  margin: 12px 12px 12px auto;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.drawer::backdrop {
  background: rgba(23, 23, 19, 0.28);
}

.drawer-close {
  border: 0;
  background: transparent;
  padding: 0;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.drawer-hero-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 18px;
  background: var(--paper-deep);
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.detail-list dt {
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.drawer-note {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(113, 129, 110, 0.35);
  background: rgba(220, 226, 215, 0.52);
  color: var(--muted);
  line-height: 1.55;
}

.drawer-note strong,
.pairing-block h3 {
  color: var(--ink);
}

.pairing-block {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.pairing-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
  text-align: left;
  color: inherit;
}

.pairing-card img {
  width: 58px;
  height: 72px;
  object-fit: cover;
  background: var(--paper-deep);
}

.pairing-card span {
  display: grid;
  gap: 3px;
  color: var(--muted);
  line-height: 1.35;
}

.cart-line,
.search-result {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img,
.search-result img {
  width: 64px;
  height: 80px;
  object-fit: cover;
}

.cart-line h3,
.search-result h3,
.drawer h2 {
  margin-bottom: 6px;
  font-size: 30px;
  line-height: 1;
}

.cart-summary {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

.search-field {
  display: grid;
  gap: 8px;
}

.search-field span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.search-field input {
  min-height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  padding: 0 14px;
  color: var(--ink);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.search-results {
  margin-top: 18px;
}

@media (max-width: 1040px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .hero,
  .campaign,
  .story-chapter,
  .fit-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-left: 0;
  }

  .story-media {
    position: relative;
    top: auto;
    height: 56svh;
    min-height: 420px;
  }

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

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

@media (max-width: 720px) {
  .nav,
  .section,
  .final-cta,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav {
    min-height: 66px;
  }

  .hero {
    min-height: auto;
    padding: 88px 18px 24px;
    gap: 24px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 0.98;
  }

  .hero-media {
    min-height: 380px;
  }

  .hero-media img,
  .hero-media video {
    object-position: 55% center;
  }

  .hero-proof,
  .product-grid,
  .proof-grid,
  .noscript-grid,
  .support-strip,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-proof p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof p:last-child {
    border-bottom: 0;
  }

  .ticker {
    overflow-x: auto;
  }

  .campaign img,
  .campaign video {
    min-height: 420px;
  }

  .story-scroll {
    padding-left: 18px;
    padding-right: 18px;
  }

  .story-map {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .story-map a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-map a:last-child {
    border-bottom: 0;
  }

  .story-chapter {
    min-height: auto;
    opacity: 1;
    transform: none;
  }

  .story-media {
    min-height: 340px;
    height: 48svh;
  }

  .story-copy {
    padding: 22px 0 0;
    border-left: 0;
    background: transparent;
  }

  .drawer {
    width: calc(100vw - 16px);
    max-height: calc(100svh - 16px);
    margin: 8px;
    padding: 20px;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
