/* Shine Minds — client redesign
   Navy · Cream · Sage · Muted Blue · Beige · Gold */

:root {
  --navy-950: #07111f;
  --navy-900: #0f1f35;
  --navy-800: #1a3352;
  --ink: #1a2433;
  --muted: #5b6b7c;
  --sage-700: #2f6b52;
  --sage-600: #3d8a66;
  --sage-500: #4a9a74;
  --sage-100: #e7f4ee;
  --blue-700: #3d5f8a;
  --blue-600: #5b7fb0;
  --blue-100: #e8eef8;
  --gold-600: #b8892d;
  --gold-500: #c9a04a;
  --gold-100: #f8f1df;
  --cream: #faf8f5;
  --beige: #f4efe6;
  --mist: #f3f5f7;
  --white: #ffffff;
  --line: rgba(15, 31, 53, 0.1);
  --accent: var(--sage-600);
  --accent-strong: var(--sage-700);
  --accent-soft: var(--sage-100);
  --accent-2: var(--blue-600);
  --accent-2-soft: var(--blue-100);
  --accent-warm: var(--gold-600);
  --accent-warm-soft: var(--gold-100);
  --grad-brand: linear-gradient(135deg, var(--sage-600), var(--blue-700));
  --grad-brand-x: linear-gradient(90deg, var(--sage-600), var(--blue-600));
  --grad-footer: linear-gradient(115deg, var(--sage-700) 0%, var(--blue-700) 48%, var(--navy-800) 100%);
  --radius: 1.1rem;
  --radius-sm: 0.75rem;
  --shadow: 0 18px 40px rgba(7, 17, 31, 0.1);
  --shadow-sm: 0 8px 20px rgba(7, 17, 31, 0.06);
  --header-h: 5rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1320px;
  --page-gutter: 0.5rem;
  --section-y: clamp(3.5rem, 7vw, 5.5rem);
  --section-gap: clamp(1.75rem, 3.5vw, 2.5rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  letter-spacing: -0.011em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7rem;
  line-height: 1.15;
  color: var(--navy-900);
  font-weight: 600;
}

h1,
h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 550;
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.75rem);
}

h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  margin: 0 0 0.9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container,
.header-inner {
  width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}

.section {
  padding: var(--section-y) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: var(--section-gap);
}

.section-head.center,
.center {
  text-align: center;
  margin-inline: auto;
}

.section-sub {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 36rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.section-head.center .section-sub {
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-700);
}

.eyebrow.green { color: var(--sage-700); }
.eyebrow.blue { color: var(--blue-700); }
.eyebrow.purple { color: var(--sage-700); }
.eyebrow.gold { color: var(--gold-600); }

.text-accent { color: var(--sage-600); }
.text-accent-blue { color: var(--sage-600); }
.text-accent-purple { color: var(--sage-600); }
.text-accent-gold { color: var(--sage-600); }

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.center-row {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  border-radius: 0.75rem;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid rgba(61, 138, 102, 0.4);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--sage-600);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--sage-700);
}

.btn-outline {
  background: var(--white);
  border-color: rgba(15, 31, 53, 0.16);
  color: var(--navy-900);
}

.btn-outline:hover {
  border-color: var(--sage-600);
  color: var(--sage-700);
}

.btn-light {
  background: var(--white);
  color: var(--sage-700);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-nav {
  min-height: 2.4rem;
  padding: 0.45rem 1rem;
  background: transparent;
  border: 1.5px solid rgba(61, 138, 102, 0.45);
  color: var(--sage-700);
  border-radius: 999px;
  font-size: 0.84rem;
}

.btn-nav:hover {
  background: var(--sage-100);
}

.text-link {
  font-weight: 600;
  color: var(--sage-700);
}

.text-link::after {
  content: " →";
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.6rem 0 0;
}

.tags span {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(15, 31, 53, 0.06);
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(7, 17, 31, 0.08);
}

.site-header:not(.is-scrolled):not(.is-open) {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header:not(.is-scrolled):not(.is-open) .nav-list > li > a {
  color: rgba(255, 255, 255, 0.94);
}

.site-header:not(.is-scrolled):not(.is-open) .nav-list > li > a:hover,
.site-header:not(.is-scrolled):not(.is-open) .nav-list > li > a.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.site-header:not(.is-scrolled):not(.is-open) .nav-toggle span {
  background: var(--white);
}

.site-header:not(.is-scrolled):not(.is-open) .brand-logo {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  z-index: 2;
  flex-shrink: 0;
}

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 0;
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-left: auto;
  margin-right: 0;
}

.nav-list > li > a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--navy-800);
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}

.nav-list > li > a:hover,
.nav-list > li > a.is-active {
  background: rgba(61, 138, 102, 0.1);
  color: var(--sage-700);
}

/* Hero — PDF-style banner */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(46, 140, 98, 0.82) 0%,
      rgba(56, 130, 150, 0.72) 48%,
      rgba(55, 95, 168, 0.78) 100%
    ),
    linear-gradient(180deg, rgba(7, 17, 31, 0.18) 0%, rgba(7, 17, 31, 0.08) 40%, rgba(7, 17, 31, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - (var(--page-gutter) * 2)));
  padding: calc(var(--header-h) + 3rem) 0 3.25rem;
  animation: fadeUp 0.95s var(--ease) both;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2.55rem, 6vw, 4.35rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.hero-accent {
  color: var(--gold-500);
}

