/* ============================================================
   createspace · community + talent — public site
   Tokens are verbatim from reference/PUBLIC_SITE_CONTEXT.md §3
   (the live workspace values). Do not re-derive them here.
   ============================================================ */

:root {
  /* Brand constants */
  --ivory:  #FFFFF0;
  --seal:   #4E312C;
  --seal-hover: #5E3B34;
  --dusk:   #D694A4;
  --sage:   #567363;
  --card:   #FFFFFF;

  /* Line work & text */
  --hairline:      rgba(78, 49, 44, 0.10);
  --border:        rgba(78, 49, 44, 0.14);
  --border-strong: rgba(78, 49, 44, 0.19);
  --muted:         rgba(78, 49, 44, 0.55);
  --faint:         rgba(78, 49, 44, 0.40);

  /* Accent tints */
  --sage-tint: rgba(86, 115, 99, 0.10);
  --dusk-tint: rgba(214, 148, 164, 0.16);

  /* Shape, depth & motion */
  --radius-card: 15px;
  --card-shadow:
    0 1px 2px rgba(78, 49, 44, 0.04),
    0 6px 18px -10px rgba(78, 49, 44, 0.08),
    0 24px 48px -28px rgba(78, 49, 44, 0.16),
    inset 0 -1px 0 rgba(78, 49, 44, 0.02);
  --ease-settle: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-ignite: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* The warm dark stage — never black */
  --dark-stage: linear-gradient(163deg, #4A2D26 0%, #3A231D 52%, #2E1B15 100%);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--seal);
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--seal); text-decoration: none; }
a:hover { color: var(--sage); }
::selection { background: rgba(214, 148, 164, 0.3); }

img { max-width: 100%; }

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--seal);
  color: var(--ivory);
  padding: 12px 18px;
  border-radius: 0 0 11px 0;
  font-size: 13.5px;
  font-weight: 600;
}
.skip:focus { left: 0; color: var(--ivory); }

/* ---------- Motion ---------- */
@keyframes csSettle {
  from { opacity: 0; transform: translateY(12px); filter: blur(5px); }
  to   { opacity: 1; transform: none; filter: none; }
}
@keyframes csBreathe {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.25); }
}
.settle { animation: csSettle 0.55s var(--ease-settle) both; }

/* Hero support copy and CTAs arrive a beat after the headline's words. */
.settle-late { animation: csSettle 0.55s var(--ease-settle) 0.5s both; }

/* Word-by-word headline arrival (spans minted by motion.js; without JS the
   headline simply renders whole). */
html.js [data-words] .w {
  display: inline-block;
  animation: csWordIn 0.65s var(--ease-settle) both;
  animation-delay: calc(0.1s + var(--i) * 0.05s);
}
@keyframes csWordIn {
  from { opacity: 0; transform: translateY(0.4em); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: none; }
}

/* ---------- Cross-page transitions ---------- */
/* The header (and the wordmark in it) holds still while the old page settles
   out and the new one settles in — same-origin navigations only, and browsers
   without the View Transitions API simply navigate. */
@view-transition { navigation: auto; }
.site-header { view-transition-name: site-header; }
::view-transition-old(root) { animation: csVtOut 0.25s var(--ease-settle) both; }
::view-transition-new(root) { animation: csVtIn 0.4s var(--ease-settle) both; }
@keyframes csVtOut { to { opacity: 0; transform: translateY(-10px); } }
@keyframes csVtIn { from { opacity: 0; transform: translateY(14px); } }

/* ---------- The constant motion space ---------- */
/* Faint sage and dusk washes drifting behind the ivory canvas — the light in
   the room moving, never a spectacle. White bands and cards sit above them. */
html { background: var(--ivory); }
body::before,
body::after {
  content: '';
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
body::before {
  width: 56vw;
  height: 56vw;
  top: -20vw;
  right: -18vw;
  background: radial-gradient(circle, rgba(86, 115, 99, 0.07), transparent 70%);
  animation: csDriftSlow 26s ease-in-out infinite alternate;
}
body::after {
  width: 48vw;
  height: 48vw;
  bottom: -18vw;
  left: -14vw;
  background: radial-gradient(circle, rgba(214, 148, 164, 0.08), transparent 70%);
  animation: csDriftSlow 34s ease-in-out infinite alternate-reverse;
}
@keyframes csDriftSlow {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-6vw, 5vw, 0); }
}

