/* =========================================================
   DRESSING SCHOOL · minimal clean system
   ========================================================= */

:root {
  --bg:        #FFFFFF;
  --surface:   #F7F5F1;
  --ink:       #0A0A0A;
  --ink-soft:  #383838;
  --muted:     #767676;
  --line:      #ECEAE4;
  --line-2:    #D9D6CE;
  --accent:    #B84A2B;
  --accent-soft: #F4E5DE;

  --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1160px;
  --gutter:    clamp(20px, 4vw, 32px);
  --radius:    10px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .15s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--ink); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}

:focus:not(:focus-visible) { outline: none; }
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section   { padding-block: clamp(64px, 8vw, 112px); }
.section--alt  { background: var(--surface); }
.section--dark { background: var(--ink); color: #E8E5DE; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

/* ---------- TYPE ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--accent);
  margin-bottom: 14px;
}

.display {
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.display em { font-style: italic; color: var(--accent); }

.h1 { font-size: clamp(34px, 4.8vw, 56px); line-height: 1.05; letter-spacing: -0.028em; }
.h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.1;  letter-spacing: -0.022em; }
.h3 { font-size: clamp(20px, 1.8vw, 22px); line-height: 1.25; letter-spacing: -0.012em; font-family: var(--sans); font-weight: 600; }

.lede {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}
.section--dark .lede { color: rgba(232,229,222,.78); }

.small { font-size: 13px; color: var(--muted); }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink); font-family: var(--sans);
}
.brand-mark {
  width: 26px; height: 26px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 15px;
  border-radius: 6px;
}

.nav-links { display: none; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px; color: var(--ink-soft); font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta { display: none; }

.nav-toggle {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 6px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 18px; height: 1.5px; background: var(--ink);
  transition: transform .25s var(--ease), opacity .15s;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 8px var(--gutter) 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px; font-weight: 500;
}
.mobile-menu .btn { margin-top: 16px; width: 100%; }

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .nav-cta   { display: inline-flex; }
  .nav-toggle{ display: none; }
  .mobile-menu { display: none !important; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  font-size: 14px; font-weight: 500;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background .15s var(--ease), color .15s, border-color .15s, transform .15s;
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #2A2A2A; }
.btn--accent  { background: var(--accent); color: #fff; }
.btn--accent:hover { background: #9F3E22; }
.btn--ghost   { border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn--ghost-light { border-color: rgba(255,255,255,.25); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,.08); }
.btn--small   { padding: 8px 14px; font-size: 13px; }
.btn .arrow { transition: transform .15s var(--ease); }
.btn:hover .arrow { transform: translateX(2px); }

/* ---------- HERO ---------- */
.hero {
  padding-block: clamp(48px, 7vw, 88px) clamp(56px, 8vw, 96px);
  text-align: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
.hero-text { max-width: 540px; margin-inline: auto; }
.hero h1 {
  margin-bottom: 18px;
  max-width: 16ch;
  margin-inline: auto;
}
.hero .lede { margin: 0 auto 28px; text-align: center; }

@media (min-width: 920px) {
  .hero { text-align: left; }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .hero-text { margin-inline: 0; max-width: 100%; }
  .hero h1 { margin-inline: 0; }
  .hero h1, .hero .lede { text-align: left; }
  .hero .lede { margin-inline: 0; }
  .hero-form { margin-inline: 0; }
  .hero-form .hint { text-align: left; }
  .hero-trust { text-align: left; }
}

.hero-form {
  display: grid; gap: 8px;
  max-width: 440px;
  margin: 0 auto;
}
.hero-form .row {
  display: flex; flex-direction: column; gap: 8px;
}
@media (min-width: 480px) {
  .hero-form .row { flex-direction: row; }
}
.hero-form input[type="email"] {
  flex: 1; min-width: 0;
  padding: 12px 16px;
  font: inherit; font-size: 15px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s;
}
.hero-form input[type="email"]:focus { outline: none; border-color: var(--ink); }
.hero-form .hint {
  font-size: 12px; color: var(--muted);
  text-align: center;
  margin-top: 4px;
}
.hero-trust {
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
}
.hero-trust strong { color: var(--ink); font-weight: 600; }
.hero-trust .ig-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  margin-right: 6px; vertical-align: middle;
}

/* ---------- HERO — ARC VARIANT ---------- */
.hero--arc {
  background: #EDE5D3;
  padding-block: clamp(56px, 8vw, 96px) 0;
  text-align: center;
  overflow: hidden;
}
.hero--arc .container { display: flex; flex-direction: column; align-items: center; }
.hero--arc .eyebrow { color: var(--accent); }
.hero-display {
  font-family: var(--serif);
  font-size: clamp(42px, 6.8vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--ink);
  margin: 4px 0 18px;
  max-width: 18ch;
}
.hero-display__serif,
.hero-display__sans { display: block; }
.hero-display__serif {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  font-family: var(--serif);
}
.hero-display__serif em { font-style: italic; }
.hero-display__sans {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
}
.hero--arc .lede { margin: 0 auto 28px; text-align: center; color: var(--ink-soft); max-width: 52ch; }
.hero--arc .hero-form { margin-inline: auto; }
.hero--arc .hero-form input[type="email"] { background: #fff; border-color: rgba(10,10,10,.18); }

@media (min-width: 920px) {
  .hero--arc { text-align: center; }
  .hero--arc .hero-display,
  .hero--arc .lede { text-align: center; margin-inline: auto; }
  .hero--arc .hero-form { margin-inline: auto; }
  .hero--arc .hero-form .hint { text-align: center; }
  .hero--arc .hero-trust { text-align: center; }
}

/* Arc of outfit cards */
.hero-arc {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(6px, 1vw, 12px);
  margin-top: clamp(32px, 5vw, 56px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: clamp(12px, 3vw, 32px);
  perspective: 1400px;
}
.hero-arc__card {
  position: relative;
  flex: 0 0 clamp(110px, 12vw, 162px);
  aspect-ratio: 3/4;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #D9D2BE;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 36px -18px rgba(10,10,10,.35), 0 4px 10px -4px rgba(10,10,10,.18);
  transform: rotate(calc(var(--i, 0) * 5deg)) translateY(var(--ty, 0));
  transform-origin: bottom center;
  opacity: 1;
  transition: transform .45s var(--ease), box-shadow .35s var(--ease), opacity .55s var(--ease);
}
.hero-arc__card:nth-child(1), .hero-arc__card:nth-child(7) { --ty: 22px; }
.hero-arc__card:nth-child(2), .hero-arc__card:nth-child(6) { --ty: 14px; }
.hero-arc__card:nth-child(3), .hero-arc__card:nth-child(5) { --ty: 6px; }
.hero-arc__card:nth-child(4) { --ty: 0; }
.hero-arc__card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-arc__card .hero-arc__day {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 8px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 6px;
  line-height: 1;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.hero-arc__card:hover,
.hero-arc__card:focus-visible {
  box-shadow: 0 26px 44px -16px rgba(10,10,10,.45), 0 6px 14px -4px rgba(10,10,10,.22);
  transform: rotate(calc(var(--i, 0) * 5deg)) translateY(calc(var(--ty, 0) - 6px));
  outline: none;
}
.hero-arc__card:focus-visible { box-shadow: 0 0 0 3px var(--accent), 0 26px 44px -16px rgba(10,10,10,.45); }

/* Today card — upright, larger, lifted */
.hero-arc__card.is-today {
  flex: 0 0 clamp(160px, 17vw, 230px);
  border-radius: 18px;
  box-shadow: 0 28px 50px -20px rgba(10,10,10,.45), 0 6px 14px -4px rgba(10,10,10,.22);
  transform: translateY(-14px);
  z-index: 2;
}
.hero-arc__card.is-today:hover,
.hero-arc__card.is-today:focus-visible {
  transform: translateY(-20px);
  box-shadow: 0 34px 60px -22px rgba(10,10,10,.55), 0 8px 16px -4px rgba(10,10,10,.25);
}
.hero-arc__card.is-today .hero-arc__day {
  background: var(--accent);
  color: #fff;
  padding: 6px 11px;
  font-size: 11px;
}
.hero-arc__card.is-today::after {
  content: "Today";
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 4px 8px;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: #fff;
  border-radius: 5px;
  line-height: 1;
}

/* Staggered fade-in once the arc reveal triggers */
.hero-arc.is-visible .hero-arc__card {
  opacity: 1;
  transition-delay: calc(var(--stagger, 0) * 70ms);
}

.hero-arc__kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--ink-soft);
  margin-top: clamp(28px, 4vw, 44px);
  margin-bottom: 0;
}

.hero--arc .hero-trust {
  margin-block: clamp(28px, 4vw, 44px) clamp(32px, 5vw, 56px);
  text-align: center;
}

/* Mobile: horizontal swipe row — today big in center, others small as peekers */
@media (max-width: 720px) {
  .hero--arc .hero-display { font-size: clamp(34px, 9vw, 48px); max-width: 14ch; }
  .hero-arc {
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding-block: 16px 24px;
    padding-inline: 14vw;             /* so snapped cards land visually centered */
    margin-top: clamp(24px, 5vw, 36px);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-arc::-webkit-scrollbar { display: none; }

  .hero-arc__card {
    flex: 0 0 38vw;
    max-width: 180px;
    aspect-ratio: 3/4;
    transform: none;
    scroll-snap-align: center;
    opacity: .55;
    transition: opacity .35s var(--ease), transform .35s var(--ease), flex-basis .35s var(--ease);
  }
  .hero-arc.is-visible .hero-arc__card { opacity: .55; transition-delay: 0s; }

  .hero-arc__card.is-today {
    flex: 0 0 72vw;
    max-width: 340px;
    transform: none;
    opacity: 1;
  }
  .hero-arc.is-visible .hero-arc__card.is-today { opacity: 1; }

  /* Day chip slightly larger on the big card for legibility */
  .hero-arc__card.is-today .hero-arc__day {
    padding: 7px 12px;
    font-size: 12px;
  }
  .hero-arc__card.is-today::after {
    right: 14px; top: 14px;
    padding: 5px 9px; font-size: 10.5px;
  }

  .hero-arc__card:hover,
  .hero-arc__card:focus-visible,
  .hero-arc__card.is-today:hover,
  .hero-arc__card.is-today:focus-visible { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-arc__card { opacity: 1; transition: none; }
  .hero-arc.is-visible .hero-arc__card { transition-delay: 0s; }
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .lede { margin: 12px auto 0; }

/* ---------- PILLARS (clean 3-up) ---------- */
.pillars {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(3, 1fr); } }

.pillar {
  position: relative;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s var(--ease), transform .15s;
  display: block;
}
.pillar:hover { border-color: var(--ink); transform: translateY(-2px); }
.pillar .icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 20px;
}
.pillar .icon svg { width: 20px; height: 20px; }
.pillar h3 { margin-bottom: 8px; }
.pillar p  { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.pillar .more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
}
.pillar:hover .more { color: var(--accent); }

/* ---------- QUIZ BLOCK ---------- */
.quiz-block {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) { .quiz-block { grid-template-columns: 1fr 1fr; gap: 64px; } }

.face-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 420px;
  margin-inline: auto;
}
.face-tile {
  aspect-ratio: 3/4;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid; place-items: center;
  position: relative;
  transition: border-color .15s, background .15s;
  cursor: default;
}
.face-tile:hover { border-color: var(--ink); background: var(--accent-soft); }
.face-tile svg {
  width: 50%; height: auto;
  stroke: var(--ink); stroke-width: 1.5; fill: none;
}
.face-tile span {
  position: absolute; bottom: 10px;
  font-size: 12px; font-weight: 500; color: var(--muted);
}
.face-tile:hover span { color: var(--ink); }
.section--dark .face-tile {
  background: transparent;
  border-color: rgba(255,255,255,.14);
}
.section--dark .face-tile svg { stroke: rgba(255,255,255,.7); }
.section--dark .face-tile span { color: rgba(255,255,255,.55); }
.section--dark .face-tile:hover {
  background: rgba(255,255,255,.05);
  border-color: #fff;
}
.section--dark .face-tile:hover svg { stroke: #fff; }
.section--dark .face-tile:hover span { color: #fff; }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.t-card {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.t-card .quote {
  font-size: 16px; line-height: 1.55; color: var(--ink);
  margin-bottom: 18px;
  font-family: var(--sans); font-weight: 400;
}
.t-card .who {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.t-card .avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-weight: 600; font-size: 13px;
}
.t-card .who strong { display: block; color: var(--ink); font-weight: 600; }
.t-card .who span { color: var(--muted); font-size: 12px; }

/* ---------- NEWSLETTER ---------- */
.newsletter-band {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-band h2 { margin-bottom: 14px; }
.newsletter-band .lede { margin: 0 auto 28px; }
.newsletter-band .hero-form { margin-inline: auto; }

.section--dark .hero-form input[type="email"] {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.16);
}
.section--dark .hero-form input[type="email"]::placeholder { color: rgba(255,255,255,.4); }
.section--dark .hero-form input[type="email"]:focus { border-color: #fff; }
.section--dark .hero-form .hint { color: rgba(255,255,255,.5); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink); color: #B8B5AE;
  padding-block: 56px 24px;
}
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-grid h4 {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: #fff; margin-bottom: 16px;
}
.footer-grid a { color: #B8B5AE; display: block; padding: 6px 0; font-size: 14px; }
.footer-grid a:hover { color: #fff; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand-mark { background: #fff; color: var(--ink); }
.footer-blurb { font-size: 14px; color: #8C887F; max-width: 32ch; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 12px; color: #6F6C64;
}
.footer-bottom a { color: #8C887F; }
.footer-bottom a:hover { color: #fff; }

/* ---------- DAILY OUTFITS ARCHIVE GRID ---------- */
.outfit-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .outfit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .outfit-grid { grid-template-columns: repeat(3, 1fr); } }

.outfit-tile {
  display: block;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s var(--ease), transform .15s;
}
.outfit-tile:hover { border-color: var(--ink); transform: translateY(-3px); }
.outfit-tile .img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-soft), var(--surface));
}
.outfit-tile .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.outfit-tile:hover .img-wrap img { transform: scale(1.04); }
.outfit-tile .chip-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 99px;
  font-size: 10px; font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
}
.outfit-tile .body { padding: 18px 20px 20px; }
.outfit-tile .date {
  font-size: 11px; color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.outfit-tile h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 19px; line-height: 1.2; letter-spacing: -0.012em;
  color: var(--ink);
}
.outfit-tile .pieces {
  margin-top: 8px;
  font-size: 13px; color: var(--ink-soft); line-height: 1.5;
}

.archive-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.archive-filters button {
  padding: 8px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 99px;
  transition: all .15s var(--ease);
}
.archive-filters button:hover { border-color: var(--ink); color: var(--ink); }
.archive-filters button.active {
  background: var(--ink); color: #fff; border-color: var(--ink);
}

/* ---------- TODAY'S OUTFIT CARD (hero visual) ---------- */
.outfit-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(10,10,10,.04),
    0 10px 30px -10px rgba(10,10,10,.12),
    0 24px 48px -28px rgba(10,10,10,.18);
  max-width: 460px;
  margin: 0 auto;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.outfit-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 2px rgba(10,10,10,.05),
    0 14px 36px -10px rgba(10,10,10,.16),
    0 28px 56px -24px rgba(10,10,10,.22);
}
.outfit-card .img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-soft), var(--surface));
}
.outfit-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.outfit-card:hover .img-wrap img { transform: scale(1.03); }
.outfit-card .live-tag {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 7px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .02em;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.outfit-card .live-tag::before {
  content: '';
  width: 7px; height: 7px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: live-pulse 2s infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.outfit-card .save-btn {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: background .2s, transform .2s;
  cursor: pointer;
}
.outfit-card .save-btn:hover { background: #fff; transform: scale(1.08); }
.outfit-card .save-btn svg { width: 16px; height: 16px; stroke: var(--ink); fill: none; stroke-width: 2; }
.outfit-card .save-btn.saved svg { fill: var(--accent); stroke: var(--accent); }

.outfit-card .body { padding: 22px 22px 20px; }
.outfit-card .meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--muted);
  margin-bottom: 10px;
  letter-spacing: .02em;
}
.outfit-card .meta .chip {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 3px 8px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 10px;
}
.outfit-card h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; line-height: 1.15; letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 16px;
}
.outfit-items { display: grid; gap: 0; margin-bottom: 16px; }
.outfit-item {
  display: flex; align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14.5px;
}
.outfit-item + .outfit-item { border-top: 1px dashed var(--line); }
.outfit-item .ico {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--surface);
  border-radius: 6px;
  flex-shrink: 0;
}
.outfit-item .ico svg { width: 16px; height: 16px; stroke: var(--ink); fill: none; stroke-width: 1.7; }
.outfit-item .name { color: var(--ink); font-weight: 500; line-height: 1.3; }

