:root {
  --ink: #173b35;
  --ink-deep: #102e2a;
  --sage: #dbe8de;
  --sage-light: #f1f6f1;
  --cream: #fbf8f1;
  --paper: #fffdf9;
  --coral: #e56d55;
  --coral-dark: #c94f3a;
  --gold: #dcae64;
  --text: #29433e;
  --muted: #687a75;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 55, 49, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
}

body::selection { background: var(--coral); color: var(--white); }

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

.container { width: min(1140px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 30%, rgba(220, 174, 100, 0.17), transparent 27%),
    linear-gradient(125deg, #0d2c28 0%, #173f38 58%, #1d4b41 100%);
}

.hero::after {
  position: absolute;
  right: -140px;
  bottom: -230px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  content: "";
}

.hero__glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; }
.hero__glow--one { width: 280px; height: 280px; top: 100px; left: -170px; background: var(--coral); }
.hero__glow--two { width: 110px; height: 110px; right: 10%; top: 12%; border: 1px solid rgba(255,255,255,.15); }

.nav { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 28px 0; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: "Newsreader", serif; font-size: 21px; font-weight: 600; }
.brand__logo-wrap { display: grid; width: 112px; height: 112px; overflow: hidden; flex: 0 0 auto; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 14px; background: var(--white); box-shadow: 0 10px 28px rgba(0,0,0,.13); }
.brand__logo { display: block; width: 100%; height: 100%; object-fit: contain; }
.nav__cta { padding: 10px 18px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; transition: .2s ease; }
.nav__cta:hover { background: var(--white); color: var(--ink); }

