/* ============================================================
   Halle Eavelyn, iteration 6: "Her markup, applied"
   Iteration 5 refined from Halle's markup-tool feedback: full-color
   press crawl, gold gift card with a periwinkle button, her full
   logo in the footer, and her copy word for word.
   Sunlit warm white, periwinkle #5C60B9, deep indigo #33325E.
   ============================================================ */

@font-face {
  font-family: "Amsterdam One";
  src: url("/assets/fonts/amsterdamone.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --cream: #FDFAF3;
  --cream-2: #F7F1E4;
  --peri-wash: #F2F1FB;
  --peri-soft: #E6E5F6;
  --peri: #5C60B9;
  --peri-deep: #4A4D9E;
  --indigo: #33325E;
  --indigo-deep: #282750;
  --gold: #E3A63A;
  --gold-hi: #F0C877;
  --gold-deep: #C98A28;
  --gold-ink: #8A5E14; /* AA-passing gold for small text on cream/white */
  --gold-grad: linear-gradient(135deg, #F0C877, #E3A63A 55%, #C98A28);
  --text: #45446B;
  --muted: #6E6C8E;
  --line: rgba(92, 96, 185, 0.14);
  --shadow-soft: 0 10px 30px rgba(51, 50, 94, 0.08);
  --shadow-lift: 0 22px 48px rgba(51, 50, 94, 0.14);
  --radius: 22px;
  --ease: cubic-bezier(0.22, 0.75, 0.25, 1);
  --font-body: "Montserrat", -apple-system, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-script: "Amsterdam One", "Playfair Display", cursive;
}

/* ---------- base ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--indigo);
  line-height: 1.16;
  margin: 0 0 0.7em;
  font-weight: 700;
}

p { margin: 0 0 1em; }

a { color: var(--peri); }

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

.wrap {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -70px; left: 1rem;
  z-index: 200;
  background: var(--indigo);
  color: #fff;
  padding: 0.8rem 1.3rem;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- type helpers ---------- */

.script {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1.3;
}

.accent { color: var(--peri); font-size: 1.16em; white-space: nowrap; }

/* quieter heading accent: periwinkle italic, no script, so the script face
   stays reserved for the hero, the About greeting, and the final CTA peaks */
.accent-ital { font-style: italic; color: var(--peri); }

.accent-lg {
  display: block;
  color: var(--peri);
  font-size: clamp(2.2rem, 4.8vw, 3.3rem);
  line-height: 1.5;
  padding: 0.12em 0.08em 0.16em 0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--peri);
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-grad);
  flex: none;
}
.eyebrow-light { color: var(--gold-hi); }

.sec-head {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}
.sec-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.75rem); }
.sec-sub {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-inline: 0.6rem;
  vertical-align: middle;
}

/* ---------- buttons ---------- */

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background-color 0.28s var(--ease);
}

.btn-gold {
  background: linear-gradient(135deg, #F0C877, #E3A63A 55%, #C98A28);
  color: #33250B;
  box-shadow: 0 10px 24px rgba(227, 166, 58, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(227, 166, 58, 0.45); }
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -70%;
  width: 42%;
  background: linear-gradient(105deg, rgba(255,255,255,0), rgba(255,255,255,0.65) 50%, rgba(255,255,255,0));
  transform: skewX(-22deg);
  pointer-events: none;
}
.btn-gold:hover::after,
.btn-gold:focus-visible::after { animation: shimmer 0.9s var(--ease); }
@keyframes shimmer { to { left: 135%; } }

/* periwinkle counterpart to the gold button; born for the gold gift card */
.btn-peri {
  background: linear-gradient(135deg, #6A6EC6, #5C60B9 55%, #4A4D9E);
  color: #fff;
  box-shadow: 0 10px 24px rgba(51, 50, 94, 0.35);
}
.btn-peri:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(51, 50, 94, 0.45); }
.btn-peri::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -70%;
  width: 42%;
  background: linear-gradient(105deg, rgba(255,255,255,0), rgba(255,255,255,0.5) 50%, rgba(255,255,255,0));
  transform: skewX(-22deg);
  pointer-events: none;
}
.btn-peri:hover::after,
.btn-peri:focus-visible::after { animation: shimmer 0.9s var(--ease); }

.btn-ghost {
  border: 1.5px solid rgba(92, 96, 185, 0.45);
  color: var(--peri-deep);
  background: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  background: var(--peri-wash);
  box-shadow: var(--shadow-soft);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm { min-height: 44px; padding: 0.6rem 1.45rem; }
.btn-lg { min-height: 56px; padding: 1rem 2.6rem; font-size: 0.84rem; }

.cta-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--peri-deep);
}
.cta-link span { transition: transform 0.25s var(--ease); display: inline-block; margin-left: 0.3rem; }
.cta-link:hover span { transform: translateX(5px); }
.cta-link:hover { color: var(--gold-deep); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 243, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(92, 96, 185, 0.1);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(51, 50, 94, 0.1); }

.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-height: 44px;
}
.brand-mark { width: 44px; height: 44px; flex: none; }
/* header brand: Halle's full logo (gold goddess head + periwinkle script),
   800x200 source kept crisp at ~4.3:1, sized by height alone */
.brand-full { height: 50px; width: auto; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-script {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--peri);
  line-height: 1.45;
  white-space: nowrap;
}
.brand-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-top: 0.35rem;
  white-space: nowrap;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--indigo);
  cursor: pointer;
}

