/* =====================================================================
   ROGUE FASHION — Design System
   A blend of three moods: bold streetwear · luxury editorial · warm zine
   Author: redesign build
   ===================================================================== */

/* ----------------------------- Tokens ----------------------------- */
:root {
  /* Core palette — warm, editorial, premium */
  --ink:        #15120D;   /* warm near-black (text + dark UI) */
  --ink-2:      #38322A;   /* softened ink for secondary text */
  --paper:      #F4EFE5;   /* warm cream canvas */
  --paper-2:    #FBF8F1;   /* lighter cream for cards */
  --night:      #110F0B;   /* deep section background */
  --night-2:    #1C1813;   /* raised dark surface */

  /* Accents */
  --gold:       #C39A45;   /* refined signature gold */
  --gold-soft:  #E7D6A6;   /* light gold for dark backgrounds */
  --ember:      #D2603A;   /* warm terracotta pop (streetwear energy) */

  /* Lines / utility */
  --line:        rgba(21,18,13,.14);
  --line-strong: rgba(21,18,13,.28);
  --line-light:  rgba(244,239,229,.18);
  --shadow-sm:  0 4px 18px rgba(20,16,10,.10);
  --shadow-md:  0 18px 50px rgba(20,16,10,.18);
  --shadow-lg:  0 30px 80px rgba(20,16,10,.30);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing scale — the steps the utility classes below are built from */
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 22px;
  --space-5: 30px;
  --space-6: 40px;

  /* Layout */
  --maxw: 1280px;
  --maxw-read: 720px;
  --gutter: clamp(20px, 5vw, 72px);
  --radius: 14px;
  --radius-lg: 22px;

  --header-h: 116px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----------------------------- Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--ember); color: #fff; }

main { flex: 1 0 auto; }

/* ----------------------------- Type ------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}

.display {
  font-family: var(--font-display);
  font-weight: 540;
  font-size: clamp(2.9rem, 8vw, 6.6rem);
  line-height: .98;
  letter-spacing: -0.025em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ember);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.is-gold { color: var(--gold); }
.eyebrow.no-rule::before { display: none; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink-2);
}

.serif-italic { font-family: var(--font-display); font-style: italic; }

/* ------------------------- Utilities ------------------------------
   These replace the ad-hoc style="…" attributes the pages used to carry.
   Reach for one of these before writing an inline style: that is how the
   spacing rhythm and the type scale stay consistent as the site grows.
   ------------------------------------------------------------------ */

/* vertical rhythm (the only spacing steps the pages should use) */
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mb-6 { margin-bottom: var(--space-6); }

/* display type scale, for headings inside sections */
.h-xl { font-size: clamp(2rem, 4.5vw, 3.4rem); }
.h-lg { font-size: clamp(1.85rem, 4vw, 2.9rem); }
.h-md { font-size: clamp(1.6rem, 3vw, 2.4rem); }

/* text */
.u-center { text-align: center; }
.u-muted  { color: var(--ink-2); }
.u-muted-strong { color: var(--ink-2); font-weight: 600; }
.u-ember  { color: var(--ember); }
.u-gold   { color: var(--gold); }
.u-gold-soft { color: var(--gold-soft); }
.section--dark .u-muted, .section--ink .u-muted { color: rgba(244,239,229,.74); }

/* bits and pieces */
.icon-gold { color: var(--gold); margin-right: 10px; }
.center-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.is-center { justify-content: center; }          /* centres an .eyebrow */
.u-hidden { display: none; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.icon-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.section--flush { padding-top: 0; }
.btn--block { width: 100%; justify-content: center; }

/* --------------------------- Layout ------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 920px; }

.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }

.section--dark  { background: var(--night); color: var(--paper); }
.section--dark .lead { color: rgba(244,239,229,.74); }
.section--ink   { background: var(--ink); color: var(--paper); }
.section--paper2{ background: var(--paper-2); }

.section-head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 60px); }
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  margin-top: 18px;
}
.section-head .lead { margin-top: 20px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* film-grain texture for dark sections */
.section--dark::after, .section--ink::after {
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.section--dark > .container, .section--ink > .container { position: relative; z-index: 1; }

/* --------------------------- Buttons ------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-sans);
  font-weight: 600; font-size: .92rem;
  letter-spacing: .02em;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn i { transition: transform .35s var(--ease); }
.btn:hover i { transform: translateX(4px); }
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--ember); transform: translateY(-3px); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(195,154,69,.34); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-3px); }
.btn--light { border-color: rgba(244,239,229,.55); color: var(--paper); }
.btn--light:hover { background: var(--paper); color: var(--ink); transform: translateY(-3px); }

.textlink {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; letter-spacing: .02em;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.textlink:hover { gap: .9em; color: var(--ember); }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
  color: var(--paper);
}
.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 22px var(--gutter) 18px;
}
.brand {
  grid-column: 2;
  justify-self: center;
  text-align: center;
  line-height: 1;
}
.brand__mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: .02em;
}
.brand__mark .dot { color: var(--ember); }
.brand__sub {
  display: block;
  font-family: var(--font-sans);
  font-size: .56rem; font-weight: 700;
  letter-spacing: .42em; text-transform: uppercase;
  margin-top: 4px; opacity: .8;
  padding-left: .42em;
}

.header-utility {
  grid-column: 3; justify-self: end;
  display: flex; align-items: center; gap: 22px;
}
.header-utility .icon-btn {
  background: none; border: none; color: inherit;
  font-size: 1.02rem; line-height: 1;
  transition: color .25s, transform .25s;
}
.header-utility .icon-btn:hover { color: var(--gold); transform: translateY(-2px); }

.menu-toggle {
  grid-column: 1; justify-self: start;
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.menu-toggle span {
  width: 26px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s;
}
.menu-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2){ opacity: 0; }
.menu-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* primary nav row */
.primary-nav {
  border-top: 1px solid var(--line-light);
  transition: border-color .4s var(--ease);
}
.primary-nav ul {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: clamp(14px, 2.2vw, 38px);
  padding: 14px var(--gutter);
}
.primary-nav a {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 4px 2px; position: relative;
  opacity: .9; transition: opacity .25s;
}
.primary-nav a::after {
  content:""; position:absolute; left:0; right:0; bottom:-3px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.primary-nav a:hover { opacity: 1; }
.primary-nav a:hover::after, .primary-nav a.active::after { transform: scaleX(1); }
.primary-nav a.active { color: var(--gold-soft); opacity: 1; }

/* scrolled / solid state (also used on inner pages with light hero) */
.site-header.is-solid {
  background: rgba(17,15,11,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0,0,0,.28);
}
.site-header.is-solid .site-header__inner { padding-top: 16px; padding-bottom: 12px; }

/* On light/paper pages we want a light header until scrolled */
.theme-light .site-header:not(.is-solid) { color: var(--ink); }
.theme-light .site-header:not(.is-solid) .primary-nav { border-color: var(--line); }
.theme-light .site-header:not(.is-solid) .primary-nav a.active { color: var(--ember); }
.theme-light .site-header:not(.is-solid) .menu-toggle { color: var(--ink); }

/* spacer so fixed header doesn't overlap content on inner pages */
.header-spacer { height: var(--header-h); }

/* Mobile drawer */
.nav-drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--night); color: var(--paper);
  padding: clamp(90px,16vh,140px) var(--gutter) 40px;
  transform: translateX(-100%);
  transition: transform .5s var(--ease);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  padding: 12px 0; border-bottom: 1px solid var(--line-light);
  display: flex; justify-content: space-between; align-items: center;
}
.nav-drawer a .num { font-family: var(--font-sans); font-size: .8rem; letter-spacing: .2em; color: var(--gold); opacity:.7; }
.nav-drawer a:hover { color: var(--gold-soft); padding-left: 8px; transition: padding .3s var(--ease); }
.nav-drawer__foot { margin-top: auto; padding-top: 30px; display: flex; gap: 24px; font-size: 1.1rem; }
.nav-drawer__foot a { font-size: 1.1rem; border: none; padding: 0; }
body.no-scroll { overflow: hidden; }

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(17,15,11,.96); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
}
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-overlay form { width: min(760px, 86vw); }
.search-overlay input {
  width: 100%; background: none; border: none;
  border-bottom: 2px solid var(--line-light);
  color: var(--paper); font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 3rem); padding: 16px 0; outline: none;
}
.search-overlay input::placeholder { color: rgba(244,239,229,.4); }
.search-overlay .hint { color: rgba(244,239,229,.5); font-size: .85rem; margin-top: 18px; letter-spacing: .04em; }
.search-overlay__close {
  position: absolute; top: 30px; right: var(--gutter);
  background: none; border: none; color: var(--paper); font-size: 1.6rem;
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.4s var(--ease), transform 7s linear;
}
.hero__slide.active { opacity: 1; transform: scale(1); }
.hero__media::after {
  content:""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(17,15,11,.46) 0%, rgba(17,15,11,.12) 32%, rgba(17,15,11,.66) 78%, rgba(17,15,11,.92) 100%);
}
.hero__content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(60px, 9vw, 120px); }
.hero__title { font-size: clamp(3rem, 10vw, 8rem); font-weight: 500; line-height: .92; letter-spacing: -0.03em; max-width: 14ch; }
.hero__title em { font-style: italic; color: var(--gold-soft); }
.hero__sub { max-width: 52ch; margin-top: 26px; font-size: clamp(1.05rem,1.7vw,1.3rem); color: rgba(244,239,229,.86); }
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(244,239,229,.7); font-size: .68rem;
  letter-spacing: .26em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll .line { width: 1px; height: 46px; background: rgba(244,239,229,.5); position: relative; overflow: hidden; }
