/* ============================================
   ELUNMORIX DIGITAL — STYLE.CSS
   Prefix: ed-
   ============================================ */


:root {
  --ed-cream: #F5F0E8;
  --ed-cream-dark: #EDE6D6;
  --ed-ink: #1A1410;
  --ed-ink-mid: #2E2520;
  --ed-ink-light: #4A3F38;
  --ed-terracotta: #C4562A;
  --ed-terracotta-dark: #A8451F;
  --ed-terracotta-light: #D4764A;
  --ed-forest: #2D4A3E;
  --ed-forest-light: #3D6355;
  --ed-gold: #C8963C;
  --ed-gold-light: #DFB05A;
  --ed-warm-white: #FDFAF5;
  --ed-text-body: #3A3028;
  --ed-text-muted: #7A6E66;

  --ed-shadow-sm: 0 1px 3px rgba(26,20,16,0.08), 0 1px 2px rgba(26,20,16,0.06);
  --ed-shadow-md: 0 4px 6px rgba(26,20,16,0.07), 0 2px 4px rgba(26,20,16,0.06);
  --ed-shadow-lg: 0 10px 25px rgba(26,20,16,0.1), 0 4px 10px rgba(26,20,16,0.08);
  --ed-shadow-xl: 0 20px 40px rgba(26,20,16,0.14), 0 8px 16px rgba(26,20,16,0.1), 0 2px 4px rgba(26,20,16,0.06);
  --ed-shadow-terracotta: 0 8px 24px rgba(196,86,42,0.25), 0 2px 8px rgba(196,86,42,0.15);

  --ed-radius-sm: 4px;
  --ed-radius-md: 8px;
  --ed-radius-lg: 16px;
  --ed-radius-xl: 24px;
  --ed-radius-pill: 100px;

  --ed-space-xs: 0.5rem;
  --ed-space-sm: 1rem;
  --ed-space-md: 1.5rem;
  --ed-space-lg: 2.5rem;
  --ed-space-xl: 4rem;
  --ed-space-2xl: 6rem;
  --ed-space-3xl: 8rem;

  --ed-nav-h: 72px;
  --ed-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ed-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


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

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

body {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--ed-warm-white);
  color: var(--ed-text-body);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--ed-transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Vollkorn', Georgia, serif;
  line-height: 1.2;
  color: var(--ed-ink);
}


.ed-section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ed-ink);
  margin-bottom: var(--ed-space-md);
}
.ed-section-heading--light { color: var(--ed-warm-white); }
.ed-section-sub { font-size: 1.05rem; color: var(--ed-text-muted); max-width: 580px; margin: 0 auto; }
.ed-section-sub--light { color: rgba(253,250,245,0.75); }
.ed-section-header { text-align: center; margin-bottom: var(--ed-space-xl); }

.ed-eyebrow {
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ed-terracotta);
  margin-bottom: var(--ed-space-xs);
}
.ed-eyebrow--light { color: var(--ed-gold-light); }


.ed-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--ed-space-md);
}


.ed-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75em 1.6em;
  border-radius: var(--ed-radius-pill);
  transition: all var(--ed-transition);
  white-space: nowrap;
  min-height: 44px;
  text-decoration: none;
}
.ed-btn--primary {
  background: var(--ed-terracotta);
  color: var(--ed-warm-white);
  box-shadow: var(--ed-shadow-terracotta);
}
.ed-btn--primary:hover {
  background: var(--ed-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(196,86,42,0.35), 0 4px 12px rgba(196,86,42,0.2);
  color: var(--ed-warm-white);
}
.ed-btn--ghost {
  background: transparent;
  color: var(--ed-ink);
  border: 2px solid var(--ed-ink);
}
.ed-btn--ghost:hover {
  background: var(--ed-ink);
  color: var(--ed-warm-white);
}
.ed-btn--ghost-light {
  background: transparent;
  color: var(--ed-warm-white);
  border: 2px solid rgba(253,250,245,0.6);
}
.ed-btn--ghost-light:hover {
  background: rgba(253,250,245,0.15);
  border-color: var(--ed-warm-white);
  color: var(--ed-warm-white);
}
.ed-btn--outline {
  background: transparent;
  color: var(--ed-terracotta);
  border: 2px solid var(--ed-terracotta);
}
.ed-btn--outline:hover {
  background: var(--ed-terracotta);
  color: var(--ed-warm-white);
}
.ed-btn--sm { font-size: 0.8rem; padding: 0.55em 1.2em; min-height: 36px; }
.ed-btn--full { width: 100%; justify-content: center; }


.ed-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--ed-nav-h);
  transition: background var(--ed-transition), box-shadow var(--ed-transition), color var(--ed-transition);
}
.ed-nav--light {
  background: rgba(253,250,245,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(26,20,16,0.08), var(--ed-shadow-sm);
}
.ed-nav--light .ed-nav__link,
.ed-nav--light .ed-nav__logo-text { color: var(--ed-ink); }
.ed-nav--dark {
  background: rgba(26,20,16,0.85);
  backdrop-filter: blur(12px);
}
.ed-nav--dark .ed-nav__link,
.ed-nav--dark .ed-nav__logo-text { color: var(--ed-warm-white); }
.ed-nav--dark .ed-nav__hamburger span { background: var(--ed-warm-white); }

.ed-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--ed-space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ed-space-md);
}
.ed-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.ed-nav__logo-img { width: 32px; height: 32px; }
.ed-nav__logo-text {
  font-family: 'Vollkorn', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ed-ink);
  transition: color var(--ed-transition);
}
.ed-nav__logo-text em { font-style: normal; color: var(--ed-terracotta); }

.ed-nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .ed-nav__links { display: flex; }
}

.ed-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--ed-radius-md);
  transition: all var(--ed-transition);
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.ed-nav__link:hover { background: rgba(196,86,42,0.1); color: var(--ed-terracotta); }
.ed-nav__link--active { color: var(--ed-terracotta) !important; font-weight: 600; }
.ed-nav__chevron { font-size: 0.65rem; transition: transform var(--ed-transition); }


