/* ==========================================================================
   Dazzle Courses — Premium Design System
   --------------------------------------------------------------------------
   HOW TO EDIT (for non-technical owners):
   • Colours, fonts, spacing and radii live in :root below — change once,
     updates everywhere. --pink is reserved for primary "Book" actions.
   • Organised: tokens → base → layout → nav → hero → components → sections
     → footer → utilities → responsive → reduced motion.
   ========================================================================== */

/* ============================ 1. DESIGN TOKENS ============================ */
:root {
  /* Brand palette — refined turquoise + confident pink accent */
  --turq-600: #0fb5c9;
  --turq-500: #3cc6d6;
  --turq-400: #6fd6e2;
  --turq-300: #9fe4ec;
  --turq-200: #c9f0f5;
  --turq-100: #eafbfd;
  --turq-050: #f6fdfe;
  --turq-deep: #085f6b;
  --turq-ink:  #063f47;

  --pink: #d86ecc;
  --pink-dark: #c052b2;
  --pink-soft: #fbeafa;

  --ink: #101d20;
  --muted: #5c6b70;
  --faint: #8a979c;
  --white: #ffffff;
  --border: rgba(15, 181, 201, 0.14);
  --border-strong: rgba(15, 181, 201, 0.25);

  --color-bg: var(--white);
  --color-bg-tint: var(--turq-050);

  /* Typography — one family, strong scale */
  --font-body: "Open Sans", "Aptos", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: var(--font-body);

  /* Spacing */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 1rem; --sp-4: 1.5rem;
  --sp-5: 2rem;   --sp-6: 3rem;   --sp-7: 4rem; --sp-8: 6rem; --sp-9: 8rem;

  /* Radius */
  --r-sm: 10px; --r-md: 18px; --r-lg: 28px; --r-xl: 36px; --r-pill: 999px;

  /* Layout */
  --container: 1200px;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(8, 95, 107, 0.05), 0 1px 8px rgba(8, 95, 107, 0.04);
  --shadow-sm: 0 2px 6px rgba(8, 95, 107, 0.05), 0 8px 24px rgba(8, 95, 107, 0.07);
  --shadow-md: 0 4px 12px rgba(8, 95, 107, 0.06), 0 20px 48px rgba(8, 95, 107, 0.12);
  --shadow-lg: 0 8px 20px rgba(8, 95, 107, 0.08), 0 32px 80px rgba(8, 95, 107, 0.16);
  --glow-turq: 0 0 0 1px var(--border-strong), 0 16px 48px rgba(15, 181, 201, 0.25);
  --glow-pink: 0 8px 32px rgba(216, 110, 204, 0.35);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.22s var(--ease-out);
  --t-base: 0.45s var(--ease-out);
  --t-slow: 0.8s var(--ease-out);

  --header-h: 78px;
}

/* ============================ 2. BASE ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--color-bg);
  line-height: 1.75;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--turq-200); color: var(--turq-ink); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { color: var(--muted); max-width: 65ch; }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--turq-400);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--ink); color: var(--white);
  padding: 0.75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ============================ 3. LAYOUT ============================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.section-head { max-width: 680px; margin: 0 auto clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.section-head p { margin: var(--sp-3) auto 0; font-size: 1.08rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turq-deep);
  background: var(--turq-100);
  border: 1px solid var(--border);
  padding: 0.4rem 0.95rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-4);
}

.grid { display: grid; gap: var(--sp-4); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.bg-tint { background: linear-gradient(180deg, var(--turq-050) 0%, var(--turq-100) 100%); }

/* ============================ 4. BUTTONS ============================ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 1rem 2.1rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  overflow: hidden;
}
.btn svg { width: 1.1em; height: 1.1em; transition: transform var(--t-fast); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(216, 110, 204, 0.28);
}
.btn-primary::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.28) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--glow-pink); }
.btn-primary:hover::after { transform: translateX(120%); }
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  border: 1.5px solid var(--border-strong);
  color: var(--turq-deep);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: var(--white); border-color: var(--turq-500); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.btn-ghost { border: 1.5px solid rgba(255,255,255,0.55); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }

.text-link {
  font-weight: 700; font-size: 0.95rem; color: var(--turq-deep);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: color var(--t-fast);
}
.text-link svg { width: 1.05em; height: 1.05em; flex-shrink: 0; transition: transform var(--t-fast); }
.text-link:hover { color: var(--turq-600); }
.text-link:hover svg { transform: translateX(4px); }
.btn-block { width: 100%; }

/* ============================ 5. HEADER / NAV ============================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), background var(--t-base);
  padding: 0.9rem 0;
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(255,255,255,0.88); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); }

.logo {
  font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink);
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.logo span { color: var(--turq-600); }

.primary-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 0.4rem; }
.nav-list > li { position: relative; }
.nav-list a {
  font-size: 0.94rem; font-weight: 600; color: var(--muted);
  display: inline-flex; align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-pill);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-list a:hover { color: var(--ink); background: var(--turq-100); }
.nav-list a.active { color: var(--turq-deep); background: var(--turq-100); }

.nav-cta { display: flex; align-items: center; gap: var(--sp-3); }
.nav-cta .btn { padding: 0.7rem 1.5rem; font-size: 0.92rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; z-index: 1100; }
.nav-toggle span { height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--t-fast), opacity var(--t-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); }

.mobile-nav, .nav-overlay { display: none; }

/* Dropdowns (kept for sub-pages) */
.dropdown-toggle {
  font-size: 0.94rem; font-weight: 600; color: var(--muted);
  display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.45rem 0.9rem;
  border-radius: var(--r-pill); transition: color var(--t-fast), background var(--t-fast);
}
.dropdown-toggle:hover { color: var(--ink); background: var(--turq-100); }
.dropdown-toggle svg { width: 14px; height: 14px; transition: transform var(--t-fast); }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 230px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: 0.5rem;
  opacity: 0; visibility: hidden; transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
}
.dropdown-menu li a { display: block; padding: 0.6rem 0.9rem; border-radius: var(--r-sm); font-weight: 600; font-size: 0.92rem; color: var(--muted); }
.dropdown-menu li a:hover { background: var(--turq-100); color: var(--turq-deep); }
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.dropdown-menu[data-open="true"] { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }

/* ============================ 6. MOBILE CTA BAR ============================ */
.mobile-cta-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 0.65rem var(--sp-3);
}
.mobile-cta-bar .btn { width: 100%; }

/* ============================ 7. HERO ============================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)) 0 clamp(4rem, 8vw, 6.5rem);
  background:
    radial-gradient(1000px 600px at 85% -10%, var(--turq-100) 0%, transparent 60%),
    radial-gradient(800px 500px at -10% 110%, var(--pink-soft) 0%, transparent 55%),
    linear-gradient(180deg, var(--white) 0%, var(--turq-050) 100%);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content .eyebrow { margin-bottom: var(--sp-4); }
.hero-content h1 { margin-bottom: var(--sp-4); }
.hero-content p.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  max-width: 34rem;
  margin-bottom: var(--sp-5);
}
.hero-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-bottom: var(--sp-5); }

/* Trust indicators under hero CTAs */
.hero-stats {
  grid-column: 1 / -1;
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}
.hero-stats div { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-stats strong {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--turq-deep);
  line-height: 1.2;
}
.hero-stats span { font-size: 0.82rem; color: var(--faint); font-weight: 600; }

/* Hero portrait */
.hero-media {
  position: relative;
  width: 100%;
  max-width: 470px;
  margin-left: auto;
  aspect-ratio: 3 / 4;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--r-xl) + 10px);
  background: linear-gradient(140deg, var(--turq-300), transparent 40%, transparent 60%, var(--pink-soft));
  opacity: 0.8;
  z-index: 0;
}
.hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.hero-badge {
  position: absolute;
  left: -1.75rem;
  bottom: 1.75rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 0.85rem 1.2rem;
  display: flex; align-items: center; gap: 0.75rem;
  z-index: 2;
}
.hero-badge .icon-badge { width: 42px; height: 42px; margin: 0; flex-shrink: 0; border-radius: 50%; }
.hero-badge strong { display: block; font-size: 0.9rem; line-height: 1.35; letter-spacing: -0.01em; }
.hero-badge span { font-size: 0.76rem; color: var(--muted); }

/* Ambient floating blobs (parallax via JS) */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: 0.35; z-index: 0;
  will-change: transform;
}
.blob-1 { width: 380px; height: 380px; background: var(--turq-300); top: -80px; right: -60px; animation: drift1 16s ease-in-out infinite alternate; }
.blob-2 { width: 300px; height: 300px; background: var(--pink-soft); bottom: -80px; left: -50px; animation: drift2 20s ease-in-out infinite alternate; }
@keyframes drift1 { to { transform: translate(-30px, 40px) scale(1.12); } }
@keyframes drift2 { to { transform: translate(30px, -30px) scale(1.08); } }

/* Interior page hero (sub-pages) */
.page-hero {
  padding: calc(var(--header-h) + var(--sp-7)) 0 var(--sp-7);
  background: linear-gradient(160deg, var(--turq-050) 0%, var(--turq-200) 140%);
  text-align: center;
}
.page-hero p { max-width: 640px; margin: var(--sp-3) auto 0; font-size: 1.05rem; }
.breadcrumb { font-size: 0.85rem; color: var(--turq-deep); margin-bottom: var(--sp-2); }
.breadcrumb a { font-weight: 700; }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================ 8. CARDS ============================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-xs);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card-media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--turq-100); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: var(--sp-5); display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.card-body p { font-size: 0.95rem; flex: 1; }

/* Feature cards — photo, title, copy, link */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 4vw, 3.5rem); }
.feature-card { display: flex; flex-direction: column; color: inherit; }
.feature-media {
  margin-bottom: var(--sp-4);
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.feature-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform var(--t-slow);
}
.feature-card:hover .feature-media { transform: translateY(-6px); box-shadow: var(--glow-turq); }
.feature-card:hover .feature-media img { transform: scale(1.06); }
.feature-card h3 { margin-bottom: 0.45rem; }
.feature-card > p { margin-bottom: 0.7rem; font-size: 0.98rem; }
.feature-card > p:last-of-type { margin-bottom: 1.1rem; }
.feature-card .text-link { margin-top: auto; }

/* Crop focal points */
.feature-media img[src*="womens-coaching"] { object-position: center 8%; }

/* Service icon card */
.service-card { text-align: left; padding: var(--sp-5); }
.icon-badge {
  width: 52px; height: 52px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--turq-100), var(--turq-200));
  color: var(--turq-deep);
  margin-bottom: 0.5rem;
}
.icon-badge svg { width: 26px; height: 26px; }

/* Credential / benefit grid */
.icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.icon-item {
  display: flex; flex-direction: column; gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.icon-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.icon-item .icon-badge { width: 46px; height: 46px; }
.icon-item .icon-badge svg { width: 23px; height: 23px; }
.icon-item h4 { margin: 0; }
.icon-item p { font-size: 0.9rem; }

/* Check lists */
.check-list li {
  display: flex; gap: 0.65rem; align-items: flex-start;
  margin-bottom: 0.75rem; color: var(--ink); font-size: 1rem; font-weight: 500;
}
.check-list svg {
  width: 21px; height: 21px; color: var(--turq-600); flex-shrink: 0; margin-top: 3px;
  background: var(--turq-100); border-radius: 50%; padding: 3px;
}

/* ============================ 9. SPLIT SECTIONS ============================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.split-content .btn { margin-top: var(--sp-2); }

/* Full uncropped photo variant (programmes) */
.split-media.photo-full img {
  aspect-ratio: auto; height: auto; object-fit: unset;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.split-media.photo-full img:hover { transform: translateY(-5px); box-shadow: var(--glow-turq); }

/* ============================ 10. ABOUT — portrait layout ============================ */
.split.about-layout { grid-template-columns: 0.82fr 1.18fr; gap: clamp(2.5rem, 6vw, 5.5rem); }
.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  margin: 0 auto;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: var(--r-xl);
  background: linear-gradient(150deg, var(--turq-200), var(--turq-100) 70%);
  z-index: 0;
}
.portrait-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 12%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.portrait-chip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.4rem;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  padding: 0.6rem 1.4rem;
  text-align: center;
  white-space: nowrap;
  z-index: 2;
}
.portrait-chip strong { display: block; font-size: 0.95rem; letter-spacing: -0.01em; }
.portrait-chip span { font-size: 0.76rem; color: var(--muted); font-weight: 600; }

