/* ============================================================
   SUPERBLOOM BY ALANA · superbloom-coach.com
   Palette: bone / ink / california-poppy + verbena-pink duotone
   Type: Fraunces (display serif) / Inter (body sans)
   ============================================================ */

:root {
  --bone:      #F7F3EC;
  --bone-deep: #F0EADF;
  --ink:       #1E2A23;
  --ink-70:    #45524A;
  --ink-40:    #8B948D;
  --hairline:  #DDD6C9;
  --poppy:      #E8732C; /* california poppy: buttons, marks, underlines */
  --poppy-text: #B0480F; /* same hue, AA contrast on bone for running text */
  --bloom:      #D15069; /* HER pink, sampled from the raspberry logo file (Jul 14) */
  --bloom-deep: #C63450; /* her hue, darkened to 4.74:1 on bone (AA); white on it 5.24:1 */
  --bloom-text: #C63450; /* same derived deep — passes AA for running text */
  --plum:       #3A2130; /* the bloom pink at dusk: dark sections */
  --violet:     #8E5BC0; /* desert lupine: field flowers */
  --violet-text:#7B49AC; /* same hue, AA contrast on bone for text */
  --marigold:   #EFB63C; /* goldfields yellow: field flowers, one highlight */
  --petal:      #FFA2AA; /* her brand bubblegum pink: the origin band */
  --blush:      #F6E8EA; /* faint pink surface: mobile menu panel, distinct from bone */
  --serif: "Fraunces", "Fraunces-fallback", Georgia, serif;
  --sans:  "Inter", "Inter-fallback", -apple-system, "Segoe UI", sans-serif;
  --measure: 34em;
}

/* metric-matched local fallbacks so the webfont swap doesn't shift layout */
@font-face {
  font-family: "Fraunces-fallback";
  src: local("Georgia");
  size-adjust: 98%;
  ascent-override: 97%;
  descent-override: 25%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Inter-fallback";
  src: local("Helvetica Neue"), local("Arial");
  size-adjust: 100%;
  ascent-override: 97%;
  descent-override: 24%;
  line-gap-override: 0%;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  background: var(--bone);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--poppy); color: var(--bone); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.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; left: 1rem; top: -3rem;
  background: var(--ink); color: var(--bone);
  padding: .6rem 1rem; font-size: .85rem; text-decoration: none;
  transition: top .2s; z-index: 60;
}
.skip-link:focus { top: 1rem; }

.wrap {
  width: min(100% - 3rem, 70rem);
  margin-inline: auto;
}

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

.site-header {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  z-index: 50;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 500;
  letter-spacing: .01em;
  text-decoration: none;
  min-height: 44px;
}
.wordmark svg { width: 20px; height: 20px; }
/* her actual logotype, recolored via mask (the source file is ice-blue) */
.wordmark-logo {
  display: none;
  width: 178px;
  aspect-ratio: 813 / 205;
  background: var(--bloom);
  -webkit-mask: url(/images/logo.webp) center / contain no-repeat;
  mask: url(/images/logo.webp) center / contain no-repeat;
}
.wordmark-fallback { display: inline-flex; align-items: center; gap: .55rem; }
@supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
  .wordmark-logo { display: block; }
  .wordmark-fallback { display: none; }
}

.site-nav ul {
  display: flex; gap: .25rem; list-style: none;
  align-items: center;
}
.site-nav a {
  position: relative;
  display: inline-flex; align-items: center;
  min-height: 44px; padding: .3rem .85rem;
  font-size: .95rem; font-weight: 500;
  text-decoration: none;
  color: var(--ink-70);
  transition: color .2s ease;
}
/* each link blooms its own color: a little field, left to right */
.site-nav li:nth-child(1) a { --nav-c: var(--poppy-text); }
.site-nav li:nth-child(2) a { --nav-c: var(--bloom-text); }
.site-nav li:nth-child(3) a { --nav-c: var(--violet-text); }
.site-nav li:nth-child(4) a { --nav-c: var(--poppy-text); }
.site-nav li:nth-child(5) a { --nav-c: var(--violet-text); }
.site-nav a::after {
  content: "";
  position: absolute; left: .85rem; right: .85rem; bottom: 8px;
  height: 2px; border-radius: 2px;
  background: var(--nav-c, var(--bloom));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--nav-c, var(--ink)); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
/* the page you're on stays bloomed */
.site-nav a[aria-current="page"] { color: var(--nav-c, var(--ink)); }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .site-nav a, .site-nav a::after { transition: none; }
}
/* contact is the pill */
.site-nav li:last-child a {
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: .3rem 1.15rem;
  min-height: 40px;
  margin-left: .5rem;
  color: var(--ink);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.site-nav li:last-child a::after { display: none; }
.site-nav li:last-child a:hover, .site-nav li:last-child a:focus-visible,
.site-nav li:last-child a[aria-current="page"] {
  background: var(--bloom-deep);
  border-color: var(--bloom-deep);
  color: var(--bone);
}

.menu-btn {
  display: none;
  background: none; border: 1px solid var(--hairline);
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink);
  border-radius: 2px;
}
.menu-btn svg { width: 22px; height: 22px; }
.menu-btn .icon-close { display: none; }
.menu-btn[aria-expanded="true"] .icon-open { display: none; }
.menu-btn[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 47.9em) {
  .menu-btn { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--blush);
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 14px 28px -14px rgba(30, 42, 35, .3);
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; padding: .75rem 1.5rem 1.25rem; align-items: stretch; }
  .site-nav a { width: 100%; padding: .65rem .25rem; font-size: 1.05rem; }
  .site-nav a::after { left: .25rem; right: auto; width: 2.5rem; bottom: 6px; }
  .site-nav li:last-child a {
    width: auto; align-self: flex-start;
    display: inline-flex;
    padding: .5rem 1.4rem;
    margin: .75rem 0 0;
  }
}

