/* ============================================================
   HOUSE OF 360 BEAUTY — brand system
   Black #000 · White #FFF · Off-white #FBFAF7
   Bodoni Moda ≈ Didot · Archivo ≈ Forma DJR Display
   ============================================================ */

:root {
  --black: #000000;
  --white: #ffffff;
  --cream: #fbfaf7;
  --ink-soft: rgba(0, 0, 0, 0.62);
  --paper-soft: rgba(251, 250, 247, 0.64);
  --hairline-dark: rgba(0, 0, 0, 0.16);
  --hairline-light: rgba(251, 250, 247, 0.22);
  --serif: "Bodoni Moda", "Didot", serif;
  --sans: "Archivo", "Helvetica Neue", sans-serif;
  --pad-x: clamp(24px, 6vw, 96px);
}

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

/* serif display text: cap Bodoni Moda's optical size so strokes stay
   sturdy and legible at large sizes (full-range opsz goes hairline-thin) */
.section__title, .cta__title, .case__name, .stat strong,
.hero__metrics strong, .mform__title, .foundation__col h3,
.whylist__item h3, .card h3, .step h3 {
  font-variation-settings: "opsz" 30;
  font-weight: 500;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

em { font-style: italic; }
a { color: inherit; }

/* ---------- progress hairline ---------- */
.progress-line {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1000;
}

/* ---------- the thread: scroll guide ---------- */
/* white stroke + difference blend = black on cream, cream on black, free */
.guide {
  position: absolute;
  top: 0; left: 0;
  z-index: 6;
  pointer-events: none;
  mix-blend-mode: difference;
  display: none;
}
.guide.is-ready { display: block; }
.guide__trail {
  stroke: #fff;
  stroke-width: 1.6;
  stroke-dasharray: 0.8 5.2; /* the monogram's dot rhythm, unspooled */
}
.guide__dot { fill: #fff; }
.guide__halo {
  stroke: #fff;
  stroke-width: 1;
  animation: guide-spin 14s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes guide-spin { to { transform: rotate(360deg); } }

@media (max-width: 1020px) { .guide { display: none !important; } }

/* the thread's final lap — inside the CTA section so it pins with it */
.guide-loop {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(80vw, 720px);
  aspect-ratio: 1;
  pointer-events: none;
  display: none;
}
.guide-loop.is-ready { display: block; }
.guide-loop__trail {
  stroke: #fff;
  stroke-width: 1.4;
  stroke-dasharray: 0.65 4.4;
}
.guide-loop__dot { fill: #fff; }
.guide-loop__halo {
  stroke: #fff;
  stroke-width: 0.9;
  animation: guide-spin 14s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}
/* completion flash — fires once when the lap closes the 360°.
   normal blend (not difference) so the white pop reads as a clean bang */
.guide-loop__flash-fill, .guide-loop__flash-ring {
  transform-box: fill-box;
  transform-origin: center;
  mix-blend-mode: normal;
}
.guide-loop__flash-ring { stroke-width: 2.4; }
.guide-loop.is-complete .guide-loop__flash-fill { animation: guide-flash-fill 0.6s ease-out; }
.guide-loop.is-complete .guide-loop__flash-ring { animation: guide-flash-ring 0.82s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes guide-flash-fill {
  0%   { opacity: 0;    transform: scale(0.9); }
  10%  { opacity: 0.85; transform: scale(1); }
  100% { opacity: 0;    transform: scale(1.06); }
}
@keyframes guide-flash-ring {
  0%   { opacity: 1;  transform: scale(0.96); }
  100% { opacity: 0;  transform: scale(1.22); }
}
@media (max-width: 1020px) { .guide-loop { display: none !important; } }

/* ---------- monogram ---------- */
.monogram { width: 44px; height: 44px; }
.monogram circle, .monogram .monogram__h { stroke: currentColor; }
.monogram__deg {
  font-family: var(--serif);
  font-style: italic;
  font-size: 9px;
  fill: currentColor;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
  padding: 18px var(--pad-x);
  color: var(--cream);
  transition: background 0.45s ease, color 0.45s ease, padding 0.45s ease, box-shadow 0.45s ease;
}
.nav--solid {
  background: var(--cream);
  color: var(--black);
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 1px 0 var(--hairline-dark);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav__wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.nav__name {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav__sub {
  font-size: 9px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 3px;
}
.nav__links {
  display: flex;
  gap: clamp(16px, 2.4vw, 30px);
  margin-left: auto;
}
.nav__links a {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.82;
  transition: opacity 0.25s;
}
.nav__links a:hover { opacity: 1; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.mobilemenu {
  position: fixed;
  inset: 0;
  z-index: 880;
  background: var(--black);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobilemenu.is-open { opacity: 1; pointer-events: auto; }
.mobilemenu nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}
.mobilemenu a {
  font-family: var(--serif);
  font-size: 28px;
  text-decoration: none;
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 34px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn--light { background: var(--cream); color: var(--black); border-color: var(--cream); }
.btn--light:hover { background: transparent; color: var(--cream); }
.btn--ghost:hover { background: var(--cream); color: var(--black); }
.btn--dark { background: var(--black); color: var(--cream); border-color: var(--black); }
.btn--dark:hover { background: transparent; color: var(--black); }
.btn--nav { padding: 12px 24px; }
.btn--xl { padding: 20px 52px; font-size: 13px; }
.btn--full { width: 100%; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--black);
  /* deck v4: warm glow behind the circle ornament */
  background: radial-gradient(115% 80% at 70% 34%, #181513 0%, #0c0c0c 46%, #000 100%);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero__ornament {
  position: absolute;
  top: 50%;
  right: -12vw;
  transform: translateY(-58%);
  width: min(58vw, 760px);
  aspect-ratio: 1;
  opacity: 0.85;
  pointer-events: none;
}
.hero__ornament svg { position: absolute; inset: 0; opacity: 0.6; }
.hero__ornament-img {
  position: absolute;
  inset: 3.5%;
  width: 93%;
  height: 93%;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(circle, black 62%, transparent 100%);
  mask-image: radial-gradient(circle, black 62%, transparent 100%);
}
.hero__inner {
  position: relative;
  /* margin auto centers the text block in the space above the marquee,
     while the marquee stays pinned to the bottom of the hero */
  margin-block: auto;
  padding: 116px var(--pad-x) 40px;
  max-width: 1160px;
}
.hero__kicker span {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0.62;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 26;
  font-size: clamp(36px, 5vw, 96px);
  line-height: 1.12;
  margin: 22px 0 24px;
}
.hero__sub span {
  display: block;
  max-width: 560px;
  font-size: clamp(15px, 1.1vw, 20px);
  line-height: 1.75;
  opacity: 0.74;
}
.hero__cta { margin-top: 32px; }
.hero__cta > span { display: inline-flex; gap: 16px; flex-wrap: wrap; }

.hero__metrics {
  list-style: none;
  display: flex;
  gap: clamp(28px, 5vw, 72px);
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-light);
  flex-wrap: wrap;
}
.hero__metrics li { display: flex; flex-direction: column; gap: 6px; }
.hero__metrics strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.8vw, 62px);
}
.hero__metrics span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  max-width: 170px;
}

/* reveal-line mask — initial hidden state only when JS is running */
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: block; }
html.js .reveal-line > span { transform: translateY(110%); }

/* ---------- marquee ---------- */
.marquee {
  position: relative;
  border-top: 1px solid var(--hairline-light);
  padding: 20px 0 26px;
}
.marquee__label {
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  opacity: 0.45;
  padding: 0 var(--pad-x);
  margin-bottom: 16px;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__row {
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  padding-right: clamp(48px, 6vw, 96px);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* typographic retail wordmarks — replace w/ official SVGs before launch */
.lg {
  white-space: nowrap;
  font-size: 19px;
  opacity: 0.78;
  transition: opacity 0.3s;
}
.lg:hover { opacity: 1; }
.lg small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 2px;
}
.lg--sephora { font-weight: 600; letter-spacing: 0.18em; }
.lg--macys { font-weight: 400; font-size: 22px; }
.lg--ulta { font-weight: 600; letter-spacing: 0.05em; }
.lg--sally { font-weight: 600; letter-spacing: 0.12em; }
.lg--cvs { font-weight: 600; }
.lg--walmart { font-weight: 500; }
.lg--target { font-weight: 600; letter-spacing: 0.06em; }
.lg--amazon { font-weight: 500; text-transform: lowercase; font-size: 21px; }
.lg--tjx { font-weight: 600; font-style: italic; }
.lg--marshalls { font-weight: 600; font-style: italic; }
.lg--homegoods { font-weight: 500; }
.lg--bleu { font-family: var(--serif); font-style: italic; font-size: 21px; }
.lg--douglas { font-weight: 400; letter-spacing: 0.3em; }
.lg--saloncentric { font-weight: 500; letter-spacing: 0.04em; }
.lg--tiktok { font-weight: 600; letter-spacing: 0.02em; }

/* ---------- sections ---------- */
.section { padding: clamp(96px, 12vw, 170px) var(--pad-x); }
.section--cream { background: var(--cream); color: var(--black); }
/* deck v4: lit-from-within darkness, not flat black */
.section--black {
  background: var(--black);
  background: radial-gradient(135% 90% at 50% -8%, #171614 0%, #0a0a0a 46%, #000 100%);
  color: var(--cream);
}

.section__head {
  max-width: 880px;
  margin-bottom: clamp(56px, 7vw, 96px);
  position: relative;
}
.sec-orn {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
}
.sec-orn circle { stroke: currentColor; }
.sec-orn__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  fill: currentColor;
}
.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 80px);
  line-height: 1.1;
}
.section__lede {
  margin-top: 22px;
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 560px;
  color: var(--ink-soft);
}
.section--black .section__lede { color: var(--paper-soft); }

/* draw-on-scroll dotted circles */
.draw-circle { stroke: currentColor; }

/* ---------- operate / channels grid (deck-style, black bg + hover detail) ---------- */
.ops {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline-light);
  border-left: 1px solid var(--hairline-light);
}
/* "Why" variant — 2×2 grid of the same hover boxes, serif number + title */
.ops--why { grid-template-columns: repeat(2, 1fr); }
.why__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1;
  color: inherit;
  opacity: 0.4;
}
.why__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.18;
  color: inherit;
  max-width: 20ch;
  margin: 0;
  transition: font-size 0.4s ease;
}
/* on hover the title eases down so the revealed description fits cleanly */
.ops--why .ops__cell:hover .why__title,
.ops--why .ops__cell:focus-visible .why__title {
  font-size: clamp(21px, 2.1vw, 28px);
}
.ops__cell {
  position: relative;
  border-right: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
  padding: clamp(34px, 3.6vw, 52px) clamp(24px, 3vw, 44px);
  min-height: clamp(320px, 27vw, 360px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  outline: none;
  color: var(--cream);
  transition: background 0.4s ease, color 0.4s ease;
}
/* hover: the whole box flips to white with black text */
.ops__cell:hover,
.ops__cell:focus-visible {
  background: var(--cream);
  color: var(--black);
}

.ops__icon {
  width: clamp(46px, 4.6vw, 56px);
  height: clamp(46px, 4.6vw, 56px);
  color: inherit;
  flex: none;
  transition: transform 0.4s ease;
}
.ops__icon path, .ops__icon circle { stroke: currentColor; stroke-width: 1.15; }
.ops__cell:hover .ops__icon,
.ops__cell:focus-visible .ops__icon { transform: translateY(-4px); }

.ops__label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.17em;
  line-height: 1.55;
  text-transform: uppercase;
  color: inherit;
  max-width: 15ch;
  margin: 0;
}

