:root {
  --canvas: #f3efe5;
  --surface: #fbf8f0;
  --ink: #1b2c22;
  --muted: #696a61;
  --forest: #173326;
  --forest-deep: #0c2118;
  --forest-soft: #304a36;
  --gold: #b98a2f;
  --gold-light: #d4b46c;
  --border: #d8d0bf;
  --red: #914038;
  --serif: "Cormorant Garamond", "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: Montserrat, "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --wide: 1380px;
  --main: 1200px;
  --header-height: 72px;
  --shadow: 0 16px 40px rgba(22, 44, 32, .09);
}

/* Soft page transitions and scroll reveals. */
.motion-ready body{animation:hemp-page-enter .7s cubic-bezier(.22,.7,.25,1) both}
.motion-ready.is-leaving body{opacity:0;transform:translateY(-6px);transition:opacity .23s ease,transform .23s ease}
.motion-ready [data-reveal]{opacity:0;filter:blur(3px);transform:translateY(24px);transition:opacity .75s ease var(--reveal-delay,0ms),transform .75s cubic-bezier(.22,.7,.25,1) var(--reveal-delay,0ms),filter .75s ease var(--reveal-delay,0ms)}
.motion-ready [data-reveal].is-visible{opacity:1;filter:none;transform:none}
@keyframes hemp-page-enter{from{opacity:0}to{opacity:1}}
@media (prefers-reduced-motion:reduce){.motion-ready body{animation:none}.motion-ready [data-reveal]{opacity:1;filter:none;transform:none}.motion-ready.is-leaving body{opacity:1;transform:none}}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.55), transparent 22rem),
    var(--canvas);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: clip;
}

body.has-overlay { overflow: hidden; }

button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: min(calc(100% - 64px), var(--main));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  padding: .75rem 1rem;
  background: var(--surface);
  color: var(--ink);
}

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

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

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  height: var(--header-height);
  color: var(--ink);
  background: rgba(247, 243, 234, .94);
  border-bottom: 1px solid rgba(23, 51, 38, .12);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 64px), var(--wide));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand-link { display: block; }
.brand-link img { width: clamp(185px, 15vw, 250px); height: auto; }

.icon-button,
.drawer-close,
.save-button {
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.icon-button img { width: 23px; height: 23px; }
.menu-trigger { display: none; }

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: clamp(15px, 1.55vw, 26px);
  align-items: center;
}

.desktop-nav a {
  position: relative;
  padding: 26px 0 24px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease-out;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-current::after { right: 0; }

.header-actions { display: flex; gap: 6px; }
.request-trigger { position: relative; }

.request-count {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-size: 10px;
  font-weight: 700;
}

.mobile-menu,
.request-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
}

.mobile-menu[hidden],
.request-drawer[hidden] { display: none; }

.drawer-backdrop {
  grid-column: 1;
  grid-row: 1;
  border: 0;
  background: rgba(7, 21, 15, .58);
  cursor: pointer;
}

.mobile-menu-panel,
.request-panel {
  grid-column: 2;
  grid-row: 1;
  min-height: 100%;
  padding: 32px;
  background: var(--surface);
  box-shadow: -16px 0 48px rgba(0,0,0,.14);
}

.mobile-menu-panel { display: flex; flex-direction: column; gap: 0; }

.mobile-menu-panel > a {
  padding: 19px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 28px;
  text-decoration: none;
}

.drawer-heading {
  min-height: 54px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.drawer-heading > span,
.drawer-heading .eyebrow { padding-top: 8px; }
.drawer-heading h2 { margin: 0 0 20px; font: 500 42px/1 var(--serif); }
.drawer-close { font-size: 34px; line-height: 1; }

.search-panel {
  width: min(720px, calc(100% - 32px));
  margin: 12vh auto 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.search-panel::backdrop { background: rgba(7, 21, 15, .62); backdrop-filter: blur(4px); }

.search-panel-inner {
  padding: clamp(24px, 5vw, 48px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.search-panel label {
  display: block;
  margin-bottom: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 600;
}

.search-field { display: grid; grid-template-columns: 1fr auto; }
.search-field input { min-width: 0; height: 54px; padding: 0 16px; border: 1px solid var(--border); background: #fff; }
.search-field button { min-height: 54px; padding: 0 24px; color: #fff; background: var(--forest); border: 1px solid var(--forest); cursor: pointer; }
.search-note { margin: 13px 0 0; color: var(--muted); font-size: 13px; }

.request-panel { display: flex; flex-direction: column; }
.request-items { display: grid; gap: 10px; }
.request-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.request-item strong { font: 500 20px/1.2 var(--serif); }
.request-item button { min-height: 44px; border: 0; background: transparent; color: var(--muted); text-decoration: underline; cursor: pointer; }
.request-empty { color: var(--muted); }
.request-contact { margin-top: auto; }

.women-hero {
  position: relative;
  min-height: min(810px, calc(100svh - var(--header-height)));
  overflow: hidden;
  color: var(--surface);
  background: #523e2c;
}

.women-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.women-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 26, 19, .77) 0%, rgba(13, 26, 19, .48) 34%, rgba(13, 26, 19, .06) 64%),
    linear-gradient(0deg, rgba(11, 22, 16, .38), transparent 45%);
}

.women-hero-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), var(--main));
  min-height: min(810px, calc(100svh - var(--header-height)));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 88px 0 100px;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  font-weight: 600;
}