.nav {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  display: none;
  flex-direction: column;
  background: rgba(253, 250, 243, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 40px rgba(51, 50, 94, 0.12);
  padding: 0.6rem 1.4rem 1.4rem;
}
.nav.open { display: flex; animation: navDrop 0.3s var(--ease); }
@keyframes navDrop {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}

.nav a:not(.btn) {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  color: var(--indigo);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(92, 96, 185, 0.08);
}
.nav .btn { margin-top: 0.9rem; }

@media (min-width: 1021px) {
  .nav-toggle { display: none; }
  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(0.9rem, 1.8vw, 1.7rem);
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .nav a:not(.btn) { min-height: 44px; border-bottom: 0; padding-inline: 0.15rem; }
  .nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: 8px;
    height: 2px;
    border-radius: 2px;
    background: var(--gold-grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
  }
  .nav a:not(.btn):hover::after,
  .nav a:not(.btn):focus-visible::after { transform: scaleX(1); }
  .nav .btn { margin: 0; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.4rem, 7vw, 6rem);
  background:
    radial-gradient(900px 520px at 82% -10%, rgba(240, 200, 119, 0.2), transparent 65%),
    radial-gradient(760px 560px at -12% 30%, rgba(92, 96, 185, 0.1), transparent 60%),
    var(--cream);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  animation: halodrift 14s ease-in-out infinite alternate;
}
.halo-a {
  width: 520px; height: 520px;
  left: -140px; top: 8%;
  background: radial-gradient(circle, rgba(92, 96, 185, 0.17), rgba(92, 96, 185, 0) 70%);
}
.halo-b {
  width: 560px; height: 560px;
  right: -160px; top: -18%;
  background: radial-gradient(circle, rgba(240, 200, 119, 0.3), rgba(240, 200, 119, 0) 70%);
  animation-delay: -5s;
}
.halo-c {
  width: 340px; height: 340px;
  right: 16%; bottom: -22%;
  background: radial-gradient(circle, rgba(92, 96, 185, 0.13), rgba(92, 96, 185, 0) 70%);
  animation-delay: -9s;
}
@keyframes halodrift {
  from { translate: 0 -14px; }
  to { translate: 0 20px; }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-title {
  font-size: clamp(2.05rem, 4.3vw, 3.3rem);
  line-height: 1.14;
  margin-bottom: 2.1rem;
}
.hero-title > span { display: block; }
.hero-title .script-line { margin-top: 0.08em; }
.hero-title .script {
  color: var(--peri);
  font-size: clamp(2.7rem, 5.6vw, 4.1rem);
  line-height: 1.45;
  display: inline-block;
  /* 0.3em bottom padding keeps the W's swash tail clear of the subhead */
  padding: 0.04em 0.12em 0.3em 0.02em;
}

.hero-sub {
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.7rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.hero-cred {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 2;
  margin: 0;
}
/* a credential may only break BETWEEN credentials, never inside one */
.cred { white-space: nowrap; }
@media (max-width: 374px) {
  .hero-cred { font-size: 0.66rem; }
}

/* hero portrait */

.hero-art { display: flex; justify-content: center; }

.portrait-stage {
  position: relative;
  width: min(430px, 100%);
}
.portrait {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 43 / 50;
  object-fit: cover;
  border-radius: 50% 50% 26px 26px / 42% 42% 26px 26px;
  outline: 1px solid rgba(227, 166, 58, 0.5);
  outline-offset: 12px;
  box-shadow: 0 34px 70px rgba(51, 50, 94, 0.22);
}
.halo-disc {
  position: absolute;
  z-index: 1;
  inset: -7% -10% auto -10%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(240, 200, 119, 0.4), rgba(92, 96, 185, 0.13) 58%, rgba(92, 96, 185, 0) 75%);
}
.halo-ring {
  position: absolute;
  z-index: 1;
  inset: -13% -16% auto -16%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed rgba(201, 138, 40, 0.55);
  animation: spin 70s linear infinite;
}
@keyframes spin { to { rotate: 360deg; } }

.sparks { position: absolute; inset: -14%; z-index: 3; pointer-events: none; }
.sparks span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #F6D896, rgba(240, 200, 119, 0));
  animation:
    twinkle var(--tw, 5s) ease-in-out var(--twd, 0s) infinite alternate,
    floaty var(--fl, 9s) ease-in-out var(--fld, 0s) infinite alternate;
}
@keyframes twinkle { from { opacity: 0.15; } to { opacity: 0.9; } }
@keyframes floaty {
  from { transform: translate3d(0, 8px, 0) scale(0.9); }
  to { transform: translate3d(0, -12px, 0) scale(1.05); }
}

/* hero entrance choreography.
   Visible is the default; the tiny head script adds .anim to <html> and only
   then does the entrance run. The hidden state lives ONLY inside the keyframe
   (backwards fill covers the stagger delay), never in static CSS, so ANY
   static or full-page render (with or without JS, with or without animations)
   shows the hero. Real visitors get the identical choreography. */

.hi { opacity: 1; }
.anim .hi {
  --hi-from: translateY(24px);
  animation: heroIn 0.9s var(--ease) var(--d, 0s) backwards;
}
.anim .hi-scale { --hi-from: translateY(12px) scale(0.955); }
@keyframes heroIn {
  from { opacity: 0; transform: var(--hi-from, translateY(24px)); }
}

/* ---------- press marquee ---------- */

.press {
  padding: 1.9rem 0 2rem;
  background: #fff;
  border-block: 1px solid rgba(92, 96, 185, 0.09);
}
.press-label {
  text-align: center;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.05rem;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
@keyframes marquee { to { transform: translateX(-25%); } }

.press-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.press-list li {
  white-space: nowrap;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  min-height: 44px;
}
.press-list li::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(227, 166, 58, 0.75);
  margin-left: 3rem;
}

/* her real press logos, trimmed to content and optically normalized:
   stacked marks run taller, wide wordmarks run shorter, so every logo
   carries the same visual weight. Per Halle's markup notes: full color
   the entire time, no rollover behavior, and 25% larger. */
.press-logo {
  display: block;
  width: auto;
}
.pl-nbc { height: 50px; }
.pl-abc { height: 47.5px; }
.pl-gma { height: 45px; }
.pl-fortune { height: 40px; }
.pl-fox { height: 35px; }
.pl-cw { height: 35px; }
.pl-time { height: 32.5px; }
.pl-guardian { height: 27.5px; }
.pl-usatoday { height: 27.5px; }

/* ---------- start here ---------- */

.start {
  padding: clamp(3.6rem, 7vw, 6rem) 0;
  background: linear-gradient(180deg, #fff, var(--peri-wash) 55%, var(--cream));
}
.start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.start-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.start-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.start-q {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 0.9rem;
}
.start-card h3 { font-size: 1.42rem; margin-bottom: 0.5rem; }
.start-card p:not(.start-q) { color: var(--muted); font-size: 0.94rem; flex: 1; }
.start-card .btn { align-self: stretch; }

.start-card-primary {
  background: linear-gradient(160deg, #3C3B6E, var(--indigo-deep));
  border-color: rgba(240, 200, 119, 0.3);
}
.start-card-primary h3 { color: #fff; }
.start-card-primary .start-q { color: var(--gold-hi); }
.start-card-primary p:not(.start-q) { color: rgba(255, 255, 255, 0.78); }

/* ---------- work with me ---------- */

.work { padding: clamp(3.6rem, 7vw, 6.4rem) 0; background: var(--cream); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.4rem;
}
.svc-card {
  position: relative;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem 1.4rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--peri-wash);
  color: var(--peri);
  margin-bottom: 1.2rem;
}
.svc-glyph svg { width: 24px; height: 24px; }

.svc-card h3, .svc-wide-body h3 { font-size: 1.3rem; margin-bottom: 0.45rem; }
.svc-card p, .svc-wide-body p { font-size: 0.94rem; }
.svc-for {
  position: relative;
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 1.1rem;
  flex: 1;
}
.svc-for::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 14px; height: 2px;
  border-radius: 2px;
  background: var(--gold);
}

/* tagline under the Tours & Retreats "for" line, her words verbatim;
   it carries the card's flexible space so the CTA stays pinned low */
.svc-vac {
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 600;
  color: var(--peri-deep);
  flex: 1;
}
.svc-card-wide .svc-for { flex: none; }

/* dated tour announcement inside the Tours & Retreats card,
   sized up 25% at Halle's request */
.svc-tour {
  position: relative;
  font-size: 1.0625rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--gold-ink);
  padding-left: 1.1rem;
  margin-bottom: 1.1rem;
}
.svc-tour::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 14px; height: 2px;
  border-radius: 2px;
  background: var(--gold-grad);
}

