/* DressageTunes — design system v2
   Bolder, photo-led, with rhythm motifs (BPM ring, waveform, marquee).
   One file, no preprocessor, no JS dependency.
   build: 2026-05-27a
*/

/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
  /* color — core */
  --purple: #6D28D9;
  --purple-dark: #4C1D95;
  --purple-bright: #8B5CF6;
  --purple-deep: #2E1065;
  --violet: #5B21B6;
  --lavender: #E5DBFA;
  --lavender-mid: #C9B8F1;
  --lavender-soft: #F0E9FB;
  --cream: #F7F3EB;
  --paper: #FBF9F4;
  --ink: #1B1A1F;
  --ink-muted: #5C5862;
  --ink-soft: #8C8693;
  --hero-bg: #0B0911;
  --hero-bg-2: #150F22;
  --line: #E4DED4;
  --line-soft: #EFEAE0;
  --gold: #D6B16A;

  /* color — gradients */
  --grad-purple: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 50%, #4C1D95 100%);
  --grad-hero: radial-gradient(ellipse 80% 60% at 75% 20%, rgba(139,92,246,0.32), transparent 55%),
               radial-gradient(ellipse 60% 40% at 10% 90%, rgba(109,40,217,0.22), transparent 60%),
               linear-gradient(180deg, #0B0911 0%, #150F22 100%);
  --grad-glow: radial-gradient(circle at center, rgba(139,92,246,0.35), transparent 70%);
  --grad-cream: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);

  /* type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --space-11: 160px;

  /* layout */
  --content-max: 1240px;
  --reading-max: 720px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 0.18s;
  --dur: 0.32s;
  --dur-slow: 0.6s;

  /* shadow */
  --shadow-sm: 0 2px 8px rgba(27, 26, 31, 0.06);
  --shadow-md: 0 10px 30px rgba(27, 26, 31, 0.08);
  --shadow-lg: 0 24px 60px rgba(76, 29, 149, 0.18);
  --shadow-purple: 0 10px 40px rgba(109, 40, 217, 0.35);
}

/* ============================================================
   1b. SKIP LINK + FOCUS STATES (a11y)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -64px;
  left: 16px;
  background: var(--purple);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius);
  z-index: 1000;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: top var(--dur-fast);
}
.skip-link:focus {
  top: 16px;
  color: #fff;
  outline: 2px solid var(--lavender);
  outline-offset: 2px;
}
:focus-visible {
  outline: 2px solid var(--purple-bright);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible,
.nav-cta:focus-visible,
.wa-float:focus-visible {
  outline-offset: 4px;
}

/* ============================================================
   2. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; transition: color var(--dur-fast) ease; }
a:hover { color: var(--purple-dark); }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; }
::selection { background: var(--purple); color: #fff; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(44px, 7.4vw, 96px); line-height: 0.98; }
h2 { font-size: clamp(34px, 5vw, 60px); line-height: 1.06; }
h3 { font-size: clamp(22px, 2.6vw, 30px); line-height: 1.2; }
h4 {
  font-size: 13px;
  line-height: 1.3;
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

p { color: var(--ink); max-width: 64ch; }
p + p { margin-top: var(--space-4); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--purple);
  display: inline-block;
}
.eyebrow.no-bar::before { display: none; }
.band-dark .eyebrow,
.eyebrow.on-dark { color: var(--lavender); }
.band-dark .eyebrow::before,
.eyebrow.on-dark::before { background: var(--lavender); }

.accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-muted);
}

.lead {
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 56ch;
}

.muted { color: var(--ink-muted); }

/* italic-pull — pull-quote inside prose */
.pull {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
  color: var(--ink);
  max-width: 36ch;
}

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--space-5); }
.container-narrow { max-width: var(--reading-max); margin: 0 auto; padding: 0 var(--space-5); }
.section { padding: var(--space-10) 0; position: relative; }
.section-tight { padding: var(--space-8) 0; }
@media (max-width: 720px) {
  .section { padding: var(--space-8) 0; }
  .section-tight { padding: var(--space-7) 0; }
}

