/* ============================================================
   Women's Edition — red as ground
   Inverts the men's noir+gold to oxblood+cream+ink
   ============================================================ */

[data-palette="oxblood"] {
  --bg: #5a1410;
  --bg-elev: #6b1a14;
  --bg-elev-2: #7a1f18;
  --bg-deep: #3d0c09;
  --ink: #f4ead7;
  --ink-dim: #d8c8aa;
  --ink-mute: #9a836a;
  --rule: rgba(244, 234, 215, 0.16);
  --rule-strong: rgba(244, 234, 215, 0.34);
  --accent: #f4ead7;          /* cream is the "accent" — used as ink hits */
  --accent-soft: #d8c8aa;
  --accent-ink: #5a1410;
  --gold: #e8b96b;            /* sparingly */
  --noir: #15100e;            /* used for occasional inversion blocks */
}

html, body { background: var(--bg); }

/* Make the masthead/header work on red */
[data-palette="oxblood"] .masthead {
  background: var(--bg-deep);
  color: var(--ink-dim);
  border-bottom-color: var(--rule);
}
[data-palette="oxblood"] .header {
  background: color-mix(in oklab, var(--bg) 84%, transparent);
  border-bottom-color: var(--rule);
}
[data-palette="oxblood"] .logo .ampersand { color: var(--gold); }
[data-palette="oxblood"] .nav a.active::after { background: var(--gold); }

/* re-tone the hero/section common elements */
[data-palette="oxblood"] .sec-head .num { color: var(--gold); }
[data-palette="oxblood"] .pullquote .qmark { color: var(--gold); }
[data-palette="oxblood"] .pullquote blockquote .accent { color: var(--gold); }
[data-palette="oxblood"] .feature .feat-num { color: var(--gold); }
[data-palette="oxblood"] .feature .feat-title .it { color: var(--gold); }
[data-palette="oxblood"] .lookbook-head h2 .it { color: var(--gold); }
[data-palette="oxblood"] .look .info .num { color: var(--gold); }
[data-palette="oxblood"] .footer-mast .gold { color: var(--gold); }
[data-palette="oxblood"] .footer-col h4 { color: var(--gold); }
[data-palette="oxblood"] .ticker .ticker-item .dot { background: var(--gold); }
[data-palette="oxblood"] .footer-sub-input button { background: var(--gold); color: #1a0a08; }
[data-palette="oxblood"] .footer-sub-input { border-color: var(--rule-strong); }
[data-palette="oxblood"] .ticker { background: var(--bg-deep); border-color: var(--rule); }

/* ============================================================
   W-HERO v2 — full-bleed image, type sits on top
   ============================================================ */
.w-hero {
  position: relative;
  min-height: clamp(820px, 100vh, 1080px);
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column;
}
.w-hero .bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 22%;
  filter: saturate(0.92) contrast(1.05);
  z-index: 0;
}
/* tinted veil — pulls the photo into the oxblood mood without killing the subject */
.w-hero .bg::before {
  content: ""; position: absolute; inset: 0;
  background: var(--bg);
  mix-blend-mode: multiply;
  opacity: 0.42;
}
/* legibility gradients */
.w-hero .bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--bg) 65%, transparent) 0%, transparent 18%, transparent 50%, color-mix(in oklab, var(--bg) 92%, transparent) 100%),
    linear-gradient(90deg, color-mix(in oklab, var(--bg) 55%, transparent) 0%, transparent 55%);
}

.w-hero .frame {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding-top: 64px;
  padding-bottom: 32px;
}

.w-hero .kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 0;
}
.w-hero .kicker::after {
  content: ""; height: 1px; flex: 1;
  background: var(--rule-strong);
}
.w-hero .crest {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.w-hero .copy {
  margin-top: clamp(60px, 10vw, 140px);
  max-width: 1200px;
}
.w-hero .megaword {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(112px, 17vw, 260px);
  line-height: 0.84;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin: 0;
  text-shadow: 0 2px 32px rgba(0,0,0,0.25);
}
.w-hero .megaword .it {
  font-style: italic;
  display: block;
  color: var(--gold);
  font-size: 0.42em;
  line-height: 1.05;
  margin-top: 0.18em;
  margin-left: 0.04em;
  letter-spacing: -0.02em;
}
.w-hero .megaword .ampersand {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold);
}

