@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 300 900; font-display: swap;
  src: url(../fonts/fraunces.woff2) format('woff2'); }
@font-face { font-family: 'Karla'; font-style: normal; font-weight: 200 800; font-display: swap;
  src: url(../fonts/karla.woff2) format('woff2'); }
:root {
  --accent: #c23577;        
  --accent-dark: #9c2760;
  --accent-deep: #74184a;   
  --gold: #e3a72f;          
  --blue: #dce8f4;          
  --blue-deep: #cfdfef;
  --ink: #2e3a45;           
  --ink-soft: #45535f;
  --mist: #f3f7fb;          
  --paper: #fbfcfe;
  --card: #ffffff;
  --line: #dfe7ef;
  --muted: #75828e;
  --star: #e3a72f;
  --radius: 12px;
  --shadow: 0 2px 10px rgba(46, 58, 69, .08);
  --shadow-hover: 0 10px 26px rgba(46, 58, 69, .16);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Karla', 'Segoe UI', Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--mist);
}
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.22; letter-spacing: .002em; }
img { max-width: 100%; display: block; }
a { color: var(--accent-dark); text-decoration: none; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 99px;
  border: 0;
  transition: background .18s, transform .18s;
}
.btn:hover { background: var(--ink); transform: translateY(-1px); }
.site-brow { position: relative; z-index: 60; }
.ticker { background: var(--ink); color: #c6d2dd; }
.ticker-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 10px 24px;
  min-height: 34px;
  font-family: 'Karla', sans-serif; font-weight: 600; font-size: 11.5px; letter-spacing: .06em;
}
.ticker-slogan { text-transform: uppercase; letter-spacing: .12em; color: #a7b5c2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ticker-links { display: flex; gap: 2px; flex: none; }
.ticker-links a { color: #eef4f9; padding: 4px 9px; border-radius: 4px; }
.ticker-links a:hover { color: #fff; background: rgba(255, 255, 255, .1); }
.brandbar { background: #fff; }
.brandbar-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px;
  min-height: 76px;
}
.logo { display: flex; flex-direction: column; align-items: center; gap: 2px; grid-column: 2; }
.logo-sub {
  font-family: 'Karla', sans-serif;
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.logo-mark {
  position: relative;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 33px;
  letter-spacing: .015em;
  text-transform: lowercase;
  color: var(--ink);
  padding-top: 9px;
  line-height: 1;
}
.logo-mark::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 64%; height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.rackbar { background: var(--ink); }
.prime-nav { display: flex; flex-wrap: wrap; justify-content: center; }
.prime-nav a {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 15px;
}
.prime-nav a:hover { background: #223039; }
.prime-nav a.active { background: #1d2831; box-shadow: inset 0 -3px 0 var(--accent); }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; grid-column: 1; justify-self: start; }
.menu-toggle span { display: block; width: 24px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; }
.brow-tools { display: flex; align-items: center; gap: 4px; grid-column: 3; justify-self: end; }
.find-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--line); cursor: pointer;
  padding: 8px 14px; border-radius: 99px; color: var(--ink);
}
.st-label { font-family: 'Karla', sans-serif; font-weight: 700; font-size: 12.5px; letter-spacing: .05em; }
.find-toggle:hover { border-color: var(--accent); color: var(--accent-dark); }
.find-open .find-toggle { border-color: var(--accent); background: var(--mist); color: var(--accent-dark); }
.qfind { display: none; background: #fff; border-top: 1px solid var(--line); position: absolute; left: 0; right: 0; top: 100%; }
.find-open .qfind { display: block; box-shadow: var(--shadow-hover); }
.qfind-inner { padding-top: 14px; padding-bottom: 16px; }
.qfind-input {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 11px 14px;
  outline: none;
}
.qfind-input::placeholder { color: var(--muted); }
.qfind-results { margin-top: 6px; }
.qfind-results a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 9px 12px; border-radius: 8px; color: var(--ink); font-size: 15px;
}
.qfind-results a:hover { background: var(--mist); color: var(--accent-dark); }
.qf-p { font-family: 'Karla', sans-serif; font-weight: 700; white-space: nowrap; }
.qf-none { padding: 9px 12px; color: var(--muted); font-size: 15px; }
.splash {
  background: linear-gradient(160deg, #e9f1f8 0%, var(--blue) 48%, var(--blue-deep) 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 62px 0 56px;
}
.splash::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(194, 53, 119, .2) 1.6px, transparent 2.1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(115deg, transparent 40%, #000 78%);
  -webkit-mask-image: linear-gradient(115deg, transparent 40%, #000 78%);
  pointer-events: none;
}
.splash-core { position: relative; text-align: center; max-width: 880px; }
.splash-note {
  display: inline-block;
  font-family: 'Karla', sans-serif; font-weight: 700; font-size: 12.5px;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--accent-dark);
  border: 1px solid rgba(156, 39, 96, .35); border-radius: 99px;
  padding: 6px 17px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, .5);
}
.splash h1 { font-size: 54px; line-height: 1.08; letter-spacing: .002em; margin-bottom: 18px; color: var(--ink); }
.splash h1 .accent { color: var(--accent-dark); font-style: italic; }
.splash-sub { font-size: 17.5px; color: var(--ink-soft); max-width: 720px; margin: 0 auto 30px; }
.splash-ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.btn-splash { background: var(--accent); color: #fff; }
.btn-splash:hover { background: var(--ink); color: #fff; }
.btn-line {
  display: inline-block;
  font-family: 'Karla', sans-serif; font-weight: 700; font-size: 14.5px;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink); border: 2px solid rgba(46, 58, 69, .4); border-radius: 99px;
  padding: 11px 30px;
  transition: border-color .18s, background .18s, transform .18s;
}
.btn-line:hover { border-color: var(--ink); background: rgba(255, 255, 255, .55); transform: translateY(-1px); }
.splash-reel-wrap { position: relative; margin-top: 46px; }
.reel-lead {
  font-family: 'Karla', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  text-align: center; margin-bottom: 14px;
}
.splash-reel { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.reel-card {
  background: #fff; border-radius: var(--radius);
  padding: 14px 14px 15px;
  display: flex; flex-direction: column; gap: 7px;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(46, 58, 69, .18);
  transition: transform .18s, box-shadow .18s;
}
.reel-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(46, 58, 69, .26); }
.reel-card img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.reel-t {
  font-family: 'Karla', sans-serif; font-weight: 700; font-size: 12.5px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.reel-p { font-family: 'Karla', sans-serif; font-weight: 800; font-size: 14.5px; color: var(--accent-dark); }
.reel-p em { font-style: normal; font-weight: 600; font-size: 12px; color: var(--muted); margin-left: 5px; }
.perk-strip { padding: 34px 0 0; }
.perk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.perk-item {
  display: flex; align-items: center; gap: 13px;
  background: #fff7fb;
  border: 1px dashed var(--accent);
  border-radius: 999px;
  padding: 11px 20px 11px 12px;
  font-family: 'Karla', sans-serif; font-weight: 700; font-size: 13px; line-height: 1.35;
  color: var(--ink);
}
.perk-item svg {
  color: var(--accent); flex: none;
  background: #fff; border-radius: 50%;
  padding: 7px; width: 34px; height: 34px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.kicker {
  display: inline-block;
  position: relative;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  padding-top: 8px;
}
.kicker::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 46px; height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.mood-band { padding: 34px 0 0; }
.mood-lead {
  text-align: center;
  font-family: 'Karla', sans-serif; font-weight: 700; font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px;
}
.mood-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.mood-grid a {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 99px;
  padding: 9px 18px;
  font-family: 'Karla', sans-serif; font-weight: 700; font-size: 13.5px; color: var(--ink);
  box-shadow: var(--shadow);
  transition: border-color .15s, color .15s, transform .15s;
}
.mood-grid a:hover { border-color: var(--accent); color: var(--accent-dark); transform: translateY(-2px); }
.mood-grid svg { color: var(--accent); flex: none; }
.categories { padding: 56px 22px 8px; }
.rack-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.rack-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: box-shadow .18s, transform .18s;
}
.rack-tile:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.rack-img { aspect-ratio: 1; background: #fff; }
.rack-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.rack-veil {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(46, 58, 69, .93));
  color: #fff;
  padding: 44px 14px 12px;
}
.rack-veil h3 { font-size: 15.5px; font-weight: 600; letter-spacing: .01em; }
.rack-veil p { font-size: 12.5px; color: #cfdce8; }
.catalog { padding: 52px 22px; }
.block-head { text-align: center; margin-bottom: 32px; }
.block-head h2 { font-size: 31px; }
.block-head p { color: var(--muted); margin-top: 6px; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.tile:hover { border-color: #b9cfe3; box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.tile-link { display: flex; flex-direction: column; flex: 1; }
.tile-img { position: relative; aspect-ratio: 1; background: #fff; padding: 20px; overflow: hidden; border-bottom: 1px solid var(--line); }
.tile-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.tile:hover .tile-img img { transform: scale(1.06); }
.tile-rate {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ink);
  border-radius: 99px;
  padding: 3px 11px;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}
.tile-body { padding: 14px 16px 4px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.tile-cat {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.tile-title { font-size: 15.5px; font-weight: 700; font-family: 'Karla', sans-serif; color: var(--ink); }
.tile-short { font-size: 13.5px; color: var(--muted); line-height: 1.45; }
.tile-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 8px; }
.tile-price { font-family: 'Karla', sans-serif; font-weight: 800; font-size: 20px; color: var(--accent-dark); white-space: nowrap; }
.tile-count { font-size: 12px; color: var(--muted); text-align: right; }
.tile-foot { padding: 10px 16px 16px; margin-top: 0; }
.btn-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 10px;
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(194, 53, 119, .3);
  transition: background .18s, transform .18s, box-shadow .18s;
}
.btn-tile:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 7px 16px rgba(194, 53, 119, .4); }
.btn-tile svg { flex: none; }
.stars .star { color: #ccd7e1; font-size: 14px; }
.stars .star.on { color: var(--star); }
.tally { color: var(--muted); font-size: 13px; margin-left: 4px; }
.duo-band { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 0; padding-bottom: 52px; }
.duo-tile {
  display: block; border-radius: var(--radius); padding: 34px 34px 30px;
  box-shadow: var(--shadow); transition: box-shadow .18s, transform .18s;
}
.duo-tile:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.duo-ink { background: linear-gradient(135deg, #2e3a45, #45535f); color: #eef3f8; }
.duo-bloom { background: linear-gradient(135deg, var(--accent-dark), var(--accent-deep)); color: #fdeef5; }
.duo-note {
  font-family: 'Karla', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase; opacity: .78; margin-bottom: 10px;
}
.duo-tile h3 { font-size: 23px; margin-bottom: 10px; }
.duo-tile p { font-size: 15.5px; opacity: .87; margin-bottom: 18px; }
.duo-cta {
  display: inline-block; font-family: 'Karla', sans-serif; font-weight: 700; font-size: 13.5px;
  letter-spacing: .07em; text-transform: uppercase;
  border-bottom: 2px solid currentColor; padding-bottom: 2px;
}
.pledge-band { background: var(--ink); color: #fff; padding: 58px 0; }
.pledge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pledge-item {
  text-align: left;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
}
.pledge-icon {
  margin-bottom: 14px; color: #e9a0c4;
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 14px;
  background: rgba(233,160,196,.14); border: 1px solid rgba(233,160,196,.35);
}
.pledge-icon svg { display: inline-block; }
.pledge-item h3 { font-size: 18px; margin-bottom: 8px; }
.pledge-item p { color: #c6d2dd; font-size: 15px; }
.fresh-in { padding-top: 0; }
.fit-primer { padding: 58px 0 8px; }
.sizing-cols { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 24px; align-items: start; }
.sizing-steps, .sizing-table { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 30px; }
.sizing-steps h3, .sizing-table h3 { position: relative; font-size: 18px; margin-bottom: 14px; padding-top: 9px; }
.sizing-steps h3::before, .sizing-table h3::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 42px; height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.sizing-steps ol { margin: 0 0 0 20px; color: var(--ink-soft); }
.sizing-steps li { margin-bottom: 13px; font-size: 15.5px; }
.sizing-steps b { color: var(--ink); }
.sizing-table table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.sizing-table th, .sizing-table td { border: 1px solid var(--line); padding: 8px 11px; text-align: left; }
.sizing-table th { background: var(--mist); font-family: 'Karla', sans-serif; font-weight: 700; font-size: 13px; }
.sizing-table td:first-child { font-family: 'Karla', sans-serif; font-weight: 700; white-space: nowrap; }
.habits-band { padding: 54px 0 6px; }
.habits-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.habits-col { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 30px; border-top: 3px solid #3f9d63; }
.habits-dont { border-top-color: var(--accent-dark); }
.habits-col h3 { display: flex; align-items: center; gap: 10px; font-size: 19px; margin-bottom: 14px; }
.habits-do h3 svg { color: #3f9d63; }
.habits-dont h3 svg { color: var(--accent-dark); }
.habits-col ul { list-style: none; }
.habits-col li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 11px;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.habits-col li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  background: #3f9d63;
  border-radius: 50%;
}
.habits-dont li::before { background: var(--accent-dark); }
.credo-band { padding: 62px 0; text-align: center; }
.credo-band h2 { font-size: 27px; max-width: 780px; margin: 0 auto 14px; }
.credo-band p { color: var(--muted); max-width: 720px; margin: 0 auto; }
.longread { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 58px 0; }
.longread h2 { font-size: 26px; margin-bottom: 16px; }
.longread h3 { font-size: 19px; margin: 26px 0 10px; }
.longread p { margin-bottom: 12px; color: var(--ink-soft); }
.longread ul { margin: 10px 0 14px 22px; color: var(--ink-soft); }
.longread li { margin-bottom: 6px; }
.longread table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
.longread th, .longread td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.longread th { background: var(--mist); font-family: 'Karla', sans-serif; font-weight: 700; font-size: 14px; }
.voices { padding: 58px 0 70px; }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.voice-tile { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px 24px; border-top: 3px solid var(--accent); }
.voice-stars { color: var(--star); font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.voice-figure { font-family: 'Karla', sans-serif; font-weight: 700; font-size: 14.5px; margin-bottom: 8px; }
.voice-tile p { font-size: 15.5px; color: var(--ink-soft); }
.voice-name a { color: var(--accent-dark); border-bottom: 1px solid rgba(156, 39, 96, .35); }
.voice-name a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.voice-name { margin-top: 12px; font-weight: 700; }
.page-crown {
  background: linear-gradient(128deg, var(--blue-deep), var(--blue) 55%, #e9f1f8);
  color: var(--ink);
  padding: 54px 0 50px;
}
.page-crown h1 { font-size: 36px; letter-spacing: .01em; margin: 8px 0 10px; }
.page-crown .kicker { color: var(--accent-dark); }
.page-crown-sub { color: var(--ink-soft); max-width: 640px; }
.crumbs { padding: 16px 22px 0; font-size: 14px; color: var(--muted); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent-dark); }
.product { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 44px; padding: 30px 22px 50px; }
.item-media {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  align-self: start;
  position: sticky;
  top: 90px;
}
.item-media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.item-info h1 { font-size: 25px; font-weight: 600; margin: 8px 0 12px; }
.item-meta { margin-bottom: 12px; }
.item-price { font-family: 'Karla', sans-serif; font-weight: 800; font-size: 32px; margin-bottom: 18px; }
.item-info .btn-shop { padding: 14px 46px; font-size: 15px; }
.glance { margin-top: 24px; padding-top: 18px; border-top: 1px dashed var(--line); display: grid; gap: 9px; }
.glance li {
  list-style: none;
  position: relative;
  padding-left: 26px;
  font-family: 'Karla', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .02em;
  color: var(--ink);
}
.glance li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 3px solid var(--accent);
}
.dossier {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 34px 56px;
  padding: 10px 22px 56px;
}
.sheet-head { font-size: 22px; letter-spacing: .01em; margin-bottom: 12px; }
.dossier-side { align-self: start; position: sticky; top: 96px; }
.dossier-lede {
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.7;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}
.dossier-list { border-top: 1px solid var(--line); }
.dossier-row { padding: 20px 0 18px; border-bottom: 1px solid var(--line); }
.dossier-row dt {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.dossier-row dd { margin: 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; }
.prose-page { padding: 46px 0 64px; }
.prose-page .wrap { max-width: 820px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 38px 42px; }
.prose-page h2 { font-size: 21px; margin: 24px 0 10px; }
.prose-page h2:first-child { margin-top: 0; }
.prose-page h3 { font-size: 17px; font-weight: 600; margin: 18px 0 8px; }
.prose-page p { margin-bottom: 12px; color: var(--ink-soft); }
.prose-page ul, .prose-page ol { margin: 10px 0 14px 22px; color: var(--ink-soft); }
.prose-page li { margin-bottom: 6px; }
.prose-page table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 15px; }
.prose-page th, .prose-page td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.prose-page th { background: var(--mist); font-family: 'Karla', sans-serif; font-weight: 700; font-size: 14px; }
.prose-page a { color: var(--accent-dark); text-decoration: underline; text-decoration-color: rgba(156, 39, 96, .4); }
.guide-shelf { padding: 48px 0 64px; }
.guide-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.guide-tile {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 26px 26px 22px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.guide-tile:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(46, 58, 69, .14); }
.guide-tile h2 { font-size: 19px; line-height: 1.3; margin: 10px 0 10px; color: var(--ink); }
.guide-tile p { color: var(--ink-soft); font-size: 14.5px; flex: 1; }
.guide-chip {
  display: inline-block; align-self: flex-start;
  font-family: 'Karla', sans-serif; font-weight: 700; font-size: 11.5px;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--accent-dark); background: var(--mist);
  border-radius: 999px; padding: 5px 12px;
}
.guide-cue {
  margin-top: 14px;
  font-family: 'Karla', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: .05em; text-transform: uppercase; color: var(--accent);
}
.guide-tile:hover .guide-cue { color: var(--accent-deep); }
.guide-return { margin-top: 26px; }
.guide-return a { font-family: 'Karla', sans-serif; font-weight: 700; font-size: 13.5px; }
.figures-band { background: linear-gradient(115deg, #fdf3f8 0%, #f4f6fb 100%); padding: 42px 0; }
.figures-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.stat {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 12px 18px;
  border-bottom: 3px solid var(--accent);
}
.figure-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif; font-weight: 700;
  font-size: 40px; line-height: 1.1; color: var(--accent-dark);
}
.figure-num em { font-style: normal; font-size: 19px; font-weight: 700; margin-left: 3px; color: var(--accent); }
.figure-label { display: block; margin-top: 4px; font-size: 14px; color: var(--muted); }
.showcase {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 44px; align-items: center;
  margin-top: 58px; margin-bottom: 6px;
}
.show-media { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.show-media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.show-text h2 { font-size: 28px; margin: 10px 0 10px; }
.show-rating { margin-bottom: 12px; }
.show-rating span { color: var(--muted); font-size: 14.5px; margin-left: 6px; }
.show-text > p:not(.kicker):not(.show-rating) { color: var(--ink-soft); max-width: 560px; }
.show-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 22px; margin-top: 22px; }
.show-price { font-family: 'Karla', sans-serif; font-weight: 800; font-size: 30px; color: var(--ink); }
.show-more {
  font-family: 'Karla', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: .07em; text-transform: uppercase; color: var(--accent-dark);
}
.show-more:hover { color: var(--ink); }
.closer-band {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fdeef5;
  text-align: center;
  padding: 60px 0 64px;
  margin-top: 64px;
}
.closer-band h2 { font-size: 33px; letter-spacing: .01em; margin-bottom: 12px; }
.closer-band p { max-width: 640px; margin: 0 auto 26px; font-size: 16.5px; opacity: .93; }
.btn-pale { background: #fff; color: var(--accent-deep); }
.btn-pale:hover { background: var(--ink); color: #fff; }
.site-base { background: #232d36; color: #c2cdd8; font-size: 14.5px; }
.logo-word {
  position: relative;
  font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 24px; font-weight: 700; color: #fff;
  letter-spacing: .015em; white-space: nowrap; text-transform: lowercase;
  padding-top: 9px; line-height: 1;
}
.logo-word::before {
  content: '';
  position: absolute;
  top: 0; left: -1px;
  width: 64%; height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.base-trust { border-bottom: 1px solid rgba(255, 255, 255, .1); background: rgba(255, 255, 255, .03); }
.base-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px 18px; padding-top: 20px; padding-bottom: 20px; }
.assure-chip {
  display: flex; align-items: center; gap: 11px;
  font-family: 'Karla', sans-serif; font-weight: 600; font-size: 13px; color: #dfe8f0;
}
.assure-chip svg { color: #e9a0c4; flex: none; }
.base-manifesto {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 44px;
  padding-top: 44px; padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.base-brand p { max-width: 620px; color: #a3b1bd; margin-top: 16px; }
.base-cheat ul { list-style: none; margin: 0 0 10px; }
.base-cheat li { font-size: 13.5px; color: #a3b1bd; margin-bottom: 6px; }
.base-cheat b { color: #fff; font-family: 'Karla', sans-serif; font-weight: 700; }
.base-cheat a { color: #e9a0c4; font-size: 13.5px; }
.base-cheat a:hover { color: #fff; }
.base-nav { display: flex; flex-wrap: wrap; gap: 40px 56px; padding: 32px 22px 40px; }
.base-group { display: flex; flex-direction: column; gap: 8px; min-width: 160px; }
.base-label {
  font-family: 'Karla', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase; color: #e9a0c4;
  margin-bottom: 4px;
}
.base-group a { color: #c2cdd8; }
.base-group a:hover { color: #fff; }
.base-group span { color: #8b99a6; }
.base-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 14px 26px; flex-wrap: wrap;
  padding: 16px 22px 26px; border-top: 1px solid rgba(255, 255, 255, .1); color: #8b99a6; font-size: 13px;
}
.base-bottom p { margin-bottom: 4px; }
.up-btn {
  background: none; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .25); border-radius: 99px;
  color: #c2cdd8; padding: 8px 16px;
  font-family: 'Karla', sans-serif; font-weight: 700; font-size: 11.5px;
  letter-spacing: .1em; text-transform: uppercase;
  transition: border-color .15s, color .15s;
}
.up-btn:hover { border-color: var(--accent); color: #fff; }
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .rack-grid { grid-template-columns: repeat(3, 1fr); }
  .pledge-grid, .voice-grid { grid-template-columns: 1fr; }
  .product { grid-template-columns: 1fr; }
  .item-media { position: static; }
  .duo-band { grid-template-columns: 1fr; }
  .figures-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .showcase { grid-template-columns: 1fr; gap: 26px; margin-top: 46px; }
  .show-media { max-width: 420px; }
  .dossier { grid-template-columns: 1fr; gap: 26px; }
  .dossier-side { position: static; }
  .base-manifesto { grid-template-columns: 1fr; gap: 26px; }
  .base-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .sizing-cols { grid-template-columns: 1fr; }
  .habits-cols { grid-template-columns: 1fr; }
  .perk-grid { grid-template-columns: 1fr 1fr; }
  .guide-flow { grid-template-columns: 1fr 1fr; }
  .splash { padding: 44px 0 46px; }
  .splash h1 { font-size: 40px; }
  .splash-reel { display: flex; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .reel-card { flex: 0 0 172px; scroll-snap-align: start; }
  .menu-toggle { display: block; }
  .rackbar { display: none; }
  .prime-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 10px 16px 16px;
    box-shadow: var(--shadow-hover);
    z-index: 5;
  }
  .menu-open .rackbar { display: block; background: none; }
  .menu-open .prime-nav { display: flex; }
  .prime-nav a { padding: 11px 10px; font-size: 16px; color: var(--ink); text-transform: none; letter-spacing: .02em; border-radius: 8px; }
  .prime-nav a:hover { background: var(--mist); color: var(--accent-dark); }
  .prime-nav a.active { background: var(--mist); color: var(--accent-dark); box-shadow: inset 3px 0 0 var(--accent); }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .grid { grid-template-columns: 1fr; }
  .rack-grid { grid-template-columns: 1fr 1fr; }
  .splash h1 { font-size: 30px; }
  .splash-sub { font-size: 17px; }
  .block-head h2 { font-size: 25px; }
  .page-crown h1 { font-size: 28px; }
  .figures-grid { grid-template-columns: 1fr 1fr; }
  .figure-num { font-size: 32px; }
  .show-text h2 { font-size: 23px; }
  .show-price { font-size: 25px; }
  .closer-band h2 { font-size: 25px; }
  .base-nav { flex-direction: column; gap: 26px; }
  .duo-tile h3 { font-size: 20px; }
  .prose-page .wrap { padding: 28px 20px; }
  .guide-flow { grid-template-columns: 1fr; }
  .guide-shelf { padding: 36px 0 52px; }
  .prose-page table { display: block; overflow-x: auto; white-space: nowrap; }
  .prose-page td { white-space: normal; min-width: 150px; }
  .item-price { font-size: 27px; }
  .logo-mark { font-size: 25px; }
  .logo-sub { display: none; }
  .ticker-slogan { display: none; }
  .ticker-inner { justify-content: center; }
  .st-label { display: none; }
  .find-toggle { border: 0; padding: 8px; }
  .brandbar-inner { min-height: 62px; }
  .perk-grid { grid-template-columns: 1fr; }
  .reel-card { flex-basis: 150px; }
  .mood-grid a { padding: 9px 13px; font-size: 13.5px; }
  .sizing-table table { display: block; overflow-x: auto; }
  .sizing-table td, .sizing-table th { min-width: 110px; }
  .base-trust-grid { grid-template-columns: 1fr; gap: 10px; }
  .base-bottom { flex-direction: column; align-items: flex-start; }
}