.band-dark { background: var(--hero-bg); color: var(--cream); }
.band-dark h1, .band-dark h2, .band-dark h3 { color: var(--cream); }
.band-dark h4 { color: var(--lavender-mid); }
.band-dark p { color: rgba(247, 243, 235, 0.78); }
.band-cream { background: var(--cream); }
.band-paper { background: var(--paper); }
.band-lavender { background: var(--lavender-soft); }
.band-purple {
  background: var(--grad-purple);
  color: #fff;
}
.band-purple h1, .band-purple h2, .band-purple h3 { color: #fff; }
.band-purple p { color: rgba(255,255,255,0.86); }
.band-purple .eyebrow,
.band-purple .eyebrow::before { color: var(--lavender); background: transparent; }
.band-purple .eyebrow::before { background: var(--lavender); }

/* section divider — waveform SVG slot */
.wave-divider {
  display: block;
  width: 100%;
  height: 56px;
  color: var(--lavender);
}
.wave-divider svg { width: 100%; height: 100%; }
.band-dark + .band-cream .wave-divider,
.band-cream + .band-dark .wave-divider { color: var(--purple); }

/* ============================================================
   5. NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 235, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo .nav-logo-mark {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
  align-items: center;
}
.nav-links a:not(.nav-cta) {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: width var(--dur) var(--ease-out);
}
.nav-links a:hover:not(.nav-cta)::after,
.nav-links a.current:not(.nav-cta)::after { width: 100%; }
.nav-links a:hover { color: var(--purple); }
.nav-links a.current { color: var(--purple); }
.nav-cta {
  background: var(--purple);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.nav-cta:hover { background: var(--purple-dark); color: #fff !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  margin: 5px auto;
  transition: transform var(--dur-fast), opacity var(--dur-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: rgba(247, 243, 235, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-soft);
    padding: var(--space-3) var(--space-5) var(--space-4);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-links li:last-child {
    border-bottom: 0;
    padding-top: var(--space-3);
    text-align: center;
  }
  .nav-links a:not(.nav-cta) {
    display: block;
    padding: var(--space-3) 0;
    font-size: 17px;
  }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-links .nav-cta { display: inline-block; }
  @media (prefers-reduced-motion: reduce) {
    .nav-links { transition: opacity var(--dur) linear; transform: none; }
    .nav-links.is-open { transform: none; }
  }
}

/* ============================================================
   6. HERO — photo-led with rhythm overlay
   ============================================================ */
.hero {
  background: var(--grad-hero);
  color: var(--cream);
  padding: var(--space-10) 0 var(--space-9);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 30%, rgba(139,92,246,0.28), transparent 60%),
    radial-gradient(ellipse 40% 40% at 5% 85%, rgba(76,29,149,0.32), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }

/* hero — split layout with photo */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-8);
  align-items: center;
  min-height: 78vh;
}
@media (max-width: 980px) {
  .hero-split { grid-template-columns: 1fr; gap: var(--space-7); min-height: auto; }
}
.hero-copy {
  position: relative;
}
.hero-copy .eyebrow { color: var(--lavender); margin-bottom: var(--space-5); }
.hero-copy .eyebrow::before { background: var(--lavender); }
.hero h1 {
  color: var(--cream);
  margin-bottom: var(--space-5);
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(120deg, #C9B8F1 0%, #fff 50%, #C9B8F1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  color: rgba(247, 243, 235, 0.82);
  margin-bottom: var(--space-6);
  max-width: 50ch;
}
.hero-claims {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-7);
}
.hero-claim {
  background: rgba(229, 219, 250, 0.08);
  border: 1px solid rgba(229, 219, 250, 0.2);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--lavender);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-claim::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-bright);
  display: inline-block;
  box-shadow: 0 0 12px var(--purple-bright);
}
.hero-microcopy {
  font-size: 13px;
  color: rgba(247, 243, 235, 0.55);
  margin-top: var(--space-3);
}
.hero-stars {
  margin-top: var(--space-7);
  font-size: 18px;
  letter-spacing: 0.3em;
  color: var(--lavender);
  opacity: 0.9;
}
.hero-stars-caption {
  margin-top: var(--space-2);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 15px;
  color: rgba(247, 243, 235, 0.6);
}