.w-hero .lede {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.45;
  color: var(--ink);
  max-width: 540px;
  margin: 36px 0 0;
  text-shadow: 0 1px 16px rgba(0,0,0,0.3);
}

.w-hero .frame-tag {
  position: absolute;
  top: 64px; right: var(--gutter);
  z-index: 3;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 12px;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(6px);
}
.w-hero .credit {
  position: absolute;
  right: 18px; bottom: 90px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* the L2 menu sitting at the bottom of the hero */
.w-hero-menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-strong);
  padding-top: 22px;
  margin-top: 32px;
  background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--bg) 50%, transparent));
  backdrop-filter: blur(2px);
}
.w-hero-menu a {
  display: flex; flex-direction: column; gap: 6px;
  padding: 4px 16px 4px 0;
  border-right: 1px solid var(--rule);
  cursor: pointer;
  transition: padding 0.25s;
}
.w-hero-menu a:last-child { border-right: none; }
.w-hero-menu a:hover { padding-left: 8px; }
.w-hero-menu .n {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.w-hero-menu .nm {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 1.9vw, 28px);
  color: var(--ink);
}
.w-hero-menu .ct {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

@media (max-width: 1100px) {
  .w-hero-menu { grid-template-columns: repeat(2, 1fr); }
  .w-hero-menu a { border-bottom: 1px solid var(--rule); padding: 14px 12px 14px 0; }
  .w-hero-menu a:nth-child(2) { border-right: none; }
  .w-hero .credit { display: none; }
}

/* ============================================================
   EDITORIAL SLIP — letter from the editor
   ============================================================ */
.editor-slip {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 80px;
  align-items: start;
  padding: 32px 0 16px;
}
.editor-slip .slip-aside {
  position: sticky; top: 100px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: flex; flex-direction: column; gap: 18px;
}
.editor-slip .slip-aside .row {
  display: flex; justify-content: space-between;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 8px;
}
.editor-slip .slip-aside .row span:last-child { color: var(--ink); }
.editor-slip .slip-portrait {
  margin-top: 24px;
  aspect-ratio: 4/5;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.editor-slip .slip-portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: saturate(0.88);
}

.editor-slip .slip-body {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
  max-width: 720px;
}
.editor-slip .slip-body p {
  margin: 0 0 1.05em;
  font-weight: 400;
}
.editor-slip .slip-body p:first-child::first-letter {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 5em;
  line-height: 0.85;
  float: left;
  color: var(--gold);
  margin: 0.05em 0.12em -0.05em -0.04em;
  font-weight: 400;
}
.editor-slip .slip-body em {
  font-style: italic;
  color: var(--accent-soft);
}
.editor-slip .slip-body .pull {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 32px;
  line-height: 1.25;
  color: var(--gold);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
  margin: 24px 0;
}
.editor-slip .signoff {
  margin-top: 36px;
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.editor-slip .signoff .sig {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 38px;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--ink);
}

@media (max-width: 1000px) {
  .editor-slip { grid-template-columns: 1fr; gap: 32px; }
  .editor-slip .slip-aside { position: static; flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .editor-slip .slip-aside .row { flex: 1 1 200px; }
  .editor-slip .slip-portrait { display: none; }
}

/* ============================================================
   L2 SECTIONS — one per category, each with its own layout
   ============================================================ */
.l2 {
  position: relative;
  border-top: 1px solid var(--rule);
  padding: clamp(64px, 7vw, 112px) 0;
}
.l2-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.l2-head .l2-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.85;
  color: var(--gold);
}
.l2-head .l2-titleblock {
  display: flex; flex-direction: column;
}
.l2-head .l2-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 14px;
}
.l2-head .l2-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 0;
}
.l2-head .l2-title .it { font-style: italic; color: var(--gold); }
.l2-head .l2-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-align: right;
  line-height: 1.7;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .l2-head { grid-template-columns: 1fr; gap: 12px; }
  .l2-head .l2-meta { text-align: left; }
  .l2-head .l2-title { font-size: clamp(40px, 9vw, 56px); }
}