.ed-nav__mega-parent { position: relative; }
.ed-nav__mega-parent:hover .ed-nav__chevron { transform: rotate(180deg); }
.ed-nav__mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--ed-warm-white);
  border-radius: var(--ed-radius-lg);
  box-shadow: var(--ed-shadow-xl);
  border: 1px solid rgba(26,20,16,0.06);
  opacity: 0;
  pointer-events: none;
  transition: all var(--ed-transition);
  min-width: 680px;
}
.ed-nav__mega-parent:hover .ed-nav__mega,
.ed-nav__mega-parent:focus-within .ed-nav__mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.ed-nav__mega-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: var(--ed-space-md);
}
.ed-nav__mega-col { padding: var(--ed-space-sm); }
.ed-nav__mega-col:not(:last-child) { border-right: 1px solid var(--ed-cream-dark); }
.ed-nav__mega-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ed-text-muted);
  margin-bottom: 0.75rem;
}
.ed-nav__mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0.5rem;
  border-radius: var(--ed-radius-md);
  transition: background var(--ed-transition);
  color: var(--ed-text-body);
  margin-bottom: 0.25rem;
}
.ed-nav__mega-item:hover { background: var(--ed-cream); }
.ed-nav__mega-item > i { color: var(--ed-terracotta); margin-top: 2px; font-size: 1rem; flex-shrink: 0; }
.ed-nav__mega-item strong { display: block; font-size: 0.875rem; color: var(--ed-ink); font-weight: 600; }
.ed-nav__mega-item small { display: block; font-size: 0.75rem; color: var(--ed-text-muted); margin-top: 1px; white-space: normal; }
.ed-nav__mega-col--cta p { font-size: 0.8rem; color: var(--ed-text-muted); margin-bottom: var(--ed-space-sm); line-height: 1.5; }


.ed-nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--ed-radius-sm);
  transition: background var(--ed-transition);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.ed-nav__hamburger:hover { background: rgba(196,86,42,0.1); }
.ed-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ed-ink);
  border-radius: 2px;
  transition: all var(--ed-transition);
}
@media (min-width: 1024px) { .ed-nav__hamburger { display: none; } }


.ed-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--ed-forest);
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  padding: var(--ed-space-xl) var(--ed-space-lg);
  gap: var(--ed-space-md);
}
.ed-mobile-overlay.ed-is-open {
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
}
.ed-mobile-overlay__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--ed-warm-white);
  font-size: 1.5rem;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ed-radius-md);
  transition: background var(--ed-transition);
}
.ed-mobile-overlay__close:hover { background: rgba(253,250,245,0.1); }
.ed-mobile-overlay__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: var(--ed-space-xl);
}
.ed-mobile-overlay__link {
  font-family: 'Vollkorn', serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 600;
  color: var(--ed-warm-white);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(253,250,245,0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color var(--ed-transition);
}
.ed-mobile-overlay.ed-is-open .ed-mobile-overlay__link {
  opacity: 1;
  transform: translateY(0);
}
.ed-mobile-overlay.ed-is-open .ed-mobile-overlay__link:nth-child(1) { transition-delay: 0.25s; }
.ed-mobile-overlay.ed-is-open .ed-mobile-overlay__link:nth-child(2) { transition-delay: 0.32s; }
.ed-mobile-overlay.ed-is-open .ed-mobile-overlay__link:nth-child(3) { transition-delay: 0.39s; }
.ed-mobile-overlay.ed-is-open .ed-mobile-overlay__link:nth-child(4) { transition-delay: 0.46s; }
.ed-mobile-overlay.ed-is-open .ed-mobile-overlay__link:nth-child(5) { transition-delay: 0.53s; }
.ed-mobile-overlay__link:hover { color: var(--ed-gold-light); }
.ed-mobile-overlay__contact {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ed-mobile-overlay__contact a {
  color: rgba(253,250,245,0.6);
  font-size: 0.9rem;
  transition: color var(--ed-transition);
}
.ed-mobile-overlay__contact a:hover { color: var(--ed-warm-white); }


.ed-hero {
  position: relative;
  min-height: 90vh;
  background: var(--ed-forest);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--ed-nav-h);
}
.ed-hero__bg-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, var(--ed-forest-light) 0%, var(--ed-forest) 60%, var(--ed-ink) 100%);
}
.ed-hero__cutout {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--ed-warm-white);
  clip-path: polygon(0 60%, 30% 30%, 60% 70%, 100% 20%, 100% 100%, 0 100%);
}
.ed-hero__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--ed-space-xl) var(--ed-space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ed-space-xl);
  align-items: center;
  width: 100%;
}
@media (min-width: 900px) {
  .ed-hero__container { grid-template-columns: 1fr 1fr; }
}
.ed-hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ed-gold-light);
  margin-bottom: var(--ed-space-sm);
}
.ed-hero__heading {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--ed-warm-white);
  line-height: 1.1;
  margin-bottom: var(--ed-space-md);
}
.ed-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(253,250,245,0.8);
  max-width: 480px;
  margin-bottom: var(--ed-space-lg);
  line-height: 1.7;
}
.ed-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ed-space-sm);
}
.ed-hero__images {
  position: relative;
  height: 420px;
  display: none;
}
@media (min-width: 900px) { .ed-hero__images { display: block; } }
.ed-hero__img-wrap {
  position: absolute;
  border-radius: var(--ed-radius-lg);
  overflow: hidden;
  box-shadow: var(--ed-shadow-xl);
}
.ed-hero__img-wrap--back {
  width: 72%;
  height: 75%;
  top: 0;
  right: 0;
  transform: rotate(3deg);
  z-index: 1;
}
.ed-hero__img-wrap--front {
  width: 62%;
  height: 65%;
  bottom: 0;
  left: 0;
  transform: rotate(-2.5deg);
  z-index: 2;
  box-shadow: 0 24px 48px rgba(26,20,16,0.4), 0 8px 16px rgba(26,20,16,0.3);
}
.ed-hero__img { width: 100%; height: 100%; object-fit: cover; }
.ed-hero__scroll-hint {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(253,250,245,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: ed-bounce 2s ease-in-out infinite;
}
@keyframes ed-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


.ed-intro-band {
  background: var(--ed-cream);
  padding: var(--ed-space-xl) 0;
  position: relative;
}
.ed-intro-band__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--ed-space-md);
  text-align: center;
}
.ed-intro-band__text {
  font-family: 'Vollkorn', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--ed-ink-mid);
  line-height: 1.6;
  font-style: italic;
}