.hero-lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  max-width: 38rem;
  margin: 0 auto 1.45rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.6rem;
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.badge-icon {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 160, 74, 0.28);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 0;
}

.btn-hero-primary {
  background: var(--white);
  color: var(--sage-700);
  border-radius: 999px;
  min-height: 3rem;
  padding: 0.75rem 1.55rem;
  font-size: 0.95rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.btn-hero-primary:hover {
  background: var(--sage-100);
  color: var(--sage-700);
}

.btn-hero-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  min-height: 3rem;
  padding: 0.75rem 1.45rem;
  font-size: 0.95rem;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-highlights li {
  text-align: center;
}

.hero-highlights strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.hero-highlights span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

/* Shared layouts */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.25rem;
  align-items: center;
}

.split-visual {
  position: relative;
  border-radius: calc(var(--radius) + 0.2rem);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.float-card,
.schedule-card,
.panel,
.why-box,
.info-card,
.mini-card,
.program-card,
.program-tile,
.game-card,
.post-card,
.speaker-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.float-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  max-width: 260px;
  padding: 1rem 1.1rem;
}

.float-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.float-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Intro */
.intro {
  background: var(--white);
  padding-top: clamp(2.75rem, 5vw, 4rem);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.about-visual {
  border-radius: calc(var(--radius) + 0.15rem);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.about-pathways .about-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-700);
}

.about-pathways h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  margin-bottom: 0.55rem;
}

.about-pathways > p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 34rem;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.pathway-grid a {
  display: block;
  height: 100%;
  padding: 1rem 0.95rem;
  border-radius: var(--radius-sm);
  background: var(--mist);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.pathway-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(61, 138, 102, 0.35);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.pathway-grid .is-core a {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  border-color: transparent;
  color: var(--white);
}

.pathway-grid .is-core strong {
  color: var(--white);
}

.pathway-grid .is-core span {
  color: var(--gold-500);
}

.pathway-grid strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--navy-900);
}

.pathway-grid span {
  color: var(--muted);
  font-size: 0.8rem;
}

.support-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: calc(var(--radius) + 0.15rem);
  background:
    radial-gradient(circle at 12% 20%, rgba(61, 138, 102, 0.14), transparent 42%),
    linear-gradient(135deg, var(--beige), var(--sage-100));
  border: 1px solid rgba(61, 138, 102, 0.12);
}

.support-banner h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.3vw, 1.85rem);
  margin-bottom: 0.45rem;
}

.support-banner-copy p {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 32rem;
  margin-bottom: 0.25rem;
}

.support-topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.support-topics li {
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 31, 53, 0.07);
  box-shadow: var(--shadow-sm);
}

.support-topics strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-900);
}

.support-topics li:last-child {
  grid-column: 1 / -1;
}

/* Psychology */
.psychology {
  background: var(--white);
}

.psych-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

.psych-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--sage-600);
}

.psych-eyebrow-icon {
  display: inline-flex;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--sage-600);
}

.psych-eyebrow-icon svg,
.psych-icon svg {
  width: 100%;
  height: 100%;
}

.psych-copy h2 {
  max-width: 16ch;
  margin-bottom: 0.85rem;
}

.psych-lead {
  color: var(--muted);
  font-size: 1rem;
  max-width: 36rem;
  margin-bottom: 1.35rem;
}

.psych-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.35rem;
  margin: 0 0 0.35rem;
}

.psych-features article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.psych-icon {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  background: var(--sage-100);
  color: var(--sage-700);
  flex-shrink: 0;
}

.psych-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.psych-features h3 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
  color: var(--navy-900);
}

.psych-features p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.psych-visual {
  position: relative;
  border-radius: 1.35rem;
  overflow: visible;
}

.psych-visual > img {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
  border-radius: 1.35rem;
  box-shadow: var(--shadow);
  background: var(--beige);
}

.assess-card {
  position: absolute;
  left: 1rem;
  bottom: 1.15rem;
  width: min(100% - 2rem, 250px);
  padding: 1rem 1.1rem 1.05rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(15, 31, 53, 0.08);
  border-radius: 1rem;
  box-shadow: 0 16px 36px rgba(7, 17, 31, 0.14);
  backdrop-filter: blur(8px);
}

.assess-card h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy-900);
}

.assess-card > p {
  margin: 0.15rem 0 0.85rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.assess-meters {
  display: grid;
  gap: 0.65rem;
}

.assess-meter-head {
  margin-bottom: 0.28rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-800);
}

.meter {
  height: 0.42rem;
  border-radius: 999px;
  background: var(--mist);
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  border-radius: inherit;
}

.meter-orange span { background: var(--accent-warm); }
.meter-green span { background: var(--accent); }
.meter-blue span { background: var(--accent-2); }

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
}

.blog-categories li {
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(15, 31, 53, 0.12);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  cursor: default;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.blog-categories li.is-active,
.blog-categories li:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

.impact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 auto 2.25rem;
}