.style-note {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 14px 16px;
  border-radius: 6px;
  margin: 18px 0 16px;
}
.style-note .label {
  display: block;
  font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.style-note .text {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; line-height: 1.45; letter-spacing: -0.005em;
  color: var(--ink);
}

.outfit-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  padding-top: 14px;
  border-top: 1px solid var(--line);
  width: 100%;
}
.outfit-link:hover { color: var(--accent); }
.outfit-link .arrow { transition: transform .15s var(--ease); margin-left: auto; }
.outfit-link:hover .arrow { transform: translateX(3px); }

/* ---------- TRUST STRIP (compact stats) ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) { .trust-strip { grid-template-columns: repeat(4, 1fr); } }
.trust-item { text-align: center; }
.trust-item .num {
  font-family: var(--serif); font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 500; line-height: 1; letter-spacing: -0.02em;
  color: var(--ink);
}
.trust-item .label {
  font-size: 12px; color: var(--muted);
  margin-top: 8px; letter-spacing: .02em;
}

/* ---------- FEATURED GUIDES (compact row) ---------- */
.guide-row {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .guide-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px){ .guide-row { grid-template-columns: repeat(4, 1fr); } }

.guide-item {
  display: block;
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s var(--ease), transform .15s;
}
.guide-item:hover { border-color: var(--ink); transform: translateY(-2px); }
.guide-item .tag {
  display: inline-block;
  font-size: 11px; font-weight: 500; color: var(--accent);
  margin-bottom: 12px;
}
.guide-item h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 18px; line-height: 1.25; letter-spacing: -0.012em;
  margin-bottom: 8px;
}
.guide-item p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.guide-item .arrow-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 14px;
  font-size: 13px; font-weight: 500;
  color: var(--ink);
}
.guide-item:hover .arrow-link { color: var(--accent); }