.hero__content { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr .78fr; gap: 72px; align-items: center; padding: 72px 0 110px; }
.mobile-intro { display: none; }
.eyebrow { margin: 0 0 18px; color: #f0c681; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .19em; }
.eyebrow--dark { color: var(--coral-dark); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Newsreader", serif; font-weight: 600; line-height: 1.08; }
h1 { max-width: 770px; margin-bottom: 24px; font-size: clamp(45px, 5.2vw, 72px); letter-spacing: -.035em; }
h1 span { display: block; margin-top: 14px; color: #dcebe2; font-family: "DM Sans", sans-serif; font-size: clamp(17px, 1.6vw, 22px); font-weight: 400; line-height: 1.45; letter-spacing: 0; }
h2 { margin-bottom: 20px; color: var(--ink); font-size: clamp(38px, 4.2vw, 58px); letter-spacing: -.025em; }
h3 { color: var(--ink); font-size: 24px; line-height: 1.25; }
.hero__subtitle { max-width: 700px; color: rgba(255,255,255,.76); font-size: 17px; }

.event-info { display: flex; flex-wrap: wrap; gap: 25px; margin-top: 38px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.16); }
.event-info__item { display: flex; align-items: center; gap: 10px; }
.event-info__item span:last-child { display: flex; flex-direction: column; }
.event-info__item strong { font-size: 14px; }
.event-info__item small { color: rgba(255,255,255,.58); font-size: 11px; }
.icon-box { display: grid !important; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 12px; background: rgba(255,255,255,.1); color: #f4cc89; font-size: 11px; font-weight: 700; }

.signup-card { padding: 38px; border: 1px solid rgba(255,255,255,.45); border-radius: var(--radius); background: rgba(255,255,255,.96); box-shadow: var(--shadow); color: var(--text); }
.signup-card__kicker { margin-bottom: 8px; color: var(--coral-dark); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
.signup-card h2 { margin-bottom: 12px; font-size: 39px; }
.signup-card > p:not(.signup-card__kicker) { margin-bottom: 24px; color: var(--muted); font-size: 14px; }
.signup-form label { display: block; margin-bottom: 8px; color: var(--ink); font-size: 13px; font-weight: 700; }
.signup-form input { width: 100%; height: 58px; padding: 0 18px; border: 1px solid #d5dfda; border-radius: 12px; outline: none; background: var(--white); color: var(--text); font: inherit; transition: .2s ease; }
.signup-form input:focus { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(229,109,85,.12); }
.signup-form button { width: 100%; min-height: 60px; margin-top: 12px; padding: 14px 18px; border: 0; border-radius: 12px; background: var(--coral); box-shadow: 0 10px 24px rgba(201,79,58,.25); color: var(--white); cursor: pointer; font: 700 14px/1.2 "DM Sans", sans-serif; text-transform: uppercase; letter-spacing: .035em; transition: transform .2s ease, background .2s ease; }
.signup-form button:hover { transform: translateY(-2px); background: var(--coral-dark); }
.form-note, .form-message { margin: 13px 0 0; text-align: center; font-size: 11px; }
.form-note { color: var(--muted); }
.form-message { min-height: 18px; color: var(--ink); font-weight: 700; }

.program { background: var(--paper); }
.program__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: center; }
.program__intro h2 { font-size: clamp(40px, 4.5vw, 60px); }
.program__label { color: var(--muted); }
.date-card { display: inline-flex; align-items: center; gap: 16px; margin-top: 24px; padding: 12px 22px 12px 13px; border: 1px solid #dce5df; border-radius: 17px; background: var(--sage-light); }
.date-card__day { display: grid; width: 55px; height: 55px; place-items: center; border-radius: 12px; background: var(--ink); color: var(--white); font-family: "Newsreader", serif; font-size: 27px; }
.date-card span:last-child { display: flex; flex-direction: column; }
.date-card small { color: var(--muted); }
.lesson-card { padding: 46px; border-radius: var(--radius); background: var(--sage-light); box-shadow: inset 0 0 0 1px rgba(23,59,53,.08); }
.lesson-card h3 { margin-bottom: 26px; }
.check-list, .mini-list, .audience-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 14px 0 14px 40px; border-bottom: 1px solid #d7e3da; }
.check-list li:last-child { border: 0; }
.check-list li::before, .audience-list li::before { position: absolute; left: 0; display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); content: "✓"; font-size: 12px; font-weight: 700; }

.receive { background: var(--sage); }
.section-heading { max-width: 700px; margin: 0 auto 50px; text-align: center; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.benefit-card { position: relative; min-height: 390px; overflow: hidden; padding: 45px; border-radius: var(--radius); background: var(--paper); }
.benefit-card--accent { background: var(--ink); color: rgba(255,255,255,.75); }
.benefit-card--accent h3 { color: var(--white); }
.benefit-card__number { position: absolute; top: 16px; right: 24px; color: rgba(23,59,53,.07); font-family: "Newsreader", serif; font-size: 100px; line-height: 1; }
.benefit-card--accent .benefit-card__number { color: rgba(255,255,255,.05); }
.benefit-card__icon { display: grid; width: 54px; height: 54px; margin-bottom: 70px; place-items: center; border-radius: 50%; background: var(--coral); color: var(--white); font-weight: 700; }
.benefit-card h3 { margin-bottom: 15px; font-size: 29px; }
.mini-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin-top: 15px; color: var(--white); font-size: 13px; }
.mini-list li::before { margin-right: 7px; color: #f1c57e; content: "✓"; }

.teacher { overflow: hidden; background: var(--ink-deep); color: rgba(255,255,255,.72); }
.teacher__grid { display: grid; grid-template-columns: .78fr 1.12fr; gap: 90px; align-items: center; }
.teacher h2 { color: var(--white); }
.teacher__lead { color: #f0c681; font-size: 19px; font-weight: 600; }
.teacher__portrait { position: relative; }
.teacher__portrait::before { position: absolute; inset: -30px 30px 30px -30px; border: 1px solid rgba(255,255,255,.12); border-radius: 180px 180px 24px 24px; content: ""; }
.portrait-card { position: relative; display: flex; min-height: 520px; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; border-radius: 180px 180px 24px 24px; background: #d8c9b5; box-shadow: var(--shadow); }
.portrait-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 43%; }
.portrait-card::after { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 55%, rgba(11,38,34,.5) 100%); content: ""; }
.portrait-card__caption { position: absolute; z-index: 2; right: 20px; bottom: 20px; left: 20px; display: flex; padding: 18px 22px; border-radius: 15px; background: rgba(16,46,42,.88); flex-direction: column; color: var(--white); backdrop-filter: blur(8px); }
.portrait-card__caption span { color: rgba(255,255,255,.62); font-size: 12px; }

.audience { background: var(--paper); }
.audience__grid { display: grid; grid-template-columns: .82fr 1fr; gap: 80px; align-items: center; }
.audience__heading p:last-child { color: var(--muted); font-size: 18px; }
.audience-list { padding: 20px 35px; border-radius: var(--radius); background: var(--sage-light); }
.audience-list li { position: relative; padding: 20px 0 20px 46px; border-bottom: 1px solid #d7e3da; font-weight: 500; }
.audience-list li:last-child { border: 0; }
.audience-list li::before { top: 20px; background: var(--coral); }

.final-cta { background: linear-gradient(115deg, #d85e48, #e67c62); color: var(--white); }
.final-cta__grid { display: grid; grid-template-columns: 1fr .75fr; gap: 100px; align-items: center; }
.final-cta h2 { color: var(--white); }
.final-cta__copy > p:not(.eyebrow) { max-width: 600px; color: rgba(255,255,255,.82); font-size: 18px; }
.final-cta .eyebrow { color: #ffe3b7; }
.final-cta__event { display: flex; gap: 12px; align-items: baseline; margin-top: 30px; }
.final-cta__event strong { font-family: "Newsreader", serif; font-size: 30px; }
.final-cta__event span { color: rgba(255,255,255,.72); }
.signup-form--footer { padding: 32px; border-radius: var(--radius); background: var(--white); }
.signup-form--footer button { background: var(--ink); box-shadow: none; }
.signup-form--footer button:hover { background: var(--ink-deep); }

footer { padding: 32px 0; background: #0b2622; color: rgba(255,255,255,.6); }
.footer__content { display: flex; align-items: center; justify-content: space-between; }
.brand--footer { color: var(--white); }
.brand--footer .brand__logo-wrap { width: 82px; height: 82px; border-radius: 10px; }
.brand--footer .brand__logo { width: 100%; height: 100%; }
.footer__content p { margin: 0; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 920px) {
  .section { padding: 78px 0; }
  .hero__content, .program__grid, .teacher__grid, .audience__grid, .final-cta__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__content { padding-top: 40px; }
  .signup-card { max-width: 600px; }
  .teacher__portrait { max-width: 480px; margin: 0 auto; width: 100%; }
  .teacher__copy { max-width: 720px; }
  .final-cta__grid { gap: 40px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1140px); }
  .section { padding: 64px 0; }
  .nav { display: none; }
  .hero__content { gap: 14px; padding-top: 14px; padding-bottom: 75px; }
  .mobile-intro { display: flex; order: 1; flex-direction: column; align-items: center; text-align: center; }
  .mobile-intro__badge { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 14px; }
  .mobile-intro__badge img { width: 72px; height: 72px; flex: 0 0 auto; object-fit: contain; border-radius: 9px; box-shadow: 0 10px 24px rgba(0,0,0,.16); }
  .mobile-intro__badge .eyebrow { margin: 0; text-align: left; line-height: 1.45; }
  .mobile-intro h1 { margin-bottom: 2px; }
  .signup-card { order: 2; }
  .hero__copy { order: 3; }
  .hero__copy > .eyebrow, .hero__copy > h1 { display: none; }
  h1 { font-size: 35px; }
  h2 { font-size: 38px; }
  .event-info { display: grid; grid-template-columns: 1fr; gap: 14px; }
  .signup-card, .lesson-card, .benefit-card, .signup-form--footer { padding: 28px 22px; }
  .signup-card h2 { font-size: 34px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; }
  .benefit-card__icon { margin-bottom: 45px; }
  .mini-list { grid-template-columns: 1fr; }
  .portrait-card { min-height: 430px; }
  .audience-list { padding: 13px 20px; }
  .final-cta__event { align-items: flex-start; flex-direction: column; }
  .footer__content { gap: 20px; flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