/* Coaching */
.coaching {
  background: var(--mist);
}

.coach-head,
.med-head,
.workshop-head,
.cog-head,
.blog-head,
.vol-head {
  max-width: 42rem;
}

.coach-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.9rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.coach-gradient-text {
  background: var(--grad-brand-x);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.coach-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.coach-card {
  padding: 1.45rem 1.2rem 1.5rem;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(15, 31, 53, 0.07);
  border-radius: 1rem;
  box-shadow: 0 10px 28px rgba(15, 31, 53, 0.05);
}

.coach-card-icon {
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  margin: 0 auto 0.85rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--grad-brand);
  box-shadow: 0 10px 20px rgba(61, 138, 102, 0.22);
}

.coach-card-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.coach-tag {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.coach-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  color: var(--navy-900);
}

.coach-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.coach-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.coach-why h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  margin-bottom: 1rem;
  max-width: 18ch;
}

.coach-checks {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 0.35rem;
}

.coach-checks li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.98rem;
}

.coach-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3'%3E%3Cpath d='M6.5 12.2l3.2 3.2 7.3-7.3'/%3E%3C/svg%3E") center / 0.75rem no-repeat,
    var(--sage-600);
}

.btn-coach {
  color: var(--white);
  background: var(--grad-brand-x);
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(61, 138, 102, 0.25);
}

.btn-coach:hover {
  filter: brightness(1.05);
  color: var(--white);
}

.coach-side {
  display: grid;
  gap: 1rem;
}

.coach-panel {
  padding: 1.25rem 1.3rem;
  background: var(--white);
  border: 1px solid rgba(15, 31, 53, 0.08);
  border-radius: 1rem;
  box-shadow: 0 8px 22px rgba(15, 31, 53, 0.04);
}

.coach-panel h4 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.95rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
}

.coach-panel-icon {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  color: var(--sage-600);
}

.coach-panel-icon svg {
  width: 100%;
  height: 100%;
}

.schedule-rows {
  display: grid;
  gap: 0.55rem;
}

.schedule-rows li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.7rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy-900);
}

.schedule-rows em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
}

.row-mint { background: var(--sage-100); }
.row-lilac { background: var(--blue-100); }
.row-peach { background: var(--gold-100); }

.badge-mint { background: var(--sage-600); color: #fff; }
.badge-blue { background: var(--blue-600); color: #fff; }
.badge-peach { background: var(--gold-600); color: #fff; }

.coach-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.coach-cta {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2.25rem);
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(15, 31, 53, 0.08);
  border-radius: 1.25rem;
  box-shadow: 0 14px 36px rgba(15, 31, 53, 0.06);
}

.coach-cta h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  color: var(--navy-900);
}

.coach-cta p {
  margin: 0 auto 1.35rem;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.btn-coach-pill {
  min-height: 3rem;
  padding-inline: 1.65rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--grad-brand-x);
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(61, 138, 102, 0.25);
}

.btn-coach-pill:hover {
  filter: brightness(1.05);
  color: var(--white);
}

/* Shared card rows (other sections) */
.card-row-4,
.card-row-3,
.card-row-2 {
  display: grid;
  gap: 1rem;
}

.card-row-4 {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 2.25rem;
}

.card-row-3 {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 2rem;
}

.card-row-2 {
  grid-template-columns: repeat(2, 1fr);
}

.info-card,
.program-tile,
.game-card,
.mini-card,
.program-card {
  padding: 1.35rem 1.25rem;
}

.info-card h3,
.program-tile h3,
.game-card h4,
.mini-card h3 {
  margin-bottom: 0.45rem;
}

.info-card p,
.program-tile p,
.game-card p,
.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--ink);
  font-weight: 500;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background:
    linear-gradient(var(--white), var(--white)) center / 0.35rem 0.55rem no-repeat,
    var(--sage-600);
  box-shadow: inset 0 0 0 2px var(--sage-600);
}

.stack-panels {
  display: grid;
  gap: 1rem;
}

.panel {
  padding: 1.35rem;
}

.panel h4 {
  margin-bottom: 0.85rem;
  font-size: 1rem;
}

.panel ul {
  display: grid;
  gap: 0.55rem;
}

.panel li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.65rem;
  background: var(--mist);
  font-size: 0.9rem;
}

.panel em {
  font-style: normal;
  color: var(--sage-700);
  font-weight: 600;
  font-size: 0.8rem;
}

.panel p {
  margin: 0;
  color: var(--muted);
}

/* Meditation */
.meditation {
  background: var(--white);
}


.med-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.med-badge svg {
  width: 0.95rem;
  height: 0.95rem;
}

.med-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: center;
  margin-bottom: 2.25rem;
}

.med-visual {
  position: relative;
}

.med-visual > img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  background: var(--sage-100);
}

.med-float {
  position: absolute;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 31, 53, 0.12);
}

.med-float svg {
  width: 1.2rem;
  height: 1.2rem;
}

.med-float-top {
  top: 1rem;
  right: 1rem;
  color: var(--sage-600);
}

.med-float-bottom {
  left: 1rem;
  bottom: 1.15rem;
  color: var(--blue-600);
}

.med-features {
  display: grid;
  gap: 0.85rem;
}