/* description — revealed in-cell on hover, matches the stat subtext treatment */
.ops__desc {
  margin: 0;
  max-width: 40ch;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  line-height: 1.8;
  text-transform: uppercase;
  color: inherit;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ops__cell:hover .ops__desc,
.ops__cell:focus-visible .ops__desc { opacity: 1; }

.ops__hint {
  font-style: italic;
  opacity: 0.7;
  white-space: nowrap;
}

/* ---------- why list ---------- */
.why__grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.why__figure {
  position: sticky;
  top: 110px;
  overflow: hidden;
}
.why__figure img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(1);
  opacity: 0.92;
}
.whylist {
  list-style: none;
  max-width: 980px;
}
.whylist__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: clamp(32px, 4vw, 52px) 0;
  border-top: 1px solid var(--hairline-light);
}
.whylist__item:last-child { border-bottom: 1px solid var(--hairline-light); }
.whylist__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  opacity: 0.4;
}
.whylist__item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 12px;
}
.whylist__item p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--paper-soft);
  max-width: 640px;
}

/* ---------- track record ---------- */
/* title + stats share one row, sitting just above the case images */
.record__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(32px, 5vw, 72px);
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.section--record .section__head { margin-bottom: 0; }

.record__stats {
  display: flex;
  gap: clamp(32px, 5vw, 72px);
  flex-wrap: wrap;
  justify-content: flex-end;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 300px;
  align-items: flex-end;
  text-align: right;
}
.stat strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1;
}
.stat span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.8;
  color: var(--paper-soft);
}