.ed-how {
  background: var(--ed-warm-white);
  padding: var(--ed-space-3xl) 0 var(--ed-space-2xl);
  position: relative;
}
.ed-how__cutout-top {
  position: absolute;
  top: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--ed-cream);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 60% 100%, 0 60%);
}
.ed-how__cutout-bottom {
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--ed-forest);
  clip-path: polygon(0 60%, 40% 0, 100% 40%, 100% 100%, 0 100%);
}
.ed-how__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ed-space-lg);
  align-items: center;
}
@media (min-width: 768px) {
  .ed-how__steps { grid-template-columns: 1fr auto 1fr auto 1fr; }
}
.ed-how__step {
  background: var(--ed-warm-white);
  border: 1px solid var(--ed-cream-dark);
  border-radius: var(--ed-radius-xl);
  padding: var(--ed-space-lg);
  position: relative;
  box-shadow: var(--ed-shadow-md);
  transition: transform var(--ed-transition), box-shadow var(--ed-transition);
}
.ed-how__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--ed-shadow-lg);
}
.ed-how__step-num {
  font-family: 'Vollkorn', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--ed-cream-dark);
  line-height: 1;
  margin-bottom: var(--ed-space-sm);
}
.ed-how__step-icon {
  width: 52px;
  height: 52px;
  background: var(--ed-terracotta);
  border-radius: var(--ed-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ed-warm-white);
  font-size: 1.25rem;
  margin-bottom: var(--ed-space-md);
  box-shadow: var(--ed-shadow-terracotta);
}
.ed-how__step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--ed-ink);
}
.ed-how__step-text { font-size: 0.9rem; color: var(--ed-text-muted); line-height: 1.7; }
.ed-how__connector {
  color: var(--ed-terracotta);
  font-size: 1.5rem;
  display: none;
  flex-shrink: 0;
}
@media (min-width: 768px) { .ed-how__connector { display: block; } }


.ed-programs-preview {
  background: var(--ed-forest);
  padding: var(--ed-space-3xl) 0;
  position: relative;
}
.ed-programs-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ed-space-md);
}
@media (min-width: 600px) { .ed-programs-preview__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ed-programs-preview__grid { grid-template-columns: repeat(4, 1fr); } }
.ed-prog-card {
  background: rgba(253,250,245,0.06);
  border: 1px solid rgba(253,250,245,0.12);
  border-radius: var(--ed-radius-xl);
  padding: var(--ed-space-lg);
  transition: all var(--ed-transition);
}
.ed-prog-card:hover {
  background: rgba(253,250,245,0.1);
  transform: translateY(-4px);
  border-color: rgba(253,250,245,0.2);
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
}
.ed-prog-card__icon {
  width: 48px;
  height: 48px;
  background: var(--ed-terracotta);
  border-radius: var(--ed-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ed-warm-white);
  font-size: 1.1rem;
  margin-bottom: var(--ed-space-md);
}
.ed-prog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ed-warm-white);
  margin-bottom: 0.75rem;
}
.ed-prog-card__text {
  font-size: 0.875rem;
  color: rgba(253,250,245,0.65);
  line-height: 1.65;
  margin-bottom: var(--ed-space-md);
}
.ed-prog-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ed-gold-light);
  display: flex;
  align-items: center;
  gap: 0.4em;
  transition: gap var(--ed-transition), color var(--ed-transition);
}
.ed-prog-card__link:hover { gap: 0.7em; color: var(--ed-warm-white); }


.ed-reveal-section {
  position: relative;
  overflow: hidden;
}
.ed-reveal-section__layer-bottom {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ed-reveal-section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}
.ed-reveal-section__layer-top {
  position: relative;
  z-index: 2;
  background: var(--ed-cream);
  clip-path: polygon(0 0, 75% 0, 100% 8%, 100% 100%, 0 100%);
}
@media (min-width: 768px) {
  .ed-reveal-section__layer-top {
    clip-path: polygon(0 0, 65% 0, 80% 5%, 100% 15%, 100% 100%, 0 100%);
  }
}
.ed-reveal-section__content { padding: var(--ed-space-3xl) 0; }
.ed-reveal-section__text { max-width: 580px; }
.ed-reveal-section__text p {
  color: var(--ed-text-muted);
  margin-bottom: var(--ed-space-sm);
  line-height: 1.7;
}


.ed-comparison {
  background: var(--ed-warm-white);
  padding: var(--ed-space-3xl) 0;
}
.ed-comparison__table-wrap {
  overflow-x: auto;
  border-radius: var(--ed-radius-xl);
  box-shadow: var(--ed-shadow-lg);
  border: 1px solid var(--ed-cream-dark);
  margin-bottom: var(--ed-space-lg);
}
.ed-comparison__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.ed-comparison__table thead tr {
  background: var(--ed-cream);
}
.ed-comparison__table th, .ed-comparison__table td {
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--ed-cream-dark);
}
.ed-comparison__th-feature { text-align: left; }
.ed-comparison__th {
  font-family: 'Vollkorn', serif;
  font-weight: 600;
  color: var(--ed-ink);
  font-size: 0.95rem;
  position: relative;
}
.ed-comparison__th--recommended {
  background: var(--ed-terracotta);
  color: var(--ed-warm-white);
}
.ed-comparison__badge {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(253,250,245,0.2);
  padding: 2px 8px;
  border-radius: var(--ed-radius-pill);
  margin-top: 4px;
}
.ed-comparison__feature {
  text-align: left;
  font-weight: 500;
  color: var(--ed-text-body);
}
.ed-comparison__col--recommended { background: rgba(196,86,42,0.04); }
.ed-comparison__check { color: var(--ed-forest); font-size: 1rem; }
.ed-comparison__minus { color: var(--ed-cream-dark); font-size: 0.9rem; }
.ed-comparison__detail { font-size: 0.85rem; color: var(--ed-text-muted); }
.ed-comparison__cta { text-align: center; }