/* real Passive Income Power Plan cover in the Work grid card */
.svc-book-cover {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.svc-book-cover img {
  width: min(210px, 86%);
  height: auto;
  filter: drop-shadow(0 16px 26px rgba(51, 50, 94, 0.24));
  transition: transform 0.5s var(--ease);
}
.svc-card-book:hover .svc-book-cover img { transform: translateY(-4px); }

.svc-card-wide {
  grid-column: span 4;
  flex-direction: row;
  padding: 0;
  align-items: stretch;
}
.svc-media {
  flex: 0 0 42%;
  overflow: hidden;
  min-height: 240px;
}
.svc-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.svc-card-wide:hover .svc-media img { transform: scale(1.06); }
.svc-wide-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.9rem 1.7rem 1.4rem;
}

.svc-card-book { background: linear-gradient(170deg, #FFFDF8, #FBF3E2); }

/* ---------- about ---------- */

.about {
  padding: clamp(3.6rem, 7vw, 6.4rem) 0;
  background: linear-gradient(180deg, var(--cream), var(--peri-wash));
  overflow: clip;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-art {
  position: relative;
  margin: 0;
}
.about-art img {
  position: relative;
  z-index: 1;
  border-radius: 50% 50% 28px 28px / 34% 34% 28px 28px;
  box-shadow: 0 30px 60px rgba(51, 50, 94, 0.22);
}
.about-art-ring {
  position: absolute;
  z-index: 0;
  width: 58%;
  aspect-ratio: 1;
  left: -9%;
  top: -8%;
  border-radius: 50%;
  border: 1.5px dashed rgba(201, 138, 40, 0.5);
  animation: spin 80s linear infinite;
}
/* the script capitals' stems descend well below the baseline; keep them
   clear of the first paragraph line (measured: 1.5rem still grazes at 1440) */
.about-copy h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.1rem, 4.2vw, 3rem);
}
/* Halle asked for the whole greeting in Amsterdam; verified in a rendered
   screenshot that its capital I is the same hooked glyph as its J, so the
   full phrase reads "Hi, J'm Halle". Honoring the intent without the broken
   glyph: "Hi, I'm" drops to a quiet serif and "Halle" carries the script
   at maximum size. */
.about-hi { font-size: 0.62em; letter-spacing: 0.01em; }
.about-name {
  display: inline-block;
  color: var(--peri);
  font-size: 1.55em;
  line-height: 1.25;
  padding: 0.04em 0.14em 0.24em 0.06em;
  vertical-align: baseline;
}
/* with the stats row retired at Halle's request, the copy column carries
   the section: slightly larger, airier paragraphs against the tall portrait */
.about-copy > p {
  max-width: 33rem;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.15em;
}
.about-copy > p:last-of-type { margin-bottom: 0; }

/* ---------- results ---------- */

.results {
  padding: clamp(3.6rem, 7vw, 6.4rem) 0;
  background:
    radial-gradient(800px 400px at 50% -8%, rgba(240, 200, 119, 0.16), transparent 70%),
    var(--cream);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}
.feat-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(227, 166, 58, 0.3);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 1.7rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.feat-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.feat-card blockquote { margin: 0 0 1.4rem; flex: 1; }
.feat-card blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.62;
  color: var(--indigo);
  margin: 0;
}
.feat-card-short blockquote p { font-size: 1.5rem; line-height: 1.5; }

.feat-person, .quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.feat-person img, .quote-card figcaption img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  outline: 2px solid rgba(227, 166, 58, 0.55);
  outline-offset: 2px;
  flex: none;
}
.feat-person span:last-child, .quote-card figcaption span:last-child {
  display: flex;
  flex-direction: column;
}
.feat-person strong, .quote-card strong {
  font-size: 0.92rem;
  color: var(--indigo);
  font-weight: 700;
}
.feat-person em, .quote-card em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted);
}