.hero-kicker { color: var(--gold-light); }

.women-hero h1 {
  margin: 0;
  font: 500 clamp(92px, 10vw, 154px)/.75 var(--serif);
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 34px 0 20px;
  font: 500 clamp(34px, 4vw, 58px)/.94 var(--serif);
  text-transform: uppercase;
}

.hero-rule { width: min(340px, 100%); display: flex; align-items: center; gap: 12px; }
.hero-rule span { height: 1px; flex: 1; background: rgba(255,255,255,.5); }
.hero-rule img { width: 24px; filter: brightness(0) invert(1); opacity: .9; }
.hero-materials { margin: 14px 0 28px; font: 400 18px/1.4 var(--serif); letter-spacing: .04em; }
.hero-facts { display:none; width:min(520px,100%); margin-top:30px; padding-top:18px; border-top:1px solid rgba(212,180,108,.3); }
.hero-facts p { flex:1; margin:0; padding:0 18px; border-left:1px solid rgba(212,180,108,.25); }
.hero-facts p:first-child { padding-left:0; border-left:0; }
.hero-facts strong,.hero-facts span { display:block; }
.hero-facts strong { color:var(--gold-light); font:500 18px/1 var(--serif); }
.hero-facts span { margin-top:5px; color:rgba(255,255,255,.63); text-transform:uppercase; letter-spacing:.13em; font-size:7px; }
.hero-seal { display:none; }

@media (min-width: 1024px) {
  .women-hero {
    min-height: min(820px, calc(100svh - var(--header-height)));
    background:
      radial-gradient(circle at 18% 28%, rgba(55, 82, 60, .42), transparent 28rem),
      linear-gradient(rgba(7,27,18,.9),rgba(7,27,18,.94)),
      url("assets/details/charcoal-hemp-fabric-texture.avif") center / cover,
      var(--forest-deep);
  }

  .women-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 130px;
    background: linear-gradient(transparent, rgba(7, 20, 14, .58));
    pointer-events: none;
  }

  .women-hero-image {
    inset: 0 0 0 auto;
    width: min(48%, 720px);
    object-position: center 13%;
    clip-path: polygon(8% 0,100% 0,100% 100%,0 100%,4% 82%,1% 63%,5% 43%,2% 22%);
  }

  .women-hero-shade {
    z-index: 1;
    background:
      linear-gradient(90deg, var(--forest-deep) 0%, rgba(12,33,24,.98) 38%, rgba(12,33,24,.82) 48%, rgba(12,33,24,.08) 66%),
      linear-gradient(0deg, rgba(7,20,14,.28), transparent 42%);
  }

  .women-hero-copy {
    min-height: min(820px, calc(100svh - var(--header-height)));
    padding: 78px 0 92px;
  }

  .women-hero-copy::before {
    content:"";
    position:absolute;
    z-index:0;
    left:-190px;
    bottom:-170px;
    width:620px;
    height:620px;
    background:
      radial-gradient(ellipse at 0 100%,transparent 0 38%,rgba(212,180,108,.15) 38.2% 38.45%,transparent 38.7%),
      radial-gradient(ellipse at 0 100%,transparent 0 48%,rgba(212,180,108,.12) 48.2% 48.45%,transparent 48.7%),
      radial-gradient(ellipse at 0 100%,transparent 0 58%,rgba(212,180,108,.1) 58.2% 58.45%,transparent 58.7%),
      radial-gradient(ellipse at 0 100%,transparent 0 68%,rgba(212,180,108,.08) 68.2% 68.45%,transparent 68.7%);
    opacity:.75;
    pointer-events:none;
  }

  .women-hero-copy::after {
    content:"W / 26";
    position:absolute;
    left:46%;
    top:75px;
    color:rgba(212,180,108,.22);
    writing-mode:vertical-rl;
    text-orientation:mixed;
    text-transform:uppercase;
    letter-spacing:.32em;
    font:500 10px/1 var(--sans);
  }

  .women-hero-copy > * { max-width: 45%; }
  .women-hero h1 { font-size: clamp(78px, 6.9vw, 112px); line-height: .78; }
  .hero-subtitle { margin-top: 30px; font-size: clamp(34px, 3.25vw, 49px); line-height: .96; }
  .hero-rule { width: min(330px, 44%); }
  .hero-materials { font-size: 17px; }
  .hero-facts { display:flex; }
  .women-hero .button-light { color:#fff; background:linear-gradient(110deg,#a97825,var(--gold)); border-color:var(--gold-light); box-shadow:0 12px 28px rgba(0,0,0,.18); }
  .women-hero .button-light:hover { color:var(--ink); background:var(--surface); border-color:var(--surface); }
  .hero-seal { position:absolute; z-index:4; top:98px; right:calc(min(48%,720px) - 35px); width:76px; height:76px; display:grid; place-items:center; padding:9px; border:1px solid rgba(212,180,108,.72); border-radius:50%; background:rgba(8,30,20,.9); box-shadow:0 12px 32px rgba(0,0,0,.24); }
  .hero-seal::after { content:""; position:absolute; inset:5px; border:1px solid rgba(212,180,108,.3); border-radius:50%; }
  .hero-seal img { width:100%; height:100%; object-fit:contain; }
  .hero-index { z-index: 3; }
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 25px;
  border: 1px solid currentColor;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
  transition: background 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out;
}