.ed-approach {
  background: var(--ed-cream);
  padding: var(--ed-space-3xl) 0;
  position: relative;
  overflow: hidden;
}
.ed-approach__cutout {
  position: absolute;
  top: -2px;
  left: 0; right: 0;
  height: 100px;
  background: var(--ed-warm-white);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 50% 100%, 0 30%);
}
.ed-approach__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ed-space-xl);
  align-items: center;
  padding-top: var(--ed-space-xl);
}
@media (min-width: 900px) {
  .ed-approach__container { grid-template-columns: 1fr 1fr; }
}
.ed-approach__visual { position: relative; height: 380px; }
.ed-approach__img {
  position: absolute;
  border-radius: var(--ed-radius-lg);
  object-fit: cover;
}
.ed-approach__img--main {
  width: 75%;
  height: 80%;
  top: 0;
  left: 0;
  box-shadow: var(--ed-shadow-xl);
  z-index: 2;
}
.ed-approach__img--secondary {
  width: 55%;
  height: 55%;
  bottom: 0;
  right: 0;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(26,20,16,0.2), 0 6px 12px rgba(26,20,16,0.12);
  transform: rotate(2deg);
}
.ed-approach__text p {
  color: var(--ed-text-muted);
  margin-bottom: var(--ed-space-sm);
  line-height: 1.7;
}
.ed-approach__list {
  margin: var(--ed-space-md) 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ed-approach__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--ed-text-body);
}
.ed-approach__list li i { color: var(--ed-forest); margin-top: 2px; flex-shrink: 0; }


.ed-calendar-preview {
  background: var(--ed-ink);
  padding: var(--ed-space-3xl) 0;
  position: relative;
}
.ed-calendar-preview__cutout-top {
  position: absolute;
  top: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--ed-cream);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 60%);
}
.ed-cal-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ed-space-md);
  margin-bottom: var(--ed-space-lg);
}
@media (min-width: 768px) { .ed-cal-preview__grid { grid-template-columns: repeat(3, 1fr); } }
.ed-cal-item {
  background: rgba(253,250,245,0.06);
  border: 1px solid rgba(253,250,245,0.1);
  border-radius: var(--ed-radius-lg);
  padding: var(--ed-space-md);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--ed-space-sm);
  align-items: center;
  transition: all var(--ed-transition);
}
@media (min-width: 768px) {
  .ed-cal-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
  }
}
.ed-cal-item:hover {
  background: rgba(253,250,245,0.1);
  transform: translateY(-3px);
  border-color: rgba(253,250,245,0.2);
}
.ed-cal-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--ed-terracotta);
  border-radius: var(--ed-radius-md);
  padding: 0.5rem 0.75rem;
  min-width: 52px;
}
.ed-cal-item__day {
  font-family: 'Vollkorn', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ed-warm-white);
  line-height: 1;
}
.ed-cal-item__month {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.8);
}
.ed-cal-item__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ed-warm-white);
  margin-bottom: 0.25rem;
}
.ed-cal-item__meta {
  font-size: 0.78rem;
  color: rgba(253,250,245,0.55);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.ed-cal-item__btn {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ed-gold-light);
  border: 1px solid rgba(200,150,60,0.4);
  padding: 0.4em 0.9em;
  border-radius: var(--ed-radius-pill);
  transition: all var(--ed-transition);
  white-space: nowrap;
}
.ed-cal-item__btn:hover {
  background: var(--ed-gold);
  color: var(--ed-ink);
  border-color: var(--ed-gold);
}
.ed-calendar-preview__cta { text-align: center; }


.ed-footer {
  background: var(--ed-ink);
  margin-top: auto;
}
.ed-footer__main {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--ed-space-xl) var(--ed-space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ed-space-lg);
}
@media (min-width: 768px) {
  .ed-footer__main { grid-template-columns: 1.5fr 1fr 1.5fr; align-items: start; }
}
.ed-footer__logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--ed-space-sm);
}
.ed-footer__logo { width: 28px; height: 28px; }
.ed-footer__logo-text {
  font-family: 'Vollkorn', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ed-warm-white);
}
.ed-footer__logo-text em { font-style: normal; color: var(--ed-terracotta-light); }
.ed-footer__tagline {
  font-size: 0.82rem;
  color: rgba(253,250,245,0.45);
  line-height: 1.5;
}
.ed-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ed-footer__links a {
  font-size: 0.875rem;
  color: rgba(253,250,245,0.65);
  transition: color var(--ed-transition);
  padding: 0.2rem 0;
}
.ed-footer__links a:hover { color: var(--ed-warm-white); }
.ed-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ed-footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(253,250,245,0.65);
}
.ed-footer__contact i { color: var(--ed-terracotta-light); margin-top: 2px; flex-shrink: 0; }
.ed-footer__contact a { color: rgba(253,250,245,0.65); transition: color var(--ed-transition); }
.ed-footer__contact a:hover { color: var(--ed-warm-white); }
.ed-footer__bar {
  border-top: 1px solid rgba(253,250,245,0.08);
  padding: var(--ed-space-md) var(--ed-space-md);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--ed-space-sm);
  align-items: flex-start;
}
@media (min-width: 768px) {
  .ed-footer__bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.ed-footer__bar p {
  font-size: 0.78rem;
  color: rgba(253,250,245,0.35);
}
.ed-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.ed-footer__legal a {
  font-size: 0.78rem;
  color: rgba(253,250,245,0.35);
  transition: color var(--ed-transition);
}
.ed-footer__legal a:hover { color: rgba(253,250,245,0.7); }


.ed-page-hero {
  background: var(--ed-forest);
  padding: calc(var(--ed-nav-h) + var(--ed-space-xl)) 0 var(--ed-space-2xl);
  position: relative;
  overflow: hidden;
}
.ed-page-hero__cutout {
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--ed-warm-white);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}
.ed-page-hero__content { max-width: 700px; }
.ed-page-hero__heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--ed-warm-white);
  margin-bottom: var(--ed-space-md);
}
.ed-page-hero__sub {
  font-size: 1.05rem;
  color: rgba(253,250,245,0.75);
  max-width: 560px;
  line-height: 1.7;
}


.ed-values { padding: var(--ed-space-3xl) 0; }
.ed-values__intro { text-align: center; margin-bottom: var(--ed-space-2xl); }
.ed-values__intro-text {
  font-family: 'Vollkorn', serif;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  font-weight: 500;
  color: var(--ed-ink-mid);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}
