/* ============================================================
   Tree of Life — Design Elevation Layer
   Refined motion, tactile hover states, typographic polish.
   Additive to style.css — never overrides structural layout.
   ============================================================ */

/* ---------- Animatable custom properties ---------- */
@property --shimmer-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@property --stroke-progress {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: false;
}

/* ---------- Typographic refinement ---------- */
html {
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}
.hero__title,
.section__title,
.pullquote,
.footer__newsletter-title,
.card__title,
.step__title,
.footer__brand,
.header__logo-text,
.mobile-nav__link {
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1, 'ss01' 1;
  text-rendering: geometricPrecision;
}
.hero__title {
  letter-spacing: -0.022em;
  line-height: 1.08;
}
.section__title {
  letter-spacing: -0.018em;
  line-height: 1.12;
}
.pullquote {
  letter-spacing: -0.012em;
}
/* Numbers align and have consistent width */
.tnum,
time,
.step__number,
.faq-item__trigger {
  font-variant-numeric: tabular-nums lining-nums;
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-primary) 50%,
    var(--color-primary) 100%
  );
  z-index: 100;
  pointer-events: none;
  opacity: 0.85;
}
@supports (animation-timeline: scroll()) {
  .scroll-progress {
    animation: scroll-progress linear both;
    animation-timeline: scroll(root);
  }
  @keyframes scroll-progress {
    to { transform: scaleX(1); }
  }
}

/* ---------- Grain / noise texture (subtle tactility) ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.8 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
[data-theme='dark'] .grain {
  opacity: 0.05;
  mix-blend-mode: screen;
}

/* ---------- Custom cursor (desktop pointing devices only) ---------- */
@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
      width 220ms cubic-bezier(0.16, 1, 0.3, 1),
      height 220ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 220ms cubic-bezier(0.16, 1, 0.3, 1),
      background 220ms cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    mix-blend-mode: multiply;
  }
  .cursor-dot.is-active {
    opacity: 0.85;
  }
  .cursor-dot.is-hovering {
    width: 36px;
    height: 36px;
    opacity: 0.35;
    mix-blend-mode: multiply;
  }
  [data-theme='dark'] .cursor-dot {
    mix-blend-mode: screen;
  }
}

/* ---------- Signature hero moment ---------- */