.mono {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  flex: none;
}
.mono-gold { background: linear-gradient(150deg, #FBEED2, #F3D9A0); color: #8A5E14; }
.mono-peri { background: var(--peri-soft); color: var(--peri-deep); }
.mono-indigo { background: #DDDCEE; color: var(--indigo); }

.quote-wall {
  columns: 3 290px;
  column-gap: 1.4rem;
}
.quote-card {
  break-inside: avoid;
  margin: 0 0 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.quote-card blockquote { margin: 0 0 1.1rem; }
.quote-card blockquote p {
  font-size: 0.96rem;
  line-height: 1.68;
  color: var(--text);
  margin: 0;
}
.quote-card figcaption img, .quote-card .mono { width: 46px; height: 46px; font-size: 1.2rem; }

/* ---------- retreats ---------- */

.retreats {
  padding: clamp(3.6rem, 7vw, 6.4rem) 0;
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
  overflow: clip;
}
.retreats-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.sphinx { position: relative; margin: 0; }
.sphinx img {
  border-radius: 240px 240px 26px 26px;
  box-shadow: 0 30px 60px rgba(51, 50, 94, 0.24);
}

.retreats-copy h2 { max-width: 22ch; }
.retreats-copy .sec-sub { margin-bottom: 1.8rem; max-width: 34rem; }

.places {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.9rem;
}
.place {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.place img {
  width: 100%;
  aspect-ratio: 3 / 3.7;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.place:hover img { transform: scale(1.07); }

.place-chip {
  position: absolute;
  z-index: 2;
  left: 0.7rem;
  bottom: 0.7rem;
  background: rgba(253, 250, 243, 0.92);
  color: var(--indigo);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

/* ---------- book + free guide ---------- */

.convert {
  padding: clamp(3.6rem, 7vw, 6.4rem) 0;
  background:
    radial-gradient(700px 420px at 15% 0%, rgba(92, 96, 185, 0.35), transparent 65%),
    radial-gradient(600px 420px at 95% 100%, rgba(227, 166, 58, 0.16), transparent 65%),
    linear-gradient(165deg, var(--indigo), var(--indigo-deep));
}
.convert-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.convert h3 {
  color: #fff;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  margin-bottom: 0.6rem;
}
.convert p { color: rgba(255, 255, 255, 0.82); font-size: 0.97rem; }

.convert-book {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 3.5vw, 2.8rem);
}
.book-stage { flex: none; }
/* the real cover composite (white book + dark e-reader) pops on the indigo
   band; the drop-shadow keeps the transparent PNG feeling physical */
.book-real {
  width: clamp(210px, 24vw, 290px);
  height: auto;
  filter: drop-shadow(16px 26px 40px rgba(0, 0, 0, 0.45));
  transition: transform 0.5s var(--ease);
}
.convert-book:hover .book-real { transform: translateY(-6px); }

.convert .book-badge {
  color: var(--gold-hi);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
}

/* the gift card, flipped at Halle's request: gold ground, periwinkle
   button, deep indigo ink so every line stays readable on the gold */
.convert-guide {
  background:
    radial-gradient(340px 240px at 85% -10%, rgba(255, 255, 255, 0.38), transparent 70%),
    var(--gold-grad);
  border: 1px solid rgba(255, 253, 248, 0.55);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.convert-guide .eyebrow { color: var(--indigo-deep); }
.convert-guide .eyebrow::before { background: var(--indigo-deep); }
.convert-guide h3 { color: var(--indigo-deep); }
.convert-guide p { color: rgba(40, 39, 80, 0.92); }
.convert-guide .convert-note {
  font-size: 0.8rem;
  color: rgba(40, 39, 80, 0.85);
  margin: 0.9rem 0 0;
}

/* ---------- final cta ---------- */

.final {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(700px 380px at 50% 20%, rgba(240, 200, 119, 0.22), transparent 70%),
    var(--cream);
  text-align: center;
}
.final h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  margin-bottom: 1.2rem;
}
.final .accent-lg {
  margin-top: 0.1em;
  /* the Amsterdam One W carries a long swash descender; give it real
     clearance so it can never strike through the gold button below */
  margin-bottom: 0.2em;
  padding-bottom: 0.5em;
  font-size: clamp(2.5rem, 5.6vw, 3.5rem);
}
.final-sub {
  max-width: 38rem;
  margin: 0 auto 1.9rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.final-meta {
  margin: 1.6rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.final-meta a {
  display: inline-block;
  padding-block: 0.5rem;
  color: var(--peri-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(92, 96, 185, 0.35);
}
.final-meta a:hover { color: var(--gold-deep); border-color: var(--gold); }

/* ---------- footer ---------- */

.site-footer {
  background: var(--indigo-deep);
  padding: 3rem 0 2.4rem;
}
.footer-in {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
/* Halle's full logo in the footer, per her markup notes. The periwinkle
   script can't read on deep indigo, so the logo sits in a soft ivory
   panel: generous padding, gold hairline, gentle lift on hover. */
.brand-footer {
  background: linear-gradient(170deg, #FFFDF8, var(--cream-2));
  border: 1px solid rgba(240, 200, 119, 0.45);
  border-radius: 20px;
  padding: 1.15rem 1.7rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.brand-footer:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.36);
}
.brand-footer-logo { height: 58px; width: auto; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.6rem;
}
.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-nav a:hover { color: var(--gold-hi); }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ---------- scroll reveal engine ---------- */

/* The reveal runs as a keyframe animation, NOT a transition, so the cards'
   own 'transition: transform, box-shadow' stays free for instant hover lift.
   Variants only set the --rv-from start pose consumed by the rvIn from-frame.
   backwards fill hides the element during its stagger delay; the end state is
   the plain class-based .rv-in rule (no fill-forward), so once revealed the
   animation releases every property and hover behaves natively, and static
   renders that force .rv-in stay visible without needing animations. */
.rv { opacity: 0; }
.rv-up { --rv-from: translateY(30px); }
.rv-scale { --rv-from: scale(0.94); }
.rv-fade { --rv-from: none; }
.rv-in {
  opacity: 1;
  animation: rvIn 0.85s var(--ease) var(--rvd, 0s) backwards;
}
@keyframes rvIn {
  from { opacity: 0; transform: var(--rv-from, none); }
}

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .brand-script { font-size: 1.2rem; }
}

@media (max-width: 980px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card { grid-column: span 1; }
  .svc-card-wide { grid-column: span 2; }
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-art { order: -1; }
  .portrait-stage { width: min(320px, 82vw); }

  .about-grid, .retreats-grid, .convert-grid { grid-template-columns: 1fr; }
  .about-art { max-width: 480px; margin-inline: auto; }
  .sphinx { max-width: 420px; margin-inline: auto; }
  .retreats-copy h2 { max-width: none; }
}

@media (max-width: 880px) {
  .start-grid { grid-template-columns: 1fr; }
  .start-card .btn { align-self: flex-start; }
}

@media (max-width: 640px) {
  .work-grid { grid-template-columns: 1fr; }
  .svc-card, .svc-card-wide { grid-column: span 1; }
  .svc-card-wide { flex-direction: column; }
  .svc-media { flex: none; min-height: 200px; width: 100%; }

  .convert-book { flex-direction: column; align-items: flex-start; }

  .hero-cred { line-height: 2; }
}

@media (max-width: 480px) {
  .header-in { gap: 0.5rem; }
  .brand { gap: 0.5rem; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-full { height: 42px; }
  .brand-script { font-size: 1.15rem; }
  .brand-tag { font-size: 0.6rem; letter-spacing: 0.16em; white-space: normal; line-height: 1.35; }
  .brand-footer { padding: 0.9rem 1.2rem; }
  .brand-footer-logo { height: 46px; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 1.85rem; }
  .hero-title .script { font-size: 2.55rem; }
  .accent-lg { font-size: 2.1rem; }
  .places { gap: 0.6rem; }
  .place-chip { left: 0.45rem; bottom: 0.45rem; font-size: 0.62rem; padding: 0.32rem 0.6rem; }
  .btn { padding-inline: 1.5rem; }
}

@media (max-width: 360px) {
  .brand-full { height: 36px; }
  .brand-footer-logo { height: 40px; }
}

/* ============================================================
   Subpages: /session/, /gift/, /books/, /coaching/
   Same system, one level deeper: compact hero band, mock forms,
   book shelf, coaching pillars. All root-absolute, all rv-driven.
   ============================================================ */

/* ---------- compact page hero ---------- */

.page-hero {
  position: relative;
  overflow: clip;
  padding: clamp(2.8rem, 6vw, 4.8rem) 0 clamp(2.6rem, 5.5vw, 4.2rem);
  text-align: center;
  background:
    radial-gradient(760px 420px at 84% -12%, rgba(240, 200, 119, 0.22), transparent 65%),
    radial-gradient(640px 420px at -10% 40%, rgba(92, 96, 185, 0.11), transparent 60%),
    var(--cream);
}
.page-hero .hero-bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero .wrap { position: relative; }
.page-hero h1 {
  max-width: 900px;
  margin: 0 auto 1.1rem;
  font-size: clamp(1.95rem, 4.2vw, 3.05rem);
  line-height: 1.16;
}
.page-hero .script {
  color: var(--peri);
  font-size: 1.3em;
  line-height: 1.45;
  display: inline-block;
  /* clearance for the script swash tails, same treatment as the home hero */
  padding: 0.04em 0.14em 0.3em 0.02em;
}
.page-hero-sub {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}
.page-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.fact-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.7rem;
}
.fact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(227, 166, 58, 0.4);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo);
  box-shadow: var(--shadow-soft);
}
.fact-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-grad);
  flex: none;
}

/* ---------- forms (all mock, no network) ---------- */

button.btn {
  border: 0;
  appearance: none;
  -webkit-appearance: none;
}
.btn-block { width: 100%; }
.btn[disabled] {
  opacity: 0.75;
  cursor: default;
  transform: none;
  box-shadow: 0 10px 24px rgba(227, 166, 58, 0.2);
}

.form-card {
  background: #fff;
  border: 1px solid rgba(227, 166, 58, 0.38);
  border-radius: var(--radius);
  padding: clamp(1.7rem, 3.4vw, 2.5rem);
  box-shadow: var(--shadow-lift);
}
.form-card-head { margin-bottom: 1.4rem; }
.form-card-head h2,
.form-card-head h3 { font-size: 1.45rem; margin-bottom: 0.4rem; }
.form-card-head p { color: var(--muted); font-size: 0.93rem; margin: 0; }

.field { margin-bottom: 1.1rem; text-align: left; }
.field label {
  display: block;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 0.45rem;
}
.field .opt {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--muted);
}
.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 1.05rem;
  border: 1.5px solid rgba(92, 96, 185, 0.3);
  border-radius: 14px;
  background: #FDFCF8;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:hover,
.field textarea:hover { border-color: rgba(92, 96, 185, 0.5); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--peri);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(92, 96, 185, 0.14);
}
.field input::placeholder,
.field textarea::placeholder { color: #A7A5C2; }
.form-fine {
  margin: 0.95rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}
.form-alt {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  text-align: center;
}
.form-alt a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--peri-deep);
  font-weight: 600;
}
.form-alt a:hover { color: var(--gold-deep); }

.form-success {
  background: linear-gradient(165deg, #FFFDF8, #FBF3E2);
  border: 1px solid rgba(227, 166, 58, 0.5);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 2.8rem) clamp(1.5rem, 3vw, 2.2rem);
  text-align: center;
  box-shadow: var(--shadow-soft);
  animation: rvIn 0.6s var(--ease) backwards;
}
.form-success:focus { outline: none; }
.form-success-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #33250B;
  box-shadow: 0 10px 24px rgba(227, 166, 58, 0.35);
  margin-bottom: 1.1rem;
}
.form-success h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }
.form-success p {
  color: var(--text);
  max-width: 30rem;
  margin-inline: auto;
}
.form-success .form-demo-note {
  margin: 1.3rem auto 0;
  padding-top: 1.1rem;
  border-top: 1px dashed rgba(201, 138, 40, 0.4);
  font-size: 0.76rem;
  color: var(--muted);
}