.record__cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline-light);
  border: 1px solid var(--hairline-light);
}
.case {
  background: var(--black);
  padding: clamp(28px, 3vw, 48px);
}
.case__img {
  margin: calc(clamp(28px, 3vw, 48px) * -1);
  margin-bottom: clamp(24px, 2.5vw, 36px);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.case__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* deck v4: product imagery keeps its warmth, lightly graded */
  filter: contrast(1.04) saturate(1.02);
  opacity: 0.92;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
}
.case:hover .case__img img { transform: scale(1.04); opacity: 1; }
/* square product shots: show the full frame (black bg blends into the card) */
.case__img img.case__img--fit { object-fit: contain; }

/* category breadth strip — placeholder imagery */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline-light);
  border: 1px solid var(--hairline-light);
  margin-top: clamp(48px, 6vw, 80px);
}
.strip figure {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--black);
}
.strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.03);
  opacity: 0.9;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
}
.strip figure:hover img { transform: scale(1.05); opacity: 1; }
.strip figcaption {
  position: absolute;
  left: 18px;
  bottom: 14px;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.case__tag {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 20px;
}
.case__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 36px);
  margin-bottom: 16px;
}
.case p:not(.case__tag) {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--paper-soft);
}

/* ---------- retail tiers ---------- */
.tiers { border-top: 1px solid var(--hairline-light); }
.tier {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 3.6vw, 54px) 0;
  border-bottom: 1px solid var(--hairline-light);
}
.tier__label {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper-soft);
}
.tier__logos {
  display: flex;
  gap: clamp(36px, 5vw, 84px);
  flex-wrap: wrap;
  align-items: center;
}