/* hero — photo frame with BPM overlay */
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(229, 219, 250, 0.15);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,9,17,0.55) 100%),
              linear-gradient(120deg, rgba(109,40,217,0.18) 0%, transparent 60%);
  pointer-events: none;
}

/* BPM ring — floating callout */
.bpm-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(11, 9, 17, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 219, 250, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--lavender);
  z-index: 3;
  box-shadow: var(--shadow-purple);
  padding: 0 18px;
  text-align: center;
}
.bpm-ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--purple-bright);
  opacity: 0.6;
  animation: pulse-ring 2.2s ease-out infinite;
}
.bpm-ring::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid var(--purple-bright);
  opacity: 0;
  animation: pulse-ring 2.2s ease-out 0.5s infinite;
}
.bpm-ring--top-right { top: -28px; right: -28px; }
.bpm-ring--bottom-left { bottom: -24px; left: -24px; }
.bpm-ring .bpm-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
}
.bpm-ring .bpm-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--lavender);
  line-height: 1.3;
  max-width: 110px;
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.6; }
  80%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
@media (max-width: 540px) {
  .bpm-ring { width: 124px; height: 124px; padding: 0 14px; }
  .bpm-ring .bpm-num { font-size: 38px; }
  .bpm-ring .bpm-label { font-size: 9px; max-width: 90px; }
  .bpm-ring--top-right { top: -16px; right: -16px; }
  .bpm-ring--bottom-left { bottom: -16px; left: -16px; }
}

/* waveform graphic — used as ambient decoration */
.waveform-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
}
.waveform-bars span {
  flex: 1;
  background: currentColor;
  border-radius: 999px;
  opacity: 0.85;
  animation: wave 1.6s ease-in-out infinite;
}
.waveform-bars span:nth-child(1)  { animation-delay: 0.00s; }
.waveform-bars span:nth-child(2)  { animation-delay: 0.08s; }
.waveform-bars span:nth-child(3)  { animation-delay: 0.16s; }
.waveform-bars span:nth-child(4)  { animation-delay: 0.24s; }
.waveform-bars span:nth-child(5)  { animation-delay: 0.32s; }
.waveform-bars span:nth-child(6)  { animation-delay: 0.40s; }
.waveform-bars span:nth-child(7)  { animation-delay: 0.48s; }
.waveform-bars span:nth-child(8)  { animation-delay: 0.56s; }
.waveform-bars span:nth-child(9)  { animation-delay: 0.64s; }
.waveform-bars span:nth-child(10) { animation-delay: 0.72s; }
.waveform-bars span:nth-child(11) { animation-delay: 0.80s; }
.waveform-bars span:nth-child(12) { animation-delay: 0.88s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.35); }
  50%      { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
  .waveform-bars span, .bpm-ring::before, .bpm-ring::after { animation: none; }
  .waveform-bars span { transform: scaleY(0.6); }
}