/* ============================ 11. PILLARS ============================ */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.pillar {
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
}
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pillar .pillar-num {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--turq-deep); background: var(--turq-100);
  padding: 0.3rem 0.8rem; border-radius: var(--r-pill); margin-bottom: 0.7rem;
}
.pillar h3 { margin: 0 0 0.45rem; }
.pillar p { font-size: 0.95rem; }
.pillar-1::before { background: linear-gradient(90deg, var(--turq-500), var(--turq-300)); }
.pillar-2::before { background: linear-gradient(90deg, var(--pink), var(--pink-soft)); }
.pillar-3::before { background: linear-gradient(90deg, var(--turq-deep), var(--turq-500)); }
.pillar-4::before { background: linear-gradient(90deg, var(--pink-dark), var(--pink)); }
.pillar-2 .pillar-num, .pillar-4 .pillar-num { color: var(--pink-dark); background: var(--pink-soft); }

/* ============================ 12. TESTIMONIALS ============================ */
.carousel { position: relative; max-width: 860px; margin: 0 auto; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.55s var(--ease-out); }
.carousel-slide { min-width: 100%; padding: 0 var(--sp-3); }
.quote-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.quote-card .quote-mark { color: var(--turq-300); }
.quote-card .quote-mark svg { width: 44px; height: 44px; }
.quote-card blockquote {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: var(--sp-3) 0 var(--sp-4);
  line-height: 1.55;
  text-wrap: balance;
}
.quote-author { display: flex; align-items: center; justify-content: center; gap: 0.8rem; }
.quote-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--turq-600), var(--turq-400));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800;
}
.quote-author strong { display: block; color: var(--ink); font-size: 0.95rem; }
.quote-author span { font-size: 0.84rem; color: var(--muted); }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--turq-deep);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  z-index: 2;
}
.carousel-btn:hover { background: var(--white); transform: translateY(-50%) scale(1.07); box-shadow: var(--shadow-md); }
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-prev { left: -8px; }
.carousel-next { right: -8px; }
.carousel-dots { display: flex; justify-content: center; gap: 0.55rem; margin-top: var(--sp-5); }
.carousel-dots button {
  width: 8px; height: 8px; border-radius: var(--r-pill);
  background: var(--turq-200);
  transition: background var(--t-fast), width var(--t-base);
}
.carousel-dots button[aria-selected="true"] { background: var(--turq-600); width: 26px; }

/* ============================ 13. CTA BAND ============================ */
.cta-band {
  position: relative;
  background:
    radial-gradient(700px 380px at 12% 20%, rgba(255,255,255,0.16), transparent 60%),
    radial-gradient(600px 400px at 90% 90%, rgba(216,110,204,0.25), transparent 60%),
    linear-gradient(125deg, var(--turq-600), var(--turq-deep) 70%);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(2.75rem, 7vw, 5rem);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: var(--white); margin-bottom: var(--sp-3); }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto var(--sp-5); }
.cta-band .microcopy { font-size: 0.85rem; margin: var(--sp-4) auto 0; opacity: 0.85; }
.cta-band .btn-primary { box-shadow: 0 8px 32px rgba(0,0,0,0.25); }

/* ============================ 14. FORMS ============================ */
.form-group { margin-bottom: var(--sp-4); }
.form-group label { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.95rem 1.15rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 0.98rem;
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--turq-500);
  box-shadow: 0 0 0 4px rgba(15, 181, 201, 0.14);
}
.field-error { color: #c0392b; font-size: 0.8rem; margin-top: 0.35rem; display: none; }
.field-error.visible { display: block; }
.form-status { margin-top: var(--sp-3); font-weight: 700; display: none; }
.form-status.visible { display: block; }
.form-status.success { color: var(--turq-deep); }
.form-status.error { color: #c0392b; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn .spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.5); border-top-color: #fff; border-radius: 50%; animation: spin 0.8s linear infinite; display: none; }
.btn.loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Contact info */
.contact-info { align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.contact-logo {
  width: 300px;
  max-width: 85%;
  height: auto;
  display: block;
  margin-bottom: var(--sp-6);
}
.contact-info .social-row { padding-top: var(--sp-5); }
.contact-info .info-row { display: flex; gap: 0.9rem; align-items: flex-start; margin-bottom: var(--sp-4); }
.contact-info .info-row .icon-badge { width: 46px; height: 46px; flex-shrink: 0; }
.contact-info strong { display: block; font-weight: 700; }
.contact-info a { color: var(--turq-deep); font-weight: 600; }
.contact-info a:hover { color: var(--turq-600); }
.social-row { display: flex; gap: 0.6rem; margin-top: var(--sp-3); }
.social-row a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--turq-deep);
  transition: background var(--t-fast), background-position var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.social-row a svg { width: 20px; height: 20px; }
.social-row a:hover {
  border-color: transparent;
  background: linear-gradient(90deg, var(--turq-500), var(--pink));
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(216, 110, 204, 0.35), 0 6px 18px rgba(15, 181, 201, 0.3);
}

/* ============================ 15. BLOG / MISC ============================ */
.blog-meta { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--turq-600); font-weight: 800; }
.newsletter { display: flex; gap: 0.6rem; max-width: 480px; margin: var(--sp-4) auto 0; flex-wrap: wrap; }
.newsletter input { flex: 1; min-width: 220px; }
.coming-soon-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--pink-dark); background: var(--pink-soft);
  padding: 0.25rem 0.7rem; border-radius: var(--r-pill);
}
.trust-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-4) var(--sp-7); align-items: center; text-align: center; }
.trust-item strong { font-size: 1.9rem; font-weight: 800; color: var(--turq-600); display: block; }
.trust-item span { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: 0.4rem; padding: var(--sp-4); aspect-ratio: 3 / 2; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--turq-500), var(--turq-200));
  border: 2px dashed rgba(255,255,255,0.7); color: var(--turq-deep);
}
.timeline { position: relative; max-width: 720px; margin: 0 auto; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--turq-200); }
.timeline-item { position: relative; padding: 0 0 var(--sp-4) var(--sp-4); }
.timeline-item::before {
  content: ""; position: absolute; left: -2rem; top: 4px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--turq-600); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--turq-200);
}
.timeline-item h4 { color: var(--turq-deep); margin-bottom: 0.2rem; }
.timeline-item p { font-size: 0.95rem; }