.ed-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ed-space-xl);
}
@media (min-width: 768px) { .ed-values__grid { grid-template-columns: 1fr 1fr; } }
.ed-value-item {
  padding: var(--ed-space-lg);
  border-left: 3px solid var(--ed-terracotta);
  background: var(--ed-warm-white);
  border-radius: 0 var(--ed-radius-lg) var(--ed-radius-lg) 0;
  box-shadow: var(--ed-shadow-sm);
  transition: box-shadow var(--ed-transition), transform var(--ed-transition);
}
.ed-value-item:hover { box-shadow: var(--ed-shadow-lg); transform: translateX(4px); }
.ed-value-item__num {
  font-family: 'Vollkorn', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ed-cream-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.ed-value-item__icon {
  width: 44px;
  height: 44px;
  background: var(--ed-terracotta);
  border-radius: var(--ed-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ed-warm-white);
  font-size: 1rem;
  margin-bottom: var(--ed-space-sm);
}
.ed-value-item__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ed-ink);
  margin-bottom: 0.75rem;
}
.ed-value-item p {
  font-size: 0.9rem;
  color: var(--ed-text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}


.ed-team {
  background: var(--ed-forest);
  padding: var(--ed-space-3xl) 0;
  position: relative;
}
.ed-team__cutout-top {
  position: absolute;
  top: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--ed-warm-white);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 60% 100%, 0 40%);
}
.ed-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ed-space-lg);
}
@media (min-width: 768px) { .ed-team__grid { grid-template-columns: 1fr 1fr; } }
.ed-team-card {
  background: rgba(253,250,245,0.06);
  border: 1px solid rgba(253,250,245,0.12);
  border-radius: var(--ed-radius-xl);
  overflow: hidden;
}
.ed-team-card__img-wrap {
  height: 240px;
  overflow: hidden;
}
.ed-team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ed-transition-slow);
}
.ed-team-card:hover .ed-team-card__img { transform: scale(1.04); }
.ed-team-card__info { padding: var(--ed-space-md); }
.ed-team-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ed-warm-white);
  margin-bottom: 0.25rem;
}
.ed-team-card__role {
  font-size: 0.82rem;
  color: rgba(253,250,245,0.55);
  margin-bottom: var(--ed-space-sm);
}
.ed-team-card__toggle {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ed-gold-light);
  display: flex;
  align-items: center;
  gap: 0.4em;
  transition: color var(--ed-transition);
  padding: 0.4rem 0;
  min-height: 44px;
}
.ed-team-card__toggle:hover { color: var(--ed-warm-white); }
.ed-team-card__toggle i { transition: transform var(--ed-transition); }
.ed-team-card__toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.ed-team-card__bio {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding var(--ed-transition);
  padding: 0 var(--ed-space-md);
}
.ed-team-card__bio.ed-bio-open {
  max-height: 400px;
  padding: 0 var(--ed-space-md) var(--ed-space-md);
}
.ed-team-card__bio p {
  font-size: 0.875rem;
  color: rgba(253,250,245,0.65);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}


.ed-values-closing {
  background: var(--ed-cream);
  padding: var(--ed-space-3xl) 0;
  position: relative;
  overflow: hidden;
}
.ed-values-closing__cutout {
  position: absolute;
  top: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--ed-forest);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.ed-values-closing__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ed-space-xl);
  align-items: center;
  padding-top: var(--ed-space-lg);
}
@media (min-width: 900px) {
  .ed-values-closing__inner { grid-template-columns: 1fr 1fr; }
}
.ed-values-closing__text p {
  color: var(--ed-text-muted);
  margin-bottom: var(--ed-space-sm);
  line-height: 1.7;
}
.ed-values-closing__img-wrap {
  border-radius: var(--ed-radius-xl);
  overflow: hidden;
  box-shadow: var(--ed-shadow-xl);
}
.ed-values-closing__img { width: 100%; height: 320px; object-fit: cover; }


.ed-program-section {
  padding: var(--ed-space-3xl) 0;
  background: var(--ed-warm-white);
  position: relative;
}
.ed-program-section--alt {
  background: var(--ed-forest);
}
.ed-program-section__cutout {
  position: absolute;
  top: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--ed-warm-white);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
}
.ed-program-section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--ed-space-xl);
}
.ed-program-section__header { max-width: 700px; }
.ed-program-section__icon {
  width: 60px;
  height: 60px;
  background: var(--ed-terracotta);
  border-radius: var(--ed-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ed-warm-white);
  font-size: 1.4rem;
  margin-bottom: var(--ed-space-sm);
  box-shadow: var(--ed-shadow-terracotta);
}
.ed-program-section__icon--light { background: rgba(253,250,245,0.15); box-shadow: none; }
.ed-program-section__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ed-terracotta);
  background: rgba(196,86,42,0.1);
  padding: 3px 10px;
  border-radius: var(--ed-radius-pill);
  margin-bottom: var(--ed-space-sm);
}
.ed-program-section__tag--light { color: var(--ed-gold-light); background: rgba(200,150,60,0.15); }
.ed-program-section__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--ed-ink);
  margin-bottom: var(--ed-space-sm);
}
.ed-program-section__title--light { color: var(--ed-warm-white); }
.ed-program-section__lead {
  font-size: 1.05rem;
  color: var(--ed-text-muted);
  line-height: 1.7;
}
.ed-program-section__lead--light { color: rgba(253,250,245,0.7); }
.ed-program-section__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ed-space-xl);
}
@media (min-width: 900px) {
  .ed-program-section__body { grid-template-columns: 1fr auto; align-items: start; }
}
.ed-program-section__modules h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ed-ink);
  margin-bottom: var(--ed-space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}