/* L2 lede shared */
.l2-lede {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  color: var(--ink-dim);
  max-width: 720px;
  margin: 0 0 56px;
}

/* L2 — Build (gallery: 1 large + small list) */
.l2-build .build-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.l2-build .build-hero {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.l2-build .build-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
}
.l2-build .build-hero-meta {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  z-index: 2; color: var(--ink);
}
.l2-build .build-hero-meta .num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.l2-build .build-hero-meta .t {
  font-family: var(--f-display);
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.05;
  margin: 0 0 6px;
  font-weight: 400;
}
.l2-build .build-hero-meta .t .it { font-style: italic; }
.l2-build .build-hero-meta .d {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.build-list { display: flex; flex-direction: column; }
.build-list .row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 18px;
  padding: 22px 0;
  align-items: baseline;
  border-top: 1px solid var(--rule);
  cursor: pointer;
  transition: padding 0.2s;
}
.build-list .row:last-child { border-bottom: 1px solid var(--rule); }
.build-list .row:hover { padding-left: 8px; }
.build-list .row .n {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.22em;
}
.build-list .row .t {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--ink);
}
.build-list .row .t .it { font-style: italic; }
.build-list .row .t small {
  display: block;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-dim);
  margin-top: 6px;
  letter-spacing: 0;
  text-transform: none;
}
.build-list .row .m {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}

@media (max-width: 1000px) {
  .l2-build .build-grid { grid-template-columns: 1fr; }
}

/* L2 — Wear (3-up cards) */
.wear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.wear-card {
  display: flex; flex-direction: column;
  cursor: pointer;
}
.wear-card .img {
  background-size: cover;
  background-position: center;
  aspect-ratio: 3/4;
  margin-bottom: 16px;
  filter: saturate(0.92);
  transition: filter 0.3s;
}
.wear-card:hover .img { filter: saturate(1.08); }
.wear-card .meta {
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.wear-card .meta .num { color: var(--gold); }
.wear-card h3 {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.wear-card h3 .it { font-style: italic; color: var(--gold); }
.wear-card p {
  font-family: var(--f-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0;
}
@media (max-width: 1000px) {
  .wear-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wear-grid { grid-template-columns: 1fr; }
}

/* L2 — Style (newspaper: alternating columns + index) */
.style-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.style-cell {
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 14px;
  cursor: pointer;
  transition: background 0.25s;
}
.style-cell:nth-child(3n) { border-right: none; padding-right: 0; }
.style-cell:nth-child(3n+1) { padding-left: 0; }
.style-cell:nth-child(3n+2) { padding: 28px; }
.style-cell:hover { background: rgba(0,0,0,0.12); }
.style-cell .num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.style-cell h4 {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
}
.style-cell h4 .it { font-style: italic; }
.style-cell p {
  font-family: var(--f-sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0;
}
.style-cell .tag {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 1000px) {
  .style-grid { grid-template-columns: 1fr 1fr; }
  .style-cell, .style-cell:nth-child(3n), .style-cell:nth-child(3n+1), .style-cell:nth-child(3n+2) {
    padding: 24px;
    padding-left: 0;
    border-right: none;
  }
  .style-cell:nth-child(2n) { padding-left: 24px; border-left: 1px solid var(--rule); padding-right: 0; }
}
@media (max-width: 600px) {
  .style-grid { grid-template-columns: 1fr; }
  .style-cell, .style-cell:nth-child(2n) { padding: 24px 0 !important; border-left: none !important; }
}

/* L2 — Finish (horizontal slats: image + title + tagline rows) */
.finish-list { display: flex; flex-direction: column; }
.finish-row {
  display: grid;
  grid-template-columns: 60px 240px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  cursor: pointer;
  transition: padding 0.25s, background 0.25s;
}
.finish-row:last-child { border-bottom: 1px solid var(--rule); }
.finish-row:hover { padding-left: 12px; background: rgba(0,0,0,0.08); }
.finish-row .n {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}
.finish-row .img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  filter: saturate(0.92);
}
.finish-row .body h4 {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.finish-row .body h4 .it { font-style: italic; }
.finish-row .body p {
  font-family: var(--f-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-dim);
  margin: 0;
}
.finish-row .arr {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--ink-mute);
  transition: transform 0.2s, color 0.2s;
}
.finish-row:hover .arr { color: var(--gold); transform: translateX(8px); }
@media (max-width: 900px) {
  .finish-row { grid-template-columns: 36px 140px 1fr; gap: 16px; }
  .finish-row .arr { display: none; }
  .finish-row .body h4 { font-size: 22px; }
}

/* L2 — Seasonal (full-bleed dual cards w/ labels) */
.seasonal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.season-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.season-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.7) 100%);
  transition: opacity 0.3s;
}
.season-card:hover::after { opacity: 0.85; }
.season-card .top {
  position: absolute; top: 22px; left: 22px; right: 22px;
  display: flex; justify-content: space-between;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}