/* ---------- hero (homepage) ---------- */

.hero { padding: 4rem 0 4.5rem; }
.hero .wrap {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 48em) {
  .hero { padding: 6.5rem 0 7rem; }
  .hero .wrap { grid-template-columns: 1.9fr 1fr; gap: 5rem; }
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 11em;
}
/* the second line blooms into color: pink into violet, mid-sentence */
.hero h1 .h1-bloom {
  color: var(--bloom-text);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .hero h1 .h1-bloom {
    background: linear-gradient(95deg, var(--bloom) 10%, var(--violet) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.hero .sub {
  margin-top: 1.6rem;
  max-width: var(--measure);
  font-size: 1.1rem;
  color: var(--ink-70);
}

.hero-actions {
  margin-top: 2.4rem;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 1.1rem;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: .8rem 2rem;
  font-family: var(--sans); font-size: 1rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: transform .15s ease, background-color .15s ease;
}
.btn-primary {
  background: var(--bloom-deep);
  color: var(--bone);
}
.btn-primary:hover { background: #AD3760; }
.btn-primary:active { transform: translateY(1px); }
.btn-outline {
  background: transparent;
  color: var(--bone);
  border-color: rgba(247, 243, 236, .55);
}
.btn-outline:hover { border-color: var(--bone); }
.btn-ink {
  background: var(--ink); color: var(--bone);
  border: none;
}
.btn-ink:hover { background: #2C3B31; }

.quiet-link {
  display: inline-flex; align-items: center;
  min-height: 44px;
  font-size: .95rem; font-weight: 500;
  color: var(--ink-70);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline);
}
.quiet-link { transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.quiet-link:hover, .quiet-link:focus-visible {
  color: var(--ql, var(--poppy-text));
  border-color: currentColor;
  transform: translateX(3px);
}
@media (prefers-reduced-motion: reduce) { .quiet-link { transition: none; } .quiet-link:hover { transform: none; } }

/* portrait in a thin ink frame with an offset hairline echo */
.portrait {
  position: relative;
  width: min(100%, 22rem);
  margin-inline: auto;
  border: 1px solid var(--ink);
  background: linear-gradient(160deg, #E9DCC6 0%, #C9B695 100%);
}
.portrait img { width: 100%; height: auto; }
.portrait::after {
  content: "";
  position: absolute; inset: 0;
  transform: translate(10px, 10px);
  border: 1px solid var(--hairline);
  pointer-events: none;
}

/* ---------- two doors (homepage) ---------- */

.doors { padding: 0 0 5.5rem; }
.doors .wrap {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 48em) {
  .doors .wrap { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.door {
  position: relative;
  border: 1px solid var(--hairline);
  background: var(--bone);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
/* the card's single link stretches over the whole card */
.door .quiet-link::after {
  content: "";
  position: absolute; inset: 0;
}
.door:hover, .door:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(30, 42, 35, .13);
}
.door:hover .quiet-link, .door:focus-within .quiet-link {
  color: var(--ink); border-color: var(--ink);
}
.door-photo {
  display: block; width: 100%; height: auto;
  transition: transform .5s ease, filter .5s ease;
}
.door:hover .door-photo, .door:focus-within .door-photo {
  transform: scale(1.045);
  filter: brightness(1.07);
}
@media (prefers-reduced-motion: reduce) {
  .door, .door-photo { transition: none; }
  .door:hover { transform: none; }
  .door:hover .door-photo { transform: none; }
}
.door-body {
  padding: 1.9rem 2.2rem 2.2rem;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 1rem;
  flex: 1;
}
.door svg { width: 34px; height: 44px; color: var(--ink); }
/* each door takes one hue of the superbloom: poppy for coaching, bloom for speaking */
.door:first-child { background: #F9EEE2; border-color: #EBD9C4; }
.door:first-child svg { color: var(--poppy-text); }
.door:last-child { background: #F8EAF0; border-color: #E9D3DD; }
.door:last-child svg { color: var(--bloom-text); }
.door h3 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.door p { color: var(--ink-70); font-size: 1rem; max-width: var(--measure); }
.door .quiet-link { margin-top: auto; }

/* ---------- definition (homepage + about) ---------- */

.definition {
  padding: 7rem 0 6.5rem;
  text-align: center;
  /* a faint pressed-flower blush: poppy top-left, bloom lower-right */
  background:
    radial-gradient(48% 34% at 14% 12%, rgba(232, 115, 44, .06), transparent 68%),
    radial-gradient(44% 32% at 84% 78%, rgba(217, 79, 126, .07), transparent 68%),
    var(--bone);
}
@media (min-width: 48em) {
  .definition { padding: 10rem 0 9rem; }
}

.definition .entry { max-width: 42rem; margin-inline: auto; }

.definition .word {
  font-family: var(--serif);
  font-weight: 470;
  font-size: clamp(3rem, 9vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.01em;
}
.definition .pos {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-70);
  margin-top: 1.1rem;
}
.definition .def {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(1.2rem, 2.6vw, 1.45rem);
  line-height: 1.5;
  color: var(--ink-70);
  margin-top: 1.6rem;
}
/* the line the whole page turns on, in the flower's own pink */
.definition .turn {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  color: var(--bloom-text);
  margin-top: 2.6rem;
}
.definition .bridge {
  font-family: var(--sans);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--ink);
  max-width: 30em;
  margin: 2.6rem auto 0;
}

.field, .field g { -webkit-tap-highlight-color: transparent; }

/* the field: a row of line-drawn wildflowers in the superbloom palette
   that draws itself in, stems first then petals, on scroll into view */
.field {
  display: block;
  width: min(100%, 34rem);
  margin: 3.5rem auto 0;
  color: var(--ink);
}
.field path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  /* butt caps while hidden: a round cap paints a dot at every path tip
     even when fully dashed out; swap to round only once drawing starts */
  stroke-linecap: butt;
}
.field .p { stroke: var(--c); --p: .5s; }
.field.in path {
  animation: bloom-draw 1.5s cubic-bezier(.4, 0, .2, 1) forwards;
  animation-delay: calc(var(--d, 0s) + var(--p, 0s));
}
.field circle { opacity: 0; }
.field.in circle {
  animation: bloom-pop .5s ease forwards;
  animation-delay: calc(var(--d, 0s) + var(--p, 0s) + .6s);
}
@keyframes bloom-pop { to { opacity: 1; } }

@keyframes bloom-draw {
  from { stroke-linecap: round; }
  to { stroke-dashoffset: 0; stroke-linecap: round; }
}
@media (prefers-reduced-motion: reduce) {
  .field path { stroke-dashoffset: 0; stroke-linecap: round; animation: none !important; }
  .field circle { opacity: 1; animation: none !important; }
}
.field-strip { padding: 5.5rem 0 0; }
.field-strip .field { margin: 0 auto -2px; }

/* ---------- origin band (homepage + about) ---------- */

.origin {
  background: var(--petal);
  color: var(--ink);
  padding: 6rem 0;
  overflow: hidden;
}
@media (min-width: 48em) { .origin { padding: 7.5rem 0; } }
.origin .wrap {
  display: grid; gap: 3.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 48em) {
  .origin .wrap { grid-template-columns: 1.1fr .9fr; gap: 5rem; }
}
.origin .eyebrow {
  color: var(--ink);
  margin-bottom: 2rem;
}
.origin blockquote p {
  font-family: var(--serif);
  font-weight: 480;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  line-height: 1.42;
  letter-spacing: -0.01em;
}
.origin blockquote p em {
  font-style: italic;
  color: #7A1F41; /* deep raspberry, AA on the petal pink */
}
.origin figcaption {
  margin-top: 2rem;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
}
.origin .quiet-link {
  margin-top: 1.4rem;
  color: var(--ink);
  border-color: rgba(30, 42, 35, .4);
}
/* her brand collage, pinned like a photo; its pink matte matches the band */
.origin-card {
  display: block;
  width: min(100%, 26rem);
  height: auto;
  margin-inline: auto;
  transform: rotate(-2deg);
  box-shadow: 0 22px 44px rgba(58, 33, 48, .28);
}
@media (prefers-reduced-motion: no-preference) {
  .origin-card { transition: transform .4s ease; }
  .origin-card:hover { transform: rotate(0deg); }
}

/* ---------- Kit signup forms (native POST, no third-party JS) ---------- */

.kit-form { display: flex; gap: .6rem; flex-wrap: wrap; max-width: 26rem; }
.kit-form input {
  flex: 1 1 12rem; min-width: 0;
  font: inherit; font-size: .95rem;
  padding: .75rem 1rem;
  border: 1px solid var(--hairline); border-radius: 4px;
  background: #FFFDF9; color: var(--ink);
}
.kit-form input:focus { outline: 2px solid var(--bloom); border-color: var(--bloom); }
.kit-form .btn { flex: none; }
.cta-band .kit-form { margin: 2rem auto 0; justify-content: center; max-width: 30rem; }

/* ---------- big centered testimonial ---------- */

/* mobile top stays light: the doors section above already ends in 5.5rem of
   bone, so a symmetric 6rem here read as double the space below the quote */
.testimonial { padding: 1.5rem 0 5.5rem; }
@media (min-width: 48em) { .testimonial { padding: 8rem 0; } }

.testimonial blockquote {
  max-width: 48rem; margin-inline: auto; text-align: center;
}
.testimonial blockquote p {
  font-family: var(--serif);
  font-weight: 460;
  font-size: clamp(1.5rem, 3.6vw, 2.15rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  quotes: "\201C" "\201D";
}
.testimonial blockquote strong,
.t-card blockquote strong { color: var(--bloom-text); font-weight: inherit; }
.testimonial blockquote p::before { content: open-quote; }
.testimonial blockquote p::after  { content: close-quote; }
.testimonial figcaption {
  margin-top: 2rem;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-70);
  text-align: center;
}

/* ---------- speaking strip (dark) ---------- */

.speaking {
  background: var(--plum);
  color: var(--bone);
  padding: 5.5rem 0 6rem;
}
@media (min-width: 48em) { .speaking { padding: 7rem 0; } }

.speaking .wrap {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 48em) {
  .speaking .wrap { grid-template-columns: 1.2fr 1fr; gap: 5rem; }
}

.speaking h2 {
  font-family: var(--serif);
  font-weight: 520;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.speaking h2 em { font-style: italic; color: var(--marigold); }
.speaking .lede {
  margin-top: 1.2rem;
  color: rgba(247, 243, 236, .72);
  max-width: var(--measure);
}
.speaking .btn { margin-top: 2.2rem; }

/* ---------- full-bleed action band ---------- */
/* muted clip of Alana in motion, edge to edge, loaded on scroll into view */

.action {
  position: relative;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
  background: var(--plum);
}
.action iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-width: 100vw; min-height: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}
.action-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(58, 33, 48, .25) 0%,
    rgba(58, 33, 48, .05) 45%,
    rgba(58, 33, 48, .4) 100%);
  pointer-events: none;
}
.action-cover {
  position: absolute; inset: 0; z-index: 3;
  transition: opacity .8s ease;
}
.action-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.action-cover.revealed { opacity: 0; pointer-events: none; }
.action-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(58, 33, 48, .35);
  border: 1px solid rgba(247, 243, 236, .6);
  color: var(--bone);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.action-play:hover { background: rgba(58, 33, 48, .55); }
.action-play svg { margin-left: 4px; }
@media (max-width: 47.9em) {
  .action { height: 56.25vw; min-height: 220px; }
  .action iframe { min-height: 0; }
}

.speaking-photo {
  display: block;
  width: 100%; height: auto;
  border: 1px solid rgba(247, 243, 236, .25);
  margin-bottom: 2.2rem;
}

.stages ul { list-style: none; }
.stages h3 {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: #EE9DBB; /* bloom pink reads like petals on dark foliage */
  margin-bottom: .4rem;
}
.stages li {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 440;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(247, 243, 236, .18);
}
.stages li small {
  display: block;
  font-family: var(--sans);
  font-size: .82rem;
  color: rgba(247, 243, 236, .55);
  margin-top: .2rem;
}
/* light variant for stages on bone pages */
.stages--light h3 { color: var(--bloom-text); }
.stages--light li { border-color: var(--hairline); }
.stages--light li small { color: var(--ink-40); }

/* ============================================================
   SUBPAGE COMPONENTS
   ============================================================ */

.eyebrow {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--bloom-text);
}

/* compact hero for interior pages */
.page-hero { padding: 4.5rem 0 3.5rem; }
@media (min-width: 48em) { .page-hero { padding: 6rem 0 4.5rem; } }
.page-hero .eyebrow { margin-bottom: 1.2rem; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(2.4rem, 5.5vw, 3.9rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  max-width: 14em;
}
.page-hero h1 em { font-style: italic; color: var(--bloom-text); }
.page-hero .lede {
  margin-top: 1.5rem;
  max-width: 28em;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
}
.page-hero .lede strong { color: var(--bloom-text); font-weight: 600; }
/* mobile: on first scroll the pink phrase fills like a real highlighter, one
   line at a time, left to right. The phrase is split into word spans (see js)
   so each can start on a delay set by its place in the reading order; the sweep
   crosses line 1 completely before line 2 begins. The strong is just the
   container now; every .hl-w carries its own slice of the highlight. */
@media (max-width: 47.9em) {
  .page-hero .lede strong { color: var(--ink); }
  .page-hero .lede strong .hl-w {
    padding: .04em 0;
    background: linear-gradient(var(--bloom-deep), var(--bloom-deep)) no-repeat;
    background-size: 0% 100%;
    transition: background-size var(--d, .4s) linear var(--delay, 0s),
                color .2s ease calc(var(--delay, 0s) + var(--d, .4s) * .45);
  }
  .page-hero .lede strong.on .hl-w { background-size: 100% 100%; color: #fff; }
}
@media (max-width: 47.9em) and (prefers-reduced-motion: reduce) {
  .page-hero .lede strong .hl-w { transition: none; background-size: 100% 100%; color: #fff; }
}
.page-hero .lede-note { margin-top: 2rem; font-size: .95rem; font-weight: 600; color: var(--ink-70); }
.page-hero .hero-actions { margin-top: 2.2rem; }

/* page-hero with a photo column: text left, portrait right */
.page-hero-split .wrap {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 48em) {
  .page-hero-split { padding-bottom: 5.5rem; }
  .page-hero-split .wrap { grid-template-columns: 1.25fr 1fr; gap: 4rem; }
}
.page-hero-split .pic img { width: 100%; height: auto; }
@media (min-width: 48em) {
  .page-hero-split .pic img { aspect-ratio: 4 / 4.6; object-fit: cover; }
}

/* offer cards: each takes one hue of the field */
.offers { padding: 1.5rem 0 5.5rem; }
.offers .wrap { display: grid; gap: 1.5rem; }
.offer {
  border: 1px solid var(--hairline);
  padding: 2.4rem 2rem 2.6rem;
  display: grid; gap: 2rem;
  scroll-margin-top: 2rem;
}
@media (min-width: 48em) {
  .offer { grid-template-columns: 1.15fr .85fr; gap: 4rem; padding: 3.2rem 3rem; }
}
.offer--poppy  { background: #F9EEE2; border-color: #EBD9C4; --offer-c: var(--poppy-text); }
.offer--bloom  { background: #F8EAF0; border-color: #E9D3DD; --offer-c: var(--bloom-text); }
.offer--violet { background: #F2ECF9; border-color: #DFD3EE; --offer-c: var(--violet-text); }
.offer .eyebrow { color: var(--offer-c); margin-bottom: 1rem; }
.offer h2 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.offer .offer-copy p { color: var(--ink-70); margin-top: 1.1rem; max-width: var(--measure); }
.offer .offer-copy .quiet-link { margin-top: 1.5rem; border-color: rgba(30, 42, 35, .3); }
.offer-fit h3 {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--offer-c);
  margin-bottom: .5rem;
}
.offer-fit ul { list-style: none; }
.offer-fit li {
  padding: .75rem 0 .75rem 1.4rem;
  border-bottom: 1px solid rgba(30, 42, 35, .1);
  position: relative;
  color: var(--ink-70);
  font-size: .98rem;
}
.offer-fit li::before {
  content: "";
  position: absolute; left: 0; top: 1.35rem;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--offer-c);
}

/* full-width framed photo band (page heroes, events) */
.photo-band { padding: 0 0 4.5rem; }
.photo-band .frame {
  position: relative;
  border: 1px solid var(--ink);
}
.photo-band img { width: 100%; height: auto; display: block; }
.photo-band .frame::after {
  content: "";
  position: absolute; inset: 0;
  transform: translate(10px, 10px);
  border: 1px solid var(--hairline);
  pointer-events: none;
}

/* event photo gallery: mixed landscape + tall portrait cells */
.gallery { padding: 0 0 5rem; }
.gallery h2 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 48em) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  border: 1px solid var(--hairline);
}
.gallery-grid .tall { grid-row: span 2; }

/* numbered steps: how working together goes */
.steps { padding: 4.5rem 0 5rem; }
.steps h2 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}
.steps ol {
  list-style: none;
  display: grid; gap: 2rem;
  counter-reset: step;
}
@media (min-width: 48em) {
  .steps ol { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}
.steps li { counter-increment: step; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--poppy-text);
  margin-bottom: .6rem;
}
.steps li:nth-child(2)::before { color: var(--bloom-text); }
.steps li:nth-child(3)::before { color: var(--violet-text); }
.steps h3 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin-bottom: .5rem;
}
.steps p { color: var(--ink-70); font-size: .98rem; max-width: var(--measure); }

/* testimonial cards: photo, name, and a little blurb */
.voices { padding: 4.5rem 0 5.5rem; }
.voices h2 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}
.t-grid { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 48em) { .t-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.t-card {
  background: #FFFDF9;
  border: 1px solid var(--hairline);
  padding: 2.2rem 2.2rem 2rem;
  display: flex; flex-direction: column;
}
.t-card blockquote { flex: 1; }
.t-card blockquote p {
  font-size: 1.02rem;
  color: var(--ink-70);
  quotes: "\201C" "\201D";
}
.t-card blockquote p::before { content: open-quote; }
.t-card blockquote p::after  { content: close-quote; }
.t-card figcaption {
  margin-top: 1.6rem;
  display: flex; align-items: center; gap: .9rem;
}
.t-avatar {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--bone);
  background: var(--bloom-deep);
}
.t-card:nth-child(3n+2) .t-avatar { background: var(--poppy-text); }
.t-card:nth-child(3n)   .t-avatar { background: var(--violet-text); }
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-name { font-weight: 600; font-size: .95rem; line-height: 1.3; }
.t-name small {
  display: block;
  font-weight: 400; font-size: .85rem;
  color: var(--ink-40);
}

/* signature topics (speaking page) */
.topics { padding: 4.5rem 0 5rem; }
.topics > .wrap > h2 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.topics-note { color: var(--ink-70); max-width: var(--measure); margin-bottom: 2.5rem; }
.topics-group {
  font-family: var(--sans);
  font-size: .85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--bloom-text);
  margin: 3rem 0 .6rem;
}
.topics-group:first-of-type { margin-top: 0; }
.topics-group + .topic { border-top: 1px solid var(--hairline); }

.topic {
  border-top: 1px solid var(--hairline);
  padding: 2.2rem 0;
  display: grid; gap: 1rem;
}
@media (min-width: 48em) {
  .topic { grid-template-columns: 1fr 1.6fr; gap: 4rem; }
}
.topic:last-child { border-bottom: 1px solid var(--hairline); }
.topic h3 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.topic h3 small {
  display: block;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: .6rem;
}
.topic:nth-of-type(3n+1) h3 small { color: var(--poppy-text); }
.topic:nth-of-type(3n+2) h3 small { color: var(--bloom-text); }
.topic:nth-of-type(3n)   h3 small { color: var(--violet-text); }
.topic p { color: var(--ink-70); max-width: var(--measure); }

/* FAQ */
.faq { padding: 4.5rem 0 6rem; }
.faq h2 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.faq-list { max-width: 44rem; }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  font-family: var(--serif);
  font-weight: 520;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  padding: 1.3rem 2.5rem 1.3rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: .25rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.4rem; font-weight: 400;
  color: var(--bloom-text);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details > p {
  padding: 0 0 1.5rem;
  color: var(--ink-70);
  max-width: var(--measure);
}
@media (prefers-reduced-motion: reduce) { .faq summary::after { transition: none; } }

/* pre-footer CTA band */
.cta-band {
  background: var(--plum);
  color: var(--bone);
  padding: 5.5rem 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-weight: 520;
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 18em;
  margin-inline: auto;
}
.cta-band h2 em { font-style: italic; color: var(--marigold); }
.cta-band p {
  margin: 1.2rem auto 0;
  max-width: var(--measure);
  color: rgba(247, 243, 236, .72);
}
.cta-band .btn { margin-top: 2.4rem; }

/* prose blocks (about page) */
.prose-section { padding: 4.5rem 0 5rem; }
.prose { max-width: 42rem; }
.prose h2 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  letter-spacing: -0.01em;
  margin: 2.8rem 0 1rem;
}
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-70); }
.prose p + p { margin-top: 1.2rem; }
.yt-embed { margin-top: 1.6rem; aspect-ratio: 16 / 9; }
.yt-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.cred-list { list-style: none; margin-top: .4rem; }
.cred-list li {
  color: var(--ink-70);
  padding: .75rem 0 .75rem 1.4rem;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.cred-list li::before {
  content: ""; position: absolute; left: 0; top: 1.35rem;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--bloom);
}
.prose strong { color: var(--ink); }