/* Word-by-word reveal — opacity + clip-path so no CLS */
.hero__title .word {
  display: inline-block;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(0.2em);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--word-index, 0) * 55ms + 120ms);
}
.hero__title.is-loaded .word {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* The highlighted phrase — ink-brush teal stroke that paints in */
.hero__highlight {
  position: relative;
  color: var(--color-primary);
  white-space: normal;
}
.hero__highlight::before {
  content: '';
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.06em;
  height: 0.42em;
  background: linear-gradient(
    90deg,
    oklch(from var(--color-primary) l c h / 0.18),
    oklch(from var(--color-primary) l c h / 0.28) 50%,
    oklch(from var(--color-primary) l c h / 0.18)
  );
  border-radius: 40% 60% 50% 40% / 60% 45% 55% 40%;
  transform: translateY(6px) skewX(-2deg) scaleX(0);
  transform-origin: left center;
  transition: transform 1100ms cubic-bezier(0.65, 0, 0.35, 1);
  transition-delay: 900ms;
  z-index: -1;
  filter: blur(1px);
}
.hero__title.is-loaded .hero__highlight::before {
  transform: translateY(6px) skewX(-2deg) scaleX(1);
}

/* Hero eyebrow — refined entrance */
.hero__content > .section__eyebrow {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__title.is-loaded ~ .reveal + .reveal,
.hero__content.is-loaded > .section__eyebrow {
  opacity: 1;
  transform: translateY(0);
}

/* Hero lead fade-in */
.hero__lead {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 1100ms;
}
.hero__content.is-loaded .hero__lead {
  opacity: 1;
  transform: translateY(0);
}

/* Hero sublead fade-in (sits between lead and buttons) */
.hero__sublead {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 1200ms;
}
.hero__content.is-loaded .hero__sublead {
  opacity: 1;
  transform: translateY(0);
}

/* Hero buttons wrap fade-in */
.hero__content > [class*="reveal"]:last-child,
.hero__buttons {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 1300ms;
}
.hero__content.is-loaded > [class*="reveal"]:last-child,
.hero__content.is-loaded .hero__buttons {
  opacity: 1;
  transform: translateY(0);
}

/* Hero eyebrow reveal */
.hero__content.is-loaded .hero__eyebrow {
  opacity: 1;
  transform: translateY(0);
}
.hero__eyebrow {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 60ms;
}

/* Subtle parallax on hero bg image */
.hero__bg img {
  will-change: transform;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  transform: translate3d(var(--hero-px, 0), var(--hero-py, 0), 0) scale(1.04);
}

/* ---------- Tactile button — gradient shimmer on hover ---------- */
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    background var(--transition-interactive),
    color var(--transition-interactive),
    border-color var(--transition-interactive),
    box-shadow 260ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    var(--shimmer-angle),
    transparent 20%,
    oklch(from currentColor l c h / 0.18) 50%,
    transparent 80%
  );
  opacity: 0;
  transition: opacity 260ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 10px 24px oklch(from var(--color-primary) l c h / 0.18);
  --shimmer-angle: 120deg;
}
.btn:hover::after {
  opacity: 1;
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px oklch(from var(--color-primary) l c h / 0.14);
}
.btn--primary:hover {
  box-shadow: 0 12px 28px oklch(from var(--color-primary) l c h / 0.28);
}
.btn--outline:hover {
  background: oklch(from var(--color-primary) l c h / 0.06);
  border-color: var(--color-primary);
}

/* ---------- Nav link refined — tiny leading dot + slide underline ---------- */
.nav__link {
  padding: var(--space-2) 0;
  transition: color var(--transition-interactive);
}
.nav__link::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translate(-4px, -50%) scale(0);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0;
  transition:
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__link:hover::before,
.nav__link--active::before {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}
.nav__link::after {
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ---------- Theme toggle refinement ---------- */
.theme-toggle {
  transition:
    color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background 220ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.theme-toggle:hover {
  transform: rotate(-12deg);
}
.theme-toggle svg {
  transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Card hover: cursor-tracked glow ---------- */
.card,
.method-foundation,
.blog-card,
.testimonial-card {
  position: relative;
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
.card[data-cursor-glow],
.method-foundation[data-cursor-glow],
.blog-card[data-cursor-glow],
.testimonial-card[data-cursor-glow] {
  --mx: 50%;
  --my: 50%;
}
.card[data-cursor-glow]::before,
.method-foundation[data-cursor-glow]::before,
.blog-card[data-cursor-glow]::before,
.testimonial-card[data-cursor-glow]::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    340px circle at var(--mx) var(--my),
    oklch(from var(--color-primary) l c h / 0.10),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 260ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.card[data-cursor-glow]:hover::before,
.method-foundation[data-cursor-glow]:hover::before,
.blog-card[data-cursor-glow]:hover::before,
.testimonial-card[data-cursor-glow]:hover::before {
  opacity: 1;
}
.card:hover,
.blog-card:hover,
.method-foundation:hover {
  transform: translateY(-2px);
  border-color: oklch(from var(--color-primary) l c h / 0.35);
}

/* ---------- Pillar chips: individual entrance stagger ---------- */
.pillars .pillar {
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    background 220ms cubic-bezier(0.16, 1, 0.3, 1),
    color 220ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--pill-index, 0) * 55ms);
}
.pillars.is-visible .pillar {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.pillar:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  cursor: default;
}

/* ---------- Section eyebrow — elegant leading line ---------- */
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.section__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.6;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 120ms;
}
.reveal.is-visible .section__eyebrow::before,
.section__eyebrow.is-visible::before {
  transform: scaleX(1);
}
/* Ensure the eyebrow line is shown when eyebrow is inside an already-loaded hero */
.hero__content.is-loaded .section__eyebrow::before {
  transform: scaleX(1);
}

/* ---------- Refined pullquote — drop initial + sharper rule ---------- */
.pullquote {
  font-weight: 400;
  font-style: italic;
  position: relative;
}
.pullquote::before {
  width: 40px;
  height: 1px;
  opacity: 0.8;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-primary) 50%,
    transparent
  );
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible.pullquote::before,
.reveal.is-visible .pullquote::before {
  transform: scaleX(1);
}