.hero__scroll .line::after { content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background: var(--gold); animation: scrolldot 2.2s var(--ease) infinite; }
@keyframes scrolldot { to { top: 100%; } }

/* hero slide indicators */
.hero__dots {
  position: absolute; z-index: 3;
  bottom: 40px; right: var(--gutter);
  display: flex; gap: 12px;
}
.hero__dot {
  position: relative; overflow: hidden;
  width: 42px; height: 2px; padding: 0;
  border: none; border-radius: 2px;
  background: rgba(244,239,229,.32);
  transition: background .4s var(--ease);
}
.hero__dot::after {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
}
.hero__dot:hover { background: rgba(244,239,229,.55); }
.hero__dot.is-active::after { animation: heroDot 5.5s linear forwards; }
@keyframes heroDot { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (max-width: 640px) {
  .hero__dots { bottom: 26px; right: 50%; transform: translateX(50%); }
  .hero__dot { width: 30px; }
  .hero__scroll { display: none; }
}

/* mini hero for inner pages */
.page-hero {
  position: relative; color: var(--paper);
  padding: clamp(150px,22vh,260px) 0 clamp(56px,8vw,96px);
  background: var(--night); overflow: hidden;
}
.page-hero__bg { position:absolute; inset:0; background-size: cover; background-position: center; opacity:.42; }
.page-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(17,15,11,.5), rgba(17,15,11,.86)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 520; margin-top: 16px; }
.page-hero .lead { color: rgba(244,239,229,.82); margin-top: 20px; max-width: 60ch; }
/* slimmer hero for text pages (legal, etc.) with no background image */
.page-hero--slim { padding: clamp(120px,16vh,180px) 0 clamp(40px,6vw,64px); }
.page-hero--slim h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }

/* =====================================================================
   LEGAL / LONG-FORM TEXT (privacy, terms, cookies)
   ===================================================================== */
.legal-doc { max-width: 760px; }
.legal-doc h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem); margin: 1.8em 0 .5em; color: var(--ink);
}
.legal-doc h3 { font-size: 1.12rem; margin: 1.5em 0 .3em; color: var(--ink); }
.legal-doc p { color: var(--ink-2); line-height: 1.75; margin-bottom: 1.1em; }
.legal-doc ul { margin: 0 0 1.3em; padding-left: 1.3em; list-style: disc; }
.legal-doc li { color: var(--ink-2); line-height: 1.7; margin-bottom: .55em; }
.legal-doc strong { color: var(--ink); font-weight: 600; }
.legal-doc a { color: var(--ink); border-bottom: 1px solid var(--gold); transition: color .2s var(--ease); }
.legal-doc a:hover { color: var(--ember); border-color: var(--ember); }
.legal-updated { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 2em; }
.legal-summary {
  background: var(--paper-2); border: 1px solid var(--line);
  border-left: 3px solid var(--gold); border-radius: var(--radius);
  padding: clamp(20px,3vw,30px); margin: 0 0 2.2em;
}
.legal-summary p { margin-bottom: .7em; }
.legal-summary ul { margin-bottom: 0; }

/* breadcrumb */
.crumbs { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.crumbs a:hover { color: var(--gold-soft); }

/* =====================================================================
   STYLE DNA BAND (static)
   ===================================================================== */
.dna-band {
  padding: clamp(30px,4.5vw,56px) 0 clamp(40px,6vw,72px);
}
.dna-band > .container { max-width: 1440px; }
.dna-band__card {
  --dna-pad-x: clamp(24px,3.4vw,56px);
  --dna-pad-y: clamp(34px,4.4vw,60px);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--dna-pad-y) var(--dna-pad-x) 0;
  overflow: hidden; /* lets the ribbon dock flush to the bottom edge */
  transition: transform .9s var(--ease), box-shadow .9s var(--ease), opacity .9s var(--ease);
}
/* scroll-in: the card rises and settles, then the traits stagger in behind it */
.dna-band__card[data-reveal] { transform: translateY(46px) scale(.982); }
.dna-band__card[data-reveal].is-visible { transform: none; }
.dna-band__card:hover,
.dna-band__card[data-reveal].is-visible:hover { box-shadow: var(--shadow-lg); }

.dna-band__head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 18px 40px;
}
.dna-band__intro {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.35rem,2.2vw,1.9rem); line-height: 1.25;
  color: var(--ink); max-width: 26ch; margin-top: 14px;
}
.dna-band__head .textlink { font-size: .9rem; }

/* ---- traits ---- */
.dna-band__list {
  list-style: none;
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: clamp(20px,2.4vw,32px);
  margin-top: clamp(30px,4vw,46px);
}
.dna-trait { position: relative; }
.dna-trait > a {
  display: block; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.dna-trait > a::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .9s var(--ease) .25s;
}
.dna-trait.is-visible > a::before { width: 28px; }
.dna-trait > a:hover::before,
.dna-trait > a:focus-visible::before { width: 100%; transition-delay: 0s; }

