/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --orange: #FF6B35;
  --orange-light: rgba(255, 107, 53, 0.12);
  --orange-mid: rgba(255, 107, 53, 0.25);
  --dark: #1A1A1A;
  --deep: #1E2832;
  --mid: #2A2A2A;
  --warm-white: #F9F7F4;
  --white: #FFFFFF;
  --text-dark: #2D2D2D;
  --text-light: #E8E8E8;
  --muted-dark: #888888;
  --muted-light: #AAAAAA;
  --card-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  --card-shadow-dark: 0 2px 20px rgba(0, 0, 0, 0.3);
  --radius: 8px;
  --max-width: 1100px;
  --section-pad: 6rem 0;
  --section-pad-sm: 3.5rem 0;
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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


/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: block;
}

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  font-size: 1.0625rem;
  line-height: 1.75;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}


/* ============================================================
   SCROLL ANIMATION
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: #e85c28;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}


/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}

.nav.scrolled {
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.875rem 2rem;
}

.nav-logo {
  height: 36px;
  width: auto;
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  transition: border-color 0.22s ease, background 0.22s ease;
}

.nav-cta:hover {
  border-color: var(--orange);
  color: var(--orange);
}


/* ============================================================
   HERO
============================================================ */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #1A1A1A 0%, #242424 50%, #1E1E1E 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(30, 40, 50, 0.8) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.75vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.55s both;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.875rem);
  font-style: italic;
  color: var(--orange);
  margin-bottom: 3rem;
  line-height: 1.4;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.9s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.7; }
}


/* ============================================================
   CHALLENGE SECTION
============================================================ */
#challenge {
  background: var(--warm-white);
  padding: var(--section-pad);
}

.challenge-intro {
  margin-bottom: 3rem;
}

.challenge-intro h2 {
  margin-bottom: 1.25rem;
}

.challenge-intro p {
  color: #555;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.challenge-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  border-left: 3px solid var(--orange);
  box-shadow: var(--card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.challenge-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.challenge-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.challenge-card p {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.6;
}

.challenge-pivot {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-style: italic;
  color: var(--text-dark);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}


/* ============================================================
   DISTINCTION SECTION
============================================================ */
#distinction {
  background: var(--mid);
  padding: var(--section-pad);
}

.distinction-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.distinction-header h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.distinction-header .accent {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.25vw, 1.75rem);
  font-style: italic;
  color: var(--orange);
}

.distinction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto 3rem;
}

.distinction-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.25s ease;
}

.distinction-card.featured {
  border-color: var(--orange);
  background: rgba(255, 107, 53, 0.06);
}

.distinction-card .card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.distinction-card.featured .card-label {
  color: var(--orange);
}

.distinction-card:not(.featured) .card-label {
  color: rgba(255, 255, 255, 0.4);
}

.distinction-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.distinction-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.distinction-card ul li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 1.25rem;
  position: relative;
}

.distinction-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.25);
}

.distinction-card.featured ul li {
  color: rgba(255, 255, 255, 0.8);
}

.distinction-card.featured ul li::before {
  color: var(--orange);
}

.distinction-body {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
}


/* ============================================================
   PROGRAM DETAILS SECTION
============================================================ */
#program {
  background: var(--white);
  padding: var(--section-pad);
}

.program-header {
  text-align: center;
  margin-bottom: 3rem;
}

.program-header h2 {
  margin-bottom: 0.75rem;
}

.program-header p {
  color: #666;
  max-width: 520px;
  margin: 0 auto;
}

.program-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  border-top: 3px solid var(--orange);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}

.stat-detail {
  font-size: 0.875rem;
  color: #888;
}

.program-dates-box {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 2.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.dates-info h3 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.dates-info .date-value {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
}

.dates-info .date-value span {
  color: var(--orange);
}

.dates-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}


/* ============================================================
   MODULES SECTION
============================================================ */
#modules {
  background: var(--warm-white);
  padding: var(--section-pad);
}

.modules-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.modules-header h2 {
  margin-bottom: 0.75rem;
}

.modules-header p {
  color: #666;
  max-width: 540px;
  margin: 0 auto;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

.modules-grid::before {
  content: '';
  position: absolute;
  top: 2.6rem;
  left: calc(12.5% + 0.625rem);
  right: calc(12.5% + 0.625rem);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 107, 53, 0.3), transparent);
  pointer-events: none;
}

.module-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--card-shadow);
  border-bottom: 3px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--orange);
}

.module-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.module-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.module-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--orange);
  line-height: 1.45;
  margin-bottom: 0.875rem;
}

.module-focus {
  font-size: 0.875rem;
  color: #777;
  line-height: 1.6;
}


/* ============================================================
   OUTCOMES SECTION
============================================================ */
#outcomes {
  background: var(--deep);
  padding: var(--section-pad);
}

.outcomes-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.outcomes-header h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.outcomes-throughline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--orange);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.outcome-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.outcome-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 107, 53, 0.3);
}

.outcome-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange-light);
  border: 1px solid rgba(255, 107, 53, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
}

.outcome-icon svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  stroke: var(--orange);
}

.outcome-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}


/* ============================================================
   WHO SECTION
============================================================ */
#who {
  background: var(--warm-white);
  padding: var(--section-pad);
}

.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.who-copy h2 {
  margin-bottom: 1.25rem;
}

.who-copy p {
  color: #555;
  margin-bottom: 2rem;
}

.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1.0rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.who-list li::before {
  content: '—';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.who-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--card-shadow);
}

.who-sidebar blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3125rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--orange);
}

.who-sidebar .sidebar-note {
  font-size: 0.875rem;
  color: #888;
  line-height: 1.6;
}


/* ============================================================
   HOOKS SECTION
============================================================ */
#hooks {
  background: var(--deep);
  padding: var(--section-pad);
}

