/* Art direction: Premium retreat architecture → minimal, grounded, authoritative
   Palette: Warm neutrals (stone/sand), accent: deep ocean teal
   Typography: Zodiak (display serif) + General Sans (body sans) — elegant authority meets clean modernity
   Density: spacious — generous whitespace signals premium positioning */

/* ===== TYPE SCALE ===== */
:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);
}

/* ===== SPACING ===== */
:root {
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* ===== CUSTOM PALETTE — ANCHOR ===== */
:root, [data-theme="light"] {
  /* Surfaces — warm stone */
  --color-bg:              #f5f3ef;
  --color-surface:         #faf9f6;
  --color-surface-2:       #ffffff;
  --color-surface-offset:  #eeebe5;
  --color-surface-offset-2: #e7e3dc;
  --color-surface-dynamic: #dedad2;
  --color-divider:         #d4d0c8;
  --color-border:          #c9c4bb;

  /* Text — warm charcoal */
  --color-text:            #1a1814;
  --color-text-muted:      #6b6660;
  --color-text-faint:      #a8a49e;
  --color-text-inverse:    #faf9f6;

  /* Primary — deep ocean teal */
  --color-primary:         #1a5c5e;
  --color-primary-hover:   #134648;
  --color-primary-active:  #0e3435;
  --color-primary-highlight: #d0dedd;

  /* Secondary accent — warm terracotta */
  --color-accent:          #b5725a;
  --color-accent-hover:    #995e49;
  --color-accent-active:   #7d4c3a;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px oklch(0.2 0.01 60 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.01 60 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.01 60 / 0.12);

  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body: 'General Sans', 'Helvetica Neue', sans-serif;
}

/* ===== DARK MODE ===== */
[data-theme="dark"] {
  --color-bg:              #141210;
  --color-surface:         #1a1816;
  --color-surface-2:       #1f1d1b;
  --color-surface-offset:  #1c1a18;
  --color-surface-offset-2: #21201e;
  --color-surface-dynamic: #2a2826;
  --color-divider:         #2e2c2a;
  --color-border:          #3a3835;
  --color-text:            #d4d2ce;
  --color-text-muted:      #8a8680;
  --color-text-faint:      #5c5955;
  --color-text-inverse:    #1a1814;
  --color-primary:         #5da3a6;
  --color-primary-hover:   #3b8c8f;
  --color-primary-active:  #267073;
  --color-primary-highlight: #283536;
  --color-accent:          #c8876f;
  --color-accent-hover:    #b5725a;
  --color-accent-active:   #995e49;
  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:              #141210;
    --color-surface:         #1a1816;
    --color-surface-2:       #1f1d1b;
    --color-surface-offset:  #1c1a18;
    --color-surface-offset-2: #21201e;
    --color-surface-dynamic: #2a2826;
    --color-divider:         #2e2c2a;
    --color-border:          #3a3835;
    --color-text:            #d4d2ce;
    --color-text-muted:      #8a8680;
    --color-text-faint:      #5c5955;
    --color-text-inverse:    #1a1814;
    --color-primary:         #5da3a6;
    --color-primary-hover:   #3b8c8f;
    --color-primary-active:  #267073;
    --color-primary-highlight: #283536;
    --color-accent:          #c8876f;
    --color-accent-hover:    #b5725a;
    --color-accent-active:   #995e49;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
    --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
  }
}

/* ===== GLOBAL STYLES ===== */

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  z-index: 100;
}
.skip-link:focus { top: var(--space-4); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid oklch(from var(--color-divider) l c h / 0.5);
  transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.logo-mark {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
}
.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-6);
}
.nav-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition-interactive);
}
.nav-links a:hover {
  color: var(--color-text);
}
.theme-toggle {
  padding: var(--space-2);
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
  transition: color var(--transition-interactive), background var(--transition-interactive);
}
.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface-offset);
}

/* Mobile nav */
.mobile-toggle {
  display: none;
  padding: var(--space-2);
  color: var(--color-text);
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .theme-toggle { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    padding: var(--space-6);
    gap: var(--space-4);
    border-bottom: 1px solid var(--color-divider);
    box-shadow: var(--shadow-md);
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    oklch(from var(--color-bg) l c h / 0.4) 0%,
    oklch(from var(--color-bg) l c h / 0.7) 50%,
    oklch(from var(--color-bg) l c h / 0.95) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--content-default);
  padding: var(--space-16) var(--space-6);
  text-align: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}