.about-grid { padding: 1rem 0 4rem; }
.about-grid .wrap {
  display: grid; gap: 3rem;
  align-items: start;
}
@media (min-width: 48em) {
  .about-grid .wrap { grid-template-columns: 1.4fr 1fr; gap: 5rem; }
}

/* contact page */
.contact-grid { padding: 1rem 0 5.5rem; }
.contact-grid .wrap {
  display: grid; gap: 2.5rem;
  align-items: start;
}
@media (min-width: 48em) {
  .contact-grid .wrap { grid-template-columns: 1.3fr .9fr; gap: 5rem; }
}
.contact-card {
  background: #FFFDF9;
  border: 1px solid var(--hairline);
  padding: 2.4rem 2.4rem 2.6rem;
}
.contact-card h2 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}
.contact-card dl { display: grid; gap: 1.2rem; }
.contact-card dt {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-40);
}
.contact-card dd a {
  font-family: var(--serif);
  font-size: 1.2rem;
  text-decoration: none;
  border-bottom: 1px solid var(--hairline);
}
.contact-card dd a:hover { border-color: var(--ink); }

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

.site-footer {
  padding: 5rem 0 3.5rem;
  border-top: 1px solid var(--hairline);
}
.site-footer .wrap {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 48em) {
  .site-footer .wrap { grid-template-columns: 1.3fr 1fr; gap: 5rem; }
}