/* Below-fold sections settle in as they arrive (armed by reveal.js; without
   JS everything is simply visible). */
html.js [data-settle] {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(5px);
  transition: opacity 0.55s var(--ease-settle), transform 0.55s var(--ease-settle), filter 0.55s var(--ease-settle);
}
html.js [data-settle].settled {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Children of a settling section arrive one at a time — cards, list rows and
   steps stagger in behind their section. */
html.js [data-settle] :is(.two, .grid3) > *,
html.js [data-settle] .rows > div,
html.js [data-settle] .step {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease-settle), transform 0.5s var(--ease-settle);
}
html.js [data-settle].settled :is(.two, .grid3) > *,
html.js [data-settle].settled .rows > div,
html.js [data-settle].settled .step {
  opacity: 1;
  transform: none;
}
html.js [data-settle].settled :is(.two, .grid3) > :nth-child(1),
html.js [data-settle].settled :is(.rows > div, .step):nth-child(1) { transition-delay: 0.08s; }
html.js [data-settle].settled :is(.two, .grid3) > :nth-child(2),
html.js [data-settle].settled :is(.rows > div, .step):nth-child(2) { transition-delay: 0.16s; }
html.js [data-settle].settled :is(.two, .grid3) > :nth-child(3),
html.js [data-settle].settled :is(.rows > div, .step):nth-child(3) { transition-delay: 0.24s; }
html.js [data-settle].settled :is(.two, .grid3) > :nth-child(4),
html.js [data-settle].settled :is(.rows > div, .step):nth-child(4) { transition-delay: 0.32s; }
html.js [data-settle].settled :is(.two, .grid3) > :nth-child(5),
html.js [data-settle].settled :is(.rows > div, .step):nth-child(5) { transition-delay: 0.4s; }
html.js [data-settle].settled :is(.two, .grid3) > :nth-child(6),
html.js [data-settle].settled :is(.rows > div, .step):nth-child(6) { transition-delay: 0.48s; }

/* ---------- Layout ---------- */
.shell {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 34px;
  padding-right: 34px;
}
.shell-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 34px;
  padding-right: 34px;
}

/* Column ratios vary per section; set them at the call site with --cols/--gap. */
.split {
  display: grid;
  grid-template-columns: var(--cols, 1fr 1fr);
  gap: var(--gap, 68px);
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap, 20px);
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.band {
  background: var(--card);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.dark {
  background: var(--dark-stage);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.dark h1, .dark h2, .dark h3 { color: var(--ivory); }
.dark > * { position: relative; z-index: 1; }

/* The house ambience for the dark stage — dusk-tinted washes and
   slow-drifting light orbs (14–22s). Alive, never noticed as animation. */
.dark::before,
.dark::after {
  content: '';
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  will-change: transform;
}
.dark::before {
  width: 520px;
  height: 520px;
  left: -140px;
  top: -180px;
  background: radial-gradient(circle, rgba(214, 148, 164, 0.13), transparent 70%);
  animation: csDrift 18s ease-in-out infinite alternate;
}
.dark::after {
  width: 640px;
  height: 640px;
  right: -200px;
  bottom: -240px;
  background: radial-gradient(circle, rgba(255, 255, 240, 0.05), transparent 70%);
  animation: csDrift 22s ease-in-out infinite alternate-reverse;
}
@keyframes csDrift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(64px, 44px, 0); }
}

/* The menu button — two hairlines that become an x. Hidden on desktop. */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--seal);
  cursor: pointer;
  border-radius: 10px;
}
.nav-toggle span {
  position: relative;
  display: block;
  width: 19px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: background 0.2s var(--ease-settle);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 19px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-spring);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.site-header[data-nav-open] .nav-toggle span { background: transparent; }
.site-header[data-nav-open] .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.site-header[data-nav-open] .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand { flex: none; display: block; transition: transform 0.3s var(--ease-spring); }
.brand:hover { transform: scale(1.03); color: var(--seal); }