/* ============================ 16. FOOTER ============================ */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--turq-ink) 0%, #052d33 100%);
  color: rgba(255,255,255,0.72);
  padding: var(--sp-8) 0 var(--sp-4);
}
.site-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--turq-500), var(--pink), var(--turq-500));
  opacity: 0.7;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--sp-5);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 { color: var(--white); margin-bottom: var(--sp-3); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; }
.footer-brand .logo { color: var(--white); }
.footer-brand .logo span { color: var(--turq-400); }
.footer-brand p { margin-top: var(--sp-3); font-size: 0.92rem; max-width: 300px; color: rgba(255,255,255,0.6); }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a { font-size: 0.92rem; color: rgba(255,255,255,0.66); transition: color var(--t-fast), padding-left var(--t-fast); }
.footer-links a:hover { color: var(--turq-300); padding-left: 4px; }
.footer-contact li { font-size: 0.92rem; margin-bottom: 0.7rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; margin-top: 5px; flex-shrink: 0; color: var(--turq-400); }
.footer-contact a:hover { color: var(--turq-300); }
.footer-social { display: flex; gap: 0.6rem; margin-top: var(--sp-4); }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), background-position var(--t-fast), transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover {
  background: linear-gradient(90deg, var(--turq-500), var(--pink));
  border-color: transparent;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(216, 110, 204, 0.35), 0 6px 18px rgba(15, 181, 201, 0.3);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--sp-4); font-size: 0.82rem; flex-wrap: wrap; gap: 0.6rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.66); }
.footer-bottom a:hover { color: var(--turq-300); }

/* ============================ 17. UTILITIES / MOTION ============================ */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--sp-4); }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

.back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  color: var(--turq-deep);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base), background var(--t-fast), color var(--t-fast);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--turq-600); color: var(--white); }
.back-to-top svg { width: 20px; height: 20px; }

#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, var(--turq-600), var(--turq-deep));
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-box { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.loader-logo { width: 190px; max-width: 60vw; height: auto; animation: loaderPulse 1.8s var(--ease-out, ease) infinite; }
.loader-spin { width: 30px; height: 30px; border: 3px solid rgba(255,255,255,0.28); border-top-color: #fff; border-radius: 50%; animation: spin 0.9s linear infinite; }

/* ============================ 18. RESPONSIVE ============================ */
@media (max-width: 1024px) {
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 66px; }
  .primary-nav, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }

  .mobile-nav {
    position: fixed; top: 0; right: -100%;
    width: min(340px, 86vw); height: 100vh; height: 100dvh;
    background: linear-gradient(165deg, var(--turq-600) 0%, var(--turq-ink) 100%);
    padding: 5.5rem var(--sp-5) var(--sp-5);
    z-index: 1050; overflow-y: auto;
    display: flex; flex-direction: column; gap: 0.3rem;
    transition: right var(--t-base);
  }
  .mobile-nav.open { right: 0; box-shadow: var(--shadow-lg); }
  .mobile-nav a {
    color: var(--white); font-weight: 600; font-size: 1.08rem;
    padding: 0.8rem 0.5rem; border-radius: var(--r-sm);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background var(--t-fast);
  }
  .mobile-nav a:hover { background: rgba(255,255,255,0.08); }
  .mobile-nav a.active { color: var(--turq-200); }
  .mobile-nav .subnav { display: flex; flex-direction: column; }
  .mobile-nav .subnav a { display: block; font-size: 0.96rem; padding: 0.55rem 0 0.55rem 1rem; opacity: 0.92; border-bottom: none; }
  .mobile-nav .subnav-label { color: var(--turq-200); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.7rem; font-weight: 700; }
  .mobile-nav .btn { margin-top: var(--sp-4); border-bottom: none; }
  .nav-overlay {
    display: block; position: fixed; inset: 0;
    background: rgba(6, 63, 71, 0.5); backdrop-filter: blur(3px);
    opacity: 0; visibility: hidden;
    transition: opacity var(--t-base), visibility var(--t-base);
    z-index: 1040;
  }
  .nav-overlay.open { opacity: 1; visibility: visible; }

  .mobile-cta-bar { display: block; }
  body { padding-bottom: 76px; }

  .hero .container, .split, .split.reverse, .split.about-layout { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .split.reverse .split-media { order: 0; }
  .hero-media { margin-inline: auto; max-width: 420px; }
  .hero-badge { left: 0.9rem; }
  .hero-stats { justify-content: center; gap: var(--sp-3); }
  .portrait-frame { max-width: 340px; }
  .pillars, .grid-2, .feature-grid { grid-template-columns: 1fr; }
  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
}

@media (max-width: 560px) {
  .icon-grid, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions .btn { width: 100%; }
  .portrait-chip { white-space: normal; width: max-content; max-width: 90%; }
}

@media (min-width: 1600px) {
  :root { --container: 1280px; }
}

/* ============================ 19. REDUCED MOTION ============================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .blob { animation: none; }
}

/* ============================ 20. PREMIUM LAYER ============================ */

/* Jewel-finish icons — rounded caps everywhere (Lucide-style) */
svg { stroke-linecap: round; stroke-linejoin: round; }

/* Scroll progress bar */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--turq-500), var(--pink));
  z-index: 1200;
  border-radius: 0 var(--r-pill) var(--r-pill) 0;
}