/* real brand logos — official SVGs whitened crisply (vector, no blur) */
.lg__img {
  height: 36px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.lg__img:hover { opacity: 1; }
/* optical-size normalization per logo (different native aspect ratios) */
.lg__img--macys        { height: 29px; }
.lg__img--nordstrom    { height: 22px; }
.lg__img--bloomingdales{ height: 30px; }
.lg__img--sephora      { height: 20px; }
.lg__img--ulta         { height: 42px; }
.lg__img--cvs          { height: 21px; }
.lg__img--walmart      { height: 36px; }
.lg__img--target       { height: 62px; }
.lg__img--amazon       { height: 36px; }
.lg__img--walmartcom   { height: 32px; }
.lg__img--tjmaxx       { height: 32px; }
.lg__img--marshalls    { height: 27px; }
.lg__img--printemps    { height: 26px; }
.lg__img--homegoods    { height: 30px; }

/* logo + caption stacks (amazon vendor/seller, walmart.com) */
.lg__stack { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.lg__stack--inline { flex-direction: row; align-items: center; gap: 3px; }
.lg__cap {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-soft);
}
.lg__suffix { font-size: 21px; font-weight: 500; color: var(--cream); opacity: 0.9; }

/* typeset wordmarks (brands without an official SVG asset) */
.section--retail .lg { color: var(--cream); opacity: 0.9; font-size: 28px; }
.section--retail .lg:hover { opacity: 1; }
.lg--printemps { font-family: var(--serif); letter-spacing: 0.24em; text-transform: uppercase; font-size: 24px; }
.lg--credo {
  font-family: var(--serif); font-style: italic; font-size: 44px; line-height: 1;
  display: inline-flex; flex-direction: column; align-items: center;
}
.lg--credo small {
  display: block; font-style: normal; font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  opacity: 0.72; margin-top: 6px;
}
.lg--sally { font-weight: 700; letter-spacing: 0.03em; font-size: 30px; }
.lg--saloncentric { font-weight: 500; letter-spacing: 0.01em; font-size: 26px; }
.lg--homegoods { font-family: var(--serif); font-style: italic; font-size: 30px; }

/* ---------- process: THE 360° OPERATING LOOP ---------- */
.process { position: relative; }

/* the loop is a square stage; the ring + hub + 4 nodes + the loop-closer
   ("Measure & Refine") all position against it. ≤1020 it becomes a vertical
   flow (see media query). */
.loop {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 1;
  margin: clamp(16px, 2vw, 40px) auto 0;
}
.loop__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--ink-soft);
  overflow: visible;
}
.loop__ring-bg { stroke: var(--hairline-dark); }
.loop .thread { stroke: var(--black); opacity: 0.32; }   /* draws clockwise on scroll */
.loop__arrows path { color: var(--ink-soft); opacity: 0.6; }