/* ---------- session page ---------- */

.expect {
  padding: clamp(3.2rem, 6.5vw, 5.4rem) 0;
  background: linear-gradient(180deg, #fff, var(--peri-wash) 55%, var(--cream));
}

.apply {
  padding: clamp(3.2rem, 6.5vw, 5.4rem) 0;
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
}
.apply-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.apply-copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
.apply-copy > p { max-width: 32rem; }
.apply-copy .feat-card { margin-top: 1.9rem; }

/* ---------- gift page ---------- */

.gift {
  padding: clamp(3.2rem, 6.5vw, 5.6rem) 0;
  background: linear-gradient(180deg, #fff, var(--peri-wash) 55%, var(--cream));
}
.gift-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.4rem, 5vw, 4.5rem);
  align-items: center;
}
.gift-copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.35rem); }
.gift-copy .form-card { margin-top: 1.9rem; }

.gift-art {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 2.2rem 0;
}
.gift-art::before {
  content: "";
  position: absolute;
  inset: 6% 10%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(240, 200, 119, 0.42), rgba(92, 96, 185, 0.14) 60%, transparent 78%);
  filter: blur(4px);
}
.booklet-stage { position: relative; perspective: 900px; }
.booklet-back {
  position: absolute;
  inset: 0;
  border-radius: 8px 16px 16px 8px;
  background: var(--cream-2);
  border: 1px solid rgba(201, 138, 40, 0.35);
  transform: rotateZ(4deg) translate(12px, 8px);
  box-shadow: var(--shadow-soft);
}
.booklet {
  position: relative;
  width: clamp(220px, 24vw, 290px);
  aspect-ratio: 17 / 22;
  border-radius: 8px 16px 16px 8px;
  background:
    radial-gradient(240px 200px at 82% -8%, rgba(240, 200, 119, 0.35), transparent 70%),
    linear-gradient(160deg, #6A6EC6, var(--peri) 45%, var(--peri-deep));
  box-shadow: 22px 30px 55px rgba(51, 50, 94, 0.32);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.9rem 1.4rem;
  transform: rotateY(-10deg) rotateZ(-2deg);
  transition: transform 0.5s var(--ease);
}
.booklet-stage:hover .booklet { transform: rotateY(-3deg) rotateZ(0deg); }
.booklet::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(240, 200, 119, 0.55);
  border-radius: 5px 11px 11px 5px;
  pointer-events: none;
}
.booklet::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 1.5px;
  background: linear-gradient(180deg, rgba(240, 200, 119, 0.15), rgba(240, 200, 119, 0.6), rgba(240, 200, 119, 0.15));
}
.booklet-kicker {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}
.booklet-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.3;
  color: #fff;
}
.booklet-script {
  display: block;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.5em;
  line-height: 1.45;
  color: var(--gold-hi);
  padding: 0.08em 0.12em 0.3em 0.02em;
}
/* smaller script line for the longer guide title on the booklet cover */
.booklet-script-sm { font-size: 1em; line-height: 1.6; }
.booklet-author {
  margin-top: 1.1rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.gift-points {
  list-style: none;
  margin: 0 0 0.4rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.gift-points li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text);
  font-size: 0.97rem;
}
.gift-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 16px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold-grad);
}