/* Gradient display accent */
.grad-text {
  background: linear-gradient(100deg, var(--turq-600) 10%, var(--pink) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Photo category chips */
.feature-media .photo-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--turq-ink);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 0.32rem 0.75rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-xs);
}

/* Feature headings (numbering removed) */
.feature-card h3::before { content: none; }

/* Ghost chapter numerals behind splits */
.split[data-num] { position: relative; }
.split[data-num]::before {
  content: attr(data-num);
  position: absolute;
  top: -0.5em;
  right: 0;
  font-size: clamp(6rem, 14vw, 11rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--turq-100);
  z-index: -1;
  pointer-events: none;
  user-select: none;
}
.split.reverse[data-num]::before { right: auto; left: 0; }

/* Dark testimonial moment */
.bg-dark {
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(15,181,201,0.18), transparent 60%),
    radial-gradient(700px 500px at 5% 100%, rgba(216,110,204,0.12), transparent 55%),
    linear-gradient(170deg, var(--turq-ink) 0%, #04262b 100%);
}
.bg-dark .section-head h2 { color: var(--white); }
.bg-dark .section-head p { color: rgba(255,255,255,0.7); }
.bg-dark .eyebrow { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: var(--turq-300); }
.bg-dark .quote-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.bg-dark .quote-card blockquote { color: var(--white); }
.bg-dark .quote-author strong { color: var(--white); }
.bg-dark .quote-author span { color: rgba(255,255,255,0.6); }
.bg-dark .quote-card .quote-mark { color: var(--turq-500); }
.bg-dark .carousel-btn { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: var(--white); }
.bg-dark .carousel-btn:hover { background: rgba(255,255,255,0.16); }
.bg-dark .carousel-dots button { background: rgba(255,255,255,0.2); }
.bg-dark .carousel-dots button[aria-selected="true"] { background: var(--turq-400); }

/* Contact form as an elevated card */
#contact form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

/* CTA band — slow living gradient */
.cta-band {
  background-size: 160% 160%;
  animation: ctaPan 14s ease-in-out infinite alternate;
}
@keyframes ctaPan {
  from { background-position: 0% 20%; }
  to   { background-position: 100% 80%; }
}

/* Hero measure + refined lead contrast */
.hero-content { max-width: 620px; }
.hero-content p.lead { color: #4c5c61; }

/* Section rhythm: subtle divider glow between white sections */
#coaching::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1100px, 90%); height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

/* ============================ 21. APPLE-GRADE MOTION LAYER ============================ */

/* Interactive easing — will-change is applied only during hover to avoid
   persistent compositor layers (better memory / main-thread cost). */
.feature-card:hover, .pillar:hover, .icon-item:hover, .btn:hover { will-change: transform; }
.btn-primary, .btn-outline, .carousel-btn, .back-to-top { transition: transform 0.4s var(--ease-out), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast); }
.feature-card, .pillar, .icon-item { transition: transform 0.5s var(--ease-out), box-shadow var(--t-base), border-color var(--t-base); }

/* Blur-reveal upgrade for scroll reveals */
.reveal { filter: blur(6px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out); }
.reveal.in-view { filter: blur(0); }

/* Hero word reveal */
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em) rotateX(-40deg);
  filter: blur(8px);
  transform-origin: bottom;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
  will-change: transform, opacity, filter;
}
.reveal-word.in { opacity: 1; transform: none; filter: blur(0); }
.hero-fade { opacity: 0; transform: translateY(16px); filter: blur(6px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), filter 0.8s var(--ease-out); }
.hero-fade.in { opacity: 1; transform: none; filter: blur(0); }

/* Animated gradient on the hero accent word */
.grad-text {
  background: linear-gradient(100deg, var(--turq-600), var(--pink), var(--turq-500), var(--turq-600));
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradSlide 8s ease-in-out infinite;
}
@keyframes gradSlide { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Floating glowing particles */
.particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.particles span {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, var(--turq-400), transparent 70%);
  filter: blur(1px);
  animation-name: floatP; animation-timing-function: ease-in-out; animation-iteration-count: infinite;
  will-change: transform;
}
.particles span:nth-child(even) { background: radial-gradient(circle, var(--pink), transparent 70%); }
@keyframes floatP {
  0%   { transform: translateY(0) translateX(0) scale(1); }
  50%  { transform: translateY(-40px) translateX(16px) scale(1.25); }
  100% { transform: translateY(0) translateX(0) scale(1); }
}

/* Mouse spotlight overlay */
.has-spotlight { position: relative; }
.has-spotlight::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(15,181,201,0.10), transparent 60%);
  opacity: 0; transition: opacity 0.5s var(--ease-out);
}
.has-spotlight:hover::after { opacity: 1; }
.bg-dark.has-spotlight::after { background: radial-gradient(360px circle at var(--mx,50%) var(--my,50%), rgba(111,214,226,0.14), transparent 60%); }
.cta-band.has-spotlight::after { background: radial-gradient(360px circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.14), transparent 60%); }
.hero > .container, .bg-dark > .container, .cta-band > * { position: relative; z-index: 1; }