.dna-trait__num {
  display: block; font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; color: var(--gold);
}
.dna-trait__name {
  display: block; margin-top: 10px;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.15rem,1.6vw,1.5rem); line-height: 1.15;
  color: var(--ink);
  min-height: 2.3em; /* keeps the notes on one baseline when a name wraps */
  transition: color .3s var(--ease);
}
.dna-trait > a:hover .dna-trait__name { color: var(--ember); }
.dna-trait__note {
  display: block; margin-top: 8px;
  font-size: .82rem; line-height: 1.45; color: var(--ink-2);
}
.dna-trait__go {
  display: flex; align-items: center; gap: 8px; margin-top: 12px;
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ember);
  opacity: 0; transform: translateY(-4px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.dna-trait > a:hover .dna-trait__go,
.dna-trait > a:focus-visible .dna-trait__go { opacity: 1; transform: none; }

/* ---- the two traits that match the visitor's quiz archetype ---- */
.dna-trait.is-yours > a { border-top-color: transparent; }
.dna-trait.is-visible.is-yours > a::before { width: 100%; }
.dna-trait.is-yours .dna-trait__name { color: var(--gold); }
.dna-trait__mine {
  display: inline-block; margin-top: 12px;
  font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(195,154,69,.12); border: 1px solid rgba(195,154,69,.34);
  border-radius: 100px; padding: 4px 10px;
}
.dna-trait.is-yours .dna-trait__go { display: none; }

/* ---- the quiz ribbon, docked into the foot of the card ---- */
.dna-band__foot {
  margin: clamp(30px,4vw,48px) calc(-1 * var(--dna-pad-x)) 0;
}

@media (max-width: 1080px) {
  .dna-band__list { grid-template-columns: repeat(3, 1fr); row-gap: clamp(24px,3.5vw,34px); }
}
@media (max-width: 640px) {
  .dna-band__head { flex-direction: column; align-items: flex-start; }
  .dna-band__list { grid-template-columns: repeat(2, 1fr); }
  .dna-trait__name { min-height: 0; }
}

/* =====================================================================
   GRIDS & CARDS
   ===================================================================== */
.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Feature / category cards (image with overlay text) */
.feature-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; display: block; min-height: 420px; isolation: isolate;
  box-shadow: var(--shadow-sm);
}
.feature-card img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; transition: transform 1s var(--ease); }
.feature-card::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(17,15,11,0) 38%, rgba(17,15,11,.85) 100%); z-index:1; }
.feature-card:hover img { transform: scale(1.07); }
.feature-card__body { position: relative; z-index: 2; margin-top: auto; padding: 28px; color: var(--paper); display: flex; flex-direction: column; height: 100%; justify-content: flex-end; }
.feature-card__body h3 { font-size: 1.7rem; }
.feature-card__body p { font-size: .95rem; color: rgba(244,239,229,.82); margin-top: 8px; }
.feature-card .tag {
  align-self: flex-start; font-size: .66rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  background: rgba(244,239,229,.16); border:1px solid rgba(244,239,229,.3); backdrop-filter: blur(4px);
  padding: 6px 12px; border-radius: 100px; margin-bottom: 14px;
}
.feature-card--tall { min-height: 560px; }

/* Editorial split */
.split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(30px, 6vw, 80px); }
.split--reverse .split__media { order: 2; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split__media { position: relative; }

/* Standard content card */
.card {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 4/5; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body h3 { font-size: 1.35rem; }
.card__body p { font-size: .95rem; color: var(--ink-2); }
.card__meta { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

/* number list (styling tips / history) */
.numbered { counter-reset: n; display: grid; gap: 2px; }
.numbered__item {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(18px,3vw,40px);
  padding: clamp(26px,4vw,46px) 0; border-top: 1px solid var(--line);
  align-items: start;
}
.numbered__item:last-child { border-bottom: 1px solid var(--line); }
.numbered__num { font-family: var(--font-display); font-size: clamp(1.6rem,4vw,2.6rem); color: var(--gold); line-height: 1; }
.numbered__item h3 { font-size: clamp(1.4rem,2.6vw,2rem); }
.numbered__item p { margin-top: 12px; max-width: 62ch; color: var(--ink-2); }

/* =====================================================================
   GALLERY + LIGHTBOX
   ===================================================================== */
.filterbar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filterbar button {
  font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 100px; border: 1.5px solid var(--line-strong);
  background: none; color: var(--ink-2); transition: all .3s var(--ease);
}
.filterbar button:hover { border-color: var(--ink); color: var(--ink); }
.filterbar button.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.gallery {
  columns: 4; column-gap: clamp(14px, 1.8vw, 22px);
}
.gallery__item {
  break-inside: avoid; margin-bottom: clamp(14px,1.8vw,22px);
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery__item img { width: 100%; transition: transform .8s var(--ease); }
.gallery__item::after {
  content: "\f002"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem; background: rgba(17,15,11,.35);
  opacity: 0; transition: opacity .35s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item .cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 30px 16px 14px; color: #fff; font-size: .8rem; letter-spacing: .04em;
  background: linear-gradient(transparent, rgba(17,15,11,.8));
  opacity: 0; transform: translateY(6px); transition: all .35s var(--ease);
}
.gallery__item:hover .cap { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed; inset: 0; z-index: 130; display: none;
  background: rgba(13,11,8,.95); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 5vh 6vw;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__btn {
  position: absolute; background: rgba(244,239,229,.1); border: 1px solid var(--line-light);
  color: #fff; width: 54px; height: 54px; border-radius: 50%; font-size: 1.2rem;
  display: grid; place-items: center; transition: background .3s, transform .3s;
}
.lightbox__btn:hover { background: var(--gold); color: var(--ink); }
.lightbox__prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox__close { top: 4vh; right: 4vw; }
.lightbox__cap { position: absolute; bottom: 3vh; left: 0; right: 0; text-align: center; color: rgba(244,239,229,.8); font-size: .85rem; letter-spacing: .06em; }

/* =====================================================================
   LONG-FORM ARTICLE
   ===================================================================== */
.article { max-width: var(--maxw-read); margin-inline: auto; }
.article__meta { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 26px; }
.article p { margin-bottom: 1.45em; font-size: 1.12rem; line-height: 1.78; color: var(--ink-2); }
.article h2 { font-size: clamp(1.6rem,3vw,2.3rem); margin: 1.6em 0 .6em; color: var(--ink); }
.article h3 { font-size: clamp(1.25rem,2.2vw,1.6rem); margin: 1.4em 0 .5em; color: var(--ink); }
.article > p:first-of-type::first-letter {
  font-family: var(--font-display); float: left; font-size: 4.6rem; line-height: .8;
  padding: 6px 14px 0 0; color: var(--ember); font-weight: 500;
}
.pullquote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.5rem,3.4vw,2.2rem); line-height: 1.25;
  color: var(--ink); border-left: 3px solid var(--gold);
  padding: 6px 0 6px 28px; margin: 1.6em 0;
}

/* timeline (history) */
.timeline { position: relative; max-width: 920px; margin-inline: auto; }
.timeline::before { content:""; position:absolute; left: 12px; top: 8px; bottom: 8px; width: 2px; background: var(--line-strong); }
.timeline__item { position: relative; padding: 0 0 clamp(40px,6vw,64px) clamp(48px,7vw,80px); }
.timeline__item::before {
  content:""; position:absolute; left: 4px; top: 6px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--paper); border: 3px solid var(--ember);
}
.timeline__era { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.8rem); color: var(--ink); }
.timeline__tag { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; display: block; margin: 6px 0 12px; }
.timeline__item p { color: var(--ink-2); max-width: 60ch; }

/* =====================================================================
   PARTNERS / DEALS
   ===================================================================== */
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,2vw,24px); }
.partner-card {
  position: relative; aspect-ratio: 3/2; border-radius: var(--radius);
  background: var(--paper-2); border: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.partner-card .brand-name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink);
  transition: transform .4s var(--ease);
}
.partner-card .go {
  position: absolute; bottom: 14px; right: 16px; font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); opacity: 0; transform: translateY(6px);
  transition: all .35s var(--ease); font-weight: 700;
}
.partner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.partner-card:hover .brand-name { transform: translateY(-6px); }
.partner-card:hover .go { opacity: 1; transform: translateY(0); }