/* ---------- books page ---------- */

.flagship-wrap {
  padding: clamp(3rem, 6vw, 4.8rem) 0 clamp(1.2rem, 2.5vw, 1.8rem);
  background: var(--cream);
}
.flagship {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.8rem, 4.5vw, 4rem);
  align-items: center;
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.9rem, 4.5vw, 3.4rem);
  background:
    radial-gradient(600px 380px at 12% 0%, rgba(92, 96, 185, 0.4), transparent 65%),
    radial-gradient(520px 380px at 96% 100%, rgba(227, 166, 58, 0.18), transparent 65%),
    linear-gradient(165deg, var(--indigo), var(--indigo-deep));
  box-shadow: var(--shadow-lift);
  overflow: clip;
}
.flagship-art { display: flex; justify-content: center; }
.flagship-art img {
  width: min(400px, 100%);
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.4));
}
.flagship-body h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 0.4rem;
}
.flagship-sub {
  color: var(--gold-hi);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  margin-bottom: 1.1rem;
}
.flagship-body > p:not(.flagship-sub) { color: rgba(255, 255, 255, 0.84); }
.flagship-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}
.flagship-badges li {
  border: 1px solid rgba(240, 200, 119, 0.5);
  color: var(--gold-hi);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
}
.flagship-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.shelf {
  padding: clamp(2.6rem, 5vw, 4rem) 0 clamp(3.4rem, 6.5vw, 5.4rem);
  background: linear-gradient(180deg, var(--cream), var(--peri-wash));
}
.shelf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.book-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
  overflow: hidden;
}
.book-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.book-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.book-card:hover::before { transform: scaleX(1); }
.book-shelf-cover {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.book-shelf-cover img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.book-card h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.book-tag {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 0.85rem;
}
.book-desc {
  font-size: 0.92rem;
  color: var(--muted);
  flex: 1;
}
.book-desc em {
  font-family: var(--font-display);
  color: var(--text);
}

/* Red Goddess Rising: the real Amazon cover art sits on top (.rg-real); if it
   ever fails to load, the composite built from her Egypt photography in the
   V4 palette remains underneath as the fallback */
.rg-cover {
  position: relative;
  height: 100%;
  aspect-ratio: 600 / 956;
  border-radius: 6px 12px 12px 6px;
  overflow: hidden;
  box-shadow: 14px 18px 38px rgba(51, 50, 94, 0.32);
  transform: rotateZ(-2deg);
  transition: transform 0.5s var(--ease);
}
.book-card:hover .rg-cover { transform: rotateZ(0deg); }
.rg-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rg-cover .rg-real { z-index: 3; }
.rg-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, rgba(40, 39, 80, 0.18), rgba(40, 39, 80, 0.84) 80%);
}
.rg-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 0.9rem 0.7rem;
}
.rg-text::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(240, 200, 119, 0.5);
  border-radius: 4px 9px 9px 4px;
  pointer-events: none;
}
.rg-script {
  font-family: var(--font-script);
  color: var(--gold-hi);
  font-size: 1.35rem;
  line-height: 1.4;
  padding: 0 0.1em 0.2em;
}
.rg-title {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.rg-author {
  margin: 0.55rem 0 0.25rem;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- coaching page ---------- */

.comp {
  padding: clamp(3.2rem, 6.5vw, 5.4rem) 0;
  background: var(--cream);
}
.comp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.comp-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.comp-glyph {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--peri-wash);
  color: var(--peri);
  margin-top: 0.1rem;
}
.comp-glyph svg { width: 18px; height: 18px; }
.comp-item p { margin: 0; font-size: 0.93rem; color: var(--muted); }
.comp-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--indigo);
  margin-bottom: 0.2rem;
}

.quote-band {
  padding: clamp(3.4rem, 7vw, 5.6rem) 0;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(240, 200, 119, 0.16), transparent 70%),
    linear-gradient(165deg, var(--indigo), var(--indigo-deep));
  text-align: center;
}
.quote-band blockquote { margin: 0 auto; max-width: 46rem; }
.quote-band .qmark {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold-hi);
  margin-bottom: 1.3rem;
}
.quote-band blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  line-height: 1.55;
  color: #fff;
  margin: 0 0 1.3rem;
}
.quote-band cite {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-hi);
}

.coach-results {
  padding: clamp(3.2rem, 6.5vw, 5.4rem) 0;
  background:
    radial-gradient(800px 400px at 50% -8%, rgba(240, 200, 119, 0.16), transparent 70%),
    var(--cream);
}
.coach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

/* ---------- subpage responsive ---------- */

@media (max-width: 980px) {
  .shelf-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .apply-grid,
  .gift-grid,
  .flagship { grid-template-columns: 1fr; }
  .gift-art { order: -1; padding: 1.2rem 0 1.6rem; }
  .flagship-art img { width: min(320px, 88%); }
}

@media (max-width: 720px) {
  .shelf-grid { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
  .coach-grid { grid-template-columns: 1fr; }
  .book-shelf-cover { height: 220px; }
}

/* ============================================================
   Media kit page: /media-kit/
   The pressroom. Mission hero, stat band, copy-ready bios,
   speaking-topic cards, a STATIC press-logo grid (no marquee),
   podcast cards, and a downloadable headshot gallery. Reuses the
   V6 tokens and the shared card/reveal patterns throughout.
   ============================================================ */

/* ---------- hero mission line ---------- */

.mk-mission {
  max-width: 46rem;
  margin: 0 auto;
}
.mk-mission blockquote { margin: 0; }
.mk-mission blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.08rem, 2.2vw, 1.32rem);
  line-height: 1.7;
  color: var(--indigo);
  margin: 0;
}
.mk-mission figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.9rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.mk-mission figcaption::before,
.mk-mission figcaption::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-grad);
  flex: none;
}