/* ---------- Section hairline divider (draws in on scroll) ---------- */
.section-divider {
  position: relative;
  height: 1px;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
  overflow: hidden;
}
.section-divider::after {
  content: '';
  position: absolute;
  left: var(--space-4);
  right: var(--space-4);
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-divider) 20%,
    var(--color-divider) 80%,
    transparent
  );
  transform-origin: left center;
  transform: scaleX(0);
}
@supports (animation-timeline: view()) {
  .section-divider::after {
    animation: divider-draw linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
  @keyframes divider-draw {
    to { transform: scaleX(1); }
  }
}
@media (min-width: 768px) {
  .section-divider { padding-inline: var(--space-8); }
  .section-divider::after { left: var(--space-8); right: var(--space-8); }
}

/* ---------- Scroll-driven reveals (modern, no CLS) ---------- */
/* Progressive enhancement — overrides the JS-based .reveal if supported.
   Uses opacity + filter only; element keeps its layout space. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal:not(.hero__title):not(.pillars) {
      opacity: 0;
      filter: blur(4px);
      transform: none;
      animation: reveal-soft linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 55%;
    }
    @keyframes reveal-soft {
      to {
        opacity: 1;
        filter: blur(0);
      }
    }
  }
}

/* ---------- Newsletter input: animated underline focus ---------- */
.footer__newsletter-form {
  position: relative;
}
.footer__newsletter-form input[type="email"] {
  transition:
    border-color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
.footer__newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px oklch(from var(--color-primary) l c h / 0.12);
}

/* ---------- Link refinement: underline slide from left ---------- */
a.link-refined,
.footer__links a {
  position: relative;
  text-decoration: none;
  background-image: linear-gradient(var(--color-primary), var(--color-primary));
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 92%;
  transition:
    background-size 320ms cubic-bezier(0.16, 1, 0.3, 1),
    color 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
a.link-refined:hover,
.footer__links a:hover {
  background-size: 100% 1px;
  color: var(--color-primary);
}

/* ---------- Header sharpened on scroll ---------- */
.header {
  transition:
    box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 320ms,
    background 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.header--scrolled {
  background: oklch(from var(--color-bg) l c h / 0.82);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: oklch(from var(--color-text) l c h / 0.08);
}

/* ---------- Testimonial card — pure cream-on-darker-cream contrast ---------- */
.testimonial-card {
  position: relative;
  margin: 0;
  padding: 28px 26px 24px;
  border-radius: 14px;
  background: var(--color-bg);
  border: 0;
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-card::after {
  content: none;
}
.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px oklch(from var(--color-text) l c h / 0.05);
}
[data-theme='dark'] .testimonial-card {
  background: var(--color-surface);
}

/* ---------- Focus ring refinement ---------- */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
  transition: outline-offset 160ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Responsive: reduce motion intensity on small screens ---------- */
@media (max-width: 640px) {
  .hero__title .word {
    transition-duration: 550ms;
  }
  .cursor-dot { display: none; }
}

/* ---------- Respect reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero__title .word,
  .hero__lead,
  .hero__sublead,
  .hero__content > [class*="reveal"]:last-child,
  .hero__buttons,
  .hero__eyebrow,
  .pillars .pillar {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .hero__highlight::before {
    transform: translateY(6px) skewX(-2deg) scaleX(1) !important;
    transition: none !important;
  }
  .hero__bg img { transform: none !important; }
  .btn:hover { transform: none !important; }
  .scroll-progress { display: none; }
  .cursor-dot { display: none; }
}

/* ========================================================================
   SECTION 3 — THE METHOD (two-column, refined spacing)
   ======================================================================== */
.method-section {
  background: var(--color-bg);
  padding-block: clamp(var(--space-16), 10vw, 88px);
}
.method-section .container {
  padding-inline: clamp(var(--space-6), 5vw, 64px);
}
.method-section .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.method-section__img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.method-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.method-section__body {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.method-section__body p { margin: 0; }
.method-section__cta { margin-top: var(--space-4); }
@media (max-width: 860px) {
  .method-section .two-col {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .method-section__img { aspect-ratio: 5 / 4; }
}

/* ========================================================================
   SECTION 4 — CENTERED CLOSER QUOTE
   ======================================================================== */
.closer-quote {
  background: var(--color-bg);
  padding-block: clamp(var(--space-16), 11vw, 96px);
  padding-inline: clamp(var(--space-6), 5vw, 64px);
}
.closer-quote__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.closer-quote__rule {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-primary);
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
.closer-quote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--color-text);
  max-width: 760px;
  margin: 0;
}
.closer-quote__dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
  margin-top: 2rem;
}

/* ========================================================================
   SECTION 5 — TESTIMONIALS (refreshed header + pure cream cards)
   ======================================================================== */
.testimonials-section {
  padding-block: 80px 88px;
  padding-inline: clamp(var(--space-6), 5vw, 48px);
}
.testimonials-section__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  text-align: center;
  margin: 0 0 3rem;
}
.testimonials-section__eyebrow-rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.7;
}
.testimonials-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0 0 20px;
  quotes: none;
}
.testimonial-card__attribution {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}
.testimonial-card__attribution span {
  margin: 0 0.35em;
  color: var(--color-primary);
  opacity: 0.85;
}
.testimonials-section__placeholder {
  font-size: 12px;
  color: var(--color-text-faint);
  font-style: italic;
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 860px) {
  .testimonials-section__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ========================================================================
   IF THIS IS YOU — constrained column, breathing paragraph
   ======================================================================== */
.if-this-is-you .section__title {
  max-width: 760px;
}
/* Explicit break after first sentence on desktop; mobile lets it flow naturally */
.if-this-is-you__break {
  display: none;
}
@media (min-width: 720px) {
  .if-this-is-you__break { display: inline; }
}
.if-this-is-you .section__subtitle {
  max-width: 760px;
  line-height: 1.7;
}

/* ============================================================
   THE METHOD — watercolor banner + numbered movements
   ============================================================ */

/* Watercolor hero banner */
.method-hero-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--color-bg);
}
.method-hero-banner img {
  display: block;
  width: 100%;
  height: clamp(220px, 38vw, 460px);
  object-fit: cover;
  object-position: center 55%;
}

/* Numbered movements list */
.movements {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.movement {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(48px, 7vw, 80px) 0;
  border-top: 1px solid var(--color-border, rgba(0,0,0,0.08));
  align-items: start;
}
.movement:first-child {
  border-top: none;
  padding-top: 0;
}
.movement__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 1;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.movement__body { min-width: 0; }
.movement__body .section__eyebrow {
  margin-bottom: var(--space-3);
}
.movement__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2rem);
  line-height: 1.25;
  color: var(--color-text);
  margin: 0 0 var(--space-5);
  max-width: 28ch;
}
.movement__copy {
  color: var(--color-text-muted);
  line-height: 1.8;
  display: grid;
  gap: var(--space-4);
  max-width: 62ch;
}
@media (max-width: 720px) {
  .movement {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    padding: clamp(40px, 9vw, 56px) 0;
  }
  .movement__num { font-size: 64px; }
}

/* Closing pullquote with teal divider rule */
.closer-quote__rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-primary);
}
.closer-quote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.625rem);
  line-height: 1.5;
  color: var(--color-text);
  max-width: 36ch;
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
}