/* deal hero band */
.deal-band {
  background: var(--ink); color: var(--paper); border-radius: var(--radius-lg);
  padding: clamp(34px,5vw,60px); display: grid; grid-template-columns: 1fr auto;
  gap: 30px; align-items: center;
}
.deal-band h3 { font-size: clamp(1.6rem,3vw,2.4rem); }
.deal-band p { color: rgba(244,239,229,.74); margin-top: 8px; }

/* =====================================================================
   LOOKBOOK
   ===================================================================== */
.look { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px,4vw,56px); align-items: center; }
.look:nth-child(even) .look__media { order: 2; }
.look__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.look__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.look__num { font-family: var(--font-display); font-size: clamp(3rem,7vw,5rem); color: var(--gold); line-height: 1; }
.look__items { margin-top: 22px; display: grid; gap: 2px; }
.look__items a {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px 4px; border-top: 1px solid var(--line);
  transition: padding .3s var(--ease), color .3s;
}
.look__items a:last-child { border-bottom: 1px solid var(--line); }
.look__items a:hover { padding-inline: 12px 0; color: var(--ember); }
.look__items .item-name { font-weight: 600; }
.look__items .item-meta { font-size: .82rem; color: var(--ink-2); }
.look__items .arrow { margin-left: auto; color: var(--gold); }

/* lookbook — stacked looks, each with a pose carousel */
[data-lookbook] { display: grid; gap: clamp(48px,8vw,104px); }
.look { --look-accent: var(--ember); }
.look__img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; transition: opacity .4s var(--ease); }
.look__badge { position: absolute; top: 16px; left: 16px; z-index: 3; background: var(--look-accent); color: #fff; font-size: .66rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: 8px 14px; border-radius: 100px; }
.look-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(17,15,11,.42); color: #fff; backdrop-filter: blur(6px); display: grid; place-items: center; cursor: pointer; opacity: 0; transition: opacity .3s var(--ease), background .3s var(--ease); }
.look__media:hover .look-arrow { opacity: 1; }
.look-arrow:hover { background: var(--look-accent); }
.look-arrow--prev { left: 14px; }
.look-arrow--next { right: 14px; }
.look-dots { position: absolute; bottom: 14px; left: 0; right: 0; z-index: 3; display: flex; gap: 8px; justify-content: center; }
.look-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.55); cursor: pointer; padding: 0; transition: all .3s var(--ease); }
.look-dot.active { background: #fff; width: 22px; border-radius: 5px; }
.look__num { font-family: var(--font-display); font-size: clamp(3rem,7vw,5rem); color: var(--look-accent); line-height: 1; transition: color .4s var(--ease); }
.look__model { font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-2); font-weight: 700; margin-top: 14px; }
.look__model a { color: var(--look-accent); border-bottom: 1px solid currentColor; }
.look__title { font-size: clamp(1.9rem,3.8vw,2.9rem); margin-top: 6px; }
.look__desc { margin-top: 14px; color: var(--ink-2); max-width: 48ch; }
.look__nav { display: flex; gap: 14px; margin-top: 30px; align-items: center; flex-wrap: wrap; }
.look-nav-btn { display: inline-flex; align-items: center; gap: 10px; padding: 13px 24px; border-radius: 100px; border: 1.6px solid var(--look-accent); background: var(--look-accent); color: #fff; font-weight: 600; font-size: .9rem; cursor: pointer; transition: transform .3s var(--ease), filter .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease); }
.look-nav-btn i { transition: transform .3s var(--ease); }
.look-nav-btn:hover { transform: translateY(-3px); filter: brightness(1.07); box-shadow: 0 12px 26px color-mix(in srgb, var(--look-accent) 36%, transparent); }
.look-nav-btn--prev { background: transparent; color: var(--look-accent); }
.look-nav-btn--prev:hover { background: var(--look-accent); color: #fff; }
.look-nav-btn--prev:hover i { transform: translateX(-4px); }
.look-nav-btn--next:hover i { transform: translateX(4px); }
.look__count { margin-left: 4px; font-size: .82rem; letter-spacing: .12em; color: var(--ink-2); font-weight: 600; }
@media (max-width: 860px) { .look-arrow { opacity: 1; } }

/* brand teaser */
.brand-teaser {
  text-align: center; border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius-lg); padding: clamp(40px,7vw,90px) var(--gutter);
  background:
    radial-gradient(circle at 50% 0%, rgba(195,154,69,.10), transparent 60%);
}
.brand-teaser .badge {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ember); border: 1px solid var(--ember); border-radius: 100px; padding: 8px 18px; margin-bottom: 22px;
}

/* =====================================================================
   COMMUNITY / VOICES
   ===================================================================== */
.voice {
  display: grid; grid-template-columns: 320px 1fr; gap: clamp(24px,4vw,52px);
  align-items: center; padding: clamp(28px,4vw,48px) 0; border-top: 1px solid var(--line);
}
.voice:last-of-type { border-bottom: 1px solid var(--line); }
.voice:nth-child(even) .voice__media { order: 2; }
.voice__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.voice__media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.voice__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 100px; backdrop-filter: blur(4px);
}
.voice__badge--real { background: var(--gold); color: var(--ink); }
.voice__badge--example { background: rgba(21,18,13,.72); color: var(--paper); border: 1px solid rgba(244,239,229,.28); }
.voice__name { font-size: clamp(1.6rem,3vw,2.2rem); }
.voice__role { font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin: 6px 0 16px; }
.voice__quote { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; line-height: 1.4; margin-bottom: 14px; }
.voice__quote::before { content:"“"; color: var(--ember); }
.voice__quote::after  { content:"”"; color: var(--ember); }

/* CTA band */
.cta-band {
  background: var(--ember); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(40px,6vw,72px); text-align: center;
  background-image: linear-gradient(135deg, var(--ember), #b94d2c);
}
.cta-band h2 { font-size: clamp(2rem,4.5vw,3.4rem); }
.cta-band p { max-width: 56ch; margin: 16px auto 30px; color: rgba(255,255,255,.9); }

/* stat row */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 30px; text-align: center; }
.stats .num { font-family: var(--font-display); font-size: clamp(2.6rem,6vw,4.2rem); color: var(--gold); line-height: 1; }
.stats .label { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-2); margin-top: 10px; }

/* =====================================================================
   NEWSLETTER
   ===================================================================== */
.newsletter-block { text-align: center; max-width: 640px; margin-inline: auto; }
.newsletter-form { display: flex; gap: 10px; margin-top: 28px; background: var(--paper-2); border: 1px solid var(--line-strong); border-radius: 100px; padding: 7px 7px 7px 24px; }
.newsletter-form input { flex: 1; background: none; border: none; outline: none; font-size: 1rem; font-family: inherit; color: var(--ink); }
.section--dark .newsletter-form { background: rgba(244,239,229,.06); border-color: var(--line-light); }
.section--dark .newsletter-form input { color: var(--paper); }
.newsletter-form input::placeholder { color: #9a9388; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--night); color: var(--paper); margin-top: auto; }
.site-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: clamp(30px,5vw,64px); padding-block: clamp(56px,7vw,90px); }
.site-footer h4 { font-family: var(--font-sans); font-size: .76rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-brand .brand__mark { font-size: 2.4rem; }
.footer-brand p { color: rgba(244,239,229,.6); margin-top: 16px; max-width: 38ch; font-size: .95rem; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.footer-links a, .footer-contact p { color: rgba(244,239,229,.72); font-size: .95rem; padding: 4px 0; transition: color .25s, padding-left .25s; }
.footer-links a:hover { color: var(--gold-soft); padding-left: 5px; }
.footer-contact strong { color: var(--paper); font-weight: 600; }
.site-footer__bottom { border-top: 1px solid var(--line-light); padding-block: 26px; display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; }
.social { display: flex; gap: 18px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 20px; justify-content: center; }
.footer-legal a { font-size: .82rem; color: rgba(244,239,229,.6); transition: color .25s; }
.footer-legal a:hover { color: var(--gold-soft); }
.social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-light); display: grid; place-items: center; color: var(--paper); transition: all .3s var(--ease); }
.social a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-3px); }
.copyright { font-size: .82rem; color: rgba(244,239,229,.5); }