/* ============================================================
   7. MARQUEE — proof points scroll
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--lavender);
  padding: var(--space-4) 0;
  overflow: hidden;
  border-top: 1px solid rgba(229, 219, 250, 0.12);
  border-bottom: 1px solid rgba(229, 219, 250, 0.12);
}
.marquee-track {
  display: flex;
  gap: var(--space-8);
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
}
.marquee-item::after {
  content: '✦';
  color: var(--purple-bright);
  font-style: normal;
  font-size: 14px;
}
.marquee-item:last-child::after { display: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================
   8. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--purple);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 0;
  transition: background var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur);
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
.btn::after {
  content: '→';
  font-size: 16px;
  transition: transform var(--dur) var(--ease-out);
}
.btn:hover {
  background: var(--purple-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}
.btn:hover::after { transform: translateX(4px); }
.btn-large { padding: 18px 34px; font-size: 16px; }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 243, 235, 0.32);
}
.btn-ghost:hover { background: rgba(247, 243, 235, 0.06); color: var(--cream); box-shadow: none; }
.btn-gradient {
  background: var(--grad-purple);
  background-size: 200% 100%;
  background-position: 0% 0%;
}
.btn-gradient:hover { background-position: 100% 0%; }
.btn-whatsapp {
  background: #25D366;
}
.btn-whatsapp:hover { background: #1FB855; }
.btn-whatsapp::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M17.5 14.4c-.3-.1-1.7-.8-2-.9-.3-.1-.4-.1-.6.1-.2.3-.7.9-.8 1-.2.2-.3.2-.6.1-.3-.1-1.2-.4-2.3-1.4-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6.1-.1.3-.3.4-.5.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5 0-.1-.6-1.5-.9-2.1-.2-.5-.4-.5-.6-.5h-.5c-.2 0-.5.1-.7.3-.3.3-1 1-1 2.4 0 1.4 1 2.8 1.2 3 .2.2 2.1 3.2 5 4.5.7.3 1.3.5 1.7.6.7.2 1.4.2 1.9.1.6-.1 1.7-.7 2-1.4.2-.7.2-1.3.2-1.4-.1-.1-.2-.2-.5-.3zM12 2C6.5 2 2 6.5 2 12c0 1.8.5 3.5 1.3 5L2 22l5.2-1.4c1.4.8 3.1 1.2 4.8 1.2 5.5 0 10-4.5 10-10S17.5 2 12 2z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--purple);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast), gap var(--dur-fast);
}
.btn-link::after { content: '→'; transition: transform var(--dur) var(--ease-out); }
.btn-link:hover { border-bottom-color: var(--purple); }
.btn-link:hover::after { transform: translateX(4px); }
.band-dark .btn-link { color: var(--lavender); }
.band-dark .btn-link:hover { color: #fff; border-bottom-color: var(--lavender); }

/* ============================================================
   9. GRIDS
   ============================================================ */
.two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
}
.two-up-asym {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-8);
}
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.four-up {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 880px) {
  .two-up, .two-up-asym, .three-up, .four-up { grid-template-columns: 1fr; gap: var(--space-6); }
}

/* ============================================================
   10. CARDS
   ============================================================ */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.card:hover {
  border-color: var(--lavender);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: var(--space-3); }
.card .price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 40px;
  color: var(--purple);
  margin-top: var(--space-5);
  line-height: 1;
}
.card-step .step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: var(--space-4);
  opacity: 0.85;
}
.card-light { background: transparent; border-color: rgba(229, 219, 250, 0.2); }
.band-dark .card {
  background: rgba(229, 219, 250, 0.04);
  border-color: rgba(229, 219, 250, 0.12);
  backdrop-filter: blur(6px);
}
.band-dark .card h3 { color: var(--cream); }
.band-dark .card p { color: rgba(247, 243, 235, 0.7); }
.band-dark .card:hover { border-color: var(--purple-bright); }
.band-dark .card .step-num {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--purple-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   11. SECTION HEADER
   ============================================================ */
.section-head {
  margin-bottom: var(--space-8);
  max-width: var(--reading-max);
}
.section-head .eyebrow { margin-bottom: var(--space-4); }
.section-head h2 { margin-bottom: var(--space-4); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ============================================================
   12. PRICING — interactive ladder
   ============================================================ */
.pricing-ladder {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 18px 28px;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  transition: background var(--dur-fast);
  position: relative;
}
.pricing-row:last-child { border-bottom: 0; }
.pricing-row.header {
  background: var(--lavender-soft);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.pricing-row:not(.header):hover { background: var(--lavender-soft); }
.pricing-row .level-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
.pricing-row .level-sub {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  margin-left: 8px;
}
.pricing-row .col-price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
}
.pricing-row .col-price.signature { color: var(--purple); }
@media (max-width: 640px) {
  .pricing-row { grid-template-columns: 1.6fr 1fr 1fr; padding: 14px 16px; gap: 8px; }
  .pricing-row .level-name { font-size: 17px; }
  .pricing-row .col-price { font-size: 15px; }
}

/* legacy table — kept for compatibility */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}
.pricing-table th {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--lavender-soft);
}
.pricing-table td.level { font-family: var(--font-display); font-style: italic; font-size: 19px; }
.pricing-table td.price { font-family: var(--font-body); font-weight: 600; font-size: 17px; color: var(--ink); }
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table tr:hover { background: var(--lavender-soft); }