/* ---------- EBOOKS COMING SOON ---------- */
.ebook-grid {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}
@media (min-width: 720px) { .ebook-grid { grid-template-columns: repeat(3, 1fr); } }

.ebook {
  text-align: center;
  position: relative;
}
.ebook .cover {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 3/4;
  margin: 0 auto 20px;
  border-radius: 6px;
  padding: 24px 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    -1px 0 0 rgba(0,0,0,.05) inset,
    0 8px 22px -8px rgba(10,10,10,.18),
    0 22px 40px -22px rgba(10,10,10,.2);
  transition: transform .25s var(--ease);
  overflow: hidden;
}
.ebook:hover .cover { transform: translateY(-4px) rotate(-1deg); }
.ebook .cover::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 5px; background: rgba(0,0,0,.18);
}
.ebook .cover .tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  opacity: .7;
}
.ebook .cover .title {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; line-height: 1.05;
  letter-spacing: -0.015em;
  margin-top: 8px;
}
.ebook .cover .meta {
  font-size: 11px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  opacity: .7;
}
.ebook--1 .cover { background: linear-gradient(160deg, #F4E5DE, #E8D5C5); color: var(--ink); }
.ebook--2 .cover { background: linear-gradient(160deg, #1A1A1A, #2D2D2D); color: #F4E5DE; }
.ebook--3 .cover { background: linear-gradient(160deg, #B84A2B, #8E3820); color: #fff; }
.ebook .soon-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.95); color: var(--ink);
  font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 99px;
  z-index: 2;
}
.ebook--2 .soon-badge { background: rgba(255,210,63,.95); }
.ebook .name {
  font-family: var(--serif); font-weight: 500;
  font-size: 18px; letter-spacing: -0.012em;
  color: var(--ink); margin-bottom: 4px;
}
.ebook .desc { font-size: 13.5px; color: var(--ink-soft); max-width: 28ch; margin-inline: auto; }
.ebook .price {
  display: block; font-size: 13px; color: var(--muted);
  margin-top: 8px;
}
.ebook .price strong { color: var(--ink); font-weight: 600; }

.waitlist-cta {
  max-width: 480px; margin: 0 auto;
  text-align: center;
}
.waitlist-cta .form-note {
  font-size: 13px; color: var(--muted);
  margin-bottom: 16px;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px; margin: 0 auto;
  display: grid; gap: 12px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item[open] { border-color: var(--ink); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px; font-weight: 500;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px; font-weight: 400;
  color: var(--muted);
  transition: transform .2s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq-item .a {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 15px; line-height: 1.6;
}

/* ---------- REVEAL (subtle, fast) ---------- */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- QUIZ PAGE ---------- */
.quiz-stage { max-width: 680px; margin-inline: auto; padding-block: clamp(40px, 6vw, 72px); }
.quiz-progress {
  height: 3px; background: var(--line); border-radius: 99px; overflow: hidden;
  margin-bottom: 32px;
}
.quiz-progress span {
  display: block; height: 100%; background: var(--accent);
  width: 0%; transition: width .35s var(--ease);
}
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fade .25s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.quiz-step h2 { font-size: clamp(24px, 3.4vw, 32px); margin-bottom: 12px; }
.quiz-step .lede { margin-bottom: 28px; }
.quiz-options {
  display: grid; gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .quiz-options { grid-template-columns: 1fr 1fr; } }
.quiz-option {
  text-align: left; padding: 16px 20px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px; font-weight: 500; color: var(--ink);
  transition: border-color .15s var(--ease), background .15s;
}
.quiz-option:hover { border-color: var(--ink); }
.quiz-option.selected { border-color: var(--accent); background: var(--accent-soft); }
.quiz-nav { display: flex; justify-content: space-between; margin-top: 28px; }
.quiz-result { text-align: center; padding: 28px 0; }
.quiz-result .badge {
  display: inline-block; padding: 5px 12px; border-radius: 99px;
  background: var(--accent-soft); color: var(--accent);
  font-size: 12px; font-weight: 600;
  margin-bottom: 18px;
}

/* ---------- GRID CARDS (guides hub, shop, picks) ---------- */
.grid-cards { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .grid-cards { grid-template-columns: repeat(3, 1fr); } }

.g-card {
  display: block;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .15s var(--ease), transform .15s;
}
.g-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.g-card .thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--accent-soft), #F7F5F1);
  position: relative;
}
.g-card .thumb .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: 99px;
}
.g-card .body { padding: 20px; }
.g-card h3 { font-size: 19px; line-height: 1.2; margin-bottom: 6px; }
.g-card .excerpt { font-size: 14px; color: var(--ink-soft); }
.g-card .price { display: inline-block; margin-top: 10px; font-weight: 600; color: var(--accent); font-size: 14px; }

/* ---------- ARTICLE ---------- */
.article { max-width: 680px; margin-inline: auto; padding-block: clamp(40px, 6vw, 72px); }
.article h1 { margin-bottom: 16px; font-size: clamp(34px, 5vw, 52px); }
.article .meta { color: var(--muted); font-size: 13px; margin-bottom: 32px; }
.article p { margin-bottom: 18px; color: var(--ink-soft); }
.article h2 { margin: 40px 0 14px; font-size: clamp(22px, 2.8vw, 28px); }
.article ul { margin: 0 0 20px 22px; color: var(--ink-soft); }
.article li { margin-bottom: 6px; }

/* ---------- STATS (kept for legacy pages) ---------- */
.stats { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); padding: 28px 0; border-block: 1px solid var(--line); }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat .num { font-family: var(--serif); font-size: clamp(26px, 3vw, 36px); font-weight: 500; line-height: 1; }
.stat .label { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* ---------- UTILITY ---------- */
.center { text-align: center; }
.muted  { color: var(--muted); }
.flex   { display: flex; }
.gap-2  { gap: 16px; }
.wrap   { flex-wrap: wrap; }
.jc-center { justify-content: center; }
.sr-only{ position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* legacy classes still used on other pages */
.pillar-card { padding: 28px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); display: block; transition: border-color .15s; }
.pillar-card:hover { border-color: var(--ink); }
.pillar-card .label { font-size: 12px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: .04em; }
.pillar-card h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin: 12px 0; letter-spacing: -0.015em; }
.pillar-card p { color: var(--ink-soft); font-size: 14.5px; }
.pillar-card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 14px; font-weight: 500; color: var(--accent); }
.pillars-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.section--ink { background: var(--ink); color: #E8E5DE; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.newsletter-band { text-align: center; max-width: 580px; margin-inline: auto; }

/* ---------- WEEK GRID (daily-outfits 7-day section) ---------- */
.week-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 8px 0 40px;
  font-family: var(--sans);
}
.week-jump a {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(10,10,10,.12);
  border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.week-jump a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.week-grid { display: flex; flex-direction: column; gap: clamp(24px, 4vw, 40px); }
.week-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px -16px rgba(10,10,10,.18), 0 2px 6px -2px rgba(10,10,10,.1);
  scroll-margin-top: 96px;
}
.week-card__img { aspect-ratio: 4/5; background: var(--surface); overflow: hidden; }
.week-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.week-card__body { padding: clamp(20px, 3vw, 32px); }
.week-card__day {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--accent);
  padding: 5px 10px; border-radius: 5px;
  margin-bottom: 16px;
}
.week-card h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.week-card__cat {
  font-size: 13px; color: var(--ink-soft);
  margin-bottom: 18px;
}
.week-card__pieces {
  list-style: none; margin: 0 0 18px; padding: 0;
}
.week-card__pieces li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px; color: var(--ink-soft);
}
.week-card__pieces li:last-child { border-bottom: none; }
.week-card__pieces strong { color: var(--ink); font-weight: 600; }
.week-card__note {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; line-height: 1.55;
  color: var(--ink); margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

@media (min-width: 760px) {
  .week-card { grid-template-columns: 5fr 7fr; }
  .week-card--flip .week-card__img { order: 2; }
  .week-card--flip .week-card__body { order: 1; }
}

/* ---------- FACE SHAPE FINDER — TABS + SCAN ---------- */
.finder-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
@media (min-width: 640px) { .finder-tabs { grid-template-columns: 1fr 1fr; } }
.finder-tab {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
  font: inherit; color: inherit;
}
.finder-tab:hover { border-color: var(--ink-soft); }
.finder-tab.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.finder-tab .t-num {
  font-family: var(--sans); font-weight: 600; font-size: 11px;
  letter-spacing: .12em; color: var(--muted);
  padding: 4px 8px; border: 1px solid currentColor; border-radius: 5px;
  opacity: .7;
}
.finder-tab.is-active .t-num { opacity: 1; color: #F4D5C5; border-color: #F4D5C5; }
.finder-tab .t-body { display: flex; flex-direction: column; gap: 2px; }
.finder-tab .t-body strong {
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  letter-spacing: -0.005em;
}
.finder-tab .t-body small {
  font-family: var(--sans); font-size: 12.5px;
  color: var(--muted); opacity: .9;
}
.finder-tab.is-active .t-body small { color: rgba(255,255,255,.7); }

.finder-scan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 14px 32px -18px rgba(10,10,10,.22);
  margin-bottom: 24px;
}
.scan-intro h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.018em; }
.scan-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin: 20px 0 12px;
}
.scan-tip {
  font-size: 13px; color: var(--muted);
  background: var(--surface);
  border-radius: 8px; padding: 10px 14px;
  border-left: 3px solid var(--accent);
  max-width: 56ch;
}