/* =====================================================================
   REVEAL ANIMATIONS
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .40s; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1100px) {
  :root { --header-h: 80px; }
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .site-header__inner { grid-template-columns: 1fr auto 1fr; padding-block: 18px; }
  .gallery { columns: 3; }
}
@media (max-width: 860px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .look, .voice { grid-template-columns: 1fr; }
  .split--reverse .split__media, .look:nth-child(even) .look__media, .voice:nth-child(even) .voice__media { order: 0; }
  .deal-band { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
  .stats { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .partner-grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .feature-card { min-height: 360px; }
  .newsletter-form { flex-direction: column; border-radius: 18px; padding: 14px; }
  .newsletter-form .btn { justify-content: center; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { justify-content: center; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero__slide { transform: none !important; }
}

/* focus visibility (accessibility) */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* =====================================================================
   PROFILE / FAN PAGE
   ===================================================================== */
/* the member's cover photo drives a standard .page-hero, so the profile header
   reads like every other page; the avatar still straddles the hero's bottom edge */
.profile-hero { padding-bottom: clamp(74px, 9vw, 116px); }
.profile-hero .page-hero__bg { opacity: .42; background-position: center 22%; }
/* member covers are user-supplied and often bright, so this scrim is heavier at
   the top than the standard page hero, to keep the nav legible over any photo */
.profile-hero::after {
  background: linear-gradient(180deg, rgba(17,15,11,.78) 0%, rgba(17,15,11,.5) 34%, rgba(17,15,11,.88) 100%);
}
.profile-hero h1 { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.verified { color: var(--gold-soft); font-size: .5em; }
.profile-role { color: var(--gold-soft); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: .74rem; margin-top: 18px; }
.profile-tag {
  margin-top: 12px; font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.15rem,2vw,1.5rem); color: rgba(244,239,229,.9);
}

.profile-bar > .container {
  display: flex; align-items: center; gap: clamp(20px,3vw,40px); flex-wrap: wrap;
  padding-bottom: clamp(26px,3vw,40px);
}
.profile-avatar {
  width: clamp(112px,16vw,150px); height: clamp(112px,16vw,150px);
  border-radius: 50%; border: 5px solid var(--paper); overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--paper-2);
  margin-top: calc(-1 * clamp(56px,7vw,78px));
  position: relative; z-index: 2; flex: 0 0 auto;
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-left: auto; }
.profile-statline { display: flex; gap: clamp(22px,4vw,40px); }
.profile-statline .s b { font-family: var(--font-display); font-size: 1.5rem; display: block; line-height: 1; }
.profile-statline .s span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); margin-top: 6px; display: block; }
.follow-btn.is-following { background: var(--paper-2); color: var(--ink); border-color: var(--ink); }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,2vw,26px); }
.post { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post__img { aspect-ratio: 4/5; overflow: hidden; }
.post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post:hover .post__img img { transform: scale(1.05); }
.post__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post__cap { font-size: .95rem; color: var(--ink-2); }
.post__foot { margin-top: auto; display: flex; align-items: center; gap: 20px; }
.like-btn { display: inline-flex; align-items: center; gap: 8px; background: none; border: none; font-weight: 600; color: var(--ink-2); transition: color .2s, transform .2s; font-size: .92rem; }
.like-btn i { font-size: 1.05rem; }
.like-btn:hover { color: var(--ember); }
.like-btn.is-liked { color: var(--ember); }
.like-btn.is-liked i { animation: pop .42s var(--ease); }
.post__foot .meta { color: var(--ink-2); font-size: .88rem; display:inline-flex; align-items:center; gap:7px; }
@keyframes pop { 0%{transform:scale(1)} 40%{transform:scale(1.35)} 100%{transform:scale(1)} }

.comments { max-width: 760px; }
.comment-form { display: grid; gap: 12px; margin-bottom: 8px; }
.comment-form .row { display: flex; gap: 12px; }
.comment-form input, .comment-form textarea { width: 100%; font-family: inherit; font-size: 1rem; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: 12px; background: var(--paper-2); color: var(--ink); outline: none; resize: vertical; }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--gold); }
.local-note { font-size: .8rem; color: var(--ink-2); background: var(--paper-2); border: 1px dashed var(--line-strong); border-radius: 10px; padding: 11px 16px; display: flex; gap: 10px; align-items: center; margin: 18px 0 28px; }
.local-note i { color: var(--gold); }
.comment { display: flex; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); }
.comment__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--paper); display: grid; place-items: center; font-weight: 700; flex: none; font-family: var(--font-display); }
.comment__name { font-weight: 700; }
.comment__time { font-size: .76rem; color: var(--ink-2); margin-left: 8px; font-weight: 400; }
.comment__text { margin-top: 4px; color: var(--ink-2); }
.comment__like { margin-top: 8px; font-size: .82rem; }
.empty-note { color: var(--ink-2); font-style: italic; padding: 18px 0; }
@media (max-width: 860px) { .post-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) {
  .post-grid { grid-template-columns: 1fr; }
  .comment-form .row { flex-direction: column; }
  .profile-bar > .container { align-items: flex-start; gap: 18px; }
  .profile-actions { margin-left: 0; width: 100%; }
  .profile-actions .btn { flex: 1; justify-content: center; }
}

/* =====================================================================
   SUBMISSION FORM
   ===================================================================== */
.form-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px,4vw,48px); box-shadow: var(--shadow-sm); }