.newsletter h2 {
  font-family: var(--serif);
  font-weight: 520;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}
.newsletter p {
  margin-top: .6rem; color: var(--ink-70); font-size: .98rem;
  max-width: var(--measure);
}
.newsletter form {
  margin-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem;
  max-width: 26rem;
}
.newsletter input {
  flex: 1 1 12rem;
  min-height: 50px;
  padding: .7rem 1rem;
  font: inherit; font-size: .98rem;
  color: var(--ink);
  background: #FFFDF9;
  border: 1px solid var(--hairline);
  border-radius: 3px;
}
.newsletter input:focus-visible {
  outline: 2px solid var(--ink); outline-offset: 1px;
}

.footer-meta {
  display: flex; flex-direction: column; gap: 1.4rem;
  font-size: .95rem; color: var(--ink-70);
}
.footer-meta nav ul {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: .25rem 1.4rem;
}
.footer-meta a {
  display: inline-flex; align-items: center;
  min-height: 44px;
  text-decoration: none; color: var(--ink-70);
}
.footer-meta a:hover, .footer-meta a:focus-visible { color: var(--ink); }
.footer-meta .place { color: var(--ink); font-weight: 500; }
.colophon {
  margin-top: 3rem;
  font-size: .8rem; color: var(--ink-70);
}