/* Animated underline on nav links */
.nav-list a { position: relative; }
.nav-list a::after {
  content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.15rem; height: 2px;
  background: linear-gradient(90deg, var(--turq-500), var(--pink));
  border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav-list a:hover::after, .nav-list a.active::after { transform: scaleX(1); }
.nav-list a:hover, .nav-list a.active { background: transparent; }

/* Animated underline on text links */
.text-link { position: relative; }
.text-link::before {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.text-link:hover::before { transform: scaleX(1); transform-origin: left; }

/* Header hide/reveal on scroll */
.site-header { transition: transform 0.5s var(--ease-out), border-color var(--t-base), background var(--t-base); }
.site-header.nav-hidden { transform: translateY(-100%); }

/* Floating hero portrait + badge */
.hero-media { animation: floatY 7s ease-in-out infinite; }
.hero-badge { animation: floatY 7s ease-in-out infinite reverse; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Logo wordmark: subtle lift on hover */
.logo img { transition: opacity 0.3s var(--ease-out); }
.logo:hover img { opacity: 0.82; }

/* Icon badges gently lift with their card */
.feature-card:hover .icon-badge, .icon-item:hover .icon-badge { transform: translateZ(20px); }

/* Respect reduced motion for the new layer */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-word, .hero-fade { filter: none !important; transform: none !important; opacity: 1 !important; }
  .grad-text, .hero-media, .hero-badge, .particles span, .cta-band { animation: none !important; }
  .particles { display: none; }
  .has-spotlight::after { display: none; }
}

/* ============================ 22. KEYNOTE DELIGHT LAYER ============================ */
@property --ab { syntax: '<angle>'; inherits: false; initial-value: 0deg; }

/* Trailing cursor glow */
#cursor-glow {
  position: fixed; top: 0; left: 0; width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,181,201,0.45), transparent 70%);
  pointer-events: none; z-index: 1150; opacity: 0;
  transition: opacity 0.4s var(--ease-out), width 0.35s var(--ease-out), height 0.35s var(--ease-out), background 0.35s var(--ease-out);
  will-change: transform;
}
body.cursor-active #cursor-glow { opacity: 1; }
#cursor-glow.hot { width: 58px; height: 58px; background: radial-gradient(circle, rgba(216,110,204,0.4), transparent 70%); }
#cursor-glow.press { width: 16px; height: 16px; }

/* Premium branded loader — DAZZLE wordmark */
#page-loader { background: radial-gradient(circle at 50% 38%, var(--turq-500), var(--turq-ink) 78%); }
@keyframes loaderPulse {
  0%,100% { opacity: 0.72; transform: scale(0.99); }
  50%     { opacity: 1;    transform: scale(1.02); }
}

/* Aurora behind the dark testimonial moment */
.bg-dark { isolation: isolate; }
.bg-dark::before {
  content: ""; position: absolute; inset: -25%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(closest-side at 22% 32%, rgba(15,181,201,0.30), transparent),
    radial-gradient(closest-side at 78% 68%, rgba(216,110,204,0.22), transparent),
    radial-gradient(closest-side at 62% 18%, rgba(111,214,226,0.22), transparent),
    radial-gradient(closest-side at 30% 80%, rgba(15,181,201,0.18), transparent);
  filter: blur(24px);
  animation: aurora 20s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate(0,0) rotate(0deg) scale(1); }
  100% { transform: translate(4%, -3%) rotate(9deg) scale(1.12); }
}
.bg-dark > .container { position: relative; z-index: 1; }

/* Animated gradient border on the CTA band */
.cta-band { isolation: isolate; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 3; padding: 1.5px; border-radius: inherit;
  background: conic-gradient(from var(--ab), rgba(111,214,226,0.9), rgba(216,110,204,0.9), rgba(111,214,226,0.2), rgba(111,214,226,0.9));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spinBorder 10s linear infinite;
  pointer-events: none; opacity: 0.85;
}
@keyframes spinBorder { to { --ab: 360deg; } }

/* Skeleton shimmer + image fade-in */
.img-skeleton { position: relative; }
.img-skeleton::after {
  content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit;
  background: linear-gradient(100deg, var(--turq-100) 30%, var(--turq-050) 50%, var(--turq-100) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }
img[loading="lazy"] { opacity: 0; transition: opacity 0.7s var(--ease-out); }
img[loading="lazy"].is-loaded { opacity: 1; }

/* Glass sheen highlight on media frames */
.feature-media::before, .quote-card::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255,255,255,0.22), transparent 40%);
  opacity: 0; transition: opacity var(--t-base);
}
.feature-card:hover .feature-media::before { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  #cursor-glow { display: none; }
  .bg-dark::before, .cta-band::before, .loader-mark, .loader-mark::after, .img-skeleton::after { animation: none !important; }
  img[loading="lazy"] { opacity: 1; }
}

/* ============================ 23. TYPOGRAPHY SYSTEM (Inter — final, authoritative) ============================ */
:root {
  --font-body: "Inter", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: var(--font-body);
}

body {
  font-optical-sizing: auto;
  font-feature-settings: "cv11" 1, "calt" 1, "liga" 1;
  letter-spacing: -0.011em;
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--ink);
}

/* --- Modular display scale --- */
h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.015;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
}
h3 {
  font-size: clamp(1.3rem, 2.1vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.2;
}
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.014em; line-height: 1.35; }
h5 { font-weight: 600; letter-spacing: -0.01em; }

p { color: var(--muted); max-width: 66ch; line-height: 1.72; }

/* --- Eyebrows / kickers --- */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* --- Section intros --- */
.section-head h2 { font-size: clamp(2.1rem, 4.2vw, 3.1rem); letter-spacing: -0.032em; }
.section-head p {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.62;
  color: var(--muted);
  max-width: 46ch;
}

/* --- Hero typography --- */
.hero-content h1 { letter-spacing: -0.042em; line-height: 0.99; }
.hero-content p.lead {
  font-size: clamp(1.15rem, 1.7vw, 1.3rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.012em;
  color: #46565b;
  max-width: 33rem;
}

/* --- Numeric / stats: tabular figures --- */
.hero-stats strong, [data-count], .trust-item strong {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.hero-stats span { letter-spacing: 0.01em; font-weight: 600; }

/* --- Buttons & nav: crisp UI text --- */
.btn { font-weight: 600; letter-spacing: -0.006em; }
.nav-list a, .dropdown-toggle { font-weight: 500; letter-spacing: -0.008em; }
.logo { font-weight: 800; letter-spacing: -0.028em; }
.text-link { font-weight: 600; letter-spacing: -0.008em; }

/* --- Editorial quotes (Inter medium reads premium) --- */
.quote-card blockquote {
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.5;
}
.quote-author strong { font-weight: 700; letter-spacing: -0.01em; }

/* --- Pillars / cards --- */
.pillar h3, .feature-card h3, .card-body h3 { font-weight: 700; letter-spacing: -0.024em; }
.check-list li { font-weight: 500; letter-spacing: -0.006em; }

/* --- CTA band --- */
.cta-band h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); letter-spacing: -0.034em; line-height: 1.05; }
.cta-band p { font-size: 1.1rem; line-height: 1.6; }