/* Member-accounts "coming soon" page */
.acct-list { list-style: none; display: grid; gap: 18px; margin: 0; padding: 0; }
.acct-list li { display: flex; gap: 16px; align-items: flex-start; }
.acct-list li i { flex: none; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(195,154,69,.14); color: var(--gold); font-size: 1rem; margin-top: 2px; }
.acct-list li span { font-size: 1rem; line-height: 1.5; color: var(--ink); }
.acct-list li strong { font-weight: 700; }
.acct-rule { border: none; border-top: 1px solid var(--line); margin: clamp(26px,3.5vw,38px) 0 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.field label .req { color: var(--ember); }
.field input, .field textarea { font-family: inherit; font-size: 1rem; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: 12px; background: var(--paper); color: var(--ink); outline: none; resize: vertical; width: 100%; }
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field .hint { font-size: .8rem; color: var(--ink-2); }
.prompt-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.prompt-chips button { font-size: .8rem; font-weight: 600; padding: 9px 14px; border-radius: 100px; border: 1.5px solid var(--line-strong); background: none; color: var(--ink-2); transition: all .25s var(--ease); }
.prompt-chips button:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--ink-2); }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--ember); flex: none; }
.form-note { font-size: .82rem; color: var(--ink-2); margin-top: 16px; }
.form-success { display: none; text-align: center; padding: clamp(30px,6vw,60px) 20px; }
.form-success.show { display: block; }
.form-success .tick { width: 74px; height: 74px; border-radius: 50%; background: var(--ember); color: #fff; display: grid; place-items: center; font-size: 1.8rem; margin: 0 auto 22px; }
.tier-badge { display:inline-block; font-size:.66rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); margin-bottom:6px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   ACCOUNT / LOGIN
   ===================================================================== */
.account-initial { width: 30px; height: 30px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; font-weight: 700; font-size: .82rem; line-height: 1; }
.account-btn { display: inline-flex; align-items: center; }
.theme-light .site-header:not(.is-solid) .account-initial { background: var(--ember); color: #fff; }

/* header account dropdown */
.account-menu { position: relative; }
.account-dropdown {
  position: absolute; top: calc(100% + 12px); right: 0; z-index: 60;
  min-width: 220px; padding: 8px;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.account-dropdown__hi { font-size: .82rem; color: var(--ink-2); line-height: 1.4; padding: 10px 12px 12px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.account-dropdown__hi strong { color: var(--ink); font-size: .92rem; }
.account-dropdown a, .account-dropdown button {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 11px 12px; border: none; background: none; border-radius: 9px;
  font: inherit; font-size: .92rem; color: var(--ink); text-align: left; cursor: pointer;
}
.account-dropdown a i, .account-dropdown button i { color: var(--gold); width: 16px; text-align: center; }
.account-dropdown a:hover, .account-dropdown button:hover { background: var(--paper-2); }

/* auth form status message */
.auth-status { margin-top: 16px; font-size: .9rem; line-height: 1.5; min-height: 0; text-align: center; }
.auth-status:empty { margin-top: 0; }
.auth-status.is-ok  { color: #2E7D32; font-weight: 600; }
.auth-status.is-err { color: var(--ember); font-weight: 600; }
.auth-wrap { max-width: 460px; margin-inline: auto; }
.auth-tabs { display: flex; gap: 6px; margin-bottom: 26px; background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: 5px; }
.auth-tabs button { flex: 1; padding: 12px; border: none; background: none; border-radius: 100px; font-family: inherit; font-weight: 600; font-size: .92rem; color: var(--ink-2); cursor: pointer; transition: all .3s var(--ease); }
.auth-tabs button.active { background: var(--ink); color: var(--paper); }
.auth-panel { display: none; }
.auth-panel.active { display: block; }
.auth-panel .field { margin-bottom: 16px; }
.signed-in { text-align: center; }
.signed-in .avatar-lg { width: 86px; height: 86px; border-radius: 50%; background: var(--ember); color: #fff; display: grid; place-items: center; font-size: 2.1rem; font-family: var(--font-display); margin: 0 auto 18px; }
.signed-in .si-email { color: var(--ink-2); margin-top: 4px; }

/* logo mark */
.brand-mark-svg { width: 26px; height: 26px; display: inline-block; vertical-align: middle; margin-right: 8px; position: relative; top: -2px; }
.footer-brand { display: flex; flex-wrap: wrap; align-items: center; }
.footer-brand p { flex-basis: 100%; }
.footer-brand .brand-mark-svg { width: 38px; height: 38px; margin-right: 12px; top: 0; }

/* search results */
.search-results { margin-top: 26px; display: grid; gap: 4px; max-height: 52vh; overflow-y: auto; }
.search-results a { display: block; padding: 14px 16px; border-radius: 10px; color: var(--paper); transition: background .2s var(--ease); }
.search-results a:hover, .search-results a.active { background: rgba(244,239,229,.08); }
.search-results .sr-title { font-family: var(--font-display); font-size: 1.15rem; display: block; }
.search-results .sr-desc { font-size: .85rem; color: rgba(244,239,229,.6); margin-top: 2px; display: block; }
.search-results .sr-empty { color: rgba(244,239,229,.5); padding: 14px 16px; }

/* skip-to-content link (a11y) */
.skip-link { position: fixed; left: 14px; top: -100px; z-index: 200; background: var(--ink); color: var(--paper); padding: 12px 20px; border-radius: 10px; font-weight: 600; box-shadow: var(--shadow-md); transition: top .25s var(--ease); }
.skip-link:focus { top: 14px; }

/* =====================================================================
   FASHION GIANT
   ===================================================================== */
.nav-fg { color: var(--gold-soft) !important; }
.primary-nav a.nav-fg::after { background: var(--ember); }
.fg-deadline { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; }
.fg-deadline::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 0 4px rgba(210,96,58,.25); }

.fg-finalists { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.4vw,30px); }
.fg-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.fg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.fg-card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.fg-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.fg-card:hover .fg-card__media img { transform: scale(1.05); }
.fg-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.fg-card__look { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.fg-card__body h3 { font-size: 1.5rem; }
.fg-card__body p { font-size: .92rem; color: var(--ink-2); }
.fg-bar { height: 6px; border-radius: 100px; background: var(--line); overflow: hidden; margin-top: 4px; }
.fg-bar span { display: block; height: 100%; background: var(--gold); border-radius: 100px; transition: width .6s var(--ease); }
.fg-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.fg-count { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); }
.fg-votes { font-size: .8rem; color: var(--ink-2); }
.fg-vote-btn { background: var(--ink); color: var(--paper); border: none; border-radius: 100px; padding: 11px 22px; font-weight: 600; font-size: .88rem; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: background .3s var(--ease), transform .3s var(--ease); }
.fg-vote-btn:hover { background: var(--ember); transform: translateY(-2px); }
.fg-voted { font-weight: 700; color: var(--ember); display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; }
.fg-card__link { margin-top: 2px; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; font-size: .85rem; border-bottom: 2px solid var(--gold); align-self: flex-start; padding-bottom: 2px; transition: gap .3s var(--ease), color .3s; }
.fg-card__link:hover { gap: 11px; color: var(--ember); }
.fg-lead-tag, .fg-crown { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: .64rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 7px 13px; border-radius: 100px; }
.fg-lead-tag { background: rgba(244,239,229,.92); color: var(--ink); }
.fg-crown { background: var(--gold); color: var(--ink); display: inline-flex; align-items: center; gap: 7px; }
.fg-card.is-leader { box-shadow: 0 0 0 2px var(--gold), var(--shadow-sm); }
.fg-card.is-winner { box-shadow: 0 0 0 3px var(--ember), var(--shadow-md); }
.fg-pending { grid-column: 1 / -1; text-align: center; padding: 44px 20px; color: var(--ink-2); font-size: 1.05rem; }

.fg-hall { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.4vw,30px); }
.fg-hall-card { background: var(--night-2); color: var(--paper); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.fg-hall-media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.fg-hall-media img { width: 100%; height: 100%; object-fit: cover; }
.fg-hall-season { position: absolute; bottom: 12px; left: 12px; background: var(--gold); color: var(--ink); font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; }
.fg-hall-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.fg-hall-body h3 { font-size: 1.5rem; }
.fg-hall-quote { font-family: var(--font-display); font-style: italic; color: rgba(244,239,229,.8); }
.fg-hall-next { background: radial-gradient(circle at 50% 0%, rgba(195,154,69,.16), var(--night-2) 70%); border: 1.5px dashed var(--line-light); justify-content: center; text-align: center; }
.fg-hall-next .fg-card__look { color: var(--gold-soft); }
.fg-hall-next p { color: rgba(244,239,229,.7); }
@media (max-width: 860px) { .fg-finalists, .fg-hall { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fg-finalists, .fg-hall { grid-template-columns: 1fr; } }

/* winner reveal */
.fg-reveal { background: radial-gradient(circle at 72% 8%, rgba(195,154,69,.18), transparent 55%), var(--night); color: var(--paper); }
.fg-reveal[hidden] { display: none; }
.fg-reveal__inner { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(28px,5vw,64px); align-items: center; }
.fg-reveal__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 0 0 3px var(--gold), var(--shadow-lg); }
.fg-reveal__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.fg-reveal__body h2 { font-size: clamp(2.4rem,6.5vw,4.6rem); line-height: .98; }
.fg-reveal__look { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--gold-soft); margin-top: 8px; }
.fg-reveal .lead { color: rgba(244,239,229,.82); margin-top: 16px; }
.fg-reveal__cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 860px) { .fg-reveal__inner { grid-template-columns: 1fr; } }

/* =====================================================================
   TRENDS — filter, detail modal, mix & match
   ===================================================================== */
.trend-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.trend-filter button { font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 10px 20px; border-radius: 100px; border: 1.5px solid var(--line-strong); background: none; color: var(--ink-2); transition: all .3s var(--ease); cursor: pointer; }
.trend-filter button:hover { border-color: var(--ink); color: var(--ink); }
.trend-filter button.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
button.gallery__item { border: none; padding: 0; background: none; font: inherit; color: inherit; text-align: left; width: 100%; }

.look-detail { position: fixed; inset: 0; z-index: 140; display: none; background: rgba(13,11,8,.95); backdrop-filter: blur(8px); padding: 4vh 4vw; overflow-y: auto; }
.look-detail.is-open { display: block; }
.look-detail__panel { max-width: 1080px; margin: 0 auto; background: var(--paper); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: .92fr 1.08fr; box-shadow: var(--shadow-lg); }
.look-detail__media { position: relative; background: var(--ink); }
.look-detail__media img { width: 100%; height: 100%; max-height: 86vh; object-fit: cover; display: block; }
.look-detail__body { padding: clamp(24px,3vw,42px); max-height: 86vh; overflow-y: auto; }
.look-detail__body h2 { font-size: clamp(1.8rem,3.4vw,2.6rem); margin-top: 6px; }
.look-detail__story { color: var(--ink-2); line-height: 1.75; }
.ld-section { margin-top: 28px; }
.ld-h { font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 10px; margin-bottom: 14px; }
.ld-sub { color: var(--ink-2); font-size: .9rem; margin: -6px 0 14px; }
.look-detail__close, .look-detail__nav { position: fixed; z-index: 2; width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line-light); background: rgba(244,239,229,.12); color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .3s var(--ease), color .3s; }
.look-detail__close:hover, .look-detail__nav:hover { background: var(--gold); color: var(--ink); }
.look-detail__close { top: 3vh; right: 4vw; }
.look-detail__nav { top: 50%; transform: translateY(-50%); }
.look-detail__prev { left: 2.5vw; }
.look-detail__next { right: 2.5vw; }
.mix-grid { display: grid; gap: 12px; }
.mix-card { display: grid; grid-template-columns: 70px 1fr; gap: 14px; align-items: center; background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; padding: 10px; }
.mix-card__thumb { border: none; padding: 0; background: none; border-radius: 8px; overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.mix-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.mix-card__thumb:hover img { transform: scale(1.08); }
.mix-reason { font-size: .88rem; color: var(--ink); font-weight: 600; display: block; }
.mix-item { display: flex; align-items: center; gap: 8px; margin-top: 7px; font-size: .9rem; transition: color .2s; }
.mix-item .item-name { font-weight: 600; }
.mix-item .item-meta { color: var(--ink-2); font-size: .8rem; }
.mix-item i { color: var(--gold); margin-left: auto; }
.mix-item:hover { color: var(--ember); }
.mix-from { background: none; border: none; padding: 0; margin-top: 5px; color: var(--ink-2); font-size: .78rem; cursor: pointer; display: inline-flex; gap: 6px; align-items: center; transition: color .2s; }
.mix-from:hover { color: var(--ember); }
@media (max-width: 760px) { .look-detail__panel { grid-template-columns: 1fr; } .look-detail__media img { max-height: 52vh; } .look-detail__close { right: 5vw; } }

/* =====================================================================
   ADDITIONS — Style DNA quiz · Look of the Day · saved looks
   ===================================================================== */

/* ---- DNA ribbon (homepage) ---- */
.dna-ribbon {
  display: flex; align-items: center; gap: clamp(16px,2vw,24px); flex-wrap: wrap;
  padding: clamp(16px,2vw,22px) clamp(20px,2.4vw,28px);
  border-radius: var(--radius-lg);
  background: linear-gradient(115deg, var(--ink) 0%, var(--night-2) 62%, #241d15 100%);
  color: var(--paper);
  border: 1px solid rgba(195,154,69,.24);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.dna-ribbon:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(195,154,69,.55);
}

.dna-ribbon__icon {
  flex: 0 0 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; color: var(--gold);
  background: rgba(195,154,69,.12);
  border: 1px solid rgba(195,154,69,.32);
  font-size: 1.05rem;
}
.dna-ribbon__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.dna-ribbon__label {
  font-size: .68rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
}
.dna-ribbon__value {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.1rem,1.7vw,1.4rem); line-height: 1.2;
  color: var(--paper);
}
.dna-ribbon__value em { font-style: italic; color: var(--gold-soft); }
.dna-ribbon__cta {
  margin-left: auto; display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-soft); white-space: nowrap;
}
.dna-ribbon__cta i { transition: transform .4s var(--ease); }
.dna-ribbon:hover .dna-ribbon__cta i { transform: translateX(5px); }

/* docked inside the Style DNA card: square off, sit flush, no lift */
.dna-band__foot .dna-ribbon {
  border-radius: 0;
  border-width: 1px 0 0;
  box-shadow: none;
  padding-inline: var(--dna-pad-x);
}
.dna-band__foot .dna-ribbon:hover { transform: none; }

@media (max-width: 640px) {
  .dna-ribbon__cta { margin-left: 0; padding-left: 60px; }
}

/* ---- Newsletter: consent line, status, spam trap ---- */

/* The honeypot. Hidden from sight and from screen readers, but still a real
   field a bot will happily fill in. display:none is avoided on purpose —
   some bots skip hidden fields, and then the trap catches nothing. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.newsletter-consent {
  margin-top: 12px;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--ink-2);
}
.newsletter-consent a { border-bottom: 1px solid var(--line-strong); }
.newsletter-consent a:hover { color: var(--ember); border-color: var(--ember); }

.newsletter-status {
  margin-top: 12px;
  font-size: .88rem;
  line-height: 1.5;
  min-height: 0;
}
.newsletter-status:empty { margin-top: 0; }
.newsletter-status a { border-bottom: 1px solid currentColor; font-weight: 600; }
.newsletter-status.is-ok   { color: #2E7D32; font-weight: 600; }
.newsletter-status.is-err  { color: var(--ember); font-weight: 600; }
.newsletter-status.is-info { color: var(--ink-2); }

/* on the dark newsletter band and in the footer, the same states need to read
   against a dark background */
.section--ink .newsletter-consent,
.site-footer .newsletter-consent { color: rgba(244,239,229,.62); }
.section--ink .newsletter-consent a,
.site-footer .newsletter-consent a { color: rgba(244,239,229,.86); border-color: rgba(244,239,229,.4); }
.section--ink .newsletter-consent a:hover,
.site-footer .newsletter-consent a:hover { color: var(--gold-soft); border-color: var(--gold-soft); }
.section--ink .newsletter-status.is-ok,
.site-footer .newsletter-status.is-ok { color: #9CCC9E; }
.section--ink .newsletter-status.is-err,
.site-footer .newsletter-status.is-err { color: #E8A08A; }
.section--ink .newsletter-status.is-info,
.site-footer .newsletter-status.is-info { color: rgba(244,239,229,.8); }
.section--ink .newsletter-status a,
.site-footer .newsletter-status a { color: var(--gold-soft); }

.newsletter-block .newsletter-consent,
.newsletter-block .newsletter-status { text-align: center; }

/* ---- Personalised strip (Trends · Lookbook · Deals) ---- */
[data-dna-strip] { display: block; padding: clamp(26px,3.5vw,44px) 0 0; }
.dna-strip {
  background: var(--paper-2); border: 1px solid var(--line);
  border-left: 4px solid var(--dna-accent, var(--gold));
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: clamp(24px,3vw,38px);
}
.dna-strip__head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 16px 30px;
}
.dna-strip__name {
  font-size: clamp(1.5rem,2.6vw,2.1rem); margin-top: 12px;
  display: flex; align-items: center; gap: 12px;
}
.dna-strip__name i { color: var(--dna-accent, var(--gold)); font-size: .8em; }
.dna-strip__line {
  font-family: var(--font-display); font-style: italic;
  color: var(--ink-2); margin-top: 8px; font-size: 1.05rem;
}

.dna-picks {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(14px,1.8vw,22px); margin-top: clamp(22px,3vw,32px);
}
.dna-pick {
  display: flex; align-items: center; gap: 14px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 10px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.dna-pick:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--dna-accent, var(--gold)); }
.dna-pick__media { flex: 0 0 68px; border-radius: 10px; overflow: hidden; }
.dna-pick__media img { width: 68px; height: 88px; object-fit: cover; }
.dna-pick__cat {
  display: block; font-size: .62rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--dna-accent, var(--gold));
}
.dna-pick__title {
  display: block; margin-top: 5px; font-family: var(--font-display);
  font-size: 1.1rem; line-height: 1.15;
}
.dna-pick__meta { display: block; margin-top: 5px; font-size: .78rem; color: var(--ink-2); }