/* The wordmark lockup, built from the brand recipe itself (PUBLIC_SITE_CONTEXT
   §3) rather than an image, so the site chrome can never lose its mark:
   "createspace" in Lora italic, COMMUNITY + TALENT tracked beneath, joined by
   the Dusk dot — which carries the breathe, the mark's living pulse. */
.brand-word {
  display: block;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 23px;
  line-height: 1;
  color: var(--seal);
}
.brand-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--seal);
  white-space: nowrap;
}
.brand-sub::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dusk);
  flex: none;
  animation: csBreathe 3.4s ease-in-out infinite;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
}
.nav a { color: inherit; }
.nav a:hover { color: var(--seal); }
.nav a[aria-current="page"] { color: var(--seal); font-weight: 600; }

/* ---------- Type ---------- */
h1, h2, h3 { margin: 0; }

.t-display { font-weight: 300; font-size: clamp(38px, 4.8vw, 60px); line-height: 1.1;  letter-spacing: -0.015em; }
.t-hero    { font-weight: 300; font-size: clamp(36px, 4.4vw, 56px); line-height: 1.1;  letter-spacing: -0.015em; }
.t-door    { font-weight: 300; font-size: clamp(28px, 3.1vw, 40px); line-height: 1.16; letter-spacing: -0.012em; }
.t-band    { font-weight: 300; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.16; letter-spacing: -0.015em; }
.t-sec36   { font-weight: 300; font-size: clamp(26px, 2.9vw, 36px); line-height: 1.2;  letter-spacing: -0.01em; }
.t-sec34   { font-weight: 300; font-size: clamp(26px, 2.9vw, 34px); line-height: 1.22; letter-spacing: -0.01em; }
.t-sec32   { font-weight: 300; font-size: clamp(24px, 2.7vw, 32px); line-height: 1.26; letter-spacing: -0.01em; }
.t-quote32 { font-weight: 300; font-size: clamp(24px, 2.7vw, 32px); line-height: 1.42; letter-spacing: -0.01em; }
.t-quote30 { font-weight: 300; font-size: clamp(23px, 2.5vw, 30px); line-height: 1.45; letter-spacing: -0.01em; }
.t-letter  { font-weight: 300; font-size: clamp(21px, 2.2vw, 27px); line-height: 1.5;  letter-spacing: -0.01em; }
.t-30      { font-weight: 300; font-size: 30px; line-height: 1.22; letter-spacing: -0.01em; }
.t-27      { font-weight: 300; font-size: 27px; line-height: 1.24; }
.t-24      { font-weight: 300; font-size: 24px; line-height: 1.25; }
.t-23      { font-weight: 300; font-size: 23px; line-height: 1.3; }

/* Lora italic — the wordmark and ONE emphasis phrase per screen. Never body. */
.emph      { font-family: 'Lora', Georgia, 'Times New Roman', serif; font-style: italic; font-weight: 400; }
.emph-sage { font-family: 'Lora', Georgia, 'Times New Roman', serif; font-style: italic; font-weight: 400; color: var(--sage); }
.emph-dusk { font-family: 'Lora', Georgia, 'Times New Roman', serif; font-style: italic; font-weight: 400; color: var(--dusk); }

/* The tracked label — the house's signature small-caps eyebrow. */
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}
.eyebrow-wide { letter-spacing: 0.22em; }
.eyebrow-dark { color: rgba(255, 255, 240, 0.66); }

.lede    { font-size: 15.5px; font-weight: 300; line-height: 1.75; color: var(--muted); }
.body    { font-size: 14.5px; font-weight: 300; line-height: 1.75; color: var(--muted); }
.body-15 { font-size: 15px;   font-weight: 300; line-height: 1.75; color: var(--muted); }
.body-14 { font-size: 14px;   font-weight: 300; line-height: 1.7;  color: var(--muted); }
.body-warm { font-size: 15px; font-weight: 300; line-height: 1.8;  color: rgba(78, 49, 44, 0.66); }
.fine    { font-size: 13px;   font-weight: 300; line-height: 1.7;  color: var(--faint); }
.fine-13 { font-size: 13.5px; font-weight: 300; line-height: 1.7;  color: var(--faint); }
.fine-12 { font-size: 12.5px; font-weight: 300; line-height: 1.65; color: var(--faint); }