/* center hub — "360°" by default, a step's detail on hover */
.loop__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  max-width: 300px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}
.loop__default { transition: opacity 0.35s ease; }
.loop__hub.is-detail .loop__default { opacity: 0; }
.loop__360 {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 5.4vw, 72px);
  line-height: 1;
}
.loop__hub-label {
  display: block;
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.loop__hub-detail {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 108%;
  margin: 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1.8;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.loop__hub.is-detail .loop__hub-detail { opacity: 1; }

/* the 4 steps + the loop-closer, placed around the ring */
.process__steps { list-style: none; margin: 0; padding: 0; }
.step,
.loop__connector {
  position: absolute;
  width: clamp(158px, 17vw, 196px);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
/* 5 nodes evenly spaced around the ring (pentagon, 72° apart), clockwise */
.step--n1 { left: 50%;    top: 11.3%; }   /*   0° — top          */
.step--n2 { left: 86.8%;  top: 38%; }     /*  72° — upper right   */
.step--n3 { left: 72.8%;  top: 81.3%; }   /* 144° — lower right   */
.step--n4 { left: 27.2%;  top: 81.3%; }   /* 216° — lower left    */
.loop__connector { left: 13.2%; top: 38%; } /* 288° — upper left (the return arc) */

.loop .step__icon { margin-bottom: 8px; }
.step h3,
.loop__connector h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.2;
  margin: 0;
  color: var(--black);
  transition: opacity 0.3s ease;
}
.loop__connector h3 { font-style: italic; }
.step__desc { display: none; }   /* desktop: surfaced in the hub on hover */
.step:hover h3,
.loop__connector:hover h3 { opacity: 0.5; }

/* the tap-to-expand detail panel is a mobile-only affordance */
.loop__panel { display: none; }

/* ---------- foundation ---------- */
.foundation__band {
  margin: 0;
  /* left column of the row; the full collage shows at its natural aspect */
  flex: 1 1 60%;
  min-width: 320px;
  aspect-ratio: 2200 / 943;
  max-height: 560px;
  overflow: hidden;
}
.foundation__band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.03);
}
.section--foundation .section__head { margin-bottom: clamp(28px, 3vw, 48px); }
/* collage + the two text blocks share one horizontal row — no wasted height */
.foundation__body {
  display: flex;
  align-items: center;
  gap: clamp(36px, 4.5vw, 72px);
  flex-wrap: wrap;
}
.foundation {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.6vw, 38px);
  flex: 1 1 340px;
  max-width: 440px;
}
.foundation__divider { width: 100%; height: 1px; }
.foundation__divider { background: var(--hairline-dark); }
.foundation__col .case__tag { opacity: 0.5; color: var(--black); }
.foundation__col h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 42px);
  margin-bottom: 18px;
}
.foundation__col p:not(.case__tag) {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 420px;
}

/* ---------- silk break band ---------- */
.section--silk {
  padding-top: 0;
  padding-bottom: 0;
  /* pull tight to the neighbours so the faded edges bleed into them */
  margin-top: clamp(-130px, -8.5vw, -72px);
  margin-bottom: clamp(-130px, -8.5vw, -72px);
}
.silk-band {
  position: relative;
  margin: 0 calc(var(--pad-x) * -1);
  height: clamp(300px, 30vw, 480px);
  background: var(--cream);
  overflow: hidden;
}
.silk-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.5) contrast(1.02);
  /* sleek fade top & bottom into the cream — crisp body, soft edges */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 17%, #000 83%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 17%, #000 83%, transparent 100%);
}
/* whisper of an on-brand dotted dissolve riding each fade edge */
.silk-band::before,
.silk-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 20%;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(251, 250, 247, 0.42) 0.8px, transparent 1.4px);
  background-size: 12px 12px;
}
.silk-band::before {
  top: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 8%, transparent 70%);
          mask-image: linear-gradient(to bottom, #000 8%, transparent 70%);
}
.silk-band::after {
  bottom: 0;
  -webkit-mask-image: linear-gradient(to top, #000 8%, transparent 70%);
          mask-image: linear-gradient(to top, #000 8%, transparent 70%);
}

/* ---------- final CTA ---------- */
.section--cta {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding-top: clamp(120px, 14vw, 200px);
  padding-bottom: clamp(120px, 14vw, 200px);
}
.cta__photo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
}
.cta__ornament {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(80vw, 720px);
  opacity: 0.35;
  pointer-events: none;
}
.cta__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 96px);
  line-height: 1.12;
  margin-bottom: 48px;
  position: relative;
}
.cta__contact {
  margin-top: 36px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
}
.cta__contact a { text-decoration: none; }
.cta__contact a:hover { text-decoration: underline; }
.cta__main { transition: opacity 0.2s linear; }