/* ============================================================
   13. FAQ
   ============================================================ */
.faq { max-width: var(--reading-max); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: var(--space-5) 0;
}
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 24px);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  color: var(--ink);
  transition: color var(--dur-fast);
}
.faq summary:hover { color: var(--purple); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 300;
  color: var(--purple);
  transition: transform var(--dur) var(--ease-out);
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: var(--space-4);
  color: var(--ink-muted);
}

/* ============================================================
   14. QUOTES & STATS
   ============================================================ */
.quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.35;
  color: var(--ink);
  max-width: 32ch;
  position: relative;
  padding-left: var(--space-5);
  border-left: 2px solid var(--purple);
}
.band-dark .quote { color: var(--cream); border-left-color: var(--lavender); }
.quote-attr {
  margin-top: var(--space-5);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
}
.band-dark .quote-attr { color: var(--lavender-mid); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7);
}
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; gap: var(--space-5); } }
.stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(56px, 8vw, 96px);
  background: linear-gradient(135deg, var(--lavender) 0%, var(--purple-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}
.band-cream .stat-num,
.band-paper .stat-num,
.band-lavender .stat-num {
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  max-width: 24ch;
}
.band-dark .stat-label { color: rgba(247, 243, 235, 0.65); }

/* ============================================================
   15. PROOF — feature with photo
   ============================================================ */
.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--dur);
}
.feature-card:hover { box-shadow: var(--shadow-md); }
.feature-card.invert { grid-template-columns: 1fr 1fr; }
.feature-card.invert .feature-media { order: 2; }
.feature-card.invert .feature-body { order: 1; }
@media (max-width: 820px) {
  .feature-card, .feature-card.invert {
    grid-template-columns: 1fr;
  }
  .feature-card.invert .feature-media { order: 1; }
  .feature-card.invert .feature-body { order: 2; }
}
.feature-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--lavender-soft);
}
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.feature-media .feature-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(11, 9, 17, 0.85);
  backdrop-filter: blur(8px);
  color: var(--lavender);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(229, 219, 250, 0.2);
  z-index: 2;
}
.feature-media .feature-score {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--grad-purple);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-style: italic;
  z-index: 2;
  box-shadow: var(--shadow-purple);
}
.feature-media .feature-score .score-num {
  font-size: 28px;
  line-height: 1;
}
.feature-media .feature-score .score-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}
.feature-body {
  padding: var(--space-8) var(--space-7);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-body .eyebrow { margin-bottom: var(--space-4); }
.feature-body h3 {
  font-size: clamp(28px, 3.2vw, 40px);
  margin-bottom: var(--space-4);
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
  background: var(--hero-bg);
  color: rgba(247, 243, 235, 0.7);
  padding: var(--space-9) 0 var(--space-6);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 80% 0%, rgba(109,40,217,0.18), transparent 60%);
  pointer-events: none;
}
.footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-8);
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer h4 { color: var(--lavender); margin-bottom: var(--space-4); }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-4);
}
.footer-logo img { height: 56px; width: auto; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: var(--space-2); }
.footer ul a { color: rgba(247, 243, 235, 0.7); font-size: 14px; }
.footer ul a:hover { color: var(--lavender); }
.footer-bottom {
  border-top: 1px solid rgba(247, 243, 235, 0.12);
  padding-top: var(--space-5);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  color: rgba(247, 243, 235, 0.45);
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: var(--space-4);
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(229,219,250,0.06);
  border: 1px solid rgba(229,219,250,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
}
.footer-social a:hover {
  background: var(--purple);
  border-color: var(--purple);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; fill: var(--lavender); }
.footer-social a:hover svg { fill: #fff; }

/* ============================================================
   17. PROSE (learn / about)
   ============================================================ */
.prose { max-width: var(--reading-max); margin: 0 auto; }
.prose h2 { margin-top: var(--space-8); margin-bottom: var(--space-4); }
.prose h3 { margin-top: var(--space-7); margin-bottom: var(--space-3); }
.prose p { margin-bottom: var(--space-4); max-width: none; }
.prose ul, .prose ol { margin-bottom: var(--space-4); padding-left: var(--space-5); }
.prose li { margin-bottom: var(--space-2); }
.prose li::marker { color: var(--purple); }
.prose blockquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  border-left: 3px solid var(--purple);
  padding-left: var(--space-5);
  margin: var(--space-7) 0;
  color: var(--ink);
}
.prose strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   18. ARTICLE CARDS
   ============================================================ */
.article-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.article-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--grad-purple);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dur) var(--ease-out);
}
.article-card:hover { border-color: var(--purple); color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.article-card:hover::after { transform: scaleY(1); }
.article-card .eyebrow { margin-bottom: var(--space-3); }
.article-card h3 { margin-bottom: var(--space-3); }
.article-card .article-meta {
  margin-top: var(--space-4);
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-card .article-meta::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-bright);
  display: inline-block;
}