.season-card .top .badge {
  border: 1px solid rgba(255,255,255,0.5);
  padding: 6px 12px;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
}
.season-card .bot {
  position: absolute; bottom: 28px; left: 28px; right: 28px;
  z-index: 2;
}
.season-card .bot h4 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95;
  font-weight: 400;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.season-card .bot h4 .it { font-style: italic; color: var(--gold); }
.season-card .bot p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-dim);
  margin: 0 0 14px;
  max-width: 360px;
}
.season-card .bot .cta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  display: inline-block;
}
@media (max-width: 800px) {
  .seasonal-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ESSENTIALS — capsule wardrobe / starter five
   ============================================================ */
.essentials {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.essentials-intro h3 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.98;
  font-weight: 400;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.essentials-intro h3 .it { font-style: italic; color: var(--gold); }
.essentials-intro p {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 420px;
}
.starter-five {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.starter-five .item {
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  padding: 24px 18px;
  display: flex; flex-direction: column; gap: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.starter-five .item:nth-child(5) { border-right: none; }
.starter-five .item:hover { background: rgba(0,0,0,0.1); }
.starter-five .item .icn {
  width: 48px; height: 48px;
  border: 1px solid var(--rule-strong);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 8px;
}
.starter-five .item .nm {
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 400;
}
.starter-five .item .nm .it { font-style: italic; }
.starter-five .item .meta {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: auto;
}

@media (max-width: 1000px) {
  .essentials { grid-template-columns: 1fr; gap: 32px; }
  .starter-five { grid-template-columns: repeat(2, 1fr); }
  .starter-five .item:nth-child(5) { border-right: 1px solid var(--rule); }
  .starter-five .item:nth-child(2n) { border-right: none; }
}

/* ============================================================
   CROSS-LANE TEASER — bridge to men's
   ============================================================ */
.bridge {
  position: relative;
  background: var(--noir);
  color: #f3ede0;
  padding: clamp(64px, 7vw, 112px) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.bridge .bridge-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  filter: grayscale(0.3);
}
.bridge .bridge-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--noir) 10%, transparent 70%, var(--noir) 100%);
}
.bridge .frame { position: relative; z-index: 2; }
.bridge .label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(243,237,224,0.6);
  margin-bottom: 24px;
}
.bridge h3 {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  max-width: 900px;
}
.bridge h3 .it { font-style: italic; color: #d4a14a; }
.bridge p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: rgba(243,237,224,0.78);
  max-width: 580px;
  margin: 0 0 36px;
}
.bridge .bridge-cta {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f3ede0;
  border-bottom: 1px solid #d4a14a;
  padding: 8px 0;
  cursor: pointer;
  transition: gap 0.2s;
}
.bridge .bridge-cta:hover { gap: 22px; }
.bridge .bridge-cta .arr { color: #d4a14a; }

/* ============================================================
   FAQ-LIKE: "The everyday questions"
   ============================================================ */
.qs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--rule); }
.qs-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 10px;
  cursor: pointer;
}
.qs-item:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--rule); }
.qs-item:nth-child(even) { padding-left: 32px; }
.qs-item .num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.qs-item .q {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  color: var(--ink);
  font-weight: 400;
}
.qs-item .a {
  font-family: var(--f-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-dim);
}
@media (max-width: 800px) {
  .qs { grid-template-columns: 1fr; }
  .qs-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .qs-item:nth-child(even) { padding-left: 0; }
}