/* closing statement — retired: the centered CTA (headline + button) now
   persists as the end state so it's always clickable. Markup kept for
   easy revert; hidden here so it can't overlap the persistent CTA. */
.cta__close {
  display: none;
  position: absolute;
  top: 50%;
  right: var(--pad-x);
  transform: translateY(-50%);
  z-index: 4;
  text-align: right;
  max-width: min(46%, 470px);
}
.cta__close-eyebrow {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 24px;
}
.cta__close-stmt {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 30;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.16;
}
.cta__close-stmt .cl { display: block; }
.cta__close-contact {
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
}
.cta__close-contact a { text-decoration: none; }
.cta__close-contact a:hover { text-decoration: underline; }
.cta__close-legal {
  margin-top: 22px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.4;
}
/* small-print legal / privacy disclaimer, bottom-left of the closing frame */
.cta__disclaimer {
  position: absolute;
  left: var(--pad-x);
  bottom: clamp(20px, 2.6vw, 38px);
  z-index: 4;
  max-width: min(44%, 440px);
  text-align: left;
  font-size: 10.5px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  opacity: 0.42;
}
.cta__disclaimer p { margin: 0; }
.cta__disclaimer p + p { margin-top: 4px; }
.cta__disclaimer a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--hairline-light);
}
.cta__disclaimer:hover { opacity: 0.62; }
.cta__disclaimer a:hover { border-bottom-color: currentColor; }
/* each line starts hidden only when JS drives the reveal */
html.js .cta__reveal { opacity: 0; transform: translateY(26px); }
/* the site ends on the black CTA — keep the pinned spacer black so no
   cream shows through behind/below the closing frame */
.pin-spacer { background: var(--black); }