.scan-stage {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .scan-stage { grid-template-columns: 5fr 4fr; align-items: start; } }
.scan-canvas-wrap {
  position: relative;
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.scan-canvas-wrap .scan-video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scaleX(-1);  /* mirror live preview only */
}
.scan-canvas-wrap .scan-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  background: #0a0a0a;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.scan-controls { display: flex; flex-direction: column; gap: 14px; }
.scan-status {
  font-family: var(--sans); font-size: 14px;
  padding: 12px 14px;
  background: var(--surface);
  border-radius: 10px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.scan-status[data-kind="error"] {
  background: rgba(184,74,43,.1); color: var(--accent);
  border: 1px solid rgba(184,74,43,.3);
}
.scan-status[data-kind="ok"] {
  background: rgba(38, 122, 67, .1); color: #1b7a3a;
  border: 1px solid rgba(38, 122, 67, .3);
}
.scan-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

.scan-result-wrap {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.scan-result-wrap .finder-result { margin-top: 0; padding-top: 0; border-top: none; }

/* ---------- FACE SHAPE FINDER (tool) ---------- */
.finder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 14px 32px -18px rgba(10,10,10,.22);
}
@media (min-width: 860px) {
  .finder-grid { grid-template-columns: 5fr 7fr; align-items: start; }
}

.finder-diagram {
  background: var(--surface);
  border-radius: 14px;
  padding: 16px;
  position: sticky;
  top: 80px;
}
.finder-diagram svg { width: 100%; height: auto; max-height: 420px; display: block; }
.finder-diagram .diagram-label text { font-weight: 500; }

.finder-form { display: flex; flex-direction: column; gap: 18px; }
.finder-form .ctrl {
  display: grid;
  grid-template-columns: 1fr 56px;
  align-items: center;
  gap: 10px 14px;
}
.finder-form .ctrl label {
  grid-column: 1 / span 2;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.005em;
  display: flex; gap: 6px; align-items: baseline; flex-wrap: wrap;
}
.finder-form .ctrl label small { font-weight: 400; color: var(--muted); }
.finder-form .ctrl input[type="range"] {
  grid-column: 1;
  -webkit-appearance: none;
  appearance: none;
  width: 100%; height: 4px;
  background: var(--line);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
.finder-form .ctrl input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(10,10,10,.25);
  cursor: pointer;
}
.finder-form .ctrl input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(10,10,10,.25);
  cursor: pointer;
}
.finder-form .ctrl input[type="range"]:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(184,74,43,.35); }
.finder-form .ctrl output {
  grid-column: 2; grid-row: 2;
  font-family: var(--sans); font-variant-numeric: tabular-nums;
  font-size: 14px; font-weight: 600;
  text-align: right; color: var(--ink-soft);
}