.hooks-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.hooks-header h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

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

.hook-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  transition: background 0.3s ease;
}

.hook-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hook-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: rgba(255, 107, 53, 0.22);
  line-height: 1;
  margin-bottom: 1.25rem;
  display: block;
}

.hook-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.hook-body {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}


/* ============================================================
   FACILITATOR SECTION
============================================================ */
#facilitator {
  background: var(--white);
  padding: var(--section-pad);
}

.facilitator-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}

.facilitator-photo-wrap {
  flex-shrink: 0;
}

.facilitator-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.facilitator-photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0ddd9 0%, #ccc9c4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.facilitator-photo-placeholder svg {
  width: 72px;
  height: 72px;
  color: rgba(0,0,0,0.2);
  stroke: rgba(0,0,0,0.2);
}

.facilitator-bio .section-label {
  margin-bottom: 0.5rem;
}

.facilitator-bio h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}

.facilitator-bio p {
  color: #555;
  margin-bottom: 1.25rem;
}

.facilitator-bio .bio-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1875rem;
  font-style: italic;
  color: var(--text-dark);
  border-left: 3px solid var(--orange);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  line-height: 1.55;
}

.facilitator-attribution {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.facilitator-attribution img {
  height: 28px;
  width: auto;
}

.facilitator-attribution p {
  font-size: 0.875rem;
  color: #888;
  margin: 0;
}


/* ============================================================
   REGISTER SECTION
============================================================ */
#register {
  background: var(--dark);
  padding: var(--section-pad);
}

.register-header {
  text-align: center;
  margin-bottom: 3rem;
}

.register-header h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.register-header .accent-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--orange);
  margin-bottom: 1rem;
}

.register-header p {
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto;
}

.form-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.reg-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.form-group label .req {
  color: var(--orange);
  margin-left: 2px;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 107, 53, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.check-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.check-item input[type="checkbox"] {
  appearance: none;
  width: 1.1rem;
  height: 1.1rem;
  min-width: 1.1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.check-item input[type="checkbox"]:checked {
  background: var(--orange);
  border-color: var(--orange);
}

.check-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-submit-row {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.form-status {
  font-size: 0.9rem;
  flex: 1;
}

.form-status.success { color: #6fcf97; }
.form-status.error   { color: #eb5757; }


/* ============================================================
   FOOTER
============================================================ */
footer {
  background: #111111;
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  height: 28px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}


/* ============================================================
   BACKGROUND ORGANIC TEXTURE
============================================================ */
.bg-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
  mix-blend-mode: screen;
}

.bg-texture svg {
  width: 100%;
  height: 100%;
  opacity: 0.16;
}

@keyframes cluster-breathe {
  0%, 100% { opacity: 1;    }
  50%       { opacity: 0.48; }
}

@keyframes ring-micro {
  0%, 100% { transform: scale(1);    }
  50%       { transform: scale(1.06); }
}

.bg-texture path,
.bg-texture circle,
.bg-texture ellipse {
  transform-box: fill-box;
  transform-origin: center;
}

.bg-texture .c1 { animation: cluster-breathe 10.5s ease-in-out infinite;      }
.bg-texture .c2 { animation: cluster-breathe 13.2s ease-in-out infinite 3.8s; }
.bg-texture .c3 { animation: cluster-breathe  9.1s ease-in-out infinite 6.5s; }

.bg-texture .c1 > :nth-child(1) { animation: ring-micro  8.4s ease-in-out infinite 0.0s; }
.bg-texture .c1 > :nth-child(2) { animation: ring-micro  6.7s ease-in-out infinite 1.6s; }
.bg-texture .c1 > :nth-child(3) { animation: ring-micro  9.8s ease-in-out infinite 3.2s; }
.bg-texture .c1 > :nth-child(4) { animation: ring-micro  7.3s ease-in-out infinite 4.9s; }
.bg-texture .c1 > :nth-child(5) { animation: ring-micro  5.9s ease-in-out infinite 0.7s; }

.bg-texture .c2 > :nth-child(1) { animation: ring-micro  9.1s ease-in-out infinite 2.1s; }
.bg-texture .c2 > :nth-child(2) { animation: ring-micro  7.6s ease-in-out infinite 4.4s; }
.bg-texture .c2 > :nth-child(3) { animation: ring-micro 11.3s ease-in-out infinite 1.0s; }
.bg-texture .c2 > :nth-child(4) { animation: ring-micro  6.5s ease-in-out infinite 5.8s; }
.bg-texture .c2 > :nth-child(5) { animation: ring-micro  8.8s ease-in-out infinite 2.9s; }

.bg-texture .c3 > :nth-child(1) { animation: ring-micro  7.8s ease-in-out infinite 4.2s; }
.bg-texture .c3 > :nth-child(2) { animation: ring-micro 10.4s ease-in-out infinite 2.6s; }
.bg-texture .c3 > :nth-child(3) { animation: ring-micro  6.3s ease-in-out infinite 6.8s; }
.bg-texture .c3 > :nth-child(4) { animation: ring-micro  9.2s ease-in-out infinite 1.3s; }


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

  .modules-grid::before {
    display: none;
  }

  .who-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .hooks-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-sm);
  }

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

  .facilitator-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .facilitator-photo-wrap {
    display: flex;
    justify-content: center;
  }

  .facilitator-attribution {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .facilitator-bio .bio-quote {
    text-align: left;
  }

  .program-dates-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

@media (max-width: 600px) {
  .dates-divider { display: none; }
}

@media (max-width: 480px) {
  .nav {
    padding: 1rem 1.25rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  #hero {
    padding: 7rem 1.25rem 5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .reg-form {
    padding: 1.75rem 1.25rem;
  }

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