/* ---------- mobile sticky CTA ---------- */

.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
  background: var(--bone);
  border-top: 1px solid var(--hairline);
  transform: translateY(110%);
  transition: transform .3s ease;
  z-index: 55;
}
.mobile-cta .btn { width: 100%; }
.mobile-cta.show { transform: translateY(0); }
@media (min-width: 48em) { .mobile-cta { display: none; } }
@media (prefers-reduced-motion: reduce) { .mobile-cta { transition: none; } }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

/* ---------- self-hosted vertical video (phone frame) ---------- */

.vid-phone {
  width: min(320px, 100%);
  aspect-ratio: 9 / 16;
  background: var(--ink);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(35, 22, 34, .18);
}
.vid-phone video { width: 100%; height: 100%; display: block; object-fit: cover; }

.video-voice { padding: 4.5rem 0 5.5rem; background: var(--bone-deep); }
.video-voice-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 48em) {
  .video-voice-grid { grid-template-columns: 1.3fr 1fr; gap: 4rem; }
  .video-voice-grid .vid-phone { justify-self: center; }
}
.video-voice h2 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.video-voice p { max-width: var(--measure); color: var(--ink-70); }

/* video testimonial living inside the t-grid */
.t-card.t-video { align-items: center; justify-content: center; background: none; border: none; padding: 0; }