.ed-program-section__modules--light h3 { color: rgba(253,250,245,0.6); }
.ed-module-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--ed-cream-dark);
}
.ed-module-item:last-child { border-bottom: none; }
.ed-module-item > i { color: var(--ed-terracotta); margin-top: 4px; flex-shrink: 0; }
.ed-module-item div { font-size: 0.9rem; color: var(--ed-text-body); line-height: 1.6; }
.ed-module-item div strong { display: block; color: var(--ed-ink); margin-bottom: 2px; }
.ed-module-item--light > i { color: var(--ed-gold-light); }
.ed-module-item--light div { color: rgba(253,250,245,0.7); }
.ed-module-item--light div strong { color: var(--ed-warm-white); }
.ed-module-item--light { border-bottom-color: rgba(253,250,245,0.1); }
.ed-program-section__meta {
  display: flex;
  flex-direction: column;
  gap: var(--ed-space-sm);
  min-width: 240px;
  background: var(--ed-cream);
  border-radius: var(--ed-radius-xl);
  padding: var(--ed-space-lg);
  box-shadow: var(--ed-shadow-md);
  height: fit-content;
}
.ed-program-section__meta--light {
  background: rgba(253,250,245,0.08);
  border: 1px solid rgba(253,250,245,0.12);
  box-shadow: none;
}
.ed-meta-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--ed-cream-dark);
}
.ed-meta-box:last-of-type { border-bottom: none; }
.ed-meta-box > i { color: var(--ed-terracotta); margin-top: 3px; flex-shrink: 0; }
.ed-meta-box span {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  color: var(--ed-text-body);
}
.ed-meta-box span strong { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ed-text-muted); margin-bottom: 1px; }
.ed-meta-box--light > i { color: var(--ed-gold-light); }
.ed-meta-box--light span { color: rgba(253,250,245,0.75); }
.ed-meta-box--light span strong { color: rgba(253,250,245,0.45); }
.ed-meta-box--light { border-bottom-color: rgba(253,250,245,0.1); }


.ed-calendar-full { padding: var(--ed-space-3xl) 0; }
.ed-calendar-full__month { margin-bottom: var(--ed-space-2xl); }
.ed-calendar-full__month-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ed-ink);
  margin-bottom: var(--ed-space-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: var(--ed-space-sm);
  border-bottom: 2px solid var(--ed-terracotta);
}
.ed-calendar-full__month-title i { color: var(--ed-terracotta); }
.ed-calendar-full__list { display: flex; flex-direction: column; gap: var(--ed-space-sm); }
.ed-cal-full-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--ed-space-md);
  align-items: center;
  padding: var(--ed-space-md);
  background: var(--ed-warm-white);
  border: 1px solid var(--ed-cream-dark);
  border-radius: var(--ed-radius-lg);
  box-shadow: var(--ed-shadow-sm);
  transition: all var(--ed-transition);
}
.ed-cal-full-item:hover {
  border-color: var(--ed-terracotta);
  box-shadow: var(--ed-shadow-md);
  transform: translateY(-2px);
}
.ed-cal-full-item__date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--ed-terracotta);
  border-radius: var(--ed-radius-md);
  padding: 0.5rem 0.8rem;
  min-width: 56px;
}
.ed-cal-full-item__day {
  font-family: 'Vollkorn', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ed-warm-white);
  line-height: 1;
}
.ed-cal-full-item__month {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.8);
}
.ed-cal-full-item__details h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ed-ink);
  margin-bottom: 0.4rem;
}
.ed-cal-full-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.ed-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--ed-cream);
  color: var(--ed-text-muted);
  padding: 2px 8px;
  border-radius: var(--ed-radius-pill);
}
.ed-tag--basic { background: rgba(45,74,62,0.1); color: var(--ed-forest); }
.ed-tag--advanced { background: rgba(196,86,42,0.1); color: var(--ed-terracotta); }
.ed-cal-full-item__details p {
  font-size: 0.85rem;
  color: var(--ed-text-muted);
  line-height: 1.6;
}
.ed-cal-full-item__cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ed-terracotta);
  border: 1px solid var(--ed-terracotta);
  padding: 0.5em 1.1em;
  border-radius: var(--ed-radius-pill);
  white-space: nowrap;
  transition: all var(--ed-transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.ed-cal-full-item__cta:hover { background: var(--ed-terracotta); color: var(--ed-warm-white); }
.ed-calendar-full__inhouse {
  background: var(--ed-cream);
  border-radius: var(--ed-radius-xl);
  padding: var(--ed-space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--ed-space-md);
  align-items: flex-start;
  box-shadow: var(--ed-shadow-md);
}
@media (min-width: 768px) {
  .ed-calendar-full__inhouse { flex-direction: row; align-items: center; }
}
.ed-calendar-full__inhouse-icon {
  width: 56px;
  height: 56px;
  background: var(--ed-forest);
  border-radius: var(--ed-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ed-warm-white);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.ed-calendar-full__inhouse-text { flex: 1; }
.ed-calendar-full__inhouse-text h3 { font-size: 1.1rem; color: var(--ed-ink); margin-bottom: 0.4rem; }
.ed-calendar-full__inhouse-text p { font-size: 0.875rem; color: var(--ed-text-muted); }


.ed-contact-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 600px;
}
@media (min-width: 768px) { .ed-contact-split { grid-template-columns: 1fr 1fr; } }
.ed-contact-split__map { min-height: 300px; }
@media (min-width: 768px) { .ed-contact-split__map { min-height: 600px; } }
.ed-contact-split__map iframe { width: 100%; height: 100%; min-height: 300px; }
.ed-contact-split__form-wrap {
  padding: var(--ed-space-xl) var(--ed-space-lg);
  background: var(--ed-warm-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ed-contact-split__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ed-ink);
  margin-bottom: 0.5rem;
}
.ed-contact-split__intro {
  font-size: 0.9rem;
  color: var(--ed-text-muted);
  margin-bottom: var(--ed-space-lg);
  line-height: 1.6;
}
.ed-contact-form { display: flex; flex-direction: column; gap: var(--ed-space-md); }
.ed-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.ed-form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ed-ink-light);
  letter-spacing: 0.02em;
}
.ed-form-label span { color: var(--ed-terracotta); }
.ed-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--ed-cream-dark);
  border-radius: var(--ed-radius-md);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--ed-text-body);
  background: var(--ed-warm-white);
  transition: border-color var(--ed-transition), box-shadow var(--ed-transition);
  min-height: 44px;
}
.ed-form-input:focus {
  outline: none;
  border-color: var(--ed-terracotta);
  box-shadow: 0 0 0 3px rgba(196,86,42,0.12);
}
.ed-form-textarea { resize: vertical; min-height: 120px; }
.ed-form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.ed-form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--ed-terracotta);
  cursor: pointer;
}
.ed-form-checkbox-label {
  font-size: 0.82rem;
  color: var(--ed-text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.ed-form-checkbox-label a { color: var(--ed-terracotta); text-decoration: underline; }
.ed-form-error {
  font-size: 0.82rem;
  color: #c0392b;
  min-height: 1.2em;
  transition: all var(--ed-transition);
}
.ed-contact-news {
  background: var(--ed-cream);
  padding: var(--ed-space-3xl) 0;
}
.ed-contact-news__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ed-space-md);
}
@media (min-width: 768px) { .ed-contact-news__grid { grid-template-columns: repeat(3, 1fr); } }
.ed-news-item {
  background: var(--ed-warm-white);
  border-radius: var(--ed-radius-xl);
  padding: var(--ed-space-lg);
  box-shadow: var(--ed-shadow-sm);
  border: 1px solid var(--ed-cream-dark);
  transition: all var(--ed-transition);
}
.ed-news-item:hover { box-shadow: var(--ed-shadow-lg); transform: translateY(-3px); }
.ed-news-item__date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ed-text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ed-news-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ed-ink);
  margin-bottom: 0.6rem;
}
.ed-news-item__text {
  font-size: 0.875rem;
  color: var(--ed-text-muted);
  line-height: 1.65;
  margin-bottom: var(--ed-space-sm);
}
.ed-news-item__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ed-terracotta);
  display: flex;
  align-items: center;
  gap: 0.4em;
  transition: gap var(--ed-transition);
}
.ed-news-item__link:hover { gap: 0.7em; }
.ed-contact-info-strip {
  background: var(--ed-forest);
  padding: var(--ed-space-xl) 0;
}
.ed-contact-info-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ed-space-lg);
}
@media (min-width: 768px) { .ed-contact-info-strip__grid { grid-template-columns: repeat(3, 1fr); } }
.ed-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--ed-space-sm);
  color: rgba(253,250,245,0.8);
}
.ed-contact-info-item > i {
  font-size: 1.2rem;
  color: var(--ed-gold-light);
  margin-top: 2px;
  flex-shrink: 0;
}
.ed-contact-info-item div { display: flex; flex-direction: column; gap: 0.2rem; }
.ed-contact-info-item strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(253,250,245,0.45); }
.ed-contact-info-item span, .ed-contact-info-item a {
  font-size: 0.9rem;
  color: rgba(253,250,245,0.8);
  transition: color var(--ed-transition);
}
.ed-contact-info-item a:hover { color: var(--ed-warm-white); }