.ctrl-jaw {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.ctrl-jaw legend {
  padding: 0 6px;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  color: var(--ink);
}
.ctrl-jaw label {
  display: flex; align-items: center; gap: 8px;
  font-size: 14.5px; color: var(--ink-soft); cursor: pointer;
}
.ctrl-jaw input[type="radio"] {
  width: 16px; height: 16px; accent-color: var(--ink);
}

/* Result panel */
.finder-result {
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.result-eyebrow {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 6px;
}
.result-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(184,74,43,.18);
  animation: result-pulse 1.6s ease-in-out infinite;
}
@keyframes result-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(184,74,43,.18); }
  50%     { box-shadow: 0 0 0 8px rgba(184,74,43,0); }
}
.result-name {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 5vw, 48px);
  letter-spacing: -0.025em; color: var(--ink);
  margin-bottom: 8px; line-height: 1;
}
.result-desc {
  font-size: 15px; line-height: 1.55;
  color: var(--ink-soft); margin-bottom: 18px;
}

.result-confidence {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 12px;
  color: var(--muted); letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.result-confidence span:last-child { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.confbar {
  flex: 1; height: 6px;
  background: var(--line);
  border-radius: 999px; overflow: hidden;
}
.confbar__fill {
  width: 0%; height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width .35s var(--ease);
}

.result-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 18px;
}
.result-stats > div {
  background: var(--surface);
  border-radius: 10px; padding: 12px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.result-stats span {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.result-stats strong {
  font-family: var(--serif); font-size: 22px;
  letter-spacing: -0.015em; color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.result-tips {
  background: var(--surface);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.result-tips h3 {
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 10px;
}
.result-tips ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.result-tips li { font-size: 14px; line-height: 1.45; color: var(--ink-soft); }
.result-tips strong { color: var(--ink); font-weight: 600; margin-right: 4px; }

.result-cta { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .finder-diagram { position: relative; top: 0; }
}

/* ---------- GUIDE BODY (long-form articles) ---------- */
.guide-body { font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
.guide-body h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(24px, 3vw, 30px);
  letter-spacing: -0.02em; color: var(--ink);
  margin: 48px 0 14px;
}
.guide-body h2:first-child { margin-top: 0; }
.guide-body p { margin-bottom: 18px; }
.guide-body strong { color: var(--ink); font-weight: 600; }
.guide-body em { font-style: italic; color: var(--ink); }
.guide-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.guide-body a:hover { color: var(--ink); }

/* Shape cards on face-shapes guide */
.shape-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .shape-grid { grid-template-columns: repeat(2, 1fr); } }
.shape-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 24px;
}
.shape-card__svg { color: var(--ink); width: 56px; height: 70px; margin-bottom: 16px; }
.shape-card__svg svg { width: 100%; height: 100%; }
.shape-card h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; letter-spacing: -0.015em; margin-bottom: 8px; }
.shape-card__rule { font-size: 14.5px; line-height: 1.5; color: var(--ink-soft); margin-bottom: 14px; }
.shape-card__rule em { color: var(--ink); font-style: italic; }
.shape-card ul { margin: 0; padding-left: 18px; }
.shape-card li { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 4px; }

/* Capsule wardrobe item list */
.capsule-grid {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .capsule-grid { grid-template-columns: repeat(2, 1fr); } }
.capsule-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 10px; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.capsule-item strong { color: var(--ink); font-size: 15px; font-weight: 600; }
.capsule-item span { color: var(--ink-soft); font-size: 13.5px; }

/* Budget tier blocks */
.budget-tiers { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .budget-tiers { grid-template-columns: repeat(3, 1fr); } }
.budget-tier {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 10px; padding: 16px;
}
.budget-tier h3 {
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  letter-spacing: -0.005em; color: var(--ink); margin-bottom: 8px;
}
.budget-tier p { font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); margin: 0; }

/* Combo swatches on color-matching */
.combo-grid {
  display: grid; gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 520px) { .combo-grid { grid-template-columns: 1fr 1fr; } }
.combo {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px; color: var(--ink-soft);
}
.combo .swatch {
  width: 22px; height: 22px; border-radius: 5px;
  flex-shrink: 0;
}

/* Dress-code sections */
.dc-section {
  padding-bottom: 28px; margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.dc-section:last-child { border-bottom: none; margin-bottom: 0; }
.dc-section h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px, 2.6vw, 26px);
  letter-spacing: -0.018em; color: var(--ink);
  margin-bottom: 10px;
}
.dc-section p { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 12px; }
.dc-section .dc-defn { font-family: var(--serif); font-style: italic; color: var(--ink); font-size: 16.5px; line-height: 1.6; }
.dc-section strong { color: var(--ink); font-weight: 600; }