/* --- Page hero (sub-pages) --- */
.page-hero h1 { letter-spacing: -0.04em; }
.breadcrumb { letter-spacing: 0.01em; font-weight: 600; }

/* --- Footer --- */
.footer-grid h4 { letter-spacing: 0.13em; font-weight: 700; }
.footer-brand p { line-height: 1.6; }

/* --- Forms --- */
.form-group label { font-weight: 600; letter-spacing: -0.006em; }
.form-group input, .form-group textarea, .form-group select { letter-spacing: -0.006em; }

/* ============================ 24. MICRO-INTERACTIONS ============================ */

/* Click ripple */
.ripple {
  position: absolute; border-radius: 50%; transform: scale(0);
  background: rgba(255,255,255,0.45); pointer-events: none; z-index: 4;
  animation: ripple 0.6s var(--ease-out);
}
.btn-outline .ripple, .carousel-btn .ripple, .back-to-top .ripple { background: rgba(15,181,201,0.22); }
@keyframes ripple { to { transform: scale(2.4); opacity: 0; } }

/* Form field interactions */
.form-group { position: relative; transition: transform var(--t-fast); }
.form-group:focus-within label { color: var(--turq-deep); }
.form-group label { transition: color var(--t-fast); }
.form-group input, .form-group textarea, .form-group select {
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background-color var(--t-fast), padding var(--t-fast);
}
/* Valid state — turquoise check inside the field */
.form-group.valid input,
.form-group.valid textarea,
.form-group.valid select {
  border-color: var(--turq-400);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230fb5c9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 17px;
  padding-right: 42px;
}
.form-group.valid textarea { background-position: right 13px top 13px; }
.form-group.valid::before {
  content: ""; position: absolute; left: -10px; top: 30px; bottom: 6px; width: 3px;
  background: linear-gradient(var(--turq-500), var(--turq-300));
  border-radius: 3px; opacity: 0; animation: fadeInBar 0.4s var(--ease-out) forwards;
}
@keyframes fadeInBar { to { opacity: 1; } }
/* Error state */
input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] {
  border-color: #e5484d !important;
  box-shadow: 0 0 0 4px rgba(229,72,77,0.12) !important;
}
.shake { animation: shakeX 0.45s cubic-bezier(0.36,0.07,0.19,0.97); }
@keyframes shakeX {
  10%,90% { transform: translateX(-1px); }
  20%,80% { transform: translateX(2px); }
  30%,50%,70% { transform: translateX(-5px); }
  40%,60% { transform: translateX(5px); }
}
.field-error { transition: opacity var(--t-fast); }
.field-error.visible { animation: fieldErrIn 0.3s var(--ease-out); }
@keyframes fieldErrIn { from { opacity: 0; transform: translateY(-3px); } to { opacity: 1; transform: none; } }

/* Form status banner */
.form-status.visible { animation: statusIn 0.5s var(--ease-out); }
.form-status.error.visible { animation: shakeX 0.5s, statusIn 0.5s var(--ease-out); }
@keyframes statusIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Submit spinner label swap already handled; add subtle disabled dim */
.btn.loading { opacity: 0.9; cursor: progress; }

/* Success checkmark draw-in (thank-you) */
.ty-check svg path { stroke-dasharray: 32; stroke-dashoffset: 32; }
.ty-check.draw svg path { animation: drawCheck 0.7s var(--ease-out) 0.35s forwards; }
.ty-check.draw { animation: popIn 0.5s var(--ease-out); }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
@keyframes popIn { 0% { transform: scale(0.6); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }

/* Social icons — pop + rotate */
.social-row a, .footer-social a { transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast); }
.social-row a:hover { transform: translateY(-4px) rotate(-6deg) scale(1.06); }
.footer-social a:hover { transform: translateY(-4px) rotate(-6deg); }

/* Check-list icons pop as they reveal */
.reveal.in-view .check-list svg { animation: iconPop 0.5s var(--ease-out) backwards; }
.check-list li:nth-child(2) svg { animation-delay: 0.08s; }
.check-list li:nth-child(3) svg { animation-delay: 0.16s; }
.check-list li:nth-child(4) svg { animation-delay: 0.24s; }
@keyframes iconPop { 0% { transform: scale(0.4); opacity: 0; } 70% { transform: scale(1.15); } 100% { transform: scale(1); opacity: 1; } }