.button-light { color: var(--ink); background: var(--surface); border-color: var(--surface); }
.button-light:hover { color: #fff; background: var(--forest); border-color: var(--forest); }
.button-dark { color: #fff; background: var(--forest); border-color: var(--forest); }
.button-dark:hover { background: var(--forest-soft); border-color: var(--forest-soft); }
.button-gold { color: var(--forest-deep); background: var(--gold-light); border-color: var(--gold-light); }
.button-gold:hover { background: var(--surface); border-color: var(--surface); }

.hero-index {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 9px;
}

.hero-index span:first-child { font: 400 30px/1 var(--serif); }

.values-ribbon {
  min-height: 66px;
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 4vw, 64px);
  color: #fff;
  background: var(--forest);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 10px;
}

.values-ribbon i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-light); }

.collection-section { padding: 110px 0 120px; }
.section-intro { padding-bottom: 64px; border-bottom: 1px solid var(--border); }
.section-intro .eyebrow,
.category-heading .eyebrow { color: var(--gold); }
.section-intro-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 80px; align-items: end; }
.section-intro h2,
.category-heading h2,
.draped-copy h2,
.business-path h2 {
  margin: 0;
  font: 500 clamp(50px, 6.4vw, 88px)/.92 var(--serif);
  letter-spacing: -.035em;
}
.section-intro-grid > p,
.category-heading > p { max-width: 480px; margin: 0 0 7px; color: var(--muted); font: 400 18px/1.65 var(--serif); }

.filter-shell {
  min-height: 92px;
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--border);
}

.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  min-height: 44px;
  padding: 0 18px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 10px;
  cursor: pointer;
}
.filter-chip:hover,
.filter-chip.is-active { color: #fff; background: var(--forest); border-color: var(--forest); }

.filter-meta { display: flex; align-items: center; gap: 14px; white-space: nowrap; }
.filter-meta p { margin-right: 8px; color: var(--muted); font-size: 12px; }
.filter-meta label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.filter-meta select { min-height: 44px; padding: 0 38px 0 14px; color: var(--ink); background: var(--surface); border: 1px solid var(--border); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px 24px;
  padding-top: 48px;
}

.product-card[hidden] { display: none; }
.product-card { min-width: 0; }
.product-image-wrap { position: relative; aspect-ratio: 4 / 5.35; overflow: hidden; background: #ddd3c3; }
.product-image-wrap > img { width: 100%; height: 100%; object-fit: cover; transition: transform 260ms ease-out; }
.product-card:hover .product-image-wrap > img { transform: scale(1.015); }

.save-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(23,51,38,.15);
  border-radius: 50%;
  background: rgba(251,248,240,.9);
  backdrop-filter: blur(8px);
}
.save-button img { width: 22px; height: 22px; }
.save-button[aria-pressed="true"] { background: var(--gold-light); }

.product-number {
  position: absolute;
  left: 15px;
  bottom: 13px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--ink);
  background: rgba(251,248,240,.85);
  font: 500 13px/1 var(--serif);
}