/* ---------- stat band ---------- */

.mk-stats {
  background: #fff;
  border-block: 1px solid rgba(92, 96, 185, 0.09);
  padding: clamp(2.2rem, 4.5vw, 3.2rem) 0;
}
.mk-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem 1rem;
}
.mk-stat {
  margin: 0;
  text-align: center;
  padding-inline: 0.6rem;
}
.mk-stat::before {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold-grad);
  margin: 0 auto 0.95rem;
}
.mk-stat-val {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  line-height: 1.1;
  color: var(--indigo);
}
.mk-stat-label {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- copy-ready bios ---------- */

.mk-bios {
  padding: clamp(3.2rem, 6.5vw, 5.4rem) 0;
  background: linear-gradient(180deg, #fff, var(--peri-wash) 55%, var(--cream));
}
.bio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  align-items: start;
}
/* the gold-tinted border marks these two cards as press material,
   same signal the form cards use */
.bio-card {
  background: #fff;
  border: 1px solid rgba(227, 166, 58, 0.38);
  border-radius: var(--radius);
  padding: 1.9rem 1.8rem;
  box-shadow: var(--shadow-soft);
}
.bio-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.bio-head h3 { font-size: 1.3rem; margin: 0; }
.bio-kicker {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 0.3rem;
}
.bio-text {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}

/* the copy affordance; hidden until the inline script confirms the
   Clipboard API exists, so no-JS visitors just select the text */
.copy-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid rgba(92, 96, 185, 0.45);
  border-radius: 999px;
  background: var(--peri-wash);
  color: var(--peri-deep);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
/* keep [hidden] winning over the display: inline-flex above, so the
   buttons truly disappear when JS or the Clipboard API is unavailable */
.copy-btn[hidden] { display: none !important; }
.copy-btn:hover { background: var(--peri-soft); transform: translateY(-1px); }
.copy-btn svg { width: 15px; height: 15px; flex: none; }
.copy-btn.copied {
  border-color: rgba(227, 166, 58, 0.7);
  background: #FBF3E2;
  color: var(--gold-ink);
}

/* ---------- speaking topics ---------- */

.mk-topics {
  padding: clamp(3.2rem, 6.5vw, 5.4rem) 0;
  background: var(--cream);
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.topic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
  overflow: hidden;
}
.topic-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.topic-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.topic-card:hover::before { transform: scaleX(1); }
.topic-card h3 {
  font-size: 1.18rem;
  line-height: 1.35;
  margin: 0;
}

/* ---------- featured in: static logo grid + named features ---------- */

.mk-press {
  padding: clamp(3.2rem, 6.5vw, 5.4rem) 0;
  background: #fff;
}
/* flex, not grid, so a short last row centers itself */
.mk-logo-grid {
  list-style: none;
  margin: 0 0 2.6rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}
.mk-logo-grid li {
  flex: 0 1 202px;
  min-width: 150px;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}
.mk-features {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 2rem;
}
.mk-features li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}
.mk-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 16px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold-grad);
}
.mk-features strong { color: var(--indigo); font-weight: 700; }

/* ---------- podcasts ---------- */

.mk-pods {
  padding: clamp(3.2rem, 6.5vw, 5.4rem) 0;
  background: linear-gradient(180deg, var(--cream), var(--peri-wash));
}
.pod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  max-width: 900px;
  margin-inline: auto;
}
.pod-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.pod-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.pod-card .svc-glyph { margin-bottom: 1.1rem; }
.pod-card .start-q { margin-bottom: 0.6rem; }
.pod-card h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.pod-ep {
  font-size: 0.94rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- headshot & download gallery ---------- */

.mk-gallery {
  padding: clamp(3.2rem, 6.5vw, 5.4rem) 0;
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
}
.shot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.shot-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.shot-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
/* square preview crop keeps the contact sheet tidy; the download
   link always delivers the full uncropped file */
.shot-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.shot-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.05rem 1.25rem 1.15rem;
}
.shot-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--indigo);
}
.shot-file {
  margin-top: 0.15rem;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.dl-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  min-height: 44px;
  margin-top: auto;
  padding-top: 0.4rem;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--peri-deep);
}
.dl-link:hover { color: var(--gold-deep); }
.dl-link svg {
  width: 15px;
  height: 15px;
  flex: none;
  transition: transform 0.25s var(--ease);
}
.dl-link:hover svg { transform: translateY(3px); }

/* ---------- media kit responsive ---------- */

@media (max-width: 980px) {
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .shot-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .mk-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-grid { grid-template-columns: 1fr; }
  .pod-grid { grid-template-columns: 1fr; }
  .mk-features { grid-template-columns: 1fr; max-width: 560px; }
}

@media (max-width: 560px) {
  .topic-grid { grid-template-columns: 1fr; }
  .shot-grid { grid-template-columns: 1fr; }
  .mk-logo-grid li { flex-basis: 45%; min-width: 128px; min-height: 88px; }
}

@media (max-width: 460px) {
  .mk-stats-grid { grid-template-columns: 1fr; }
  .bio-card { padding: 1.6rem 1.3rem; }
}

/* ============================================================
   Interview page: /interview/
   Press and interview requests. Reuses the shared page-hero,
   form-card, and final-band patterns; adds only the two-column
   request layout, a select control dressed to match the shared
   inputs, and the "why book Halle" support list.
   ============================================================ */

/* the hero intro is two verbatim lines, so give the second air */
.page-hero-sub + .page-hero-sub { margin-top: 0.85rem; }

.iv {
  padding: clamp(3.2rem, 6.5vw, 5.4rem) 0;
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
}
.iv-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.iv-why h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
.iv-why > p { max-width: 32rem; }

.iv-points {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.iv-points li {
  position: relative;
  padding: 1.05rem 1.3rem 1.05rem 3.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}
.iv-points li::before {
  content: "";
  position: absolute;
  left: 1.3rem;
  top: 1.62em;
  width: 16px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold-grad);
}
.iv-points strong { color: var(--indigo); font-weight: 700; }
.iv-points a { color: var(--peri-deep); font-weight: 600; }
.iv-points a:hover { color: var(--gold-deep); }