/* Back-to-top arrow bob */
.back-to-top:hover svg { animation: bob 0.9s var(--ease-out) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

/* Dropdown chevron + nav toggle already animate; add carousel dot press feedback */
.carousel-dots button:active { transform: scale(0.8); }

/* Field labels lift micro-feedback (input filled) */
.form-group:focus-within { transform: translateY(-1px); }

@media (prefers-reduced-motion: reduce) {
  .ripple, .shake, .ty-check.draw svg path, .ty-check.draw,
  .reveal.in-view .check-list svg, .back-to-top:hover svg { animation: none !important; }
  .form-group:focus-within { transform: none; }
}

/* ============================ 25. PRO POLISH — robustness & a11y ============================ */
/* Progressive enhancement: reveals & lazy fades only hide when JS is active,
   so the page is fully visible/readable with JavaScript disabled. */
.reveal { opacity: 1; transform: none; filter: none; }
html.js .reveal {
  opacity: 0; transform: translateY(30px); filter: blur(6px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
}
html.js .reveal.in-view { opacity: 1; transform: none; filter: blur(0); }

img[loading="lazy"] { opacity: 1; }
html.js img[loading="lazy"] { opacity: 0; }
html.js img[loading="lazy"].is-loaded { opacity: 1; }

/* Accessibility: secondary text now meets WCAG AA (~4.6:1 on white) */
:root { --faint: #66757b; }


/* Kill any residual horizontal scroll from decorative overflow */
html, body { overflow-x: clip; }

/* ============================ 26. FILM GRAIN — tactile depth ============================ */
/* A whisper of fractal-noise grain over the whole page: adds analogue richness,
   dithers gradient banding, and reads "premium editorial". Static (no motion cost). */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 1180; pointer-events: none;
  opacity: 0.038;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}
@media (prefers-reduced-motion: reduce) { body::after { opacity: 0.028; } }

/* ============================ 27. INTERACTION TWEAKS ============================ */
/* Disable the trailing cursor glow */
#cursor-glow { display: none !important; }

/* Hero portrait + badge: stop the up/down float */
.hero-media, .hero-badge { animation: none !important; }

/* Buttons: keep the shine sweep + glow, but the button itself no longer moves */
.btn-primary:hover, .btn-primary:active,
.btn-outline:hover, .btn-outline:active { transform: none !important; }

/* ============================ 28. BRAND LOGO (DAZZLE COACHING wordmark image) ============================ */
.logo { align-items: center; }
.logo-img {
  height: 26px;
  width: auto;
  display: block;
}
.footer-brand .logo-img { height: 30px; }

@media (max-width: 560px) {
  .logo-img { height: 21px; }
  .footer-brand .logo-img { height: 26px; }
}

/* ============================ 29. LOGO POSITION + CLICKABLE GLOW ============================ */
/* Pull the logo up into the top-left corner */
.site-header { padding-top: 0.6rem; padding-bottom: 0.6rem; }
.site-header .container { padding-left: clamp(0.7rem, 1.4vw, 1rem); }
.logo { margin-left: 0; }

/* Reusable glow */
:root {
  --glow-teal: 0 0 22px rgba(15, 181, 201, 0.55), 0 0 6px rgba(15, 181, 201, 0.45);
  --glow-teal-ring: 0 0 0 1px rgba(15, 181, 201, 0.45), 0 0 22px rgba(15, 181, 201, 0.5);
  --glow-pink-ring: 0 0 0 1px rgba(216, 110, 204, 0.45), 0 10px 30px rgba(216, 110, 204, 0.5), 0 0 24px rgba(216, 110, 204, 0.45);
}

/* Primary buttons: pink glow halo (no movement) on hover + keyboard focus */
.btn-primary:hover, .btn-primary:focus-visible { box-shadow: var(--glow-pink-ring); }
.cta-band .btn-primary:hover, .cta-band .btn-primary:focus-visible { box-shadow: 0 8px 32px rgba(0,0,0,0.25), var(--glow-pink-ring); }

/* Outline buttons: teal glow */
.btn-outline:hover, .btn-outline:focus-visible { box-shadow: var(--glow-teal-ring); border-color: var(--turq-500); }

/* Icon / round controls: teal glow ring */
.social-row a:hover, .social-row a:focus-visible,
.carousel-btn:hover, .carousel-btn:focus-visible,
.back-to-top:hover, .back-to-top:focus-visible,
.nav-toggle:hover, .nav-toggle:focus-visible {
  box-shadow: var(--glow-teal-ring);
}

/* Text links: soft teal glow */
.nav-list a, .mobile-nav a, .footer-links a, .footer-contact a, .footer-bottom a {
  transition: color var(--t-fast), text-shadow var(--t-fast), padding-left var(--t-fast), background var(--t-fast);
}
.nav-list a:hover, .nav-list a:focus-visible,
.mobile-nav a:hover, .mobile-nav a:focus-visible,
.footer-links a:hover, .footer-links a:focus-visible,
.footer-contact a:hover, .footer-contact a:focus-visible,
.footer-bottom a:hover, .footer-bottom a:focus-visible {
  color: var(--turq-400);
  text-shadow: var(--glow-teal);
}

/* Logo: teal glow instead of fade */
.logo:hover img, .logo:focus-visible img { opacity: 1; filter: drop-shadow(0 0 12px rgba(15, 181, 201, 0.6)); }

/* Keep the glow feeling instant/clean even with reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btn-primary, .btn-outline, .social-row a, .carousel-btn, .back-to-top, .nav-toggle,
  .nav-list a, .mobile-nav a, .footer-links a, .footer-contact a, .logo img { transition: none; }
}

/* ============================ 30. ABOUT — fit the first row on tablet/phone ============================ */
/* Keep Michele's portrait + intro side-by-side (compact) instead of a giant stacked photo */
@media (max-width: 860px) {
  .split.about-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(1.25rem, 3.5vw, 2.25rem);
    align-items: center;
  }
  .split.about-layout .portrait-frame { max-width: 300px; }
  .split.about-layout h2 { font-size: clamp(1.7rem, 5.5vw, 2.4rem); }
}
/* Only stack on genuinely narrow phones, with a smaller portrait so it fits */
@media (max-width: 600px) {
  .split.about-layout { grid-template-columns: 1fr; gap: 2.4rem; }
  .split.about-layout .portrait-frame { max-width: 280px; }
  .split.about-layout .portrait-chip { padding: 0.5rem 1rem; max-width: 96%; }
  .split.about-layout .portrait-chip span { font-size: 0.72rem; }
}

/* ============================ 31. COURSES ============================ */
.courses-subhead { font-size: clamp(1.3rem, 3vw, 1.6rem); letter-spacing: -0.02em; margin: 2.75rem 0 1.4rem; }
.course-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 0.9rem; }
.course-tag {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 1.1rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-md);
  font-weight: 600; font-size: 0.98rem; color: var(--ink); line-height: 1.25;
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.course-tag:hover { transform: translateY(-2px); box-shadow: var(--glow-teal-ring); border-color: var(--turq-300); }
.course-tag svg { width: 18px; height: 18px; color: var(--turq-600); flex-shrink: 0; }
.bespoke { margin-top: 3.75rem; }
.bespoke-panel {
  background: linear-gradient(150deg, var(--turq-100), #ffffff 75%);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 3rem);
}
.bespoke-panel h3 { margin-bottom: 0.75rem; }
.bespoke-panel .check-list { margin: 1.4rem 0; }
.bespoke-note {
  margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
  color: var(--muted);
}
@media (max-width: 560px) {
  .course-grid { grid-template-columns: 1fr; }
}