.ed-thanks {
  min-height: 80vh;
  background: var(--ed-forest);
  padding: calc(var(--ed-nav-h) + var(--ed-space-xl)) 0 var(--ed-space-3xl);
  position: relative;
  display: flex;
  align-items: center;
}
.ed-thanks__cutout {
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--ed-ink);
  clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
}
.ed-thanks__content {
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.ed-thanks__icon {
  font-size: 3.5rem;
  color: var(--ed-gold-light);
  margin-bottom: var(--ed-space-md);
}
.ed-thanks__heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--ed-warm-white);
  margin-bottom: var(--ed-space-md);
}
.ed-thanks__text {
  font-size: 1.05rem;
  color: rgba(253,250,245,0.75);
  margin-bottom: var(--ed-space-xl);
  line-height: 1.7;
}
.ed-thanks__next {
  background: rgba(253,250,245,0.06);
  border: 1px solid rgba(253,250,245,0.12);
  border-radius: var(--ed-radius-xl);
  padding: var(--ed-space-lg);
  margin-bottom: var(--ed-space-xl);
  text-align: left;
}
.ed-thanks__next-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ed-warm-white);
  margin-bottom: var(--ed-space-md);
}
.ed-thanks__next-steps { display: flex; flex-direction: column; gap: var(--ed-space-md); }
.ed-thanks__next-step {
  display: flex;
  align-items: flex-start;
  gap: var(--ed-space-sm);
}
.ed-thanks__step-num {
  width: 32px;
  height: 32px;
  background: var(--ed-terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ed-warm-white);
  flex-shrink: 0;
}
.ed-thanks__step-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ed-warm-white);
  margin-bottom: 0.25rem;
}
.ed-thanks__step-text p {
  font-size: 0.82rem;
  color: rgba(253,250,245,0.6);
  line-height: 1.6;
}
.ed-thanks__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ed-space-sm);
  justify-content: center;
}


.ed-legal-hero {
  background: var(--ed-forest);
  padding: calc(var(--ed-nav-h) + var(--ed-space-xl)) 0 var(--ed-space-xl);
}
.ed-legal-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--ed-warm-white);
  margin-bottom: 0.5rem;
}
.ed-legal-hero__meta {
  font-size: 0.82rem;
  color: rgba(253,250,245,0.45);
}
.ed-legal-content { padding: var(--ed-space-3xl) 0; }
.ed-legal-container { max-width: 780px; }
.ed-legal-container h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ed-ink);
  margin-top: var(--ed-space-xl);
  margin-bottom: var(--ed-space-sm);
  padding-top: var(--ed-space-md);
  border-top: 1px solid var(--ed-cream-dark);
}
.ed-legal-container h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ed-ink-mid);
  margin-top: var(--ed-space-lg);
  margin-bottom: var(--ed-space-sm);
}
.ed-legal-container p {
  font-size: 0.9rem;
  color: var(--ed-text-muted);
  line-height: 1.8;
  margin-bottom: var(--ed-space-sm);
}
.ed-legal-container a { color: var(--ed-terracotta); text-decoration: underline; }
.ed-legal-intro p {
  font-size: 0.95rem;
  color: var(--ed-text-body);
  line-height: 1.8;
  margin-bottom: var(--ed-space-md);
}
.ed-legal-aside {
  background: var(--ed-cream);
  border-left: 3px solid var(--ed-gold);
  border-radius: 0 var(--ed-radius-lg) var(--ed-radius-lg) 0;
  padding: var(--ed-space-lg);
  margin: var(--ed-space-lg) 0;
}
.ed-legal-aside h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ed-ink);
  margin-bottom: var(--ed-space-sm);
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}
.ed-legal-aside dl { display: flex; flex-direction: column; gap: 0.75rem; }
.ed-legal-aside dt {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ed-ink);
}
.ed-legal-aside dd {
  font-size: 0.82
rem;
  color: var(--ed-text-muted);
  margin-left: var(--ed-space-sm);
  line-height: 1.6;
}
.ed-legal-aside p {
  font-size: 0.85rem;
  color: var(--ed-text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.ed-legal-aside--terms { border-left-color: var(--ed-terracotta); }
.ed-legal-aside--cookies { border-left-color: var(--ed-forest); }
.ed-term { color: var(--ed-terracotta); font-weight: 700; }
.ed-terms-preamble p {
  font-size: 0.95rem;
  color: var(--ed-text-body);
  line-height: 1.8;
  margin-bottom: var(--ed-space-md);
}
.ed-cookie-table-wrap {
  overflow-x: auto;
  margin: var(--ed-space-md) 0;
  border-radius: var(--ed-radius-md);
  border: 1px solid var(--ed-cream-dark);
}
.ed-cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 420px;
}
.ed-cookie-table th {
  background: var(--ed-cream);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--ed-ink);
  border-bottom: 1px solid var(--ed-cream-dark);
}
.ed-cookie-table td {
  padding: 0.75rem 1rem;
  color: var(--ed-text-muted);
  border-bottom: 1px solid var(--ed-cream-dark);
}
.ed-cookie-table tr:last-child td { border-bottom: none; }
.ed-cookie-table code {
  background: var(--ed-cream);
  padding: 2px 6px;
  border-radius: var(--ed-radius-sm);
  font-size: 0.82rem;
  color: var(--ed-terracotta);
  font-family: monospace;
}