/* ---------- footer ---------- */
.footer {
  background: var(--black);
  color: var(--cream);
  text-align: center;
  padding: 72px var(--pad-x) 48px;
  border-top: 1px solid var(--hairline-light);
}
.monogram--footer { width: 56px; height: 56px; margin-bottom: 22px; }
.footer__name {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer__name span {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.6em;
  margin-top: 8px;
  opacity: 0.65;
}
.footer__line {
  margin-top: 24px;
  font-size: 12.5px;
  opacity: 0.55;
}
.footer__legal {
  margin-top: 36px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.35;
}

/* ---------- modal / form ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}
.modal__panel {
  position: relative;
  background: var(--cream);
  color: var(--black);
  width: min(560px, 100%);
  max-height: 90svh;
  overflow-y: auto;
  padding: clamp(36px, 5vw, 60px);
  transform: translateY(24px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal.is-open .modal__panel { transform: translateY(0); }
.modal__close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: 0;
  font-size: 30px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.25s;
}
.modal__close:hover { opacity: 1; }

.mform__kicker {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 14px;
}
.mform__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 36px;
}
.mform__group { border: 0; margin-bottom: 30px; }
.mform__group legend {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.mform__row { display: flex; gap: 36px; }

.check {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 0;
  cursor: pointer;
  font-size: 14.5px;
}
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check__box {
  width: 20px; height: 20px;
  border: 1px solid var(--black);
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s ease;
}
.check input[type="radio"] + .check__box { border-radius: 50%; }
.check input:checked + .check__box { background: var(--black); }
.check input:checked + .check__box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: no-repeat center / 12px url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 12.5 10 18 19 6" fill="none" stroke="%23fbfaf7" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.check input:focus-visible + .check__box { outline: 2px solid var(--black); outline-offset: 3px; }

.field { display: block; }
.field__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.field input {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  padding: 13px 2px;
  border: 0;
  border-bottom: 1px solid var(--black);
  background: transparent;
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s;
}
.field input:focus { border-bottom-width: 2px; }

.mform__error {
  display: none;
  font-size: 12px;
  color: #a02020;
  margin-top: 8px;
}
.mform__group.has-error .mform__error { display: block; }

.mform__note {
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-top: 16px;
}
.mform__consent {
  font-size: 11px;
  line-height: 1.65;
  opacity: 0.62;
  margin-bottom: 18px;
}
.mform__consent a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mform__success { text-align: center; padding: 24px 0; }
.success-ring { width: 110px; height: 110px; margin-bottom: 28px; }
.success-ring circle, .success-ring path { stroke: var(--black); }
.mform__success p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 360px;
  margin: 0 auto;
}

/* ============================================================
   UNIFIED SUBTEXT — every supporting paragraph across the page
   uses one treatment: Archivo, uppercase, letter-spaced, 13px.
   Only color varies by context (set on each element's own rule).
   ============================================================ */
.hero__sub span,
.section__lede,
.stat span,
.case p:not(.case__tag),
.step p,
.loop__connector .step__desc,
.foundation__col p:not(.case__tag),
.ops__desc {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  line-height: 1.85;
  text-transform: uppercase;
}

/* ---------- responsive ---------- */
/* tablets in portrait (iPad 768/834) crowd the inline nav — switch to
   the burger before it breaks; fluid gaps keep 1024+ from cramping */
@media (max-width: 1100px) {
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 1020px) {
  .ops { grid-template-columns: repeat(2, 1fr); }
  /* strategy STAYS A CIRCLE on small screens — compact ring of icon-only
     tap targets; tapping a node expands its detail in the panel below.
     Keeps the section short instead of a long stack of cards. */
  .loop { max-width: 340px; margin: 10px auto 0; }   /* aspect-ratio:1 from base */
  .loop__360 { font-size: 40px; }
  .loop__hub-label { font-size: 9px; letter-spacing: 0.26em; margin-top: 8px; }
  .loop__hub-detail { display: none; }               /* detail goes in the panel, not the hub */
  .loop__hub.is-detail .loop__default { opacity: 1; }/* keep 360° in the center on mobile */

  /* nodes = just the icon (titles/descs surface in the panel on tap) */
  .step h3, .loop__connector h3,
  .step .step__eyebrow, .step__desc { display: none; }
  .loop .step__icon { width: 50px; height: 50px; margin-bottom: 0; }
  .loop .step__icon svg { width: 23px; height: 23px; }
  .step, .loop__connector { width: auto; cursor: pointer; }
  /* the selected node fills in to show what's open */
  .step.is-active .step__icon,
  .loop__connector.is-active .step__icon {
    background: var(--black);
    border-style: solid;
    color: var(--cream);
  }

  /* the tap-to-expand panel below the ring */
  .loop__panel {
    display: block;
    max-width: 360px;
    margin: 22px auto 0;
    text-align: center;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .loop__panel.is-open { opacity: 1; transform: none; }
  .loop__panel-num {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--ink-soft);
    opacity: 0.6;
    margin-bottom: 4px;
  }
  .loop__panel-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 10px;
  }
  .loop__panel-desc {
    font-family: var(--sans);
    font-size: 12.5px;
    letter-spacing: 0.1em;
    line-height: 1.8;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin: 0;
  }
  /* track record cases → sideways swipe carousel (snap, hidden scrollbar) */
  .record__cases {
    display: flex;
    gap: 14px;
    background: none;
    border: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* a touch of room under the cards for the snap motion */
    padding-bottom: 2px;
  }
  .record__cases::-webkit-scrollbar { display: none; }
  .case {
    flex: 0 0 47%;
    scroll-snap-align: start;
    border: 1px solid var(--hairline-light);
  }
  .tier { grid-template-columns: 1fr; gap: 16px; }
  .strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  /* boxes stay in a compact 2-up grid on phones (not one-per-row) so the
     page doesn't run long — smaller cells, tightened to fit cleanly */
  .ops { grid-template-columns: repeat(2, 1fr); }
  .ops__cell {
    min-height: 168px;
    padding: 26px 16px;
    gap: 12px;
  }
  .ops__icon { width: 34px; height: 34px; }
  .ops__label { font-size: 11px; letter-spacing: 0.13em; }
  /* no hover on phones — hide descriptions entirely, just icon + label */
  .ops__desc { display: none; }
  .ops__hint { display: none; }
  /* Why: same 2-up grid, serif title sized down to sit in the smaller cell */
  .ops--why .why__num { font-size: 20px; }
  .ops--why .why__title { font-size: 19px; line-height: 1.16; max-width: none; }

  /* keep the headline clear of the circle portrait — push it off to the
     right so only a faint masked arc shows behind the lower hero, dimmed */
  .hero__ornament {
    width: min(78vw, 320px);
    right: -30vw;
    top: auto;
    bottom: 9%;
    transform: none;
    opacity: 0.5;
  }
  .hero__ornament-img { opacity: 0.34; }

  /* strategy ring: tighten the compact circle for phones */
  .loop { max-width: 300px; }
  .loop .step__icon { width: 46px; height: 46px; }
  .loop .step__icon svg { width: 21px; height: 21px; }

  /* foundation collage: give the wide strip real height so the lifestyle
     shots stay legible, and drop the min-width so it never overflows */
  .foundation__band {
    flex-basis: 100%;
    min-width: 0;
    aspect-ratio: 3 / 2;
    max-height: 300px;
  }
  .foundation { max-width: none; }
  .foundation__divider { width: 100%; height: 1px; }

  /* track record stats: left-align under the title instead of right-aligned */
  .record__stats { justify-content: flex-start; gap: 36px; }
  .stat { align-items: flex-start; text-align: left; }

  /* carousel: one card at a time with a peek of the next to signal swipe */
  .case { flex: 0 0 86%; }
  /* retail logos: shrink + tighten so tiers wrap cleanly, no clipping */
  .tier__logos { gap: 26px 34px; }
  .lg__img { height: 26px; max-width: 150px; }
  .lg__img--target { height: 44px; }
  .lg__img--ulta { height: 30px; }
  .lg__img--sephora, .lg__img--cvs { height: 16px; }
  .lg__img--nordstrom { height: 17px; }
  .section--retail .lg { font-size: 21px; }
  .lg--credo { font-size: 33px; }
  .lg--sally, .lg--homegoods { font-size: 22px; }
  .lg--printemps { font-size: 19px; }
  .hero__metrics { gap: 28px; }
  .mform__row { flex-direction: column; gap: 4px; }
  /* no scroll-lock on mobile — closing copy flows under, centered */
  .cta__close {
    position: static;
    transform: none;
    text-align: center;
    max-width: none;
    right: auto;
    margin-top: 56px;
  }
  .cta__disclaimer {
    position: static;
    left: auto;
    bottom: auto;
    max-width: none;
    text-align: center;
    margin-top: 44px;
  }
}