.dark .lede { color: rgba(255, 255, 240, 0.78); }
.dark .body-15 { color: rgba(255, 255, 240, 0.76); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 22px;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  transition: background 0.25s var(--ease-ignite), border-color 0.25s var(--ease-ignite), transform 0.15s var(--ease-spring);
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--seal); color: var(--ivory); }
.btn-primary:hover { background: var(--seal-hover); color: var(--ivory); }

.btn-secondary { background: transparent; border: 1px solid var(--border); color: var(--seal); }
.btn-secondary:hover { border-color: var(--border-strong); color: var(--seal); }

.btn-ivory { background: var(--ivory); color: var(--seal); }
.btn-ivory:hover { background: var(--dusk); color: var(--seal); }

.btn-outline-ivory { background: transparent; border: 1px solid rgba(255, 255, 240, 0.26); color: var(--ivory); }
.btn-outline-ivory:hover { border-color: var(--ivory); color: var(--ivory); }

.btn-lg { padding: 15px 26px; }
.nav-apply { flex: none; font-size: 13.5px; padding: 12px 21px; }

/* ---------- Components ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: var(--pad, 26px);
  box-shadow: var(--card-shadow);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-ignite);
}
@media (hover: hover) {
  .card:hover {
    transform: translateY(-2px);
    box-shadow:
      0 1px 2px rgba(78, 49, 44, 0.05),
      0 10px 24px -12px rgba(78, 49, 44, 0.10),
      0 30px 56px -28px rgba(78, 49, 44, 0.20),
      inset 0 -1px 0 rgba(78, 49, 44, 0.02);
  }
}
.card-flat {
  background: var(--ivory);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: var(--pad, 26px);
}
.card-h { font-size: 16px; font-weight: 600; margin: 0 0 8px; }

.pill {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
}
.pill-lg { font-size: 11px; padding: 6px 14px; }
.pill-sage { background: var(--sage-tint); color: var(--sage); }
.pill-dusk-dark { background: rgba(214, 148, 164, 0.22); color: var(--ivory); }
.pill-ivory-dark { background: rgba(255, 255, 240, 0.10); color: rgba(255, 255, 240, 0.86); }
.pill-faint { background: rgba(78, 49, 44, 0.06); color: var(--faint); }

/* Live season status lines (filled by seasons.js) */
.season-line { font-size: 13px; font-weight: 400; line-height: 1.6; color: var(--muted); margin: 14px 0 0; }
.season-line-dark { font-size: 13px; font-weight: 400; line-height: 1.6; color: rgba(255, 255, 240, 0.62); margin: 14px 0 0; }

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: block;
  flex: none;
  animation: csBreathe 3s ease-in-out infinite;
}
.dot-sage { background: var(--sage); }
.dot-dusk { background: var(--dusk); }
.dot-row { display: flex; align-items: center; gap: 10px; }

/* Striped placeholder frames — each labelled with the imagery that belongs there. */
.ph {
  border-radius: var(--radius-card);
  border: 1px solid var(--hairline);
  background-image: repeating-linear-gradient(135deg, #F7F3E8 0 11px, #FFFDF8 11px 22px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.ph-label-boxed {
  background: var(--ivory);
  border: 1px solid var(--hairline);
  padding: 8px 13px;
  border-radius: 10px;
}

/* Hairline-divided rows */
.rows { display: grid; }
.rows > div {
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
}
.rows > div:last-child { border-bottom: 1px solid var(--hairline); }
.rows h3 { font-size: 16px; font-weight: 600; margin: 0 0 7px; }
.rows-roomy > div { padding: 24px 0; }

/* Numbered steps (For brands) */
.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
}
.step:last-child { border-bottom: 1px solid var(--hairline); }
.step-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--sage);
  padding-top: 4px;
}
.step h3 { font-size: 16px; font-weight: 600; margin: 0 0 6px; }