/* visible-ask card: reads as a deliberate request, not an unfinished spot */
.t-card.t-waiting { border-style: dashed; background: transparent; }
.t-card.t-waiting blockquote p { font-style: italic; }
.t-card.t-waiting blockquote p::before, .t-card.t-waiting blockquote p::after { content: none; }

/* footer social icons */
.footer-social { display: flex; gap: 1rem; margin-top: .9rem; }
.footer-social a { display: inline-flex; padding: .35rem; margin: -.35rem; opacity: .75; transition: opacity .2s ease; }
.footer-social a:hover, .footer-social a:focus-visible { opacity: 1; }

/* small proof inside an offer card */
.offer-quote { margin: 1.6rem 0; padding-left: 1.1rem; border-left: 2px solid currentColor; }
.offer-quote p { font-style: italic; font-size: .98rem; }
.offer-quote footer { margin-top: .6rem; font-size: .8rem; font-weight: 600; letter-spacing: .04em; }

/* ---------- testimonial cards, editorial treatment (Jul 14 redesign) ---------- */
.t-card { background: none; border: none; border-top: 2px solid var(--bloom); padding: 1.8rem 0 0; }
.t-card blockquote p {
  font-family: var(--serif);
  font-weight: 470;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ink);
}
.t-avatar { display: none; }
.t-card figcaption { margin-top: 1.3rem; gap: 0; }
.t-name { font-size: .76rem; font-weight: 650; letter-spacing: .14em; text-transform: uppercase; }
.t-name small { display: block; margin-top: .2rem; letter-spacing: .02em; text-transform: none; font-weight: 500; color: var(--ink-40); }
.t-card.t-waiting { border-top-style: dashed; border-top-width: 2px; padding: 1.8rem 0 0; }
@media (min-width: 48em) { .t-grid { gap: 2.5rem 3.5rem; } }