.med-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(15, 31, 53, 0.07);
  border-radius: 0.95rem;
  box-shadow: 0 8px 22px rgba(15, 31, 53, 0.04);
}

.med-icon {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.8rem;
  flex-shrink: 0;
}

.med-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.med-icon-purple {
  background: var(--sage-100);
  color: var(--sage-700);
}

.med-icon-blue {
  background: var(--blue-100);
  color: var(--blue-700);
}

.med-icon-gold {
  background: var(--accent-warm-soft);
  color: var(--accent-warm);
}

.med-icon-teal {
  background: var(--accent-soft);
  color: var(--accent);
}

.med-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--navy-900);
}

.med-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.med-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  padding-top: 0.5rem;
}

.med-stats strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.med-stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.stat-purple { color: var(--accent); }
.stat-blue { color: var(--accent-2); }
.stat-gold { color: var(--accent-warm); }
.stat-teal { color: var(--accent); }

.stack-cards {
  display: grid;
  gap: 0.85rem;
}

/* Sports */
.sports {
  background: var(--mist);
}

.sports-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.sports-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 600;
}

.sports-badge svg {
  width: 1rem;
  height: 1rem;
}

.sports-copy h2 {
  max-width: 16ch;
  margin-bottom: 0.85rem;
}

.sports-lead {
  color: var(--muted);
  font-size: 1rem;
  max-width: 36rem;
  margin-bottom: 1.35rem;
}

.sports-benefits {
  display: grid;
  gap: 1rem;
  margin: 0 0 0.35rem;
}

.sports-benefits li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.sports-benefit-icon {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.sports-benefit-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.sports-benefits strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--navy-900);
  font-size: 0.98rem;
}

.sports-benefits span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.sports-side {
  display: grid;
  gap: 1rem;
}

.sports-visual {
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sports-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.activities-card {
  padding: 1.2rem 1.25rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(15, 31, 53, 0.08);
  border-radius: 1.1rem;
  box-shadow: 0 10px 28px rgba(15, 31, 53, 0.05);
}

.activities-head {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.95rem;
}

.activities-icon {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.65rem;
  background: var(--accent-soft);
  color: var(--accent-strong);
  flex-shrink: 0;
}

.activities-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.activities-head h3 {
  margin: 0 0 0.15rem;
  font-size: 1.05rem;
}

.activities-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.activity-list {
  display: grid;
  gap: 0.65rem;
}

.activity-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.8rem;
  background: var(--mist);
}

.activity-main {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.activity-main strong {
  font-size: 0.95rem;
  color: var(--navy-900);
}

.activity-meta {
  color: var(--muted);
  font-size: 0.84rem;
}

.activity-place {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.activity-place svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--sage-700);
  flex-shrink: 0;
}

.activity-count {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(15, 31, 53, 0.08);
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 600;
  flex-shrink: 0;
}

.activity-count svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--sage-700);
}

.icon-list {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0;
}

.icon-list strong {
  display: block;
  margin-bottom: 0.2rem;
}

.icon-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.schedule-card {
  margin-top: 1rem;
  padding: 1.25rem;
}

.schedule-card h3 {
  margin-bottom: 0.2rem;
}

.schedule-card ul {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.schedule-card li {
  padding: 0.8rem 0.9rem;
  border-radius: 0.7rem;
  background: var(--mist);
}

.schedule-card strong {
  display: block;
}

.schedule-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

/* Workshops */
.workshops {
  background: var(--white);
}


.workshop-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.9rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.workshop-badge svg {
  width: 1rem;
  height: 1rem;
}

.workshop-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: start;
}

.workshop-visual {
  position: relative;
}

.workshop-visual > img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}

.impact-float {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  width: min(100% - 1.8rem, 230px);
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(15, 31, 53, 0.08);
  border-radius: 1rem;
  box-shadow: 0 16px 36px rgba(7, 17, 31, 0.16);
  backdrop-filter: blur(8px);
}

.impact-float h3 {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
  font-weight: 700;
}

.impact-star {
  color: var(--accent-warm);
  font-size: 0.95rem;
}

.impact-metrics {
  display: grid;
  gap: 0.7rem;
}

.impact-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.28rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.impact-row strong {
  color: var(--navy-900);
  font-size: 0.82rem;
}

.impact-bar {
  height: 0.38rem;
  border-radius: 999px;
  background: var(--blue-100);
  overflow: hidden;
}

.impact-bar span {
  display: block;
  height: 100%;
  width: var(--w, 70%);
  border-radius: inherit;
  background: var(--accent-2);
}

.impact-bar-gold span {
  background: var(--accent-warm);
}

.impact-bar-teal span {
  background: var(--accent);
}

.workshop-programs > h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

.workshop-card {
  padding: 1.1rem 1.15rem 1.15rem;
  margin-bottom: 0.85rem;
  background: var(--white);
  border: 1px solid rgba(15, 31, 53, 0.07);
  border-radius: 1rem;
  box-shadow: 0 10px 26px rgba(15, 31, 53, 0.045);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.workshop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 31, 53, 0.08);
}

.workshop-card-top {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.55rem;
}

.workshop-card-icon {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  background: var(--accent-2-soft);
  color: var(--accent-2);
  flex-shrink: 0;
}