/* The two front doors on Home */
.door {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: 56px 5vw;
}
.door-light {
  background: var(--ivory);
  border-right: 1px solid var(--hairline);
  transition: background 0.4s var(--ease-ignite);
}
a.door-light:hover { background: #FFFFFF; color: inherit; }

/* ---------- Forms ---------- */
.field { display: grid; gap: 7px; }
.field > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
input, select {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--seal);
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 12px 14px;
  outline: none;
  width: 100%;
}
select { appearance: none; }
input:focus, select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--dusk-tint);
}
input::placeholder { color: var(--faint); }

/* Honeypot — visually gone, present for the bots it's meant for. */
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

.form-error {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.6;
  color: #B85C54; /* clay — the house error semantic */
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--hairline); }
.foot-col { display: grid; gap: 9px; align-content: start; font-size: 13.5px; color: var(--muted); }
.foot-col a { color: inherit; }
.foot-col a:hover { color: var(--seal); }

/* ---------- The minimal Home hero ---------- */
.home-hero {
  position: relative;
  min-height: 540px;
  min-height: max(500px, calc(100svh - var(--header-h, 132px)));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 1px;
  height: 58px;
  background: linear-gradient(180deg, transparent, rgba(78, 49, 44, 0.20));
}
.scroll-cue::after {
  content: '';
  position: absolute;
  left: -2.5px;
  top: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dusk);
  animation: csCue 2.8s var(--ease-settle) infinite;
}
@keyframes csCue {
  0%   { transform: translateY(0); opacity: 0; }
  22%  { opacity: 1; }
  72%  { opacity: 1; }
  100% { transform: translateY(52px); opacity: 0; }
}

/* The rotating proof line — the true differentiators, taking calm turns.
   Reduced motion (or no JS) holds the first statement still. */
.rotate-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--sage);
  margin: 0 0 24px;
  min-height: 22px;
  transition: opacity 0.4s var(--ease-settle), transform 0.4s var(--ease-settle);
}
.rotate-line::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex: none;
  animation: csBreathe 3s ease-in-out infinite;
}

/* ---------- Anchors under the sticky header ---------- */
#enquire { scroll-margin-top: 90px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split, .two, .grid3 { grid-template-columns: 1fr !important; }
  input, select { font-size: 16px; }
}

@media (max-width: 860px) {
  :root { --header-h: 96px; }
  .split, .two { gap: 28px !important; }
  .shell, .shell-narrow {
    /* Respect the notch in landscape, keep the reading margin in portrait. */
    padding-left: max(22px, env(safe-area-inset-left));
    padding-right: max(22px, env(safe-area-inset-right));
  }
  .door { border-right: none !important; padding: 46px 22px; }
  .door-light { border-bottom: 1px solid var(--hairline); }
  .vig-mini-offset { margin-top: 0; }

  /* Header keeps brand + Apply + menu on one row; the nav moves into a
     panel beneath it, so the sticky bar stops eating the viewport. */
  .nav-row { gap: 12px; padding-top: 12px; padding-bottom: 12px; }
  .brand { flex: 1 1 auto; min-width: 0; }
  .nav-toggle { display: inline-flex; }
  .nav-apply { padding: 12px 16px; }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0;
    display: grid;
    gap: 0;
    font-size: 15px;
    font-weight: 500;
    /* Solid, not translucent: page content behind the panel must not ghost
       through the links. */
    background: var(--ivory);
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 18px 34px -26px rgba(78, 49, 44, 0.45);
    padding: 2px max(22px, env(safe-area-inset-left)) 8px;
    /* Closed: collapsed, unfocusable, out of the accessibility tree. */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.3s var(--ease-settle), transform 0.3s var(--ease-settle), visibility 0.3s;
  }
  .site-header[data-nav-open] .nav {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav a {
    padding: 14px 2px;                  /* ≥44px touch target */
    border-bottom: 1px solid var(--hairline);
    color: var(--seal);
  }
  .nav a:last-child { border-bottom: none; }
  .nav a[aria-current="page"] { color: var(--sage); }

  /* Footer reads as two columns rather than one long ladder. */
  .site-footer .split {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
  }
  .site-footer .split > div:first-child { grid-column: 1 / -1; }
  .foot-col a { padding: 5px 0; }
}