/* media-left variant of the two-column band */
@media (min-width: 48em) {
  .video-voice--flip .video-voice-grid { grid-template-columns: 1fr 1.2fr; }
}
.video-voice .quote-attr {
  margin-top: 1rem;
  font-size: .76rem; font-weight: 650; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-70);
}
.video-voice blockquote p { font-family: var(--serif); font-weight: 470; font-size: 1.15rem; line-height: 1.55; color: var(--ink); font-style: italic; }
.video-voice .btn { margin-top: 1.8rem; }

/* about hero: video hugs the wrap edge so margins mirror the text side */
@media (min-width: 48em) { .page-hero-split .vid-phone { justify-self: end; } }

/* centered credentials band */
.creds { padding: 4.5rem 0 5rem; border-top: 1px solid var(--hairline); }
.creds .wrap { max-width: 44rem; }
.creds h2 {
  font-family: var(--serif); font-weight: 540;
  font-size: clamp(1.7rem, 3.4vw, 2.2rem); letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}

.video-voice p + p { margin-top: 1.1rem; }

/* mobile: logos ride a single marquee line instead of wrapping */
@media (max-width: 47.9em) {
  .trust-strip { overflow: hidden; }
  .trust-strip .wrap { display: block; }
  .trust-strip .tag { display: block; text-align: center; margin-bottom: 1.1rem; }
  .trust-track {
    display: flex; width: max-content; align-items: center;
    animation: trust-marquee 26s linear infinite;
  }
  .trust-set { display: flex; align-items: center; gap: 2.2rem; padding-right: 2.2rem; }
}
@media (min-width: 48em) {
  .trust-track, .trust-set { display: contents; }
  .trust-set[aria-hidden] { display: none; }
}
@keyframes trust-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .trust-set[aria-hidden] { display: none; }
}

/* waiting card: soft dashed top rule only (border:none leaves width=medium; be explicit) */
.t-card.t-waiting { border: none; border-top: 2px dashed var(--bloom); padding: 1.8rem 0 0; }

.speaking .stages { margin-top: 2.6rem; }

/* homepage plum strip: on mobile the photo slots between the button and the
   stages list; on desktop the stages stay in the left column under the button */