.workshop-card-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.workshop-card-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  flex: 1;
  min-width: 0;
}

.workshop-card-title strong {
  font-size: 1rem;
  color: var(--navy-900);
  line-height: 1.3;
}

.workshop-card-title em {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-style: normal;
  color: var(--blue-600);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.workshop-card-title em svg {
  width: 0.9rem;
  height: 0.9rem;
}

.workshop-card > p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.benefit-label {
  margin: 0 0 0.45rem !important;
  color: var(--navy-800) !important;
  font-size: 0.82rem !important;
  font-weight: 600;
}

.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.benefit-tags li {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-2-soft);
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 600;
}

.workshop-actions {
  margin-top: 1.15rem;
  margin-bottom: 0;
}

.program-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.4rem;
}

.program-top span {
  color: var(--blue-700);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.program-card .tags span {
  background: var(--blue-100);
  color: var(--blue-700);
}

.workshops .workshop-layout {
  margin-bottom: 0;
}

.edu-quotes {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(3rem, 6vw, 4.25rem) 0;
  border-top: 1px solid rgba(15, 31, 53, 0.06);
  background: var(--mist);
}

.edu-quotes > h3 {
  width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto 1.75rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.edu-carousel {
  position: relative;
  width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
  max-width: none;
  margin: 0 auto;
  padding: 0 4.75rem;
}

.edu-carousel-viewport {
  overflow: hidden;
  max-width: 38rem;
  margin: 0 auto;
}

.edu-carousel-track {
  display: flex;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

.edu-slide {
  flex: 0 0 100%;
  margin: 0;
  padding: 0.2rem 0.35rem 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.edu-slide p {
  position: relative;
  margin: 0 auto 1.15rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
  font-style: italic;
  font-weight: 400;
}

.edu-slide p::before {
  content: "“";
  display: block;
  margin: 0 auto 0.5rem;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  font-style: normal;
  font-weight: 500;
  color: var(--blue-600);
  opacity: 0.8;
}

.edu-slide footer {
  display: grid;
  gap: 0.25rem;
  justify-items: center;
}

.edu-slide strong {
  color: var(--navy-900);
  font-size: 1.02rem;
  font-weight: 650;
  font-style: normal;
  letter-spacing: -0.01em;
}

.edu-slide span {
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.edu-carousel-btn {
  position: absolute;
  top: 42%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 12px 28px rgba(47, 139, 154, 0.32);
  cursor: pointer;
  transition: transform 0.25s var(--ease), filter 0.25s, box-shadow 0.25s;
}

.edu-prev {
  left: 0.25rem;
  transform: translateY(-50%);
}

.edu-next {
  right: 0.25rem;
  transform: translateY(-50%);
}

.edu-carousel-btn:hover {
  filter: brightness(1.06);
  box-shadow: 0 16px 34px rgba(47, 139, 154, 0.38);
}

.edu-prev:hover {
  transform: translateY(-50%) scale(1.05);
}

.edu-next:hover {
  transform: translateY(-50%) scale(1.05);
}

.edu-carousel-btn:focus-visible {
  outline: 2px solid rgba(79, 127, 192, 0.45);
  outline-offset: 3px;
}

.edu-carousel-btn svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke-width: 2.5;
}

.edu-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
}

.edu-dots button {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 31, 53, 0.18);
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
}

.edu-dots button.is-active {
  width: 1.25rem;
  background: var(--sage-600);
}

.workshops.section {
  padding-bottom: 0;
}

/* Cognitive */
.cognitive {
  background: var(--mist);
}


.cog-badge {
  display: inline-flex;
  margin: 0 0 0.9rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 600;
}

.cog-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0 0 2.25rem;
}

.cog-stats li {
  padding: 1.25rem 1rem;
  text-align: center;
  background: var(--beige);
  border-radius: 1rem;
  border: 1px solid rgba(184, 137, 45, 0.08);
}

 .cog-stat-icon {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  margin-bottom: 0.55rem;
  color: var(--sage-600);
}

.cog-stat-icon svg {
  width: 100%;
  height: 100%;
}

.cog-stats strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 650;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.cog-stats span:last-child {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.cog-sessions {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
  margin-bottom: 2.75rem;
}

.cog-visual {
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cog-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.cog-sessions-card {
  padding: 1.35rem 1.35rem 1.25rem;
  background: var(--beige);
  border-radius: 1.2rem;
  border: 1px solid rgba(184, 137, 45, 0.1);
}

.cog-sessions-card > h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
}

.cog-cal-icon {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--accent);
}

.cog-cal-icon svg {
  width: 100%;
  height: 100%;
}

.cog-session-list {
  display: grid;
  gap: 0;
  margin-bottom: 1rem;
}

.cog-session-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(15, 31, 53, 0.08);
}

.cog-session-list li:first-child {
  padding-top: 0.15rem;
}

.cog-session-list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
  color: var(--navy-900);
}

.cog-session-list span {
  color: var(--muted);
  font-size: 0.82rem;
}

.cog-session-list em {
  flex-shrink: 0;
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--accent);
  white-space: nowrap;
}