.product-copy { min-height: 82px; padding: 16px 2px 0; display: flex; justify-content: space-between; gap: 14px; border-top: 1px solid rgba(23,51,38,.08); }
.product-copy h3 { margin: 0 0 4px; font: 500 clamp(21px, 2vw, 27px)/1.05 var(--serif); }
.product-copy p { margin: 0; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: 9px; }
.swatches { display: flex; gap: 5px; padding-top: 5px; }
.swatch { width: 13px; height: 13px; border: 1px solid rgba(23,51,38,.18); border-radius: 50%; }
.swatch.natural { background: #d7cbb7; }
.swatch.earth { background: #92765e; }
.swatch.charcoal { background: #3a3a38; }
.swatch.ivory { background: #f4efe4; }
.swatch.oat { background: #d9ccba; }
.swatch.flax { background: #c4b398; }
.swatch.pearl { background: #eee8dc; }

.empty-state { padding: 70px 0 10px; text-align: center; }
.empty-state h3 { margin: 0; font: 500 34px/1.1 var(--serif); }
.empty-state p { color: var(--muted); }

.editorial-story { min-height: 900px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); }
.dark-story { color: #fff; background: #151a18; }
.story-image { min-height: 900px; overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; }
.story-copy { position: relative; padding: clamp(70px, 8vw, 130px) clamp(48px, 7vw, 110px); overflow: hidden; }
.story-copy::before { content: "W / 26"; position: absolute; right: -18px; top: 40px; color: rgba(255,255,255,.035); font: 500 170px/1 var(--serif); transform: rotate(90deg); }
.story-copy .eyebrow { color: var(--gold-light); }
.story-copy h2 { margin: 0; font: 500 clamp(62px, 7vw, 105px)/.87 var(--serif); text-transform: uppercase; }
.red-rule { width: 72px; height: 2px; margin: 38px 0 28px; background: var(--red); }
.story-copy > p:not(.eyebrow) { max-width: 420px; color: rgba(255,255,255,.78); font: 400 19px/1.7 var(--serif); }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 22px; margin-top: 18px; text-transform: uppercase; letter-spacing: .15em; font-size: 11px; font-weight: 600; text-decoration: none; border-bottom: 1px solid currentColor; }
.texture-note { position: absolute; left: clamp(48px, 7vw, 110px); right: 0; bottom: 0; height: 230px; margin: 0; overflow: hidden; }
.texture-note img { width: 100%; height: 100%; object-fit: cover; }
.texture-note figcaption { position: absolute; inset: auto 0 0; padding: 23px 28px; display: flex; justify-content: space-between; gap: 18px; background: linear-gradient(transparent, rgba(0,0,0,.72)); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; }

.category-edit { padding: 120px 0; background: var(--surface); }
.category-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; margin-bottom: 56px; }
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.category-card { padding: 0; color: var(--ink); background: var(--canvas); border: 1px solid var(--border); text-align: left; cursor: pointer; overflow: hidden; }
.category-card img { width: 100%; height: clamp(280px, 30vw, 420px); object-fit: cover; object-position: center 30%; transition: transform 240ms ease-out; }
.category-card:hover img { transform: scale(1.02); }
.category-card > span { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 0 18px; font: 500 24px/1 var(--serif); }
.category-card small { color: var(--gold); font: 600 9px/1 var(--sans); letter-spacing: .1em; }
.category-card b { font: 400 16px/1 var(--sans); }

.campaign-feature { position: relative; min-height: 780px; color: #fff; background: var(--forest-deep); overflow: hidden; }
.campaign-feature > img { position: absolute; inset: 0 0 0 auto; width: 52%; height: 100%; object-fit: cover; object-position: center 18%; }
.campaign-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--forest-deep) 0%, rgba(12,33,24,.98) 37%, rgba(12,33,24,.5) 55%, rgba(12,33,24,.03) 74%); }
.campaign-copy { position: relative; z-index: 2; width: min(calc(100% - 64px), var(--main)); min-height: 780px; margin-inline: auto; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.campaign-copy > * { max-width: 52%; }
.campaign-copy h2 { margin: 0; font: 500 clamp(70px, 8vw, 120px)/.86 var(--serif); text-transform: uppercase; }
.campaign-copy > p:not(.eyebrow) { margin: 28px 0 32px; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }

.draped-story { min-height: 900px; display: grid; grid-template-columns: .8fr 1.2fr; background: #ddd3c2; }
.draped-copy { padding: clamp(70px, 8vw, 130px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.draped-copy .eyebrow { color: var(--gold); }
.draped-copy > p:not(.eyebrow) { max-width: 420px; color: #575b54; font: 400 19px/1.7 var(--serif); }
.draped-images { min-height: 900px; padding-bottom: 36px; display: grid; grid-template-rows: auto auto; align-content: start; background: #cfc4b2; }
.draped-main { width: 100%; height: clamp(700px, 52vw, 900px); min-height: 0; object-fit: cover; object-position: center 20%; }
.draped-detail { position: static; width: min(68%, 620px); height: auto; aspect-ratio: 1410 / 621; margin: 24px 0 0 32px; object-fit: cover; border: 8px solid var(--surface); box-shadow: var(--shadow); }

.business-path { position: relative; overflow: hidden; padding: 92px 0; color: #fff; background: var(--forest); }
.business-art { position: absolute; inset: 0 auto 0 0; opacity: .12; }
.business-art img { height: 100%; width: auto; filter: brightness(0) invert(1); }
.business-inner { position: relative; display: grid; grid-template-columns: 1.2fr .8fr auto; gap: 48px; align-items: center; }
.business-path .eyebrow { color: var(--gold-light); }
.business-path h2 { font-size: clamp(44px, 5vw, 68px); }
.business-inner > p { color: rgba(255,255,255,.75); font: 400 17px/1.6 var(--serif); }

.site-footer { padding: 86px 0 26px; color: rgba(255,255,255,.88); background: var(--forest-deep); }
.footer-top { display: grid; grid-template-columns: 270px 1fr auto; gap: 60px; align-items: center; padding-bottom: 54px; border-bottom: 1px solid rgba(212,180,108,.28); }
.footer-brand img { width: 230px; height: auto; }
.footer-top p { max-width: 570px; margin: 0; color: rgba(255,255,255,.66); font: 400 20px/1.55 var(--serif); }
.footer-return { text-transform: uppercase; letter-spacing: .12em; font-size: 10px; text-decoration: none; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 70px; padding: 58px 0; }
.footer-links h2 { margin: 0 0 18px; color: var(--gold-light); text-transform: uppercase; letter-spacing: .16em; font: 600 10px/1 var(--sans); }
.footer-links a { width: fit-content; display: block; margin: 9px 0; font: 400 18px/1.3 var(--serif); text-decoration: none; }
.footer-links p { max-width: 380px; margin: 0; color: rgba(255,255,255,.57); font-size: 13px; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid rgba(212,180,108,.18); text-transform: uppercase; letter-spacing: .16em; font-size: 8px; }

@media (min-width: 1024px) and (max-width: 1240px) {
  .header-inner { width: calc(100% - 32px); grid-template-columns: minmax(180px, 205px) 1fr auto; gap: 18px; }
  .brand-link img { width: 200px; }
  .desktop-nav { gap: 12px; }
  .desktop-nav a { letter-spacing: .09em; font-size: 9.5px; }
}

@media (max-width: 1023px) {
  .header-inner { width: calc(100% - 40px); grid-template-columns: auto 1fr auto; gap: 22px; }
  .menu-trigger { display: inline-grid; }
  .brand-link { justify-self: center; }
  .desktop-nav { display: none; }
  .container { width: calc(100% - 48px); }
  .section-intro-grid { gap: 48px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .editorial-story { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .business-inner { grid-template-columns: 1fr 1fr; }
  .business-inner .button { grid-column: 2; justify-self: start; }
}

@media (min-width: 761px) and (max-width: 1023px) {
  .women-hero {
    min-height: min(780px, calc(100svh - var(--header-height)));
    background: var(--forest-deep);
  }
  .women-hero-image { inset: 0 0 0 auto; width: 56%; object-position: center 8%; }
  .women-hero-shade {
    background:
      linear-gradient(90deg, var(--forest-deep) 0%, rgba(12,33,24,.98) 41%, rgba(12,33,24,.76) 51%, rgba(12,33,24,.08) 68%),
      linear-gradient(0deg, rgba(7,20,14,.3), transparent 45%);
  }
  .women-hero-copy { min-height: min(780px, calc(100svh - var(--header-height))); padding: 64px 0 78px; }
  .women-hero-copy > * { max-width: 45%; }
  .women-hero h1 { font-size: clamp(58px, 8vw, 76px); }
  .hero-subtitle { margin-top: 27px; font-size: clamp(25px, 3.7vw, 36px); }
  .hero-rule { width: 43%; }
  .hero-materials { font-size: 14px; }
}

@media (max-width: 760px) {
  :root { --header-height: 58px; }
  .container { width: calc(100% - 32px); }
  .site-header { height: var(--header-height); }
  .header-inner { width: calc(100% - 24px); grid-template-columns: 44px 1fr auto; gap: 7px; }
  .brand-link img { width: 168px; }
  .search-trigger { display: none; }
  .header-actions { gap: 0; }

  .mobile-menu,
  .request-drawer { grid-template-columns: 1fr; }
  .drawer-backdrop { grid-column: 1; }
  .mobile-menu-panel,
  .request-panel { grid-column: 1; width: min(90vw, 410px); justify-self: end; padding: 24px; }

  .women-hero { min-height: 740px; }
  .women-hero-image { object-position: center top; }
  .women-hero-shade {
    background:
      linear-gradient(90deg, rgba(9,21,15,.78), rgba(9,21,15,.17) 76%),
      linear-gradient(0deg, rgba(9,21,15,.62), transparent 52%);
  }
  .women-hero-copy { width: calc(100% - 32px); min-height: 740px; justify-content: flex-end; padding: 62px 0 70px; }
  .hero-kicker { margin-bottom: 13px; font-size: 9px; }
  .women-hero h1 { font-size: clamp(62px, 20vw, 82px); line-height: .78; }
  .hero-subtitle { max-width: 290px; margin: 24px 0 16px; font-size: clamp(29px, 9.2vw, 39px); }
  .hero-materials { margin: 11px 0 22px; font-size: 15px; }
  .hero-index { display: none; }
  .button { min-height: 48px; }

  .values-ribbon { min-height: 56px; justify-content: flex-start; overflow: hidden; white-space: nowrap; gap: 20px; font-size: 8px; }
  .collection-section { padding: 76px 0 84px; }
  .section-intro { padding-bottom: 38px; }
  .section-intro-grid,
  .category-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-intro h2,
  .category-heading h2,
  .draped-copy h2 { font-size: clamp(48px, 14vw, 64px); }
  .section-intro-grid > p,
  .category-heading > p { font-size: 17px; }

  .filter-shell { padding: 18px 0 20px; align-items: flex-start; flex-direction: column; }
  .filter-group { width: 100%; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .filter-group::-webkit-scrollbar { display: none; }
  .filter-chip { flex: 0 0 auto; }
  .filter-meta { width: 100%; justify-content: space-between; }
  .filter-meta select { flex: 0 1 190px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 12px; padding-top: 28px; }
  .product-image-wrap { aspect-ratio: 3 / 4.35; }
  .save-button { top: 8px; right: 8px; width: 42px; height: 42px; }
  .product-number { left: 8px; bottom: 8px; }
  .product-copy { min-height: 95px; padding-top: 12px; flex-direction: column; justify-content: flex-start; gap: 4px; }
  .product-copy h3 { font-size: clamp(18px, 5.3vw, 22px); }
  .swatches { padding-top: 2px; }

  .editorial-story { min-height: 0; grid-template-columns: 1fr; }
  .story-image { min-height: 620px; }
  .story-copy { min-height: 700px; padding: 70px 24px 260px; }
  .story-copy h2 { font-size: clamp(52px, 15.3vw, 72px); }
  .texture-note { left: 24px; height: 215px; }
  .texture-note figcaption { padding: 20px; flex-direction: column; gap: 5px; }

  .category-edit { padding: 78px 0; }
  .category-heading { margin-bottom: 36px; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .category-card > span { min-height: 68px; padding: 0 11px; gap: 7px; font-size: 18px; }
  .category-card small { display: none; }

  .category-card img { height: 132px; object-position: center 28%; }
  .category-card:nth-child(3) img,
  .category-card:nth-child(4) img { object-position: center 24%; }

  .campaign-feature { min-height: 700px; }
  .campaign-feature > img { inset: 0; width: 100%; object-position: 58% 18%; }
  .campaign-overlay { background: linear-gradient(0deg, rgba(10,20,14,.72), rgba(10,20,14,.05) 64%); }
  .campaign-copy { width: calc(100% - 32px); min-height: 700px; justify-content: flex-end; padding-bottom: 54px; }
  .campaign-copy > * { max-width: 100%; }
  .campaign-copy h2 { font-size: clamp(56px, 17vw, 82px); }

  .draped-story { min-height: 0; grid-template-columns: 1fr; }
  .draped-copy { padding: 72px 24px; }
  .draped-images { min-height: 0; padding-bottom: 24px; grid-template-rows: auto auto; }
  .draped-main { height: auto; min-height: 0; aspect-ratio: 4 / 5; object-position: center 22%; }
  .draped-detail { width: calc(100% - 32px); max-width: 420px; margin: 16px auto 0; border-width: 5px; box-shadow: 0 8px 24px rgba(23,59,43,.08); }

  .business-path { padding: 74px 0; }
  .business-inner { grid-template-columns: 1fr; gap: 25px; }
  .business-inner .button { grid-column: auto; justify-self: stretch; }
  .business-path h2 { font-size: 48px; }

  .site-footer { padding-top: 66px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; padding-bottom: 40px; }
  .footer-top p { font-size: 18px; }
  .footer-return { justify-self: start; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 44px 24px; padding: 44px 0; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { gap: 16px; flex-direction: column; }
}

@media (max-width: 389px) {
  .brand-link img { width: 145px; }
  .women-hero h1 { font-size: 61px; }
  .product-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card img { height: 150px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-links > div:last-child { grid-column: auto; }
}

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

/* Light catalogue hero inspired by the supplied reference. */
.women-hero {
  color: var(--ink);
  background: radial-gradient(circle at 18% 25%, rgba(255,255,255,.72), transparent 26rem), var(--surface);
}

.women-hero-image {
  inset: 0 0 0 auto;
  width: min(59%, 900px);
  object-position: center 10%;
  clip-path: none;
}

.women-hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, #f8f4ea 0%, rgba(248,244,234,.99) 31%, rgba(248,244,234,.9) 40%, rgba(248,244,234,.42) 53%, transparent 69%),
    linear-gradient(0deg, rgba(12,33,24,.2), transparent 32%);
}

.women-hero::after { height: 115px; background: linear-gradient(transparent, rgba(15,40,27,.28)); }

.women-hero-copy {
  color: var(--ink);
  justify-content: center;
  padding: 38px 0 54px;
}

.women-hero-copy::before,
.women-hero-copy::after { display: none; }

.hero-brand-lockup {
  width: 270px;
  display: grid;
  justify-items: center;
  margin: 0 0 22px;
  text-align: center;
}

.hero-brand-lockup > img { width: 94px; height: 94px; object-fit: contain; }
.hero-brand-lockup p { margin: 7px 0 8px; font: 500 16px/1.05 var(--serif); }
.hero-brand-lockup p span { font-size: 14px; }
.hero-reference-rule { width: 126px; display: flex; align-items: center; gap: 8px; }
.hero-reference-rule i { height: 1px; flex: 1; background: var(--gold); }
.hero-reference-rule img { width: 18px; height: 18px; opacity: .72; }

.women-hero h1 {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #293d29;
  font: 500 clamp(66px, 5.9vw, 92px)/.76 var(--serif);
  letter-spacing: -.045em;
  text-transform: none;
}

.hero-title-rule { width: 30px; height: 2px; display: block; margin: 25px 0 12px; background: var(--gold); }
.hero-subtitle { margin: 0; color: #946b29; font: 500 clamp(20px, 1.65vw, 26px)/1.05 var(--serif); text-transform: none; }
.hero-materials { margin: 17px 0 11px; color: rgba(27,44,34,.72); font: 500 10px/1.3 var(--sans); letter-spacing: .15em; text-transform: uppercase; }
.hero-collection-link { display: inline-flex; align-items: center; gap: 28px; padding: 8px 0 6px; border-bottom: 1px solid var(--gold); color: var(--ink); text-decoration: none; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 650; }
.hero-collection-link span { color: var(--gold); font-size: 14px; }
.hero-seal, .hero-facts { display: none !important; }
.hero-index { z-index: 3; color: #fff; }

@media (min-width: 1024px) {
  .women-hero-copy > * { max-width: 38%; }
  .hero-brand-lockup { max-width: none; }
}

@media (min-width: 761px) and (max-width: 1023px) {
  .women-hero-image { width: 62%; object-position: center 8%; }
  .women-hero-shade { background: linear-gradient(90deg,#f8f4ea 0%,rgba(248,244,234,.98) 35%,rgba(248,244,234,.65) 50%,transparent 72%); }
  .women-hero-copy > * { max-width: 42%; }
  .hero-brand-lockup { width: 220px; max-width: none; }
  .hero-brand-lockup > img { width: 78px; height: 78px; }
  .women-hero h1 { font-size: clamp(54px,7vw,70px); }
  .hero-subtitle { font-size: 20px; }
}

@media (max-width: 760px) {
  .women-hero { min-height: 740px; }
  .women-hero-image { inset: 0; width: 100%; object-position: 58% top; }
  .women-hero-shade {
    background:
      linear-gradient(90deg,rgba(248,244,234,.98) 0%,rgba(248,244,234,.9) 42%,rgba(248,244,234,.18) 79%),
      linear-gradient(0deg,rgba(248,244,234,.72),transparent 45%);
  }
  .women-hero-copy { width: calc(100% - 30px); min-height: 740px; justify-content: flex-start; padding: 34px 0 42px; }
  .hero-brand-lockup { width: 175px; margin-bottom: 23px; }
  .hero-brand-lockup > img { width: 68px; height: 68px; }
  .hero-brand-lockup p { margin-top: 4px; font-size: 13px; }
  .hero-brand-lockup p span { font-size: 11px; }
  .hero-reference-rule { width: 98px; }
  .women-hero h1 { font-size: clamp(48px, 14.5vw, 60px); line-height: .78; }
  .hero-title-rule { margin: 20px 0 10px; }
  .hero-subtitle { max-width: 180px; font-size: 18px; }
  .hero-materials { max-width: 185px; margin-top: 14px; font-size: 7px; }
  .hero-collection-link { gap: 18px; font-size: 8px; }
  .hero-index { display: none; }
}

/* Refined paper-and-fabric presentation. */
@media (min-width: 761px) {
  .women-hero {
    background:
      linear-gradient(rgba(9,31,20,.82),rgba(9,31,20,.9)),
      url("assets/details/charcoal-hemp-fabric-texture.avif") center / cover,
      var(--forest-deep);
  }

  .women-hero-image { object-position: center top; }

  .women-hero-shade {
    background:
      linear-gradient(90deg,rgba(10,34,22,.28) 0%,rgba(10,34,22,.08) 45%,transparent 62%),
      linear-gradient(0deg,rgba(7,24,15,.2),transparent 36%);
  }

  .women-hero-copy::before {
    content:"";
    display:block;
    position:absolute;
    z-index:0;
    left:-80px;
    top:42px;
    bottom:42px;
    width:47%;
    border:1px solid rgba(185,138,47,.42);
    border-left:4px solid var(--gold);
    border-radius:2px 58px 2px 2px;
    background:
      radial-gradient(circle at 22% 16%,rgba(255,255,255,.72),transparent 18rem),
      radial-gradient(rgba(69,62,47,.055) .7px,transparent .7px),
      #f4efe3;
    background-size:auto,7px 7px,auto;
    box-shadow:0 24px 70px rgba(0,0,0,.22);
  }

  .women-hero-copy::after {
    content:"";
    display:block;
    position:absolute;
    z-index:-1;
    left:-76px;
    bottom:46px;
    width:390px;
    height:240px;
    border-radius:0 0 0 2px;
    background:
      radial-gradient(ellipse at 0 100%,transparent 0 42%,rgba(41,61,41,.1) 42.3% 42.7%,transparent 43%),
      radial-gradient(ellipse at 0 100%,transparent 0 55%,rgba(41,61,41,.08) 55.3% 55.7%,transparent 56%),
      radial-gradient(ellipse at 0 100%,transparent 0 68%,rgba(185,138,47,.09) 68.3% 68.7%,transparent 69%);
    pointer-events:none;
  }

  .women-hero-copy > * { max-width:36%; }
  .women-hero-copy > * { position:relative; z-index:1; }
  .hero-brand-lockup { max-width:none; }
  .hero-brand-lockup > img { width:112px; height:96px; }
  .women-hero h1 { font-size:clamp(62px,5.25vw,84px); }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .women-hero-copy::before { left:-16px; width:47%; border-radius:2px 38px 2px 2px; }
  .women-hero-copy::after { left:-12px; width:300px; }
  .women-hero-copy > * { max-width:39%; }
  .hero-brand-lockup { width:210px; max-width:none; }
  .hero-brand-lockup > img { width:88px; height:74px; }
  .women-hero h1 { font-size:clamp(50px,6.2vw,66px); }
}

@media (max-width: 760px) {
  .women-hero {
    min-height:820px;
    color:var(--ink);
    background:var(--forest-deep);
  }

  .women-hero-image { inset:0; width:100%; height:100%; object-position:center top; }

  .women-hero-shade {
    background:
      linear-gradient(0deg,rgba(8,28,18,.44) 0%,transparent 35%),
      linear-gradient(90deg,rgba(8,28,18,.08),transparent 62%);
  }

  .women-hero-copy {
    position:absolute;
    inset:auto 16px 24px;
    width:auto;
    min-height:0;
    margin:0;
    padding:18px 20px 17px;
    justify-content:flex-start;
    border:1px solid rgba(185,138,47,.5);
    border-top:3px solid var(--gold);
    border-radius:2px 30px 2px 2px;
    color:var(--ink);
    background:
      radial-gradient(rgba(69,62,47,.055) .65px,transparent .65px),
      rgba(248,244,234,.95);
    background-size:7px 7px,auto;
    box-shadow:0 20px 44px rgba(7,24,15,.28);
    backdrop-filter:blur(5px);
  }

  .hero-brand-lockup {
    width:100%;
    display:grid;
    grid-template-columns:58px 1fr;
    column-gap:12px;
    justify-items:start;
    align-items:center;
    margin:0 0 10px;
    text-align:left;
  }

  .hero-brand-lockup > img { grid-row:1 / 3; width:58px; height:54px; }
  .hero-brand-lockup p { margin:0; font-size:13px; }
  .hero-brand-lockup p span { font-size:11px; }
  .hero-reference-rule { grid-column:2; width:92px; }
  .women-hero h1 { font-size:clamp(42px,12vw,50px); line-height:.78; }
  .hero-title-rule { width:26px; margin:14px 0 8px; }
  .hero-subtitle { max-width:220px; font-size:16px; line-height:1; }
  .hero-materials { max-width:none; margin:11px 0 7px; font-size:6.5px; }
  .hero-collection-link { gap:16px; padding-top:5px; font-size:7.5px; }
}

/* Soft paper-to-photograph fade, matching the supplied catalogue reference. */
@media (min-width: 761px) {
  .women-hero {
    background:
      radial-gradient(circle at 13% 22%,rgba(255,255,255,.82),transparent 24rem),
      radial-gradient(rgba(69,62,47,.05) .7px,transparent .7px),
      #f3eddf;
    background-size:auto,7px 7px,auto;
  }

  .women-hero-image { width:min(55%,1050px); object-position:center top; }

  .women-hero-shade {
    background:
      linear-gradient(90deg,#f3eddf 0%,#f3eddf 44%,rgba(243,237,223,.98) 47%,rgba(243,237,223,.82) 51%,rgba(243,237,223,.5) 55%,rgba(243,237,223,.22) 59%,rgba(243,237,223,.06) 63%,transparent 67%),
      linear-gradient(0deg,rgba(8,28,18,.22),transparent 34%);
  }

  .women-hero-copy::before {
    left:-230px;
    top:auto;
    bottom:-125px;
    width:680px;
    height:520px;
    border:0;
    border-radius:0;
    background:
      radial-gradient(ellipse at 0 100%,transparent 0 43%,rgba(41,61,41,.1) 43.2% 43.55%,transparent 43.8%),
      radial-gradient(ellipse at 0 100%,transparent 0 54%,rgba(41,61,41,.075) 54.2% 54.55%,transparent 54.8%),
      radial-gradient(ellipse at 0 100%,transparent 0 65%,rgba(185,138,47,.085) 65.2% 65.55%,transparent 65.8%),
      radial-gradient(ellipse at 0 100%,transparent 0 76%,rgba(41,61,41,.055) 76.2% 76.55%,transparent 76.8%);
    box-shadow:none;
    pointer-events:none;
  }

  .women-hero-copy::after {
    left:-2px;
    top:18%;
    bottom:auto;
    width:2px;
    height:64%;
    border-radius:0;
    background:linear-gradient(transparent,var(--gold) 18% 82%,transparent);
    opacity:.65;
  }

  .women-hero-copy > * { max-width:38%; }
  .hero-brand-lockup { max-width:none; }
  .hero-brand-lockup > img { width:108px; height:94px; }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .women-hero-image { width:61%; }
  .women-hero-shade {
    background:
      linear-gradient(90deg,#f3eddf 0%,#f3eddf 39%,rgba(243,237,223,.97) 43%,rgba(243,237,223,.72) 48%,rgba(243,237,223,.38) 54%,rgba(243,237,223,.13) 60%,transparent 68%),
      linear-gradient(0deg,rgba(8,28,18,.2),transparent 34%);
  }
  .women-hero-copy::before { left:-120px; width:480px; }
  .women-hero-copy::after { left:0; }
  .women-hero-copy > * { max-width:41%; }
}

@media (max-width: 760px) {
  .women-hero { min-height:820px; background:#e8e0d1; }
  .women-hero-image { inset:0; width:100%; height:100%; object-position:left top; }

  .women-hero-shade {
    background:
      linear-gradient(90deg,rgba(243,237,223,.98) 0%,rgba(243,237,223,.94) 22%,rgba(243,237,223,.7) 32%,rgba(243,237,223,.34) 41%,rgba(243,237,223,.1) 49%,transparent 58%),
      linear-gradient(0deg,rgba(8,28,18,.3) 0%,transparent 31%);
  }

  .women-hero-copy {
    position:relative;
    inset:auto;
    width:calc(100% - 30px);
    min-height:820px;
    margin-inline:auto;
    padding:28px 0 42px;
    justify-content:flex-start;
    border:0;
    border-radius:0;
    color:var(--ink);
    background:none;
    box-shadow:none;
    backdrop-filter:none;
  }

  .hero-brand-lockup {
    width:54%;
    display:grid;
    grid-template-columns:62px 1fr;
    column-gap:10px;
    justify-items:start;
    align-items:center;
    margin:0 0 18px;
    text-align:left;
  }

  .hero-brand-lockup > img { grid-row:1 / 3; width:62px; height:58px; }
  .hero-brand-lockup p { margin:0; font-size:12px; }
  .hero-brand-lockup p span { font-size:10px; }
  .hero-reference-rule { grid-column:2; width:86px; }
  .women-hero h1 { max-width:52%; font-size:clamp(42px,12.2vw,48px); line-height:.78; }
  .hero-title-rule { width:26px; margin:17px 0 9px; }
  .hero-subtitle { max-width:52%; font-size:16px; line-height:1; }
  .hero-materials { max-width:53%; margin:12px 0 8px; font-size:6.3px; line-height:1.4; }
  .hero-collection-link { max-width:54%; gap:15px; padding:6px 0; font-size:7.3px; }
}