.speaking--home .wrap { grid-template-areas: "text" "photo" "stages"; }
.speaking--home .wrap > div:first-child { grid-area: text; }
.speaking--home .wrap > .speak-photo { grid-area: photo; }
.speaking--home .wrap > .stages { grid-area: stages; margin-top: 0; }
.speaking--home .speaking-photo { margin-bottom: 0; }
@media (min-width: 48em) {
  .speaking--home .wrap {
    grid-template-areas: "text photo" "stages photo";
    grid-template-columns: 1.2fr 1fr;
    row-gap: 2.6rem;
  }
}

.newsletter .btn { margin-top: 1.5rem; }

.pod-platforms { margin-top: 1rem; font-size: .85rem; color: var(--ink-70); }
.pod-platforms a { color: inherit; }

/* ---------- blog ---------- */
.post-list { padding: 1rem 0 5.5rem; }
.post-card {
  display: block; text-decoration: none;
  border-top: 1px solid var(--hairline);
  padding: 2.4rem 0;
  max-width: 44rem;
}
.post-card:last-child { border-bottom: 1px solid var(--hairline); }
.post-date { font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-40); }
.post-card h2 {
  font-family: var(--serif); font-weight: 540;
  font-size: clamp(1.5rem, 3vw, 1.9rem); letter-spacing: -0.01em;
  margin: .5rem 0 .6rem;
  transition: color .2s ease;
}
.post-card:hover h2 { color: var(--bloom-text); }
.post-excerpt { color: var(--ink-70); margin-bottom: 1rem; }
.post { padding: 4.5rem 0 5.5rem; }
.post .wrap { max-width: 44rem; }
.post .eyebrow a { color: inherit; text-decoration: none; }
.post h1 {
  font-family: var(--serif); font-weight: 560;
  font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.1; letter-spacing: -0.015em;
  margin: .8rem 0 2rem;
}
.post-hero { width: 100%; height: auto; margin-bottom: 2rem; }
.post-body p { color: var(--ink-70); font-size: 1.08rem; }
.post-body p + p { margin-top: 1.2rem; }
.post-back { margin-top: 3rem; }

/* wide cinematic strip: the full room, fully visible above the fold */
.photo-band--strip .frame img { aspect-ratio: 21 / 9; object-fit: cover; }
.page-hero--tight { padding-bottom: 2.2rem; }
@media (min-width: 48em) { .page-hero--tight { padding-bottom: 2.8rem; } }

/* about story: portrait leads on the left, prose right (alternates with the hero) */
@media (min-width: 48em) {
  .about-grid--flip .wrap { grid-template-columns: 1fr 1.4fr; }
  .about-grid--flip .portrait { order: -1; }
}

/* featured voice: video + written quote, one person, one moment */
.voice-feature {
  display: grid; gap: 2rem; align-items: center;
  padding-bottom: 2.8rem; margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--hairline);
}
@media (min-width: 48em) {
  .voice-feature { grid-template-columns: minmax(0, 300px) 1fr; gap: 3.5rem; }
}
.voice-feature .feature-quote {
  font-family: var(--serif); font-weight: 470;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.45;
  color: var(--ink); letter-spacing: -0.01em;
}
.voice-feature .t-name { margin-top: 1.2rem; }
/* the pink-phrase treatment reaches every testimonial style */
.voice-feature .feature-quote strong,
.offer-quote strong { color: var(--bloom-text); font-weight: inherit; }

/* ---------- Instagram follow grid (About; curated via /admin) ---------- */
.ig-follow { padding: 5rem 0 6rem; text-align: center; }
.ig-follow h2 {
  font-family: var(--serif); font-weight: 520;
  font-size: clamp(1.6rem, 3vw, 2.1rem); letter-spacing: -0.01em;
}
.ig-follow .ig-handle { margin-top: .4rem; margin-bottom: 2.2rem; }
.ig-follow .ig-handle a {
  color: var(--bloom-text); font-weight: 600; font-size: 1rem;
  text-decoration: none; letter-spacing: .01em;
}
.ig-follow .ig-handle a:hover { text-decoration: underline; }
.ig-grid {
  display: grid; gap: .8rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: 46rem; margin-inline: auto;
}
@media (max-width: 33em) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }
.ig-cell {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 1 / 1; border-radius: 4px; background: var(--bone-deep);
}
.ig-cell img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease, filter .4s ease;
}
.ig-cell:hover img { transform: scale(1.05); filter: brightness(1.05); }


/* testimonial key phrase: MOBILE ONLY. Split into word spans (see site.js) so the
   pink highlighter sweeps continuously in reading order, each word turning white as
   the sweep reaches it, finishing line 1 before line 2. Desktop stays plain bold. */
@media (max-width: 47.9em) {
  .tm-hl { color: var(--ink); font-weight: 600; }
  .tm-hl .hl-w {
    padding: .04em 0;
    background: linear-gradient(var(--bloom-deep), var(--bloom-deep)) no-repeat;
    background-size: 0% 100%;
    transition: background-size var(--d, .4s) linear var(--delay, 0s),
                color .2s ease calc(var(--delay, 0s) + var(--d, .4s) * .45);
  }
  .tm-hl.on .hl-w { background-size: 100% 100%; color: #fff; }
}
@media (max-width: 47.9em) and (prefers-reduced-motion: reduce) {
  .tm-hl .hl-w { transition: none; background-size: 100% 100%; color: #fff; }
}