.cog-register {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  min-height: 2.85rem;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background: var(--white);
  border: 1.5px solid rgba(15, 31, 53, 0.12);
  color: var(--sage-700);
  font-weight: 650;
  font-size: 0.92rem;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}

.cog-register:hover {
  border-color: var(--sage-600);
  color: var(--sage-600);
  transform: translateY(-1px);
}

.cog-programs > h3 {
  margin: 0 0 1.25rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.cog-program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cog-program-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(15, 31, 53, 0.08);
  border-radius: 1.1rem;
  box-shadow: 0 8px 22px rgba(15, 31, 53, 0.04);
}

.cog-program-icon {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  margin-bottom: 0.95rem;
  border-radius: 999px;
  color: #fff;
}

.cog-program-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.cog-icon-sage { background: var(--sage-600); }
.cog-icon-blue { background: var(--blue-600); }
.cog-icon-navy { background: var(--navy-800); }

.cog-program-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--navy-900);
}

.cog-program-card > p {
  flex: 1;
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.cog-program-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(15, 31, 53, 0.08);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 650;
}

.cog-games {
  margin-top: 2.75rem;
}

.cog-games > h3 {
  margin: 0 0 1.25rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.cog-games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cog-game-card {
  padding: 1.2rem 1.25rem 1.15rem;
  background: var(--mist);
  border: 1px solid rgba(15, 31, 53, 0.07);
  border-radius: 1rem;
}

.cog-game-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.cog-game-top h4 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--navy-900);
}

.cog-game-icon {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}

.cog-game-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.cog-game-card > p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cog-game-card > em {
  font-style: normal;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 650;
}

.program-tile .meta,
.game-card .meta {
  margin-top: 0.85rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
}

.game-grid {
  margin-top: 1rem;
}

.game-grid > h3 {
  margin-bottom: 1.1rem;
}

.game-card {
  position: relative;
  padding-top: 1.5rem;
}

/* Speakers */
.speakers {
  background: var(--white);
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-bottom: 1rem;
}

.speaker-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.speaker-photo {
  position: relative;
  min-height: 240px;
}

.speaker-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.speaker-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(7, 17, 31, 0.82));
  color: var(--white);
}

.speaker-label strong {
  display: block;
  font-size: 1.05rem;
}

.speaker-label span {
  color: var(--gold-500);
  font-size: 0.84rem;
}

.speaker-body {
  padding: 1.2rem 1.2rem 1.4rem;
  flex: 1;
}

.role-tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.speaker-body h3 em {
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.85rem;
}

.speaker-body h4 {
  margin: 0.85rem 0 0.35rem;
  font-size: 0.9rem;
}

.speaker-body blockquote {
  margin: 0.9rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
}

.placeholder-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 1.75rem 0 2.25rem;
}

.cta-band {
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--beige), var(--gold-100));
  border: 1px solid rgba(184, 137, 45, 0.18);
}

.cta-band h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
}

.cta-band p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--muted);
}

.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  align-items: stretch;
  margin-top: 0.25rem;
}

.dual-cta-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 2.8vw, 1.85rem);
  text-align: center;
  background: var(--beige);
  border: 1px solid rgba(184, 137, 45, 0.14);
  border-radius: 1.15rem;
}

.dual-cta-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.25;
}

.dual-cta-card p {
  flex: 1;
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.dual-cta-card .btn-row {
  justify-content: center;
  margin-top: auto;
}

.dual-cta-card .btn {
  min-height: 2.55rem;
  padding: 0.55rem 1rem;
  font-size: 0.84rem;
}

/* Events */
.events {
  background: var(--mist);
}

.event-list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.event-list li {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.event-list li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.event-list time {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sage-700);
}

.event-list h3 {
  margin-bottom: 0.25rem;
}

.event-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Blog */
.blog {
  background: var(--mist);
}

.blog-head {
  margin-bottom: var(--section-gap);
}

.blog-badge {
  display: inline-flex;
  margin: 0 0 0.75rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sage-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(15, 31, 53, 0.08);
}

.blog-all-link {
  color: var(--sage-700);
  font-size: 0.88rem;
  font-weight: 650;
  white-space: nowrap;
}

.blog-all-link:hover {
  color: var(--sage-600);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(15, 31, 53, 0.09);
  border-radius: 1rem;
  box-shadow: none;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(61, 138, 102, 0.28);
  box-shadow: 0 14px 30px rgba(15, 31, 53, 0.07);
}

.blog-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--mist);
}

.blog-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.03);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.2rem 1.25rem;
}

.blog-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.blog-card-cat {
  margin: 0;
  color: var(--sage-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-card-date {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
}

.blog-card-body h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.blog-card-body h3 a:hover {
  color: var(--sage-700);
}

.blog-card-body > p {
  flex: 1;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  color: var(--navy-900);
  font-size: 0.86rem;
  font-weight: 650;
}

.blog-read::after {
  content: "→";
  transition: transform 0.25s;
}

.blog-card:hover .blog-read {
  color: var(--sage-700);
}

.blog-card:hover .blog-read::after {
  transform: translateX(3px);
}

.blog-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.6rem;
  background: var(--mist);
  border: 1px solid rgba(15, 31, 53, 0.06);
  border-radius: 1rem;
}

.blog-share-copy {
  max-width: 34rem;
}

.blog-share h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.blog-share p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.blog-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Impact / Volunteering */
.impact {
  background: var(--white);
}


.vol-badge {
  display: inline-flex;
  margin: 0 0 0.85rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 600;
}

.text-accent-gold {
  color: var(--sage-600);
}

.vol-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0 0 2.25rem;
}