.dna-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(20px,2.5vw,28px); }
.dna-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: 100px;
  border: 1px solid var(--line-strong); background: var(--paper);
  font-size: .82rem; font-weight: 600;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.dna-chip i { font-size: .72em; color: var(--gold); transition: transform .3s var(--ease); }
.dna-chip:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.dna-chip:hover i { color: var(--gold-soft); transform: translateX(3px); }

@media (max-width: 900px) { .dna-picks { grid-template-columns: 1fr; } }

/* ---- Real Voices rail (homepage) ---- */
.voices {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px,2.2vw,26px);
}
.voice-card {
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between; gap: 26px;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(22px,2.4vw,30px);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.voice-card__tag {
  position: absolute; top: 14px; right: 14px;
  font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2); background: var(--paper); border: 1px solid var(--line);
  padding: 4px 9px; border-radius: 100px;
}
.voice-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md);
  border-color: rgba(195,154,69,.5);
}
.voice-card__quote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.05rem,1.35vw,1.22rem); line-height: 1.4; color: var(--ink);
}
.voice-card__who { display: flex; align-items: center; gap: 12px; }
.voice-card__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: 0 0 46px; }
.voice-card__name { display: block; font-weight: 700; font-size: .92rem; }
.voice-card__role { display: block; font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); margin-top: 3px; }
.voice-card__who i { margin-left: auto; color: var(--gold); transition: transform .4s var(--ease); }
.voice-card:hover .voice-card__who i { transform: translateX(4px); }