.hero-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 580px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.hero-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.hero-cta:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* Sections */
.section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) var(--space-6);
}
.section--alt {
  background: var(--color-surface-offset);
}
.section-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.section-narrow {
  max-width: var(--content-default);
  margin: 0 auto;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: 1.15;
}
.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}
.two-col__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.two-col__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ANCHOR Method */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
@media (max-width: 900px) {
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .method-grid {
    grid-template-columns: 1fr;
  }
}
.method-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-border) l c h / 0.4);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.method-card__letter {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.method-card__title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.method-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}
.method-card__goal {
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: var(--space-4);
  text-transform: uppercase;
}

/* Protocol / Pricing cards (3-tier) */
.protocol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
@media (max-width: 960px) {
  .protocol-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
  }
}
.protocol-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-border) l c h / 0.4);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.protocol-card--featured {
  border-color: var(--color-primary);
  background: color-mix(in oklch, var(--color-primary) 3%, var(--color-surface));
  position: relative;
}
.protocol-card__tier {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.protocol-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.protocol-card__tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-6);
}
.protocol-card__price {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.protocol-card__price span {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-muted);
}
.protocol-card__commitment {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: var(--space-6);
}
.protocol-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  flex: 1;
}
.protocol-card__list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-2) 0;
  border-bottom: 1px solid oklch(from var(--color-divider) l c h / 0.4);
  line-height: 1.5;
}
.protocol-card__list li:last-child {
  border-bottom: none;
}
.protocol-card__ideal {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-top: auto;
  padding-top: var(--space-4);
  margin-bottom: var(--space-6);
}
.protocol-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}
.protocol-card__cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}
.protocol-card__cta:active {
  transform: translateY(0);
}

/* Partnership section */
.partnership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-top: var(--space-10);
}
@media (max-width: 768px) {
  .partnership-grid {
    grid-template-columns: 1fr;
  }
}
.partnership-block {
  padding: var(--space-8);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid oklch(from var(--color-border) l c h / 0.4);
}
.partnership-block h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.partnership-block ul {
  list-style: none;
  padding: 0;
}
.partnership-block li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-2) 0;
  padding-left: var(--space-6);
  position: relative;
  line-height: 1.5;
}
.partnership-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background: var(--color-primary);
}

/* Who section */
.who-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.who-tag {
  padding: var(--space-2) var(--space-5);
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-border) l c h / 0.4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Quote / Pull quote */
.pull-quote {
  padding: var(--space-12) var(--space-6);
  text-align: center;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.4;
  font-style: italic;
}

/* Full-bleed image */
.full-bleed {
  width: 100%;
  max-height: 50vh;
  overflow: hidden;
}
.full-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

/* CTA / Waitlist section */
.cta-section {
  padding: clamp(var(--space-16), 10vw, var(--space-32)) var(--space-6);
  text-align: center;
  background: var(--color-surface-offset);
}
.cta-section .section-narrow {
  max-width: 640px;
}
.waitlist-form {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-8);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.waitlist-form input[type="email"] {
  flex: 1;
  padding: var(--space-3) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.waitlist-form input[type="email"]::placeholder {
  color: var(--color-text-faint);
}
.waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.12);
}
.waitlist-form button {
  padding: var(--space-3) var(--space-6);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}
.waitlist-form button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}
.waitlist-form button:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .waitlist-form {
    flex-direction: column;
  }
}
.waitlist-success {
  display: none;
  font-size: var(--text-sm);
  color: var(--color-primary);
  margin-top: var(--space-4);
}
.waitlist-success.show {
  display: block;
}

/* Footer */
.site-footer {
  padding: var(--space-12) var(--space-6);
  border-top: 1px solid var(--color-divider);
}
.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
}
.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.footer-right {
  display: flex;
  gap: var(--space-6);
  align-items: center;
}
.footer-right a {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.footer-right a:hover {
  color: var(--color-text-muted);
}

/* ===== STATS BAR ===== */
.stats-bar {
  padding: var(--space-10) var(--space-6);
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.stats-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}
@media (max-width: 768px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}
@media (max-width: 420px) {
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}
.stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text-inverse);
  line-height: 1.1;
}
.stat-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ===== FOUNDERS SECTION ===== */
.founders-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
@media (max-width: 768px) {
  .founders-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}
.founders-text .section-subtitle {
  max-width: none;
}
.founders-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: var(--space-10);
}
.credential-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-border) l c h / 0.4);
  border-radius: var(--radius-lg);
}
.credential-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  display: flex;
}
.credential-text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}
.testimonial-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-border) l c h / 0.4);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: var(--space-8);
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
}
.testimonial-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  overflow: hidden;
}
.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Scroll animations */
.fade-in { opacity: 1; }
@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
}
@keyframes reveal-fade {
  to { opacity: 1; }
}