.vol-stats li {
  padding: 1.25rem 1rem;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(15, 31, 53, 0.07);
  border-radius: 1rem;
  box-shadow: 0 8px 22px rgba(15, 31, 53, 0.04);
}

.vol-stat-icon {
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0.55rem;
  color: var(--sage-600);
}

.vol-stat-icon svg {
  width: 100%;
  height: 100%;
}

 .vol-stats strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 650;
  color: var(--sage-600);
  letter-spacing: -0.02em;
}

.vol-stats span:last-child {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.vol-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.35rem, 3vw, 2.25rem);
  align-items: start;
}

.vol-visual {
  position: relative;
}

.vol-visual > img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.vol-month-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(100% - 2rem, 210px);
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(15, 31, 53, 0.08);
  border-radius: 0.95rem;
  box-shadow: 0 14px 30px rgba(7, 17, 31, 0.14);
}

.vol-month-card h3 {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
}

.vol-month-card ul {
  display: grid;
  gap: 0.45rem;
}

.vol-month-card li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.vol-month-card strong {
  color: var(--navy-900);
  font-weight: 700;
}

.vol-opps > h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

.vol-opp-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.vol-opp-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  background: var(--white);
  border: 1px solid rgba(15, 31, 53, 0.08);
  border-radius: 0.95rem;
}

.vol-opp-list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.98rem;
  color: var(--navy-900);
}

.vol-opp-list span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.vol-opp-list em {
  font-style: normal;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 650;
}

.vol-opp-list .btn {
  flex-shrink: 0;
  min-height: 2.35rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
}

.vol-why {
  padding: 1.1rem 1.15rem;
  margin-bottom: 1.15rem;
  background: var(--accent-soft);
  border: 1px solid rgba(61, 138, 102, 0.16);
  border-radius: 0.95rem;
}

.vol-why h4 {
  margin: 0 0 0.35rem;
  color: var(--accent-strong);
  font-size: 0.98rem;
}

.vol-why p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.opportunity-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}

.opportunity-list li {
  padding: 1rem 1.1rem;
  background: var(--mist);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.opportunity-list strong {
  display: block;
  margin-bottom: 0.25rem;
}

.opportunity-list span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.opportunity-list a {
  font-weight: 600;
  color: var(--sage-700);
  font-size: 0.88rem;
}

.why-box {
  padding: 1.15rem 1.2rem;
  margin: 1rem 0;
  background: linear-gradient(145deg, var(--beige), var(--gold-100));
  border-color: rgba(184, 137, 45, 0.2);
}

.why-box h4 {
  margin-bottom: 0.4rem;
}

.why-box p {
  margin: 0;
  color: var(--muted);
}

/* Contact */
.contact {
  background: linear-gradient(180deg, var(--mist) 0%, var(--sage-100) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.contact-badge {
  display: inline-flex;
  margin: 0 0 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--sage-100);
  color: var(--sage-700);
  font-size: 0.78rem;
  font-weight: 650;
}

.contact-copy h2 {
  margin-bottom: 0.75rem;
  max-width: 12ch;
}

.contact-copy .section-sub {
  max-width: 30rem;
  margin-bottom: 1.5rem;
}

.contact-cards {
  display: grid;
  gap: 0.75rem;
}

.contact-cards li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 31, 53, 0.07);
  border-radius: 0.95rem;
}

.contact-card-icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  background: var(--sage-100);
  color: var(--sage-700);
}

.contact-card-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.contact-cards strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-900);
}

.contact-cards a,
.contact-cards span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-cards a {
  color: var(--sage-700);
  font-weight: 600;
}

.contact-cards a:hover {
  color: var(--sage-600);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 1.9rem);
  background: var(--white);
  border: 1px solid rgba(15, 31, 53, 0.07);
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 31, 53, 0.08);
}

.contact-form-head {
  margin-bottom: 0.15rem;
}

.contact-form-head h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.contact-form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--navy-900);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid rgba(15, 31, 53, 0.12);
  border-radius: 0.8rem;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--mist);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage-600);
  box-shadow: 0 0 0 4px rgba(61, 138, 102, 0.14);
  background: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-submit {
  width: 100%;
  min-height: 3rem;
  margin-top: 0.15rem;
}

.form-note {
  margin: 0;
  min-height: 1.2rem;
  font-size: 0.88rem;
  color: var(--sage-700);
}

.form-note.is-error {
  color: #b42318;
}

.contact-form .btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.contact-meta {
  margin-top: 1.25rem;
}