@media (max-width: 1080px) { .voices { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .voices { grid-template-columns: 1fr; } }

/* ---- Quiz ---- */
.quiz-card {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow-sm);
}
.quiz-title { font-family: var(--font-display); font-size: clamp(1.9rem, 4.6vw, 3rem); line-height: 1.08; margin-top: 10px; }
.quiz-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.quiz-progress { height: 5px; border-radius: 3px; background: var(--line); overflow: hidden; margin-bottom: 22px; }
.quiz-progress span { display: block; height: 100%; background: var(--gold); border-radius: 3px; transition: width .4s var(--ease); }
.quiz-step { letter-spacing: .18em; text-transform: uppercase; font-size: .74rem; font-weight: 700; color: var(--ink-2); }
.quiz-q { font-family: var(--font-display); font-size: clamp(1.5rem, 3.6vw, 2.3rem); margin-top: 10px; line-height: 1.15; }
.quiz-opts { display: grid; gap: 12px; margin-top: 26px; }
.quiz-opt {
  display: flex; align-items: center; gap: 16px; text-align: left;
  padding: 16px 18px; border-radius: var(--radius);
  background: var(--paper); border: 1.5px solid var(--line);
  font: 600 .98rem/1.45 var(--font-sans); color: var(--ink);
  cursor: pointer; transition: border-color .25s, transform .25s var(--ease), box-shadow .25s;
}
.quiz-opt:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.quiz-opt__num {
  flex: 0 0 34px; height: 34px; display: grid; place-items: center;
  border-radius: 50%; background: var(--ink); color: var(--paper);
  font-size: .82rem; font-weight: 800;
}
.quiz-opt:hover .quiz-opt__num { background: var(--gold); color: var(--ink); }
.quiz-back { margin-top: 22px; background: none; border: none; cursor: pointer; color: var(--ink-2); font: 600 .88rem var(--font-sans); }
.quiz-back:hover { color: var(--ink); }

/* ---- Quiz result ---- */
.quiz-result { text-align: center; border-top: 5px solid var(--dna-accent, var(--gold)); }
.quiz-result__badge {
  width: 78px; height: 78px; margin: 18px auto 6px; display: grid; place-items: center;
  border-radius: 50%; background: var(--dna-accent, var(--gold)); color: #fff; font-size: 1.7rem;
  box-shadow: var(--shadow-md);
}
.quiz-result__line { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--dna-accent, var(--gold)); margin-top: 10px; }
.quiz-matches { margin-top: 34px; }
.quiz-matches__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 16px; }
.quiz-match { position: relative; border-radius: var(--radius); overflow: hidden; display: block; }
.quiz-match img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.quiz-match:hover img { transform: scale(1.04); }
.quiz-match span {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px;
  background: linear-gradient(transparent, rgba(17,15,11,.85));
  color: var(--paper); font: 700 .95rem var(--font-sans); text-align: left;
}
.quiz-next { margin-top: 30px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.quiz-result .quiz-actions { justify-content: center; }
.quiz-shared { margin-top: 14px; color: var(--gold); font-weight: 600; font-size: .9rem; }

/* ---- Save-look hearts ---- */
.look-save {
  background: none; border: 1.5px solid var(--line); border-radius: 50%;
  width: 44px; height: 44px; margin-left: 14px; vertical-align: middle;
  cursor: pointer; color: var(--ink-2); font-size: 1.05rem;
  transition: color .25s, border-color .25s, transform .25s var(--ease);
}
.look-save:hover { color: var(--ember); border-color: var(--ember); transform: scale(1.08); }
.look-save.is-saved { color: #fff; background: var(--ember); border-color: var(--ember); }

/* ---- Saved-count badge on header icon ---- */
.header-utility .icon-btn { position: relative; }
.saved-badge {
  position: absolute; top: 2px; right: 0;
  min-width: 17px; height: 17px; padding: 0 4px; border-radius: 9px;
  background: var(--ember); color: #fff; font: 800 .64rem/17px var(--font-sans);
  text-align: center; pointer-events: none;
}

/* ---- Profile post viewer ---- */
.post__img.is-clickable { cursor: zoom-in; }
.post__img.is-clickable img { transition: transform .5s var(--ease); }
.post__img.is-clickable:hover img { transform: scale(1.04); }
.look-detail__body [data-pd-like].is-liked { background: var(--ember); color: #fff; }

/* ---- Pose controls inside detail modals ---- */
.look-detail__media { position: relative; }
.pose-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(17,15,11,.55); color: var(--paper); font-size: .95rem;
  display: grid; place-items: center; transition: background .25s;
}
.pose-arrow:hover { background: var(--gold); color: var(--ink); }
.pose-arrow--prev { left: 14px; }
.pose-arrow--next { right: 14px; }
.pose-count {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  padding: 5px 14px; border-radius: 20px; background: rgba(17,15,11,.62);
  color: var(--paper); font: 700 .72rem/1 var(--font-sans); letter-spacing: .08em; text-transform: uppercase;
}

/* anchored looks land clear of the sticky header */
.look[id] { scroll-margin-top: calc(var(--header-h) + 20px); }