/* ============================================================
   19. PORTFOLIO LEVEL GRID
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}
@media (max-width: 980px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .portfolio-grid { grid-template-columns: 1fr; } }
.level-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-5);
  text-align: left;
  transition: border-color var(--dur), transform var(--dur), background var(--dur);
  position: relative;
  overflow: hidden;
}
.level-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grad-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.level-card:hover { border-color: var(--lavender); transform: translateY(-3px); }
.level-card:hover::before { transform: scaleX(1); }
.level-card .level-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  margin-bottom: var(--space-2);
  color: var(--ink);
}
.level-card .level-count {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-muted);
}
.level-card.featured {
  background: linear-gradient(160deg, var(--paper) 0%, var(--lavender-soft) 100%);
  border-color: var(--lavender);
}
.level-card.featured .level-count { color: var(--purple); font-weight: 600; }

/* ============================================================
   20. BPM TOOL CALLOUT
   ============================================================ */
.bpm-callout {
  background: linear-gradient(135deg, var(--lavender-soft) 0%, #fff 50%, var(--lavender-soft) 100%);
  border: 1px solid var(--lavender);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--space-7);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bpm-callout::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(139,92,246,0.18), transparent 60%);
  pointer-events: none;
}
.bpm-callout > * { position: relative; z-index: 1; }
@media (max-width: 720px) {
  .bpm-callout { grid-template-columns: 1fr; padding: var(--space-7); }
}
.bpm-callout h3 { margin-bottom: var(--space-3); font-size: clamp(26px, 3vw, 36px); }
.bpm-callout .bpm-vis {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(96px, 12vw, 144px);
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.02em;
}
.bpm-callout .bpm-vis-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  margin-top: var(--space-3);
}

/* ============================================================
   21. CONTACT BLOCK
   ============================================================ */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
@media (max-width: 880px) { .contact-block { grid-template-columns: 1fr; } }
.contact-method {
  border-top: 1px solid var(--line);
  padding: var(--space-5) 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-4);
  align-items: center;
  transition: border-color var(--dur-fast);
}
.contact-method:has(.contact-method-icon) {
  grid-template-columns: 52px 1fr auto;
  gap: var(--space-5);
}
.contact-method:hover { border-color: var(--purple); }
.contact-method:hover .contact-method-icon { background: var(--purple); }
.contact-method:hover .contact-method-icon svg { fill: #fff; }
.contact-method:last-child { border-bottom: 1px solid var(--line); }
.contact-method-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lavender-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur);
  flex-shrink: 0;
}
.contact-method-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--purple);
  transition: fill var(--dur);
}
@media (max-width: 540px) {
  .contact-method:has(.contact-method-icon) { grid-template-columns: 44px 1fr; gap: var(--space-4); }
  .contact-method-icon { width: 44px; height: 44px; }
  .contact-method-icon svg { width: 18px; height: 18px; }
  .contact-method:has(.contact-method-icon) .method-value { grid-column: 1 / -1; padding-left: 60px; }
}
.contact-method .method-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  margin-bottom: var(--space-2);
  color: var(--ink);
}
.contact-method .method-detail {
  font-size: 14px;
  color: var(--ink-muted);
}
.contact-method .method-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--purple);
  white-space: nowrap;
  text-decoration: none;
}
a.method-value:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
a.contact-method-icon { text-decoration: none; }