/* ---------- BLOG ---------- */
.blog-list { display: flex; flex-direction: column; gap: clamp(20px, 3vw, 32px); }
.blog-card {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
@media (min-width: 720px) {
  .blog-card { grid-template-columns: 5fr 7fr; }
}
.blog-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -18px rgba(10,10,10,.2);
}
.blog-card__media {
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .blog-card__media { aspect-ratio: auto; min-height: 200px; border-bottom: none; border-right: 1px solid var(--line); }
}
.blog-card__mark {
  font-family: var(--serif); font-weight: 500;
  font-size: 64px; letter-spacing: -0.02em;
  color: rgba(255,255,255,.22);
  font-variant-numeric: tabular-nums;
}
.blog-card__body { padding: clamp(20px, 2.5vw, 28px); display: flex; flex-direction: column; gap: 8px; }
.blog-card__meta {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
}
.blog-card h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--ink); margin: 0;
}
.blog-card p {
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-soft); margin: 0;
}
.blog-card__more {
  font-family: var(--sans); font-weight: 600; font-size: 13.5px;
  color: var(--accent); margin-top: auto;
  display: inline-flex; align-items: center; gap: 4px;
}
.blog-card:hover .blog-card__more { color: var(--ink); }

/* Blog post body */
.post-body { font-family: var(--serif); font-size: 19px; line-height: 1.7; color: var(--ink); font-weight: 400; }
.post-body p { margin: 0 0 22px; }
.post-body h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.02em; color: var(--ink);
  margin: 44px 0 16px; line-height: 1.2;
}
.post-body h3 {
  font-family: var(--sans); font-weight: 600;
  font-size: 17px; letter-spacing: -0.005em;
  color: var(--ink); margin: 28px 0 10px;
}
.post-body em { font-style: italic; color: var(--accent); }
.post-body strong { font-weight: 600; color: var(--ink); }
.post-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--ink); }
.post-body ul, .post-body ol { margin: 0 0 22px 24px; padding: 0; font-size: 17px; }
.post-body li { margin-bottom: 8px; line-height: 1.6; color: var(--ink-soft); }
.post-body li strong { color: var(--ink); }