.contact-meta li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.contact-meta strong {
  display: block;
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-meta a {
  color: var(--sage-700);
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: var(--grad-footer);
  color: rgba(255, 255, 255, 0.84);
  padding-top: clamp(2.75rem, 5vw, 3.75rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: 2.5rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.95rem;
  color: var(--white);
  font-weight: 650;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.footer-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  padding: 3px;
}

.footer-brand p {
  max-width: 22rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.social-links a svg {
  width: 1rem;
  height: 1rem;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}

.footer-col h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.newsletter-form {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.newsletter-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.7rem;
  padding: 0.8rem 0.95rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.16);
}

.footer-subscribe {
  width: 100%;
  min-height: 2.7rem;
  border-radius: 0.7rem;
  background: var(--white);
  color: var(--navy-900);
  border: 0;
  font-weight: 700;
}

.footer-subscribe:hover {
  background: var(--mist);
  color: var(--navy-900);
  filter: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.25rem 0 1.6rem;
}

.footer-contact-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-contact-bar li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

.footer-contact-bar svg {
  width: 1rem;
  height: 1rem;
  opacity: 0.9;
}

.footer-contact-bar a {
  color: rgba(255, 255, 255, 0.92);
}

.footer-contact-bar a:hover {
  color: var(--white);
}

.footer-copy {
  margin: 0 0 0.45rem;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-note {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-list > li > a {
    padding: 0.4rem 0.4rem;
    font-size: 0.74rem;
  }
}

@media (max-width: 980px) {
  .split,
  .support-banner,
  .about-layout,
  .blog-layout,
  .contact-grid,
  .psych-split,
  .coach-detail,
  .med-layout,
  .sports-layout,
  .workshop-layout,
  .cog-sessions,
  .vol-layout {
    grid-template-columns: 1fr;
  }

  .vol-visual > img {
    aspect-ratio: 16 / 11;
  }

  .vol-month-card {
    position: static;
    width: 100%;
    margin-top: 0.85rem;
  }

  .vol-opp-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .dual-cta {
    grid-template-columns: 1fr;
  }

  .contact-copy h2 {
    max-width: none;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .psych-copy h2 {
    max-width: none;
  }

  .sports-copy h2 {
    max-width: none;
  }

  .workshop-visual > img {
    aspect-ratio: 16 / 11;
  }

  .psych-visual > img {
    aspect-ratio: 4 / 3;
  }

  .med-visual > img {
    aspect-ratio: 4 / 3;
  }

  .med-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1rem;
  }

  .cog-stats,
  .cog-program-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vol-stats {
    grid-template-columns: 1fr 1fr;
  }

  .edu-stats {
    grid-template-columns: 1fr 1fr;
  }

  .edu-carousel {
    padding: 0 3.25rem;
  }

  .edu-carousel-btn {
    width: 2.75rem;
    height: 2.75rem;
  }

  .edu-prev {
    left: 0;
  }

  .edu-next {
    right: 0;
  }

  .edu-quotes > h3 {
    font-size: clamp(1.7rem, 6.5vw, 2.15rem);
    margin-bottom: 1.35rem;
  }

  .edu-slide p {
    font-size: 0.98rem;
  }

  .coach-cards {
    grid-template-columns: 1fr 1fr;
  }

  .coach-why h3 {
    max-width: none;
  }

  .pathway-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-visual,
  .about-visual img {
    min-height: 240px;
  }

  .card-row-4 {
    grid-template-columns: 1fr 1fr;
  }

  .speaker-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hub-flow {
    font-size: 0.82rem;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    padding: calc(var(--header-h) + 1.2rem) 1.25rem 2rem;
    background: rgba(250, 248, 245, 0.98);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex: none;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    overflow-y: auto;
    z-index: 1;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .nav-list > li > a {
    padding: 0.9rem 0.75rem;
    font-size: 1rem;
    min-height: 44px;
  }

  .nav-list {
    gap: 0.15rem;
  }

  .event-list li {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .event-list .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 0.75rem;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .feature-grid,
  .psych-features,
  .coach-cards,
  .card-row-4,
  .card-row-3,
  .card-row-2,
  .edu-stats,
  .cog-stats,
  .cog-program-grid,
  .cog-games-grid,
  .blog-grid,
  .vol-stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .assess-card {
    position: static;
    width: 100%;
    margin-top: 0.85rem;
  }

  .impact-float {
    position: static;
    width: 100%;
    margin-top: 0.85rem;
  }

  .hero-actions .btn,
  .btn-row .btn {
    flex: 1 1 auto;
  }

  .hero-content {
    text-align: center;
  }

  .hero-badges,
  .hero-actions {
    justify-content: center;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .float-card {
    position: static;
    max-width: none;
    margin-top: 0.85rem;
  }

  .split-visual {
    overflow: visible;
  }

  .split-visual img {
    border-radius: var(--radius);
  }
}

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

  .reveal,
  .hero-content,
  .btn {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Site-wide polish */
.section > .container > .section-head:first-child,
.section > .container > header:first-child {
  margin-bottom: var(--section-gap);
}

.coach-cards,
.cog-stats,
.vol-stats,
.med-stats {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.speaker-grid {
  margin-bottom: 1.25rem;
}

.blog-grid {
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.contact-copy .section-sub {
  margin-bottom: 1.5rem;
}

.site-footer {
  margin-top: 0;
}

@media (max-width: 640px) {
  :root {
    --section-y: clamp(2.75rem, 10vw, 3.5rem);
  }
}