/* ============================================================
   21b. VIDEO FRAME — Drive/YouTube/Vimeo embeds
   ============================================================ */
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--hero-bg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: var(--hero-bg);
  cursor: pointer;
  z-index: 3;
  overflow: hidden;
  transition: opacity var(--dur) var(--ease-out);
}
.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,9,17,0.15) 0%, rgba(11,9,17,0.5) 100%);
  pointer-events: none;
}
.video-poster .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(76, 29, 149, 0.5), 0 4px 12px rgba(0,0,0,0.3);
  transition: transform var(--dur) var(--ease-out), background var(--dur);
  z-index: 4;
}
.video-poster .play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--purple);
  margin-left: 6px;
}
.video-poster:hover .play-button {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}
.video-poster::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  transform: translate(-50%, -50%);
  animation: video-pulse 2.4s ease-out infinite;
  z-index: 3;
  pointer-events: none;
}
@keyframes video-pulse {
  0%   { transform: translate(-50%, -50%) scale(1);    opacity: 0.6; }
  80%  { transform: translate(-50%, -50%) scale(1.5);  opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1.5);  opacity: 0; }
}
.video-frame.playing .video-poster {
  opacity: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .video-poster::before { animation: none; }
}
@media (max-width: 540px) {
  .video-poster .play-button { width: 72px; height: 72px; }
  .video-poster .play-button::before { border-width: 10px 0 10px 16px; }
  .video-poster::before { width: 72px; height: 72px; }
}
.video-frame .video-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(11, 9, 17, 0.85);
  backdrop-filter: blur(8px);
  color: var(--lavender);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(229, 219, 250, 0.25);
  z-index: 2;
  pointer-events: none;
}
.video-caption {
  margin-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.video-caption .video-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
}
.band-dark .video-caption .video-title { color: var(--cream); }
.video-caption .video-meta {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}
.band-dark .video-caption .video-meta { color: var(--lavender-mid); }

/* ============================================================
   21c. TESTIMONIAL CARDS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
@media (max-width: 820px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 96px;
  color: var(--lavender);
  line-height: 1;
  opacity: 0.55;
}
.testimonial-card:hover { border-color: var(--lavender); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-stars {
  color: var(--purple-bright);
  letter-spacing: 0.16em;
  font-size: 14px;
  margin-bottom: var(--space-5);
}
.testimonial-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  color: var(--ink);
  flex: 1;
}
.testimonial-attr {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-soft);
}
.testimonial-attr.with-photo {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--lavender);
  flex-shrink: 0;
  background: var(--lavender-soft);
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.testimonial-attr.with-photo .testimonial-meta { flex: 1; }
.testimonial-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 2px;
}
.testimonial-title {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--purple);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* ============================================================
   21d. FLOATING WHATSAPP BUTTON (bottom-right, sitewide)
   ============================================================ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.18);
  z-index: 200;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur), background var(--dur-fast);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.55;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}
.wa-float:hover {
  background: #1FB855;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55), 0 2px 8px rgba(0,0,0,0.22);
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.wa-float .wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.02em;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast), transform var(--dur-fast);
  box-shadow: var(--shadow-sm);
}
.wa-float .wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--ink);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(-4px); }
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: 0.55; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
@media (max-width: 540px) {
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
  .wa-float .wa-tooltip { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; }
}

/* ============================================================
   22. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   23. NUMBERED LIST WITH STEP CHIP
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--lavender) 20%, var(--lavender) 80%, transparent 100%);
  z-index: 0;
}
@media (max-width: 880px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
}
.process-step { position: relative; z-index: 1; }
.process-step .step-chip {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--purple);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.band-dark .process-step .step-chip {
  background: var(--hero-bg-2);
  border-color: rgba(229,219,250,0.25);
  color: var(--lavender);
}
.process-step h3 { font-size: 22px; margin-bottom: var(--space-2); }
.process-step p { font-size: 15px; max-width: 28ch; }

/* ============================================================
   24. UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-7 { margin-bottom: var(--space-7); }
.purple { color: var(--purple); }
.lavender { color: var(--lavender); }