/* request-type select, matching .field input exactly */
.field select {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 2.8rem 0.8rem 1.05rem;
  border: 1.5px solid rgba(92, 96, 185, 0.3);
  border-radius: 14px;
  background-color: #FDFCF8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C60B9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}
.field select:hover { border-color: rgba(92, 96, 185, 0.5); }
.field select:focus {
  outline: none;
  border-color: var(--peri);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(92, 96, 185, 0.14);
}

/* ---------- interview responsive ---------- */

@media (max-width: 920px) {
  .iv-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Assessment page: /assessment/
   Start of the Expansion Calibration Assessment funnel. Reuses
   the shared page-hero, sec-head, form-card, and final-band
   patterns; adds only the italic audience line, the three-beat
   "how it works" band, and the centered start-form column.
   ============================================================ */

/* the audience line, set apart as an italic display line */
.asm-audience {
  margin-top: 1.05rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.06rem;
  color: var(--indigo);
}

/* ---------- how it works: the promise line in three beats ---------- */

.asm-how {
  padding: clamp(3.2rem, 6.5vw, 5.4rem) 0;
  background: linear-gradient(180deg, #fff, var(--peri-wash) 55%, var(--cream));
}
.asm-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.4vw, 1.6rem);
}
.asm-how-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.6rem, 3vw, 2.2rem) 1.4rem;
  text-align: center;
}
.asm-how-item::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 3px;
  background: var(--gold-grad);
  margin: 0 auto 1.05rem;
}
.asm-how-item h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  margin: 0;
}

/* ---------- start form, one centered column ---------- */

.asm-start {
  padding: clamp(3.2rem, 6.5vw, 5.4rem) 0;
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
}
.asm-start-card {
  max-width: 34rem;
  margin: 0 auto;
}

/* ---------- assessment responsive ---------- */

@media (max-width: 760px) {
  .asm-how-grid { grid-template-columns: 1fr; }
}

/* blog */
/* ============================================================
   Blog: /blog/ archive + imported post pages
   Same tokens, one level deeper: filter pills, the card archive,
   and article typography for the imported WordPress content,
   all scoped under .post-body.
   ============================================================ */

/* ---------- post page ---------- */

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 1.2rem 0 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.post-wrap {
  padding: clamp(2.6rem, 5.5vw, 4.2rem) 0 clamp(3rem, 6vw, 4.6rem);
  background: linear-gradient(180deg, #fff, var(--peri-wash) 70%, var(--cream));
}

/* optional featured image injected by the importer */
.post-hero {
  max-width: 860px;
  margin: 0 auto clamp(2rem, 4.5vw, 3rem);
}
.post-hero img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
}
.post-hero figcaption {
  margin-top: 0.7rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* article typography for imported WordPress content */
.post-body {
  max-width: 720px;
  margin-inline: auto;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text);
}
.post-body > :first-child { margin-top: 0; }
.post-body > :last-child { margin-bottom: 0; }
.post-body h2,
.post-body h3,
.post-body h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--indigo);
  line-height: 1.25;
  margin: 1.9em 0 0.6em;
}
.post-body h2 { font-size: clamp(1.45rem, 2.8vw, 1.8rem); }
.post-body h3 { font-size: clamp(1.2rem, 2.3vw, 1.45rem); }
.post-body h4 { font-size: 1.08rem; }
.post-body p { margin: 0 0 1.15em; }
.post-body a {
  color: var(--peri-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(92, 96, 185, 0.4);
  text-underline-offset: 3px;
}
.post-body a:hover { color: var(--gold-deep); text-decoration-color: var(--gold); }
.post-body ul,
.post-body ol {
  margin: 0 0 1.2em;
  padding-left: 1.5em;
}
.post-body li { margin-bottom: 0.45em; }
.post-body li::marker { color: var(--gold-deep); font-weight: 700; }
.post-body blockquote {
  margin: 1.7em 0;
  padding: 0.35em 0 0.35em 1.4em;
  border-left: 3px solid var(--gold);
}
.post-body blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12em;
  line-height: 1.65;
  color: var(--indigo);
}
.post-body blockquote > :last-child { margin-bottom: 0; }
.post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 1.6em auto;
  box-shadow: var(--shadow-soft);
}
.post-body figure { margin: 1.6em 0; }
.post-body figure img { margin: 0 auto; }
.post-body figcaption {
  margin-top: 0.7rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}
.post-body hr {
  border: 0;
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold-grad);
  margin: 2.2em auto;
}
/* responsive video embeds (YouTube / Vimeo); a bare iframe works too */
.post-body iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: 14px;
  margin: 1.6em 0;
  box-shadow: var(--shadow-soft);
}
.post-body .embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 1.6em 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.post-body .embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.post-end {
  max-width: 720px;
  margin: clamp(2rem, 4.5vw, 3rem) auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

/* ---------- blog index ---------- */

.blog-index {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(180deg, #fff, var(--peri-wash) 55%, var(--cream));
}

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 0 2.4rem;
}
.blog-filter[hidden] { display: none !important; }
.filter-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 1.15rem;
  border: 1.5px solid rgba(92, 96, 185, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--peri-deep);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.filter-pill:hover { background: var(--peri-wash); transform: translateY(-1px); }
.filter-pill[aria-pressed="true"] {
  background: var(--gold-grad);
  border-color: transparent;
  color: #33250B;
  box-shadow: 0 10px 24px rgba(227, 166, 58, 0.3);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
  overflow: hidden;
}
.post-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.post-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.post-card:hover::before { transform: scaleX(1); }
/* keep [hidden] winning over the display: flex above when a filter is on */
.post-card[hidden] { display: none !important; }
.post-card-cat {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 0.75rem;
}
.post-card-title {
  font-size: 1.28rem;
  line-height: 1.3;
  margin: 0 0 0.45rem;
}
.post-card-title a { color: var(--indigo); text-decoration: none; }
.post-card-title a:hover { color: var(--peri-deep); }
.post-card-date {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.post-card-excerpt {
  font-size: 0.92rem;
  color: var(--muted);
  flex: 1;
  margin-bottom: 1.1rem;
}
.blog-empty {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 2rem 0 0;
}

/* ---------- blog responsive ---------- */

@media (max-width: 980px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .post-grid { grid-template-columns: 1fr; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .hi, .anim .hi { opacity: 1; transform: none; animation: none; }
  .rv, .rv-in { opacity: 1; transform: none; transition: none; animation: none; }
  .halo, .halo-ring, .about-art-ring, .sparks span { animation: none !important; }
  .sparks { display: none; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
  .marquee-track {
    animation: none !important;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .marquee-track ul[aria-hidden="true"] { display: none; }
  .press-list { flex-wrap: wrap; justify-content: center; row-gap: 0.4rem; }
}