@charset "UTF-8";

:root {
  --pearl: #F4F1EA;
  --night: #102A43;
  --sky: #CFE3F2;
  --coral: #F28C72;
  --ink: #102A43;
  --muted: #4D6275;
  --white: #FFFDF8;
  --line: color-mix(in srgb, var(--night) 22%, transparent);
  --shadow: 0 24px 70px rgba(16, 42, 67, .12);
  --space-1: clamp(.5rem, .4rem + .4vw, .85rem);
  --space-2: clamp(.85rem, .65rem + .7vw, 1.35rem);
  --space-3: clamp(1.2rem, .9rem + 1vw, 2rem);
  --space-4: clamp(1.8rem, 1.25rem + 1.9vw, 3.4rem);
  --space-5: clamp(2.8rem, 2rem + 3vw, 5.5rem);
  --space-6: clamp(4.5rem, 3rem + 6vw, 9rem);
  --radius-pill: 999px;
  --radius-soft: 2.25rem;
  --max: 1320px;
  --read: 68ch;
  --motion-fast: 180ms;
  --motion: 240ms;
  --parallax-y: 0px;
  --font-sans: Inter, "Segoe UI", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--pearl);
  font-family: var(--font-sans);
  font-size: clamp(1rem, .97rem + .18vw, 1.12rem);
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    radial-gradient(circle at 87% 18%, rgba(207, 227, 242, .75) 0 19vw, transparent 19.2vw),
    radial-gradient(circle at 10% 47%, rgba(242, 140, 114, .12) 0 15vw, transparent 15.2vw),
    linear-gradient(112deg, transparent 0 58%, rgba(255,255,255,.3) 58.2% 58.4%, transparent 58.6%);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, input, textarea { font: inherit; }
button, a, input, textarea, summary { -webkit-tap-highlight-color: transparent; }
button, input, textarea {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}
:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}
::selection { background: var(--sky); color: var(--night); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--night);
  color: var(--pearl);
  transform: translateY(-160%);
  transition: transform var(--motion-fast) ease;
}
.skip-link:focus { transform: translateY(0); }

.site-field { position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; }
.field-orbit {
  position: absolute;
  border: 1px solid rgba(16,42,67,.11);
  border-radius: 50%;
}
.field-orbit--a { width: 56vw; aspect-ratio: 1; right: -19vw; top: 20vh; }
.field-orbit--b { width: 34vw; aspect-ratio: 1; left: -17vw; top: 115vh; }
.field-plane {
  position: absolute;
  width: 2px; height: 130vh; left: 58%;
  top: -10vh; background: rgba(16,42,67,.08); transform: rotate(16deg);
}

.site-header {
  position: relative;
  z-index: 50;
  width: min(calc(100% - 2rem), var(--max));
  margin: 1rem auto 0;
}
.header-capsule {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-3);
  padding: .55rem .7rem .55rem 1rem;
  background: rgba(255,253,248,.88);
  border: 1px solid rgba(16,42,67,.12);
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 34px rgba(16,42,67,.08);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 760;
  font-size: clamp(1.05rem, .95rem + .45vw, 1.4rem);
  text-decoration: none;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.brand-mark {
  width: 2rem; aspect-ratio: 1;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--pearl);
  background: var(--night);
  font-family: var(--font-serif);
  font-style: italic;
}
.primary-nav { display: flex; justify-content: center; align-items: center; gap: clamp(.75rem, 1.8vw, 2rem); }
.primary-nav a {
  position: relative;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 650;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -.45rem; height: 2px;
  background: var(--coral); transform: scaleX(0);
  transition: transform var(--motion-fast) ease;
}
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.cart-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 46px;
  padding: .35rem .42rem .35rem 1rem;
  color: var(--pearl);
  background: var(--night);
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-size: .92rem;
  font-weight: 700;
}
.cart-count {
  width: 2.25rem; aspect-ratio: 1; display: grid; place-items: center;
  background: var(--pearl); color: var(--night); border-radius: 50%;
}
.nav-toggle { display: none; min-height: 44px; padding: .45rem .85rem; border-radius: var(--radius-pill); }
.cart-live {
  position: fixed;
  z-index: 100;
  left: 50%; bottom: 1rem;
  transform: translate(-50%, 140%);
  min-width: min(92vw, 340px);
  text-align: center;
  color: var(--pearl);
  background: var(--night);
  border-radius: var(--radius-pill);
  padding: .8rem 1rem;
  transition: transform var(--motion);
}
.cart-live:not(:empty) { transform: translate(-50%, 0); }

main { position: relative; }
.eyebrow, .relay-number, .article-meta, .product-category {
  margin: 0 0 .7rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1,h2,h3,p { overflow-wrap: anywhere; }
h1,h2,h3 { margin: 0; line-height: 1.04; letter-spacing: -.045em; }
h1 { font-size: clamp(3.35rem, 7.6vw, 8.6rem); font-weight: 760; }
h2 { font-size: clamp(2.25rem, 4.5vw, 5.2rem); font-weight: 730; }
h3 { font-size: clamp(1.25rem, 1.2rem + .8vw, 2rem); }
h1 em, h2 em {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -.03em;
}
p { margin: 0 0 1em; }
.text-link {
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: var(--coral);
}
.round-arrow {
  width: 48px; aspect-ratio: 1; display: grid; place-items: center;
  border: 1px solid currentColor; border-radius: 50%;
  text-decoration: none; font-size: 1.35rem;
  transition: transform var(--motion-fast), background var(--motion-fast), color var(--motion-fast);
}
.round-arrow:hover { transform: translateX(4px); background: var(--night); color: var(--pearl); }

.capsule-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .3rem .35rem .3rem 1.15rem;
  color: var(--pearl);
  background: var(--night);
  border: 0;
  border-radius: var(--radius-pill);
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--motion-fast), filter var(--motion-fast);
}
.capsule-button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.capsule-button.is-added { transform: scale(.98); }
.button-orb {
  width: 2.45rem; aspect-ratio: 1; display: grid; place-items: center;
  color: var(--night); background: var(--pearl); border-radius: 50%;
}
.capsule-button--light { color: var(--night); background: var(--pearl); }
.capsule-button--light .button-orb { color: var(--pearl); background: var(--night); }
.hero-actions { display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap; margin-top: var(--space-3); }

/* Home: open pearl field across the first two viewports */
.orbital-hero {
  min-height: calc(100vh - 88px);
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: clamp(1rem, 4vw, 5rem);
  padding: var(--space-4) 0 var(--space-3);
}
.hero-copy { position: relative; z-index: 2; max-width: 760px; }
.hero-copy h1 { max-width: 8.7ch; color: var(--night); }
.hero-copy h1 em { color: var(--coral); }
.hero-lede { max-width: 60ch; margin-top: var(--space-3); color: var(--muted); font-size: clamp(1.06rem, 1rem + .4vw, 1.35rem); }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
}
.hero-facts div { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; }
.hero-facts dt {
  width: 2.25rem; aspect-ratio: 1; display: grid; place-items: center;
  border: 1px solid var(--night); border-radius: 50%; font-size: .72rem; font-weight: 800;
}
.hero-facts dd { margin: 0; font-size: .86rem; line-height: 1.35; color: var(--muted); }