.ed-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.ed-animate.visible {
  opacity: 1;
  transform: translateY(0);
}


.ed-cookie-panel {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  height: 100vh;
  background: var(--ed-ink);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.35), -2px 0 8px rgba(0,0,0,0.2);
  transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.ed-cookie-panel.ed-cookie-visible { right: 0; }
.ed-cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,20,16,0.55);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.ed-cookie-overlay.ed-cookie-visible { opacity: 1; pointer-events: auto; }
.ed-cookie-panel__header {
  padding: var(--ed-space-lg) var(--ed-space-md) var(--ed-space-sm);
  border-bottom: 1px solid rgba(253,250,245,0.1);
  display: flex;
  align-items: flex-start;
  gap: var(--ed-space-sm);
}
.ed-cookie-panel__shield {
  width: 40px;
  height: 40px;
  background: var(--ed-terracotta);
  border-radius: var(--ed-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ed-warm-white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ed-cookie-panel__title {
  font-family: 'Vollkorn', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ed-warm-white);
  margin-bottom: 0.2rem;
}
.ed-cookie-panel__sub {
  font-size: 0.75rem;
  color: rgba(253,250,245,0.5);
  line-height: 1.5;
}
.ed-cookie-panel__body {
  flex: 1;
  padding: var(--ed-space-md);
  display: flex;
  flex-direction: column;
  gap: var(--ed-space-sm);
}
.ed-cookie-panel__intro {
  font-size: 0.8rem;
  color: rgba(253,250,245,0.65);
  line-height: 1.6;
  padding-bottom: var(--ed-space-sm);
  border-bottom: 1px solid rgba(253,250,245,0.08);
}
.ed-cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--ed-space-sm);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(253,250,245,0.08);
}
.ed-cookie-category:last-of-type { border-bottom: none; }
.ed-cookie-category__info { flex: 1; }
.ed-cookie-category__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ed-warm-white);
  margin-bottom: 0.2rem;
}
.ed-cookie-category__desc {
  font-size: 0.75rem;
  color: rgba(253,250,245,0.5);
  line-height: 1.5;
}
.ed-cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ed-cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.ed-cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: rgba(253,250,245,0.2);
  border-radius: var(--ed-radius-pill);
  cursor: pointer;
  transition: background var(--ed-transition);
}
.ed-cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: var(--ed-warm-white);
  border-radius: 50%;
  transition: transform var(--ed-transition);
}
.ed-cookie-toggle input:checked + .ed-cookie-toggle__slider { background: var(--ed-terracotta); }
.ed-cookie-toggle input:checked + .ed-cookie-toggle__slider::before { transform: translateX(18px); }
.ed-cookie-toggle input:disabled + .ed-cookie-toggle__slider { opacity: 0.5; cursor: not-allowed; }
.ed-cookie-panel__footer {
  padding: var(--ed-space-md);
  border-top: 1px solid rgba(253,250,245,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ed-cookie-panel__accept {
  background: var(--ed-terracotta);
  color: var(--ed-warm-white);
  border: none;
  border-radius: var(--ed-radius-pill);
  padding: 0.7em 1.4em;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ed-transition);
  min-height: 44px;
}
.ed-cookie-panel__accept:hover { background: var(--ed-terracotta-dark); transform: translateY(-1px); }
.ed-cookie-panel__reject {
  background: transparent;
  color: rgba(253,250,245,0.5);
  border: 1px solid rgba(253,250,245,0.15);
  border-radius: var(--ed-radius-pill);
  padding: 0.6em 1.4em;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--ed-transition);
  min-height: 44px;
}
.ed-cookie-panel__reject:hover {
  color: var(--ed-warm-white);
  border-color: rgba(253,250,245,0.35);
}
.ed-cookie-panel__links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-top: 0.25rem;
}
.ed-cookie-panel__links a {
  font-size: 0.72rem;
  color: rgba(253,250,245,0.35);
  text-decoration: underline;
  transition: color var(--ed-transition);
}
.ed-cookie-panel__links a:hover { color: rgba(253,250,245,0.7); }


@media (max-width: 767px) {
  .ed-cal-full-item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .ed-cal-full-item__cta {
    grid-column: 1 / -1;
    justify-content: center;
  }
  .ed-program-section__meta { min-width: unset; }
  .ed-contact-split__form-wrap { padding: var(--ed-space-lg) var(--ed-space-md); }
  .ed-hero__actions { flex-direction: column; }
  .ed-hero__actions .ed-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  :root {
    --ed-space-xl: 2.5rem;
    --ed-space-2xl: 4rem;
    --ed-space-3xl: 5rem;
  }
  .ed-comparison__table { font-size: 0.8rem; }
  .ed-comparison__table th, .ed-comparison__table td { padding: 0.6rem 0.75rem; }
}