/* Very narrow phones — one column reads better than two cramped ones. */
@media (max-width: 400px) {
  .site-footer .split { grid-template-columns: 1fr !important; }
}

/* Every animation resolves to its still end-state. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html.js [data-settle],
  html.js [data-settle] :is(.two, .grid3) > *,
  html.js [data-settle] .rows > div,
  html.js [data-settle] .step {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* ============================================================
   Engine vignettes — the real workspace surfaces, drawn in type
   and tokens rather than screenshotted. Structure, labels and
   status semantics are taken from the shipping components
   (KitSheet, PitchDetail, UgcInvoiceStudio) so what a brand sees
   here is the interface they actually receive. Figures are
   illustrative and captioned as such.
   Sized in container units, so one markup fits every column.
   ============================================================ */
.vig {
  container-type: inline-size;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--card);
  box-shadow:
    0 1px 2px rgba(78, 49, 44, 0.04),
    0 10px 26px -14px rgba(78, 49, 44, 0.14),
    0 30px 60px -34px rgba(78, 49, 44, 0.22);
}
.vig-cap {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--faint);
  margin: 10px 2px 0;
}

/* Shared atoms */
.vig-badge {
  font-size: clamp(6px, 1.55cqw, 8.5px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 2.5px 6px;
  white-space: nowrap;
}
.vig-b-sage { background: rgba(86, 115, 99, 0.13); color: var(--sage); }
.vig-b-gold { background: rgba(201, 154, 82, 0.16); color: #C99A52; }
.vig-b-dusk { background: var(--dusk-tint); color: #A85E72; }
.vig-live {
  width: 4.5px; height: 4.5px; border-radius: 50%;
  background: var(--sage); flex: none;
  animation: csBreathe 3s ease-in-out infinite;
}

/* ---------- 1 · The media kit sheet ---------- */
.vig-kit-head {
  background: var(--seal);
  color: var(--ivory);
  padding: 5cqw 5cqw 4.4cqw;
  display: flex;
  align-items: center;
  gap: 3.4cqw;
  position: relative;
  overflow: hidden;
}
.vig-kit-head::after {           /* the faint oversized monogram */
  content: 'A';
  position: absolute;
  right: -1cqw; top: -6cqw;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 30cqw;
  line-height: 1;
  color: rgba(255, 255, 240, 0.05);
  pointer-events: none;
}
.vig-avatar {
  width: 11cqw; height: 11cqw;
  border-radius: 50%;
  flex: none;
  background: linear-gradient(135deg, var(--dusk), var(--sage));
  box-shadow: 0 0 0 1.5px var(--dusk);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: clamp(9px, 4cqw, 20px);
  color: var(--ivory);
}
.vig-kit-id { min-width: 0; flex: 1; }
.vig-kit-name {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: clamp(11px, 4.4cqw, 23px);
  line-height: 1.05;
  color: var(--ivory);
}
.vig-kit-name span { color: var(--dusk); }
.vig-chips { display: flex; gap: 1.4cqw; margin-top: 1.8cqw; flex-wrap: wrap; }
.vig-chips span {
  font-size: clamp(6px, 1.6cqw, 9px);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ivory);
  background: rgba(255, 255, 240, 0.12);
  border: 1px solid rgba(255, 255, 240, 0.18);
  border-radius: 20px;
  padding: 2px 6px;
}
.vig-kit-reach { text-align: right; flex: none; position: relative; }
.vig-kit-reach b {
  display: block;
  font-weight: 300;
  font-size: clamp(15px, 6cqw, 32px);
  line-height: 1;
}
.vig-kit-reach i {
  display: block;
  font-style: normal;
  font-size: clamp(5.5px, 1.5cqw, 8px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dusk);
  margin-top: 1.4cqw;
}
.vig-statband {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #FFFFFF;
  border-bottom: 1px solid var(--hairline);
}
.vig-statband > div {
  padding: 3.4cqw 2cqw;
  text-align: center;
  border-right: 1px solid rgba(78, 49, 44, 0.06);
}
.vig-statband > div:last-child { border-right: none; }
.vig-statband b {
  display: block;
  font-weight: 300;
  font-size: clamp(10px, 3.4cqw, 19px);
  line-height: 1.05;
  color: var(--seal);
}
.vig-statband i {
  display: block;
  font-style: normal;
  font-size: clamp(5px, 1.4cqw, 7.5px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(78, 49, 44, 0.45);
  margin-top: 1.6cqw;
}
.vig-rows { padding: 3cqw 4cqw 4cqw; display: grid; gap: 2cqw; }
.vig-row {
  display: flex;
  align-items: center;
  gap: 2cqw;
  font-size: clamp(7px, 2cqw, 11px);
  font-weight: 600;
  color: var(--seal);
}
.vig-row-glyph {
  width: 5.4cqw; height: 5.4cqw;
  border-radius: 3px;
  flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(5px, 1.7cqw, 9px);
  font-weight: 700;
  color: var(--ivory);
}
.vig-row-rate { margin-left: auto; color: var(--sage); font-weight: 700; }
.vig-row-muted { color: var(--muted); font-weight: 300; }

/* ---------- 2 · The deal room ---------- */
.vig-bar {
  background: var(--seal);
  color: var(--ivory);
  padding: 3.4cqw 4cqw;
  display: flex;
  align-items: center;
  gap: 2cqw;
  flex-wrap: wrap;
}
.vig-bar-title {
  font-size: clamp(8px, 2.3cqw, 12.5px);
  font-weight: 600;
  color: var(--ivory);
}
.vig-bar .vig-badge { margin-left: auto; }
.vig-stages {
  display: flex;
  gap: 1.4cqw;
  padding: 3cqw 4cqw;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--hairline);
  background: #FFFDF8;
}
.vig-stage {
  font-size: clamp(5.5px, 1.6cqw, 9px);
  font-weight: 600;
  border-radius: 6px;
  padding: 3px 7px;
  white-space: nowrap;
  color: var(--faint);
  background: rgba(78, 49, 44, 0.06);
}
.vig-stage-on {
  color: var(--ivory);
  background: var(--seal);
  font-weight: 700;
}
.vig-thread { padding: 3.4cqw 4cqw 4cqw; display: grid; gap: 2.4cqw; }
.vig-msg {
  border: 1px solid var(--hairline);
  border-radius: 9px;
  padding: 2.6cqw 3cqw;
  background: #FFFFFF;
}
.vig-msg-they { background: #FFFDF8; }
.vig-msg-head {
  display: flex;
  align-items: baseline;
  gap: 1.6cqw;
  font-size: clamp(5.5px, 1.5cqw, 8px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}
.vig-msg-amt {
  margin-left: auto;
  font-size: clamp(8px, 2.4cqw, 13px);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--seal);
}
.vig-msg p {
  margin: 1.8cqw 0 0;
  font-size: clamp(6.5px, 1.85cqw, 10px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted);
}
.vig-agreed {
  display: flex;
  align-items: center;
  gap: 1.8cqw;
  border-radius: 9px;
  padding: 2.6cqw 3cqw;
  background: var(--sage-tint);
  border: 1px solid rgba(86, 115, 99, 0.28);
  font-size: clamp(6.5px, 1.9cqw, 10.5px);
  font-weight: 600;
  color: var(--sage);
}

/* ---------- 3 · Invoice & payout ---------- */
.vig-doc { padding: 4cqw; }
.vig-doc-head {
  display: flex;
  align-items: flex-start;
  gap: 2cqw;
  padding-bottom: 3cqw;
  border-bottom: 1px solid var(--hairline);
}
.vig-doc-head .vig-kit-name { color: var(--seal); }
.vig-doc-meta {
  margin-left: auto;
  text-align: right;
  font-size: clamp(5.5px, 1.5cqw, 8px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  line-height: 1.7;
}
.vig-lines { display: grid; }
.vig-line {
  display: flex;
  align-items: baseline;
  gap: 2cqw;
  padding: 2.8cqw 0;
  border-bottom: 1px solid rgba(78, 49, 44, 0.07);
  font-size: clamp(6.5px, 1.95cqw, 11px);
  color: var(--seal);
}
.vig-line span:first-child { font-weight: 600; }
.vig-line em {
  font-style: normal;
  font-weight: 300;
  color: var(--faint);
  font-size: 0.86em;
}
.vig-line b { margin-left: auto; font-weight: 700; white-space: nowrap; }
.vig-line-fee { color: var(--sage); }
.vig-line-fee b, .vig-line-fee span:first-child { color: var(--sage); }
.vig-total {
  display: flex;
  align-items: baseline;
  gap: 2cqw;
  padding: 3.2cqw 0 0;
  font-size: clamp(7.5px, 2.2cqw, 12px);
  font-weight: 700;
  color: var(--seal);
}
.vig-total b { margin-left: auto; font-size: clamp(10px, 3cqw, 16px); }
.vig-payout {
  margin-top: 3.4cqw;
  border-radius: 9px;
  padding: 3cqw;
  background: var(--sage-tint);
  border: 1px solid rgba(86, 115, 99, 0.28);
  display: flex;
  align-items: center;
  gap: 2cqw;
  font-size: clamp(6.5px, 1.9cqw, 10.5px);
  font-weight: 600;
  color: var(--sage);
}
.vig-payout b { margin-left: auto; font-weight: 700; }

@media (max-width: 900px) {
  .vig-cap { font-size: 12px; }
}

/* ---------- Compact vignettes (the portrait pair on Home) ---------- */
.vig-mini { display: flex; flex-direction: column; }
.vig-mini-offset { margin-top: 28px; }

.vig-mini-head {
  background: var(--seal);
  color: var(--ivory);
  padding: 6cqw 5cqw;
  display: flex;
  align-items: center;
  gap: 3cqw;
}
.vig-mini-head .vig-avatar { width: 13cqw; height: 13cqw; }
.vig-mini-head .vig-kit-name { font-size: clamp(13px, 6cqw, 21px); }

.vig-mini-body { padding: 5cqw; display: grid; gap: 4.5cqw; flex: 1; align-content: start; }
.vig-mini-stat { text-align: left; }
.vig-mini-stat b {
  display: block;
  font-weight: 300;
  font-size: clamp(20px, 11cqw, 40px);
  line-height: 1;
  color: var(--seal);
}
.vig-mini-stat i {
  display: block;
  font-style: normal;
  font-size: clamp(7px, 2.9cqw, 10px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 2cqw;
}
.vig-mini-rows {
  display: grid;
  gap: 2.6cqw;
  padding-top: 4cqw;
  border-top: 1px solid var(--hairline);
}
.vig-mini-rows > div {
  display: flex;
  align-items: center;
  gap: 2cqw;
  font-size: clamp(9px, 3.4cqw, 12px);
  font-weight: 600;
  color: var(--seal);
}
.vig-mini-rows .vig-badge { margin-left: auto; font-size: clamp(6.5px, 2.4cqw, 8.5px); }

.vig-mini-doc { padding: 5.5cqw 5cqw; display: grid; gap: 0; flex: 1; align-content: start; }
.vig-mini-label {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: clamp(14px, 6.4cqw, 22px);
  color: var(--seal);
  margin-bottom: 4cqw;
}
.vig-mini-line {
  display: flex;
  align-items: baseline;
  gap: 2cqw;
  padding: 3.4cqw 0;
  border-bottom: 1px solid rgba(78, 49, 44, 0.07);
  font-size: clamp(9px, 3.4cqw, 12.5px);
  font-weight: 600;
  color: var(--seal);
}
.vig-mini-line b { margin-left: auto; font-weight: 700; white-space: nowrap; }
.vig-mini-total {
  border-bottom: none;
  padding-top: 4cqw;
  font-size: clamp(10px, 3.8cqw, 14px);
  font-weight: 700;
}
.vig-mini-total b { font-size: clamp(12px, 4.8cqw, 18px); }
.vig-mini-payout {
  margin-top: 4cqw;
  border-radius: 9px;
  padding: 3.4cqw;
  background: var(--sage-tint);
  border: 1px solid rgba(86, 115, 99, 0.28);
  display: flex;
  align-items: center;
  gap: 2.4cqw;
  font-size: clamp(8.5px, 3.1cqw, 11.5px);
  font-weight: 600;
  color: var(--sage);
}