.hero-visual {
  position: relative;
  min-height: min(76vh, 820px);
  display: grid;
  place-items: center;
  isolation: isolate;
  transform: translateY(calc(var(--parallax-y) * -.25));
}
.hero-disc { position: absolute; border-radius: 50%; }
.hero-disc--sky { width: min(40vw, 650px); aspect-ratio: 1; background: var(--sky); right: 2%; top: 9%; z-index: -2; }
.hero-disc--peach { width: min(18vw, 260px); aspect-ratio: 1; background: var(--coral); right: 0; bottom: 14%; z-index: -1; opacity: .88; }
.hero-orbit {
  position: absolute; width: min(46vw, 760px); aspect-ratio: 1; border: 1px solid rgba(16,42,67,.35); border-radius: 50%;
  right: -4%; top: 3%; z-index: -1;
}
.hero-specimen {
  height: min(74vh, 790px); width: auto;
  filter: drop-shadow(0 34px 44px rgba(16,42,67,.15));
  transform: translateY(calc(var(--parallax-y) * -.4)) scale(1.03);
  transition: transform var(--motion) ease-out;
}
.floating-caption {
  position: absolute;
  z-index: 2;
  margin: 0;
  padding: .45rem .8rem;
  border: 1px solid rgba(16,42,67,.35);
  border-radius: var(--radius-pill);
  background: rgba(244,241,234,.58);
  backdrop-filter: blur(10px);
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.floating-caption--top { top: 16%; left: 2%; }
.floating-caption--bottom { bottom: 14%; right: 4%; }

.phase-guide {
  width: min(calc(100% - 2rem), 1040px);
  margin: 0 auto var(--space-6);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.phase-guide::before {
  content: ""; position: absolute; left: 8%; right: 8%; top: 18px; height: 1px; background: var(--line); z-index: -1;
}
.phase-guide a {
  display: grid; justify-items: center; gap: .6rem;
  text-align: center; text-decoration: none; font-size: .82rem; font-weight: 720;
}
.phase-dot { width: 36px; aspect-ratio: 1; display: block; border-radius: 50%; border: 1px solid var(--night); background: var(--pearl); position: relative; }
.phase-dot::after { content:""; position:absolute; inset:4px; border-radius:50%; background:var(--night); }
.phase-dot--quarter::after { clip-path: inset(0 75% 0 0); }
.phase-dot--half::after { clip-path: inset(0 50% 0 0); }
.phase-dot--three::after { clip-path: inset(0 25% 0 0); }

.relay {
  --side: 1fr 1.1fr;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto var(--space-6);
  min-height: 660px;
  display: grid;
  grid-template-columns: var(--side);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  position: relative;
  container-type: inline-size;
}
.relay--right { --side: 1.1fr 1fr; }
.reading-plane { max-width: var(--read); padding: var(--space-4) 0; }
.reading-plane h2 { max-width: 12ch; }
.reading-plane > p:not(.relay-number) { max-width: 58ch; color: var(--muted); }
.editorial-note {
  margin-top: var(--space-3);
  padding-left: 1rem;
  border-left: 3px solid var(--coral);
  font-family: var(--font-serif);
  font-size: 1.16em;
  color: var(--night) !important;
}
.crescent-media {
  position: relative;
  min-height: 620px;
  color: var(--night);
  background: var(--sky);
  border-radius: 50%;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(circle at 72% 50%, transparent 0 39%, #000 39.5%);
  mask-image: radial-gradient(circle at 72% 50%, transparent 0 39%, #000 39.5%);
}
.relay--right .crescent-media {
  -webkit-mask-image: radial-gradient(circle at 28% 50%, transparent 0 39%, #000 39.5%);
  mask-image: radial-gradient(circle at 28% 50%, transparent 0 39%, #000 39.5%);
}
.crescent-media::after {
  content:""; position:absolute; inset:12%; border:1px solid rgba(16,42,67,.35); border-radius:50%;
}
.crescent-media--walk { background: linear-gradient(145deg, var(--sky), color-mix(in srgb, var(--coral) 25%, var(--pearl))); }
.route-line {
  position:absolute; width:72%; height:48%; left:6%; top:24%;
  border: 4px solid var(--night); border-color: var(--night) transparent transparent var(--night);
  border-radius: 50%; transform: rotate(-18deg);
}
.route-paw { position:absolute; left:18%; bottom:22%; font-size:4rem; letter-spacing:1.2rem; transform:rotate(-18deg); }
.crescent-media--knee { display:grid; place-items:center; background: color-mix(in srgb, var(--coral) 28%, var(--pearl)); }
.crescent-media--knee svg { width: 52%; }
.handoff {
  position:absolute;
  width:58px; aspect-ratio:1; display:grid; place-items:center;
  left:calc(50% - 29px); top:calc(50% - 29px);
  border:1px solid var(--night); border-radius:50%; background:var(--pearl);
  font-size:1.4rem; font-weight:800;
}

.orbit-steps { list-style:none; padding:0; margin:var(--space-4) 0 0; display:grid; gap:var(--space-2); }
.orbit-steps li { display:grid; grid-template-columns:auto 1fr; gap:1rem; align-items:start; }
.orbit-steps li > span { width:42px; aspect-ratio:1; display:grid; place-items:center; border-radius:50%; border:1px solid var(--night); font-weight:800; }
.orbit-steps p { margin:.25rem 0 0; color:var(--muted); }

.benefit-orbits {
  width:min(calc(100% - 2rem),var(--max));
  margin:0 auto var(--space-6);
  min-height:760px;
  display:grid;
  grid-template-columns:repeat(12,1fr);
  grid-template-rows:auto 1fr 1fr;
  gap:var(--space-2);
  align-items:center;
}
.benefit-orbits header { grid-column:1 / 7; align-self:end; padding-bottom:var(--space-3); }
.benefit-orbits header h2 { max-width:10ch; }
.benefit-oval {
  border-radius:var(--radius-pill);
  padding:clamp(2rem,4vw,4rem);
  display:flex; flex-direction:column; justify-content:center;
  min-height:250px;
}
.benefit-oval p { color:var(--muted); max-width:42ch; }
.benefit-oval--large { grid-column:1 / 8; grid-row:2; background:var(--sky); }
.benefit-oval--small { grid-column:8 / 13; grid-row:2; border:1px solid var(--night); }
.benefit-oval--tall { grid-column:5 / 13; grid-row:3; color:var(--pearl); background:var(--night); }
.benefit-oval--tall p { color:rgba(244,241,234,.78); }
.line-icon { font-size:2rem; margin-bottom:1rem; }

.reading-sample {
  width:min(calc(100% - 2rem),var(--max));
  margin:0 auto var(--space-6);
  display:grid;
  grid-template-columns:minmax(240px,.62fr) minmax(0,1.38fr);
  gap:clamp(2rem,6vw,7rem);
}
.sample-index { position:sticky; top:7rem; align-self:start; }
.sample-index h2 { max-width:9ch; }
.chapter-dots { display:flex; gap:.55rem; margin-top:var(--space-3); }
.chapter-dots span { width:18px; aspect-ratio:1; border-radius:50%; background:var(--night); }
.chapter-dots span:nth-child(2) { clip-path:inset(0 50% 0 0); }
.chapter-dots span:nth-child(3) { background:var(--sky); border:1px solid var(--night); }
.chapter-dots span:nth-child(4) { background:var(--coral); }
.article-ribbons { display:grid; gap:var(--space-4); }
.article-ribbon {
  min-height:260px;
  padding:var(--space-4);
  display:grid;
  grid-template-columns:1fr auto;
  align-content:center;
  column-gap:var(--space-3);
  position:relative;
}
.article-ribbon::before {
  content:""; position:absolute; inset:0;
  background:var(--sky); border-radius:var(--radius-pill); z-index:-1;
}
.article-ribbon--right { margin-left:10%; }
.article-ribbon--right::before { background:transparent; border:1px solid var(--night); }
.article-ribbon h3 { max-width:20ch; }
.article-ribbon h3 a { text-decoration:none; }
.article-ribbon p:not(.article-meta) { grid-column:1; color:var(--muted); max-width:52ch; }
.article-ribbon .round-arrow { grid-column:2; grid-row:1 / 4; align-self:center; }

.characteristics {
  width:min(calc(100% - 2rem),var(--max));
  margin:0 auto var(--space-6);
  min-height:600px;
  display:grid;
  grid-template-columns:.75fr 1fr;
  gap:clamp(2rem,6vw,7rem);
  align-items:center;
  position:relative;
}
.characteristics-disc {
  position:absolute; width:420px; aspect-ratio:1; border-radius:50%; background:var(--coral);
  left:-220px; top:50%; transform:translateY(-50%); opacity:.22; z-index:-1;
}
.characteristics h2 { max-width:10ch; }
.comparison-lines { border-top:1px solid var(--night); }
.comparison-lines div { display:grid; grid-template-columns:100px 1fr; gap:var(--space-2); padding:1.5rem 0; border-bottom:1px solid var(--line); }
.comparison-lines span { font-weight:800; text-transform:uppercase; font-size:.76rem; letter-spacing:.12em; }
.comparison-lines p { margin:0; color:var(--muted); }

.product-shelf, .related-shelf {
  padding:var(--space-6) max(1rem, calc((100vw - var(--max))/2));
  background:var(--sky);
  position:relative;
}
.product-shelf::before {
  content:""; position:absolute; width:280px; aspect-ratio:1; border-radius:50%; background:var(--pearl); right:4%; top:-100px;
}
.shelf-heading { display:grid; grid-template-columns:1fr .8fr; column-gap:var(--space-4); align-items:end; position:relative; z-index:1; }
.shelf-heading h2 { max-width:11ch; }
.shelf-heading > p:last-child { color:var(--muted); max-width:52ch; justify-self:end; }
.product-track {
  display:grid;
  grid-template-columns:repeat(4,minmax(220px,1fr));
  gap:clamp(1rem,2vw,2rem);
  margin-top:var(--space-5);
}
.product-pedestal { min-width:0; position:relative; padding-bottom:var(--space-2); }
.product-pedestal:nth-child(even) { transform:translateY(2.5rem); }
.product-disc {
  aspect-ratio:1;
  border-radius:50%;
  overflow:hidden;
  background:var(--pearl);
  margin-bottom:var(--space-2);
}
.product-disc img { width:100%; height:100%; object-fit:cover; transition:transform var(--motion); }
.product-pedestal:hover .product-disc img { transform:scale(1.035); }
.product-pedestal h3 { margin-bottom:.8rem; }
.product-pedestal > p:not(.product-category,.product-price) { color:var(--muted); font-size:.94rem; }
.product-price { font-size:1.3rem; font-weight:800; margin:.85rem 0; }
.product-form { display:flex; align-items:end; gap:.65rem; flex-wrap:wrap; }
.qty-label { display:grid; gap:.25rem; font-size:.72rem; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.qty-label input { width:74px; min-height:50px; padding:.6rem; border-radius:var(--radius-pill); text-align:center; }
.product-form .capsule-button { flex:1; min-width:150px; }
.shelf-link { display:inline-block; margin-top:var(--space-5); }
.stock-note { font-weight:760; }

.offer-orbit {
  min-height:720px;
  padding:var(--space-6) max(1rem, calc((100vw - var(--max))/2));
  display:grid;
  place-items:center;
  position:relative;
  overflow:hidden;
  color:var(--pearl);
  background:var(--night);
}
.offer-copy { width:min(760px,100%); text-align:center; position:relative; z-index:2; }
.offer-copy h2 { max-width:12ch; margin:0 auto; }
.offer-copy p:not(.eyebrow) { max-width:60ch; margin:var(--space-3) auto; color:rgba(244,241,234,.76); }
.offer-copy .capsule-button { margin-top:var(--space-2); }
.offer-disc { position:absolute; border-radius:50%; }
.offer-disc--a { width:min(70vw,900px); aspect-ratio:1; border:1px solid rgba(244,241,234,.28); }
.offer-disc--b { width:min(42vw,520px); aspect-ratio:1; background:var(--coral); opacity:.65; left:-16vw; bottom:-21vw; }

.faq-orbits {
  width:min(calc(100% - 2rem),var(--max));
  margin:0 auto;
  padding:var(--space-6) 0;
  display:grid; grid-template-columns:.7fr 1.3fr; gap:var(--space-5);
}
.faq-heading h2 { max-width:8ch; position:sticky; top:7rem; }
.faq-list { border-top:1px solid var(--night); }
.faq-list details { border-bottom:1px solid var(--line); }
.faq-list summary {
  min-height:74px; display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:1rem 0; cursor:pointer; font-weight:760; list-style:none;
}
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:"＋"; width:36px; aspect-ratio:1; display:grid; place-items:center; border:1px solid var(--night); border-radius:50%; flex:0 0 auto; }
.faq-list details[open] summary::after { content:"−"; background:var(--night); color:var(--pearl); }
.faq-list details p { max-width:66ch; color:var(--muted); padding:0 3.2rem 1.5rem 0; }

.order-relay {
  width:min(calc(100% - 2rem),var(--max));
  margin:0 auto var(--space-6);
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:var(--space-4);
  align-items:center;
}
.order-relay > div:first-child h2 { max-width:11ch; }
.order-relay > div:first-child p:not(.eyebrow) { max-width:58ch; color:var(--muted); }
.single-product-form {
  min-height:320px;
  display:grid;
  grid-template-columns:minmax(150px,.7fr) 1fr;
  align-items:center;
  gap:var(--space-3);
  padding:var(--space-3);
  border-radius:var(--radius-pill);
  background:var(--sky);
}
.single-product-form img { width:100%; border-radius:50%; }
.order-relay > .text-link { grid-column:2; }

/* Archive */
.archive-shell, .catalog-shell, .cart-shell, .checkout-shell, .content-shell {
  width:min(calc(100% - 2rem),var(--max));
  margin:0 auto;
  padding-bottom:var(--space-6);
}
.archive-hero, .catalog-hero, .utility-hero, .content-hero {
  min-height:55vh;
  display:grid; align-items:end;
  padding:var(--space-5) 0;
}
.archive-hero h1, .catalog-hero h1, .utility-hero h1, .content-hero h1 { max-width:10ch; }
.archive-hero p:last-child, .catalog-hero p:last-child, .utility-hero p:last-child, .content-hero p:last-child { max-width:60ch; color:var(--muted); margin-top:var(--space-3); }
.oval-filters {
  display:flex; flex-wrap:wrap; gap:.65rem; margin-bottom:var(--space-5);
}
.oval-filters a {
  min-height:44px; display:inline-flex; align-items:center; padding:.55rem 1rem;
  border:1px solid var(--night); border-radius:var(--radius-pill); text-decoration:none; font-size:.88rem; font-weight:720;
}
.oval-filters a:hover, .oval-filters a.is-active { color:var(--pearl); background:var(--night); }
.title-index { border-top:1px solid var(--night); }
.index-entry {
  display:grid;
  grid-template-columns:72px 1fr auto;
  gap:var(--space-3); align-items:center;
  padding:var(--space-4) 0;
  border-bottom:1px solid var(--line);
}
.index-phase { width:54px; aspect-ratio:1; display:grid; place-items:center; border:1px solid var(--night); border-radius:50%; font-size:.78rem; font-weight:800; }
.index-entry h2 { font-size:clamp(1.7rem,3vw,3.5rem); max-width:22ch; }
.index-entry h2 a { text-decoration:none; }
.index-entry p:not(.article-meta) { color:var(--muted); max-width:58ch; }
.source-base {
  margin-top:var(--space-5); padding:var(--space-3) 0; border-top:4px solid var(--night);
  display:grid; grid-template-columns:.45fr 1fr auto; gap:var(--space-3); align-items:start;
}
.source-base p { color:var(--muted); }

/* Article detail */
.article-layout { width:min(calc(100% - 2rem),var(--max)); margin:0 auto; }
.article-lead {
  min-height:78vh;
  display:grid; grid-template-columns:.8fr 1.2fr; align-items:center; gap:var(--space-5);
}
.article-crescent {
  min-height:620px; border-radius:50%; background:var(--sky); position:relative;
  -webkit-mask-image:radial-gradient(circle at 72% 50%,transparent 0 41%,#000 41.5%);
  mask-image:radial-gradient(circle at 72% 50%,transparent 0 41%,#000 41.5%);
}
.article-crescent span { position:absolute; width:42%; aspect-ratio:1; border-radius:50%; background:var(--coral); left:14%; top:30%; }
.article-heading h1 { font-size:clamp(3rem,6.4vw,7.2rem); max-width:12ch; }
.article-dek { max-width:55ch; margin-top:var(--space-3); font-size:1.25rem; color:var(--muted); }
.article-body { width:min(calc(100% - 2rem),980px); margin:0 auto; padding-bottom:var(--space-6); }
.lead-paragraph { max-width:60ch; font-family:var(--font-serif); font-size:clamp(1.35rem,2vw,1.75rem); margin:0 auto var(--space-5); }
.article-act {
  display:grid; grid-template-columns:180px minmax(0,1fr); gap:var(--space-4);
  margin:0 auto var(--space-5);
}
.article-act--right { grid-template-columns:minmax(0,1fr) 180px; }
.article-act--right .article-media { order:2; }
.article-act > div:last-child { max-width:var(--read); }
.article-act h2 { font-size:clamp(2rem,3.6vw,4rem); max-width:15ch; margin-bottom:var(--space-2); }
.article-act p { color:var(--muted); }
.article-media { min-height:240px; border-radius:var(--radius-pill); background:var(--sky); position:relative; display:grid; place-items:center; }
.article-act--right .article-media { background:transparent; border:1px solid var(--night); }
.act-number { font-size:2rem; font-family:var(--font-serif); }
.act-line { position:absolute; width:1px; height:90px; background:var(--night); bottom:-60px; }
.warning-oval {
  margin:var(--space-6) auto 0;
  padding:var(--space-4);
  border-radius:var(--radius-pill);
  background:color-mix(in srgb,var(--coral) 28%,var(--pearl));
}
.warning-oval h2 { font-size:clamp(1.8rem,3vw,3rem); }
.warning-oval ul { margin:1rem 0 0; }
.related-shelf { margin-top:0; }
.related-shelf > div:first-child { max-width:700px; }
.product-track--compact { grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); }

/* Catalog */
.catalog-hero { grid-template-columns:1fr .7fr; align-items:center; }
.catalog-orbit { min-height:440px; position:relative; }
.catalog-orbit span { position:absolute; border-radius:50%; }
.catalog-orbit span:nth-child(1) { width:390px; aspect-ratio:1; background:var(--sky); right:0; top:0; }
.catalog-orbit span:nth-child(2) { width:210px; aspect-ratio:1; background:var(--coral); left:8%; bottom:0; }
.catalog-orbit span:nth-child(3) { width:470px; aspect-ratio:1; border:1px solid var(--night); right:-4%; top:-6%; }
.commerce-disclosure {
  max-width:780px; display:grid; grid-template-columns:180px 1fr; gap:var(--space-2);
  padding:var(--space-2) 0; border-top:1px solid var(--night); border-bottom:1px solid var(--night); margin-bottom:var(--space-5);
}
.commerce-disclosure p { margin:0; color:var(--muted); }
.catalog-composition { display:grid; gap:var(--space-6); }
.catalog-item {
  display:grid; grid-template-columns:minmax(300px,1fr) minmax(280px,.8fr);
  align-items:center; gap:clamp(2rem,7vw,8rem);
  container-type:inline-size;
}
.catalog-item:nth-child(even) { grid-template-columns:minmax(280px,.8fr) minmax(300px,1fr); }
.catalog-item:nth-child(even) .catalog-media { order:2; }
.catalog-media { position:relative; aspect-ratio:1; display:grid; place-items:center; }
.catalog-media::before { content:""; position:absolute; width:88%; aspect-ratio:1; border-radius:50%; background:var(--sky); z-index:-2; }
.catalog-item:nth-child(3n) .catalog-media::before { background:color-mix(in srgb,var(--coral) 25%,var(--pearl)); }
.catalog-ring { position:absolute; width:100%; aspect-ratio:1; border-radius:50%; border:1px solid var(--night); z-index:-1; }
.catalog-media img { width:78%; border-radius:50%; box-shadow:var(--shadow); }
.catalog-copy { max-width:560px; }
.catalog-copy h2 { font-size:clamp(2.1rem,4vw,4.6rem); margin-bottom:var(--space-2); }
.catalog-copy > p:not(.product-category,.product-price) { color:var(--muted); }
.catalog-action { display:flex; justify-content:center; margin-top:var(--space-6); }

/* Cart and checkout */
.utility-hero { min-height:45vh; }
.cart-stage, .checkout-relay {
  display:grid; grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr); gap:var(--space-5); align-items:start;
}
.cart-items { border-top:1px solid var(--night); }
.cart-row {
  display:grid; grid-template-columns:130px 1fr auto auto; gap:var(--space-2); align-items:center;
  padding:var(--space-2) 0; border-bottom:1px solid var(--line);
}
.cart-row-media { width:120px; aspect-ratio:1; border-radius:50%; overflow:hidden; background:var(--sky); }
.cart-row-media img { width:100%; height:100%; object-fit:cover; }
.cart-row-copy h2 { font-size:1.35rem; letter-spacing:-.02em; }
.cart-row-copy .product-price { margin:.3rem 0 0; font-size:1rem; }
.quantity-controls { display:flex; align-items:center; gap:.4rem; flex-wrap:wrap; justify-content:center; }
.quantity-controls button, .quantity-controls input {
  min-width:44px; height:44px; border-radius:var(--radius-pill); text-align:center;
}
.quantity-controls input { width:58px; padding:.4rem; }
.quantity-controls .remove-line { min-width:auto; padding:0 .8rem; background:transparent; border-color:transparent; text-decoration:underline; }
.cart-line-total { margin:0; font-weight:820; white-space:nowrap; }
.cart-summary {
  position:sticky; top:7rem;
  padding:var(--space-3);
  border-radius:var(--radius-soft);
  background:var(--sky);
}
.cart-summary dl { margin:0 0 var(--space-2); }
.cart-summary dl div { display:flex; justify-content:space-between; gap:1rem; padding:.7rem 0; border-bottom:1px solid rgba(16,42,67,.16); }
.cart-summary .summary-total { font-size:1.25rem; font-weight:800; border-bottom:0; }
.cart-summary .capsule-button { width:100%; }
.text-button { min-height:44px; padding:.4rem; background:transparent; border:0; text-decoration:underline; cursor:pointer; width:100%; margin-top:.5rem; }
.empty-cart { min-height:380px; display:grid; align-content:center; justify-items:start; }
.empty-cart h2 { font-size:clamp(2rem,4vw,4rem); }
.empty-cart p { max-width:55ch; color:var(--muted); }
.loading-note { color:var(--muted); }
.is-disabled { opacity:.45; pointer-events:none; }

.checkout-relay { grid-template-columns:.72fr 1.28fr; }
.checkout-summary {
  position:sticky; top:7rem; padding:var(--space-3);
  border-radius:var(--radius-soft); background:var(--sky);
}
.checkout-summary h2, .checkout-form-wrap h2 { font-size:clamp(2rem,3vw,3.4rem); }
.checkout-line { display:flex; justify-content:space-between; gap:1rem; padding:.85rem 0; border-bottom:1px solid rgba(16,42,67,.15); }
.checkout-total { font-size:1.2rem; margin-top:1.2rem; }
.checkout-form-wrap { padding:var(--space-3) 0; }
.checkout-form { display:grid; grid-template-columns:1fr 1fr; gap:var(--space-2); margin-top:var(--space-3); }
.field { display:grid; gap:.4rem; }
.field label { font-size:.9rem; font-weight:760; }
.field input, .field textarea {
  width:100%; min-height:50px; padding:.8rem 1rem; border-radius:1.3rem; background:rgba(255,253,248,.82);
}
.field textarea { resize:vertical; }
.field--wide { grid-column:1 / -1; }
.consent-field { display:grid; grid-template-columns:auto 1fr; gap:.8rem; align-items:start; }
.consent-field input { width:22px; height:22px; margin-top:.2rem; }
.consent-field .field-error { grid-column:2; }
.field-error { margin:0; min-height:1.1em; color:#8C2D24; font-size:.82rem; }
.form-global-error { padding:1rem; border-left:4px solid #8C2D24; background:color-mix(in srgb,#8C2D24 10%,var(--pearl)); margin-top:var(--space-2); }
.checkout-submit { justify-self:start; min-width:260px; }
.checkout-submit:disabled { opacity:.55; cursor:not-allowed; }
.checkout-submit.is-loading .button-orb { animation:pulse 1s ease-in-out infinite; }
@keyframes pulse { 50% { transform:scale(.78); } }

/* Success */
.success-shell {
  width:min(calc(100% - 2rem),var(--max)); margin:0 auto;
  min-height:78vh; display:grid; grid-template-columns:.8fr 1.2fr; align-items:center; gap:var(--space-5);
}
.success-orbit { min-height:560px; position:relative; }
.success-orbit::before { content:""; position:absolute; width:90%; aspect-ratio:1; border-radius:50%; background:var(--sky); left:0; top:5%; }
.success-orbit span { position:absolute; width:48%; aspect-ratio:1; border-radius:50%; background:var(--coral); right:0; bottom:10%; }
.success-shell section h1 { font-size:clamp(3rem,6vw,6.5rem); max-width:10ch; }
.success-shell section > p { max-width:58ch; color:var(--muted); }
.order-number { font-size:1.3rem; color:var(--night)!important; }

/* Content pages */
.content-hero { grid-template-columns:1.2fr .8fr; align-items:center; }
.content-crescent {
  min-height:480px; border-radius:50%; background:var(--sky);
  -webkit-mask-image:radial-gradient(circle at 68% 50%,transparent 0 41%,#000 41.5%);
  mask-image:radial-gradient(circle at 68% 50%,transparent 0 41%,#000 41.5%);
}
.content-crescent span { display:block; width:36%; aspect-ratio:1; border-radius:50%; background:var(--coral); transform:translate(40%,120%); }
.content-relay { width:min(960px,100%); margin:0 auto; }
.content-section {
  display:grid; grid-template-columns:100px 1fr; gap:var(--space-3);
  padding:var(--space-5) 0; border-top:1px solid var(--line);
}
.content-section--right { grid-template-columns:1fr 100px; }
.content-section--right .content-number { order:2; }
.content-number { width:64px; aspect-ratio:1; display:grid; place-items:center; border:1px solid var(--night); border-radius:50%; font-weight:800; }
.content-section h2 { font-size:clamp(2rem,4vw,4rem); margin-bottom:var(--space-2); }
.content-section p, .content-section li { color:var(--muted); }
.inline-links { display:flex; gap:1rem; flex-wrap:wrap; }
.contact-orbit {
  margin:var(--space-6) 0 0;
  min-height:420px; padding:var(--space-5); border-radius:var(--radius-pill);
  color:var(--pearl); background:var(--night); display:grid; align-content:center; justify-items:center; text-align:center;
}
.contact-orbit h2 { max-width:10ch; }
.contact-orbit p { max-width:55ch; color:rgba(244,241,234,.75); }

/* Cookie settings */
.cookie-panel {
  width:min(760px,calc(100% - 2rem)); margin:0 auto var(--space-6);
  padding:var(--space-4); border-radius:var(--radius-soft); background:var(--sky);
}
.cookie-option { display:grid; grid-template-columns:auto 1fr; gap:1rem; padding:1.2rem 0; border-bottom:1px solid rgba(16,42,67,.16); }
.cookie-option input { width:24px; height:24px; margin-top:.25rem; }
.cookie-option p { color:var(--muted); }
.cookie-actions { display:flex; gap:1rem; flex-wrap:wrap; margin-top:var(--space-3); }
.cookie-status { font-weight:720; margin-top:1rem; }

/* Footer */
.site-footer {
  position:relative;
  overflow:hidden;
  color:var(--pearl);
  background:var(--night);
  padding:var(--space-6) max(1rem,calc((100vw - var(--max))/2)) var(--space-2);
}
.footer-disc {
  position:absolute; width:min(48vw,650px); aspect-ratio:1; border-radius:50%;
  background:rgba(207,227,242,.1); right:-14vw; top:-20vw;
}
.footer-inner {
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.5fr .55fr .55fr; gap:var(--space-5);
}
.brand--footer { color:var(--pearl); margin-bottom:var(--space-2); }
.brand--footer .brand-mark { color:var(--night); background:var(--pearl); }
.footer-colophon > p { max-width:52ch; color:rgba(244,241,234,.78); }
.fine-print { font-size:.8rem; line-height:1.5; opacity:.8; }
.footer-links { display:grid; align-content:start; gap:.55rem; }
.footer-links strong { margin-bottom:.45rem; }
.footer-links a { color:rgba(244,241,234,.78); }
.footer-base {
  position:relative; z-index:1;
  display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap;
  margin-top:var(--space-5); padding-top:var(--space-2); border-top:1px solid rgba(244,241,234,.18);
  font-size:.78rem; color:rgba(244,241,234,.64);
}

.empty-page {
  width:min(calc(100% - 2rem),900px); margin:0 auto; min-height:70vh; display:grid; align-content:center;
}
.empty-page h1 { font-size:clamp(3rem,7vw,7rem); }

/* Accessibility helpers */
.visually-hidden {
  position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important;
  overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important;
}

/* Container-based handoff */
@container (max-width: 760px) {
  .relay { grid-template-columns:1fr; min-height:auto; }
  .relay .crescent-media { min-height:430px; width:min(100%,520px); }
  .relay--right .reading-plane { order:1; }
  .relay--right .crescent-media { order:2; }
  .handoff { position:static; width:48px; margin:-1rem auto 0; }
  .handoff::before { content:""; }
}

/* Responsive */
@media (max-width: 1050px) {
  .primary-nav { gap:.8rem; }
  .orbital-hero { grid-template-columns:1fr 1fr; }
  .hero-facts { grid-template-columns:1fr; max-width:480px; }
  .product-track { grid-template-columns:repeat(2,1fr); }
  .product-pedestal:nth-child(even) { transform:none; }
  .benefit-orbits { min-height:auto; }
  .reading-sample { grid-template-columns:1fr; }
  .sample-index { position:static; }
  .cart-stage, .checkout-relay { grid-template-columns:1fr; }
  .cart-summary, .checkout-summary { position:static; }
}

@media (max-width: 820px) {
  .site-header { width:min(calc(100% - 1rem),var(--max)); margin-top:.5rem; }
  .header-capsule { grid-template-columns:auto auto auto; gap:.45rem; padding:.45rem .5rem .45rem .75rem; }
  .nav-toggle { display:inline-flex; justify-content:center; justify-self:end; }
  .primary-nav {
    display:none; position:absolute; left:.5rem; right:.5rem; top:calc(100% + .4rem);
    padding:1rem; border-radius:1.5rem; background:var(--white); box-shadow:var(--shadow);
    flex-direction:column; align-items:stretch;
  }
  .primary-nav.is-open { display:flex; }
  .primary-nav a { min-height:44px; display:flex; align-items:center; }
  .cart-link > span:first-child { display:none; }
  .cart-link { padding:.3rem; }
  .brand-mark { width:1.8rem; }
  .orbital-hero {
    grid-template-columns:1fr;
    padding-top:var(--space-5);
  }
  .hero-copy { order:1; }
  .hero-visual { order:2; min-height:620px; }
  .hero-disc--sky { width:min(82vw,620px); }
  .hero-disc--peach { width:35vw; }
  .hero-orbit { width:min(92vw,700px); }
  .hero-specimen { height:600px; }
  .phase-guide { grid-template-columns:repeat(2,1fr); row-gap:1.4rem; }
  .phase-guide::before { display:none; }
  .relay { grid-template-columns:1fr; min-height:auto; }
  .relay .reading-plane { order:1; }
  .relay .crescent-media { order:2; min-height:430px; }
  .handoff { position:static; margin:-1rem auto 0; order:3; }
  .benefit-orbits { grid-template-columns:1fr; grid-template-rows:auto; }
  .benefit-orbits header, .benefit-oval--large, .benefit-oval--small, .benefit-oval--tall { grid-column:1; grid-row:auto; }
  .benefit-oval { min-height:230px; }
  .article-ribbon--right { margin-left:0; }
  .characteristics { grid-template-columns:1fr; }
  .shelf-heading { grid-template-columns:1fr; }
  .shelf-heading > p:last-child { justify-self:start; }
  .faq-orbits, .order-relay { grid-template-columns:1fr; }
  .faq-heading h2 { position:static; }
  .order-relay > .text-link { grid-column:1; }
  .article-lead, .catalog-hero, .content-hero, .success-shell { grid-template-columns:1fr; }
  .article-crescent, .content-crescent { min-height:420px; order:2; }
  .article-heading, .content-hero > div:first-child { order:1; }
  .catalog-orbit { min-height:360px; }
  .catalog-item, .catalog-item:nth-child(even) { grid-template-columns:1fr; gap:var(--space-3); }
  .catalog-item:nth-child(even) .catalog-media { order:0; }
  .cart-row { grid-template-columns:90px 1fr; }
  .cart-row-media { width:84px; }
  .quantity-controls, .cart-line-total { grid-column:2; justify-self:start; }
  .article-act, .article-act--right { grid-template-columns:72px 1fr; }
  .article-act--right .article-media { order:0; }
  .article-media { min-height:180px; }
  .source-base { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr 1fr; }
  .footer-colophon { grid-column:1 / -1; }
}

@media (max-width: 560px) {
  h1 { font-size:clamp(3rem,15vw,5.2rem); }
  h2 { font-size:clamp(2rem,10vw,3.6rem); }
  .header-capsule { grid-template-columns:auto 1fr auto; }
  .nav-toggle { justify-self:center; font-size:.82rem; padding:.35rem .6rem; }
  .brand { font-size:1rem; gap:.45rem; }
  .hero-visual { min-height:500px; }
  .hero-specimen { height:480px; }
  .floating-caption--top { top:8%; }
  .floating-caption--bottom { bottom:4%; }
  .phase-guide { font-size:.75rem; }
  .crescent-media { min-height:340px!important; }
  .product-track { grid-template-columns:1fr; }
  .product-pedestal { max-width:420px; }
  .article-ribbon { padding:2rem 1.3rem; grid-template-columns:1fr; }
  .article-ribbon .round-arrow { grid-column:1; grid-row:auto; margin-top:1rem; }
  .single-product-form { grid-template-columns:1fr; border-radius:2.5rem; }
  .single-product-form img { max-width:230px; }
  .article-act, .article-act--right { grid-template-columns:1fr; }
  .article-media, .article-act--right .article-media { min-height:90px; border-radius:var(--radius-pill); }
  .act-line { display:none; }
  .warning-oval { border-radius:2.5rem; padding:2rem 1.4rem; }
  .index-entry { grid-template-columns:48px 1fr; }
  .index-entry .round-arrow { grid-column:2; }
  .index-phase { width:44px; }
  .checkout-form { grid-template-columns:1fr; }
  .field--wide { grid-column:1; }
  .cart-row { grid-template-columns:72px 1fr; }
  .cart-row-media { width:68px; }
  .quantity-controls { justify-content:flex-start; }
  .footer-inner { grid-template-columns:1fr; }
  .footer-colophon { grid-column:1; }
  .content-section, .content-section--right { grid-template-columns:1fr; }
  .content-section--right .content-number { order:0; }
  .contact-orbit { border-radius:2.5rem; padding:2rem 1.25rem; }
}

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

@media (forced-colors: active) {
  .hero-disc, .offer-disc, .field-orbit, .catalog-orbit, .product-disc { forced-color-adjust:none; }
}

/* Expanded editorial routes */
.route-scenarios {
  width:min(calc(100% - 2rem),var(--max));
  margin:0 auto;
  padding:var(--space-6) 0;
  display:grid;
  grid-template-columns:1.15fr .8fr .8fr;
  grid-template-rows:auto auto;
  gap:var(--space-3);
  align-items:center;
}
.scenario-intro { grid-row:1 / 3; max-width:55ch; padding-right:var(--space-4); }
.scenario-intro h2 { max-width:11ch; margin-bottom:var(--space-3); }
.scenario-intro p { color:var(--muted); }
.scenario-disc {
  min-height:260px;
  padding:var(--space-3);
  border-radius:50%;
  display:grid;
  align-content:center;
  justify-items:center;
  text-align:center;
  border:1px solid var(--line);
  position:relative;
}
.scenario-disc > span { font-size:.72rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; margin-bottom:.65rem; }
.scenario-disc h3 { max-width:10ch; }
.scenario-disc p { max-width:29ch; margin:.8rem auto 0; color:var(--muted); font-size:.92rem; }
.scenario-disc--short { background:var(--sky); transform:translateY(2rem); }
.scenario-disc--usual { background:var(--white); }
.scenario-disc--long { grid-column:2 / 4; width:min(100%,620px); min-height:230px; border-radius:var(--radius-pill); justify-self:center; background:color-mix(in srgb,var(--coral) 22%,var(--pearl)); }

.weekly-rhythm-home {
  width:min(calc(100% - 2rem),var(--max));
  margin:0 auto;
  padding:var(--space-6) 0;
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:var(--space-5);
  align-items:center;
}
.weekly-orbit { min-height:620px; position:relative; }
.weekly-orbit::before,
.weekly-orbit::after { content:""; position:absolute; border-radius:50%; }
.weekly-orbit::before { width:min(100%,570px); aspect-ratio:1; background:var(--sky); left:0; top:4%; }
.weekly-orbit::after { width:42%; aspect-ratio:1; background:var(--coral); right:2%; bottom:6%; }
.weekly-orbit span { position:absolute; z-index:1; width:34px; aspect-ratio:1; border-radius:50%; border:1px solid var(--night); background:var(--pearl); }
.weekly-orbit span:nth-child(1){left:26%;top:13%}.weekly-orbit span:nth-child(2){left:51%;top:19%}.weekly-orbit span:nth-child(3){left:67%;top:38%}.weekly-orbit span:nth-child(4){left:61%;top:64%}.weekly-orbit span:nth-child(5){left:39%;top:76%}.weekly-orbit span:nth-child(6){left:17%;top:63%}.weekly-orbit span:nth-child(7){left:10%;top:36%}
.weekly-copy { max-width:680px; }
.weekly-copy h2 { max-width:11ch; margin-bottom:var(--space-3); }
.weekly-copy > p { color:var(--muted); max-width:58ch; }
.weekly-lines { margin:var(--space-3) 0; }
.weekly-lines div { display:grid; grid-template-columns:150px 1fr; gap:var(--space-2); padding:1rem 0; border-top:1px solid var(--line); }
.weekly-lines dt { font-weight:800; }
.weekly-lines dd { margin:0; color:var(--muted); }

.article-tips { margin:var(--space-2) 0 0; padding:0; list-style:none; display:grid; gap:.65rem; }
.article-tips li { position:relative; padding-left:1.7rem; color:var(--ink); font-weight:650; }
.article-tips li::before { content:""; position:absolute; left:0; top:.58em; width:.65rem; height:.65rem; border-radius:50%; background:var(--coral); }
.content-checklist { list-style:none; padding:0; margin:var(--space-2) 0; display:grid; gap:.7rem; }
.content-checklist li { position:relative; padding-left:2rem; }
.content-checklist li::before { content:"→"; position:absolute; left:0; color:var(--coral); font-weight:900; }
.content-note { margin-top:var(--space-3); padding:1.4rem 1.8rem; background:var(--sky); border-radius:var(--radius-pill); }
.content-note strong { display:block; margin-bottom:.35rem; }
.content-note p { margin:0; color:var(--night); }
.related-guides { margin:var(--space-6) 0; padding:var(--space-5); border-radius:var(--radius-pill); background:var(--night); color:var(--pearl); }
.related-guides h2 { max-width:10ch; margin-bottom:var(--space-3); }
.related-guides > div { display:grid; gap:.7rem; }
.related-guides a { display:flex; justify-content:space-between; align-items:center; gap:1rem; min-height:58px; padding:.8rem 1.1rem; border-top:1px solid rgba(244,241,234,.25); text-decoration:none; }
.related-guides a span:last-child { width:2.3rem; aspect-ratio:1; border:1px solid currentColor; border-radius:50%; display:grid; place-items:center; }
.related-guides a:hover span:last-child { background:var(--pearl); color:var(--night); }

/* Guides hub */
.guides-shell { width:min(calc(100% - 2rem),var(--max)); margin:0 auto; }
.guides-hero { min-height:760px; display:grid; grid-template-columns:1.1fr .9fr; gap:var(--space-5); align-items:center; padding:var(--space-5) 0 var(--space-6); }
.guides-hero h1 { max-width:10ch; }
.guides-hero > div:first-child > p:last-child { max-width:58ch; color:var(--muted); margin-top:var(--space-3); }
.guide-orbit-map { min-height:600px; position:relative; }
.guide-orbit-map::before { content:""; position:absolute; width:88%; aspect-ratio:1; border-radius:50%; background:var(--sky); right:0; top:2%; }
.guide-orbit-map::after { content:""; position:absolute; width:44%; aspect-ratio:1; border-radius:50%; background:var(--coral); left:4%; bottom:2%; }
.guide-orbit-map span { position:absolute; z-index:2; padding:.55rem 1rem; border:1px solid var(--night); border-radius:var(--radius-pill); background:rgba(244,241,234,.78); font-size:.78rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.guide-orbit-map span:nth-child(1){right:12%;top:22%}.guide-orbit-map span:nth-child(2){left:23%;top:48%}.guide-orbit-map span:nth-child(3){right:20%;bottom:18%}
.guide-jump { display:flex; gap:.8rem; flex-wrap:wrap; padding-bottom:var(--space-5); }
.guide-jump a { min-height:48px; display:inline-flex; align-items:center; padding:.45rem 1.1rem; border:1px solid var(--night); border-radius:var(--radius-pill); text-decoration:none; font-weight:750; }
.guide-jump a:hover { background:var(--night); color:var(--pearl); }
.guide-cluster { display:grid; grid-template-columns:.45fr 1fr; gap:var(--space-5); padding:var(--space-6) 0; border-top:1px solid var(--line); }
.guide-cluster--reverse { grid-template-columns:1fr .45fr; }
.guide-cluster--reverse .cluster-heading { order:2; }
.cluster-heading { align-self:start; position:sticky; top:110px; }
.cluster-heading h2 { max-width:8ch; margin-bottom:var(--space-2); }
.cluster-heading > p:last-child { color:var(--muted); max-width:34ch; }
.guide-index { display:grid; gap:var(--space-3); }
.guide-entry { min-height:220px; display:grid; grid-template-columns:62px 1fr 50px; gap:var(--space-2); align-items:center; padding:var(--space-3); border-radius:var(--radius-pill); background:var(--white); }
.guide-entry:nth-child(even) { margin-left:8%; background:var(--sky); }
.guide-entry > span:first-child { width:52px; aspect-ratio:1; border-radius:50%; display:grid; place-items:center; border:1px solid var(--night); font-weight:800; }
.guide-entry h3 { margin-bottom:.6rem; }
.guide-entry h3 a { text-decoration:none; }
.guide-entry p:not(.product-category) { margin:0; color:var(--muted); max-width:48ch; }
.guide-source { margin-bottom:var(--space-6); }

@media (max-width: 1050px) {
  .route-scenarios { grid-template-columns:1fr 1fr; }
  .scenario-intro { grid-column:1 / -1; grid-row:auto; padding-right:0; }
  .scenario-disc--long { grid-column:1 / -1; }
  .weekly-rhythm-home { grid-template-columns:1fr 1fr; }
  .guides-hero { grid-template-columns:1fr 1fr; }
  .guide-cluster, .guide-cluster--reverse { grid-template-columns:.55fr 1fr; }
  .guide-cluster--reverse .cluster-heading { order:0; }
}

@media (max-width: 820px) {
  .route-scenarios, .weekly-rhythm-home, .guides-hero, .guide-cluster, .guide-cluster--reverse { grid-template-columns:1fr; }
  .scenario-disc--long { grid-column:1; }
  .weekly-copy { order:1; }
  .weekly-orbit { order:2; min-height:500px; }
  .guides-hero > div:first-child { order:1; }
  .guide-orbit-map { order:2; min-height:480px; }
  .cluster-heading { position:static; }
  .guide-entry:nth-child(even) { margin-left:0; }
  .related-guides { border-radius:3rem; }
}

@media (max-width: 560px) {
  .route-scenarios { gap:var(--space-2); }
  .scenario-disc { width:100%; min-height:230px; border-radius:3rem; transform:none; }
  .scenario-disc--long { border-radius:3rem; }
  .weekly-orbit { min-height:390px; }
  .weekly-lines div { grid-template-columns:1fr; gap:.2rem; }
  .content-note { border-radius:2rem; padding:1.2rem; }
  .related-guides { padding:2rem 1.2rem; }
  .guides-hero { min-height:auto; padding-top:var(--space-5); }
  .guide-orbit-map { min-height:380px; }
  .guide-entry { grid-template-columns:48px 1fr; border-radius:2.6rem; padding:1.3rem; }
  .guide-entry > .round-arrow { grid-column:2; }
  .guide-entry > span:first-child { width:42px; }
}

.sitemap-groups { padding-bottom:var(--space-6); display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:var(--space-4); }
.sitemap-groups section { padding:var(--space-4); border-radius:3rem; background:var(--white); }
.sitemap-groups section:nth-child(2), .sitemap-groups section:nth-child(5) { background:var(--sky); }
.sitemap-groups h2 { font-size:clamp(2rem,3.6vw,3.8rem); margin-bottom:var(--space-3); }
.sitemap-groups section > div { display:grid; }
.sitemap-groups a { min-height:54px; display:flex; align-items:center; justify-content:space-between; gap:1rem; border-top:1px solid var(--line); text-decoration:none; font-weight:700; }
.sitemap-groups a span:last-child { color:var(--coral); }
@media (max-width:820px){.sitemap-groups{grid-template-columns:1fr}.sitemap-groups section{border-radius:2.3rem;padding:2rem 1.3rem}}