/* ============================================================
   DECK v4 FACELIFT (2026-06-26) — line icons, strategy icons,
   statement band. Vibe aligned to "House of 360 PHIL DECK v4".
   The Thread scroll guide + pinned finale are untouched.
   ============================================================ */

/* line icons — brand spec: line, square corners, ~1.4px, currentColor */
.card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  display: block;
}
.card__icon [stroke], .step__icon [stroke] { stroke: currentColor; }
.card__icon [fill="currentColor"], .step__icon [fill="currentColor"] { stroke: none; }

/* strategy steps — icon in dashed circle + small serif index eyebrow */
.step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px dashed currentColor;
  border-radius: 50%;
  margin-bottom: 22px;
}
.step__icon svg { width: 27px; height: 27px; }
.step__eyebrow {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  opacity: 0.45;
  margin-bottom: 8px;
}

/* statement band — deck p9 line laid over the silk break */
.silk-band__statement {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--pad-x);
  pointer-events: none;
}
.silk-band__statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 78% at 50% 50%, rgba(0,0,0,0.5) 0%, transparent 72%);
}
.silk-band__statement p {
  position: relative;
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 30;
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-shadow: 0 2px 26px rgba(0,0,0,0.55);
}
.silk-band__statement em { font-style: italic; }

/* CTA — soft centered glow to spotlight the closing circle */
.section--cta { background: radial-gradient(78% 58% at 50% 44%, #161412 0%, #000 70%); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation-duration: 240s; }
  .reveal-line > span { transform: none; }
  * { transition-duration: 0.01ms !important; }
}
