:root {
  --ink: #0d0d0d;
  --charcoal: #181614;
  --paper: #f7f4ef;
  --sand: #e9dfd1;
  --line: rgba(13, 13, 13, .14);
  --muted: #6f6860;
  --accent: #9b7354;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.topbar {
  background: var(--charcoal);
  color: rgba(255,255,255,.86);
  text-align: center;
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 5vw;
  background: rgba(247,244,239,.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-logo img {
  width: auto;
  height: 46px;
  max-width: 240px;
  object-fit: contain;
}
.nav { display: flex; gap: 28px; font-size: 13px; font-weight: 850; letter-spacing: .03em; text-transform: uppercase; }
.nav.right { justify-content: flex-end; }
.nav a { opacity: .78; }
.nav a:hover { opacity: 1; }
.menu-toggle { display: none; border: 0; background: none; font-size: 30px; }
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 60; background: var(--paper); padding: 28px; }
.mobile-nav.open { display: block; }
.mobile-nav button { float: right; border: 0; background: none; font-size: 34px; }
.mobile-nav a { display: block; padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 28px; font-weight: 850; letter-spacing: -.04em; }

.hero {
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  background: var(--charcoal);
  color: #fff;
}
.hero-copy {
  padding: 8vw 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: -.055em;
}
h1 { margin: 0; font-size: clamp(48px, 8vw, 118px); line-height: .88; }
.hero-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255,255,255,.72);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 0;
  border: 1px solid currentColor;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn.primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.hero .btn.primary { background: #fff; color: var(--ink); border-color: #fff; }
.hero .btn.secondary { color: #fff; }
.btn.secondary { background: transparent; }
.hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #211e1a;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24,22,20,.3), rgba(24,22,20,0));
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section { padding: 92px 5vw; }
.section.alt { background: #fff; }
.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head h2 { margin: 0; font-size: clamp(38px, 5.5vw, 78px); line-height: .88; }
.section-head p { color: var(--muted); line-height: 1.6; margin: 0; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}
.card-img {
  aspect-ratio: 4 / 5;
  background: var(--sand);
  overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 18px; }
.card-body h3 { margin: 8px 0 10px; font-size: 24px; }
.card-body p { color: var(--muted); line-height: 1.5; }
.price-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 14px 0 18px; }
.price { font-size: 20px; font-weight: 950; }
.compare { color: var(--muted); text-decoration: line-through; }
.badge {
  display: inline-flex;
  padding: 6px 9px;
  background: var(--paper);
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: #fff;
}
.editorial-band > div { padding: 64px 5vw; border-right: 1px solid rgba(255,255,255,.16); }
.editorial-band strong { display: block; margin-bottom: 12px; font-size: 22px; font-family: "Space Grotesk"; letter-spacing: -.04em; }
.editorial-band span { color: rgba(255,255,255,.7); line-height: 1.55; }

.product-page {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 5vw;
  padding: 54px 5vw 92px;
}
.product-body { background: #fff; }
.product-header {
  background: #dcefff;
  border-bottom: 0;
}
.product-header .nav { justify-content: flex-end; }
.menu-toggle.always { display: block; }
.profile-icon {
  display: none;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
}
.profile-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #050505;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fashion-product {
  background: #fff;
}
@media (min-width: 901px) {
  .fashion-product {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, .82fr);
    column-gap: 46px;
    padding: 46px 5vw 0;
  }
  .fashion-gallery {
    position: sticky;
    top: 104px;
    align-self: start;
    width: 100%;
    margin: 0;
  }
  .main-photo {
    height: 720px;
    min-height: 0;
    border-radius: 18px;
  }
  .thumbs {
    padding: 18px 0 0;
    border-bottom: 0;
  }
  .fashion-info {
    width: 100%;
    padding: 8px 0 54px;
  }
  .product-essentials,
  .clean-guide {
    grid-column: 1 / -1;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.fashion-gallery {
  max-width: 1440px;
  margin: 0 auto;
}
.main-photo {
  width: 100%;
  height: min(68vw, 820px);
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f1f1f1;
}
.main-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.thumbs {
  display: flex;
  gap: 12px;
  padding: 22px 5vw;
  border-bottom: 1px solid rgba(13,13,13,.16);
}
.thumb {
  width: 86px;
  height: 86px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(13,13,13,.18);
  border-radius: 14px;
  background: #f4f4f4;
  cursor: pointer;
}
.thumb.active { border: 2px solid #272033; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.fashion-info {
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px 5vw 54px;
}
.fashion-review {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  font-size: 19px;
  font-style: italic;
  font-weight: 950;
}
.fashion-review .stars {
  color: #ffdb19;
  font-size: 29px;
  letter-spacing: -2px;
}
.fashion-info h1 {
  margin: 0 0 16px;
  color: #302a3f;
  font-family: Inter, sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 500;
}
.fashion-price {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}
.fashion-price .old-price,
.fashion-price .current-price {
  margin: 0;
  display: inline-flex;
  font-family: Inter, sans-serif;
  line-height: 1;
}
.fashion-price .old-price {
  color: #8d8a8a;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-decoration: line-through;
}
.fashion-price .current-price {
  color: #000;
  font-size: clamp(27px, 3.2vw, 39px);
  font-weight: 950;
  letter-spacing: -.04em;
}
.save-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #dcefff;
  color: #111;
  font-size: 20px;
  font-weight: 950;
}
.benefit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 18px;
  margin: 18px 0;
  border-top: 1px solid rgba(13,13,13,.2);
}
.benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: center;
  min-height: 86px;
  padding: 18px 22px;
  border-radius: 12px;
  background: #f1f1f1;
  color: #302a3f;
}
.benefit-card.blue { background: #dcefff; }
.benefit-card > span {
  grid-row: span 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 4px solid #302a3f;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 900;
}
.benefit-card strong {
  font-size: 25px;
  line-height: 1;
}
.benefit-card small {
  font-size: 19px;
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  margin: 20px 0;
  padding: 10px 14px;
  border: 2px dashed #7467d8;
  border-radius: 12px;
  background: #e9f5ff;
  color: #111;
  font-size: 18px;
}
.avatar-stack {
  display: inline-flex;
  margin-right: 4px;
}
.avatar-stack i {
  width: 30px;
  height: 30px;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b1b1b, #b9b9b9);
}
.avatar-stack i:first-child { margin-left: 0; }
.verified {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #1688ff;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.choice-block {
  margin-top: 22px;
}
.choice-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.choice-head span {
  color: #766d64;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.choice-head strong,
.choice-head a {
  font-size: 14px;
  font-weight: 900;
}
.choice-head a { text-decoration: underline; text-underline-offset: 4px; }
.compact-choice { margin-top: 20px; }
.fashion-colors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.fashion-colors button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #ddd;
  border-radius: 14px;
  background: #fff;
  font-weight: 850;
  cursor: pointer;
}
.fashion-colors button b,
.fashion-colors button small,
.fashion-sizes button small {
  display: block;
}
.fashion-colors button small,
.fashion-sizes button small {
  margin-top: 2px;
  color: #8d8a8a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.fashion-colors button.active {
  border: 2px solid #302a3f;
}
.fashion-colors span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.18);
  background: var(--swatch);
}
.fashion-sizes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.fashion-sizes button {
  min-height: 54px;
  border-radius: 999px;
  border: 1.5px solid #8d8a97;
  background: #fff;
  color: #302a3f;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
.fashion-colors button:disabled,
.fashion-sizes button:disabled {
  cursor: not-allowed;
  opacity: .48;
  background: #f5f5f5;
  color: #7a747a;
  text-decoration: line-through;
}
.fashion-colors button:disabled span {
  opacity: .55;
}
.fashion-sizes button.active {
  background: #302a3f;
  color: #fff;
  border-color: #302a3f;
}
.stock-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  color: #126b3a;
  font-size: 14px;
  font-weight: 900;
}
.stock-row span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #12a464;
  box-shadow: 0 0 0 6px rgba(18,164,100,.12);
}
.simple-stock {
  margin: 20px 0 12px;
  color: #222;
}
.buy-button {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 21px;
  font-weight: 950;
  letter-spacing: .08em;
}
.payment-note {
  margin: 14px 0 0;
  text-align: center;
  color: #302a3f;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.product-essentials,
.clean-guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 50px 5vw;
  border-top: 1px solid rgba(13,13,13,.14);
}
.product-essentials h2,
.clean-guide h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 44px);
}
.product-essentials p,
.clean-guide p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.size-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.size-cards div {
  padding: 16px;
  border: 1px solid rgba(13,13,13,.12);
  border-radius: 14px;
  background: #fff;
}
.size-cards b,
.size-cards span,
.size-cards small { display: block; }
.size-cards b { font-size: 20px; }
.size-cards span { margin: 3px 0; font-weight: 800; }
.size-cards small { color: var(--muted); line-height: 1.45; }
.gallery-main {
  min-height: 720px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-info { position: sticky; top: 112px; align-self: start; }
.product-info h1 { font-size: clamp(42px, 6.3vw, 86px); line-height: .9; }
.product-sub { color: var(--muted); font-size: 18px; line-height: 1.65; }
.buy-box { margin-top: 26px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.buy-box .btn { width: 100%; min-height: 64px; font-size: 15px; }
.micro { margin-top: 12px; color: var(--muted); font-size: 13px; text-align: center; }
.details { margin-top: 28px; border-top: 1px solid var(--line); }
.details details { padding: 18px 0; border-bottom: 1px solid var(--line); }
.details summary { cursor: pointer; font-weight: 950; }
.details p, .details li { color: var(--muted); line-height: 1.7; }
.color-note { display: flex; gap: 8px; align-items: center; margin: 22px 0; color: var(--muted); }
.swatch { width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--line); background: var(--swatch, #111); }

.legal { max-width: 920px; margin: 0 auto; padding: 74px 24px; }
.legal h1 { font-size: clamp(42px, 6vw, 74px); }
.legal h2 { margin-top: 36px; font-size: 28px; }
.legal p, .legal li { color: #555; line-height: 1.75; }
input, textarea { border-radius: 0; }

.footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  padding: 58px 5vw;
  background: var(--charcoal);
  color: #fff;
}
.footer p, .footer a { color: rgba(255,255,255,.68); line-height: 1.7; }
.footer a { display: block; margin: 7px 0; }
.footer-logo {
  width: 155px;
  height: auto;
  margin: 0 0 18px;
  filter: invert(1);
  opacity: .92;
}

@media (max-width: 900px) {
  .header { height: 68px; grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: block; }
  .nav { display: none; }
  .brand { justify-self: center; }
  .brand-logo img { height: 38px; max-width: 190px; }
  .hero, .product-page, .editorial-band { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { padding: 56px 24px 38px; }
  .hero-media { min-height: 430px; }
  .section { padding: 62px 24px; }
  .section-head { display: block; }
  .grid { grid-template-columns: 1fr 1fr; }
  .product-page { padding: 24px; gap: 28px; }
  .gallery-main { min-height: 520px; }
  .product-info { position: static; }
  .footer { grid-template-columns: 1fr; padding: 44px 24px; }
  .product-icons { display: none; }
  .profile-icon { display: inline-flex; }
  .product-header {
    height: 76px;
    grid-template-columns: 42px 1fr 42px;
    border-radius: 0 0 22px 22px;
  }
  .product-header .brand-logo {
    justify-self: center;
  }
  .product-header .profile-icon {
    justify-self: end;
  }
  .fashion-info { padding: 22px 20px 42px; }
  .main-photo {
    min-height: 450px;
    height: 62vh;
  }
  .thumbs {
    padding: 18px 20px;
    border-bottom: 0;
  }
  .benefit-row { gap: 12px; }
  .benefit-card {
    padding: 14px;
    column-gap: 11px;
  }
  .benefit-card > span {
    width: 48px;
    height: 48px;
    border-width: 3px;
    font-size: 25px;
  }
  .benefit-card strong { font-size: 20px; }
  .benefit-card small { font-size: 16px; }
  .fashion-sizes { grid-template-columns: repeat(6, 1fr); gap: 12px; }
  .product-essentials,
  .clean-guide {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
  .size-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .gallery-main { min-height: 430px; }
  .topbar {
    padding: 9px 12px;
    font-size: 10px;
    letter-spacing: .05em;
  }
  .product-header {
    height: 74px;
    padding: 0 20px;
  }
  .product-header .brand-logo img { height: 35px; }
  .main-photo {
    height: 64vh;
    min-height: 430px;
  }
  .thumb {
    width: 68px;
    height: 68px;
    border-radius: 12px;
  }
  .fashion-review {
    gap: 6px;
    margin-bottom: 14px;
    font-size: 15px;
  }
  .fashion-review .stars {
    font-size: 22px;
  }
  .fashion-info h1 {
    margin-bottom: 12px;
    font-size: 42px;
    line-height: 1.04;
  }
  .fashion-price {
    gap: 10px;
    margin-bottom: 18px;
  }
  .fashion-price .old-price { font-size: 25px; }
  .fashion-price .current-price { font-size: 28px; }
  .save-pill {
    min-height: 34px;
    padding: 0 13px;
    font-size: 16px;
  }
  .benefit-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 16px 0;
  }
  .benefit-card {
    min-height: 78px;
    padding: 11px;
    column-gap: 9px;
  }
  .benefit-card > span {
    width: 34px;
    height: 34px;
    border-width: 2px;
    font-size: 18px;
  }
  .benefit-card strong {
    font-size: 15px;
    line-height: 1.08;
  }
  .benefit-card small {
    font-size: 12px;
    line-height: 1.15;
  }
  .social-proof {
    align-items: center;
    flex-wrap: wrap;
    font-size: 15px;
  }
  .fashion-colors {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .fashion-colors button {
    min-height: 50px;
  }
  .fashion-sizes {
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
  }
  .fashion-sizes button {
    min-height: 48px;
    font-size: 16px;
  }
  .buy-button {
    min-height: 66px;
    font-size: 18px;
    letter-spacing: .07em;
  }
  .product-essentials,
  .clean-guide {
    padding: 34px 20px;
  }
  .size-cards {
    grid-template-columns: 1fr;
  }
}