.byline {
  font-family: var(--sans); font-size: 14px;
  color: var(--muted); margin-top: 14px;
}
.byline strong { color: var(--ink); font-weight: 600; }

/* Homepage "From the blog" preview cards (lighter than full blog-card) */
.blog-row {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .blog-row { grid-template-columns: repeat(3, 1fr); } }
.blog-row__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 8px;
  text-decoration: none; color: inherit;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.blog-row__item:hover { border-color: var(--ink); transform: translateY(-2px); }
.blog-row__item .meta {
  font-family: var(--sans); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.blog-row__item h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 19px; letter-spacing: -0.015em;
  color: var(--ink); margin: 0; line-height: 1.2;
}
.blog-row__item p { font-size: 14px; line-height: 1.5; color: var(--ink-soft); margin: 0; }
.blog-row__item .more { margin-top: auto; font-size: 13px; font-weight: 600; color: var(--accent); }

/* ---------- PICKS SUB-PAGES ---------- */
.method-strip {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(18px, 2.5vw, 24px);
  margin-bottom: 40px;
}
@media (min-width: 720px) { .method-strip { grid-template-columns: 1fr 1fr 1fr; gap: 24px; } }
.method-strip > div { display: flex; flex-direction: column; gap: 6px; }
.method-strip strong {
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
}
.method-strip span { font-size: 14px; line-height: 1.5; color: var(--ink-soft); }

/* Single pick card */
.pick-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}
@media (min-width: 720px) {
  .pick-card { grid-template-columns: 40px 280px 1fr; align-items: stretch; }
}
.pick-card__rank {
  font-family: var(--serif); font-weight: 500;
  font-size: 18px; letter-spacing: -0.01em;
  color: var(--muted);
  padding: 16px 0 0 18px;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 720px) {
  .pick-card__rank { padding: 22px 0 0 22px; font-size: 22px; }
}
.pick-card__media {
  aspect-ratio: 5/4;
  display: grid; place-items: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .pick-card__media { aspect-ratio: auto; border-bottom: none; border-right: 1px solid var(--line); min-height: 240px; }
}
.pick-card__brandmark {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 28px;
  color: rgba(10,10,10,.18);
  letter-spacing: -0.01em;
}
.pick-card__body {
  padding: 18px 20px 20px;
}
.pick-card__tag {
  display: inline-block;
  font-family: var(--sans); font-weight: 600;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.pick-card h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px, 2.6vw, 26px);
  letter-spacing: -0.018em; color: var(--ink);
  margin-bottom: 8px; line-height: 1.1;
}
.pick-card__price {
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  color: var(--ink); margin-bottom: 12px;
}
.pick-card__price small { color: var(--muted); font-weight: 400; margin: 0 4px; }
.pick-card__price span { color: var(--ink-soft); font-weight: 500; }
.pick-card__desc {
  font-size: 14.5px; line-height: 1.6;
  color: var(--ink-soft); margin-bottom: 14px;
}
.pick-card__pros, .pick-card__cons {
  list-style: none; margin: 0 0 12px; padding: 0;
}
.pick-card__pros li, .pick-card__cons li {
  font-size: 13.5px; line-height: 1.5;
  color: var(--ink-soft);
  padding-left: 22px; position: relative;
  margin-bottom: 4px;
}
.pick-card__pros li::before {
  content: "+"; position: absolute; left: 6px; top: 0;
  color: #1b7a3a; font-weight: 700;
}
.pick-card__cons li::before {
  content: "−"; position: absolute; left: 6px; top: 0;
  color: var(--accent); font-weight: 700;
}
.pick-card__buy {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 12px; border-top: 1px solid var(--line);
}
.pick-card__buy a {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  padding: 8px 14px;
  background: var(--ink); color: #fff;
  border-radius: 999px;
  transition: background .15s var(--ease);
}
.pick-card__buy a:hover { background: var(--accent); }

/* Comparison table */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
.compare-table {
  width: 100%; border-collapse: collapse;
  font-family: var(--sans);
  background: #fff;
  min-width: 600px;
}
.compare-table th, .compare-table td {
  padding: 12px 14px;
  text-align: left;
  font-size: 13.5px;
  border-bottom: 1px solid var(--line);
}
.compare-table th {
  font-weight: 600; color: var(--ink);
  background: var(--surface);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare-table td { color: var(--ink-soft); }
.compare-table tbody tr:hover td { background: var(--surface); }
.compare-table tbody tr:last-child td { border-bottom: none; }

/* Verdict grid */
.verdict-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .verdict-grid { grid-template-columns: repeat(3, 1fr); } }
.verdict-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.verdict-card--editor { border-color: var(--ink); }
.verdict-card--editor .verdict-card__tag { color: var(--ink); }
.verdict-card--value { background: var(--surface); }
.verdict-card--splurge { border-color: var(--accent); }
.verdict-card--splurge .verdict-card__tag { color: var(--accent); }
.verdict-card__tag {
  font-family: var(--sans); font-weight: 600; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.verdict-card h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; letter-spacing: -0.015em; color: var(--ink);
}
.verdict-card__price {
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  color: var(--accent);
}
.verdict-card p { font-size: 14px; line-height: 1.5; color: var(--ink-soft); flex: 1; }
.verdict-card .more {
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  color: var(--ink); margin-top: auto;
}

/* By-face-shape grouping (sunglasses page) */
.fs-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  margin-bottom: 20px;
}
.fs-group__head {
  display: flex; align-items: baseline; gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.fs-group__shape {
  font-family: var(--serif); font-weight: 500;
  font-size: 24px; letter-spacing: -0.018em; color: var(--ink);
}
.fs-group__rule {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--ink-soft);
}
.fs-group__picks {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .fs-group__picks { grid-template-columns: repeat(2, 1fr); } }
.fs-pick {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: 10px;
}
.fs-pick strong { font-family: var(--sans); font-weight: 600; font-size: 14px; color: var(--ink); }
.fs-pick span.fs-pick__model { font-size: 13.5px; color: var(--ink-soft); }
.fs-pick span.fs-pick__price { font-size: 12.5px; color: var(--muted); font-weight: 500; }

/* ---------- HAIR & GROOMING (per-shape table) ---------- */
.hair-grid {
  display: grid; gap: 12px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.hair-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.hair-row:last-child { border-bottom: none; }
@media (min-width: 720px) {
  .hair-row { grid-template-columns: 110px 1fr; column-gap: 18px; }
  .hair-row .hair-avoid { grid-column: 2; }
}
.hair-shape {
  font-family: var(--serif); font-weight: 500;
  font-size: 18px; letter-spacing: -0.01em;
  color: var(--ink);
}
.hair-pick {
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink);
}
.hair-avoid {
  font-size: 13px; line-height: 1.5;
  color: var(--muted);
  font-style: italic;
}

.product-grid {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: 1fr 1fr; } }
.product-block {
  background: var(--surface);
  border-radius: 10px; padding: 14px 16px;
}
.product-block h3 {
  font-family: var(--sans); font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.product-block p {
  margin: 0; font-size: 14px; line-height: 1.55;
  color: var(--ink-soft);
}
.product-block strong { color: var(--ink); }
.product-block em { font-style: italic; color: var(--ink); }

/* ---------- FIT RULES ---------- */
.fit-rule {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 32px);
  margin: 32px 0;
  position: relative;
}
.fit-rule__num {
  display: inline-block;
  font-family: var(--sans); font-weight: 600;
  font-size: 12px; letter-spacing: 0.16em;
  color: #fff; background: var(--ink);
  padding: 4px 10px; border-radius: 5px;
  margin-bottom: 16px;
}
.fit-rule h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(24px, 3vw, 30px);
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 14px; line-height: 1.1;
}
.fit-rule p { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 14px; }
.fit-rule .fit-rule__defn {
  font-family: var(--serif); font-style: italic;
  font-size: 17px; line-height: 1.55;
  color: var(--ink); margin-bottom: 18px;
  padding-left: 14px; border-left: 3px solid var(--accent);
}
.fit-rule .fit-rule__defn strong { font-weight: 500; }
.fit-rule .fit-rule__too {
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 8px;
  font-size: 14.5px; line-height: 1.5;
}
.fit-rule strong { color: var(--ink); font-weight: 600; }
.fit-rule em { font-style: italic; color: var(--ink); }

.break-grid {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
  margin-top: 16px;
}
@media (min-width: 720px) { .break-grid { grid-template-columns: repeat(3, 1fr); } }
.break-item {
  background: var(--surface);
  border-radius: 10px; padding: 16px;
}
.break-item h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 18px; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 6px;
}
.break-item p {
  margin: 0; font-size: 13.5px; line-height: 1.5;
  color: var(--ink-soft);
}

/* ---------- LEGAL PAGES (privacy / terms) ---------- */
.legal-body { font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.legal-body h2 {
  font-family: var(--sans); font-weight: 600; font-size: 18px;
  letter-spacing: -0.005em; color: var(--ink);
  margin: 40px 0 12px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { margin-bottom: 16px; }
.legal-body ul { margin: 0 0 18px 22px; padding: 0; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--accent); }
.legal-body strong { color: var(--ink); font-weight: 600; }
