:root {
  --teal: #1f5e5a;
  --teal-dark: #123f3c;
  --teal-deep: #0d3432;
  --teal-soft: #dcebe7;
  --gold: #c6a85b;
  --gold-light: #eadcae;
  --cream: #f6f4ee;
  --white: #fff;
  --ink: #203231;
  --muted: #687674;
  --border: #d7dfdc;
  --danger: #a33b36;
  --shadow: 0 18px 50px rgba(20, 63, 60, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Montserrat", Arial, sans-serif; color: var(--ink); background: var(--cream); line-height: 1.65; }
img { max-width: 100%; }
a { color: inherit; }
h1, h2 { margin: 0; font-family: "Playfair Display", Georgia, serif; color: var(--teal-dark); line-height: 1.08; }
h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { margin: 0 0 10px; color: var(--teal-dark); line-height: 1.3; }
p { margin: 0 0 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(246,244,238,.96); border-bottom: 1px solid rgba(31,94,90,.14); backdrop-filter: blur(16px); }
.nav-wrap { width: min(1180px, calc(100% - 40px)); min-height: 88px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--teal-dark); text-decoration: none; text-transform: uppercase; line-height: 1; letter-spacing: .14em; }
.site-brand img { width: 57px; height: 57px; object-fit: contain; mix-blend-mode: multiply; }
.site-brand strong, .site-brand small { display: block; }
.site-brand strong { font-size: 1rem; }
.site-brand small { margin-top: 5px; font-size: .61rem; letter-spacing: .31em; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { position: relative; padding: 10px 0; color: #36504e; text-decoration: none; font-size: .79rem; font-weight: 700; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: 3px; left: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .2s; }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.site-nav .nav-cta { padding: 11px 15px; color: white; background: var(--teal); border-radius: 6px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--teal-dark); }

.home-hero { min-height: 620px; display: grid; grid-template-columns: minmax(0,1.05fr) minmax(340px,.8fr); align-items: center; gap: clamp(48px,5vw,80px); width: min(1180px, calc(100% - 40px)); margin: auto; padding: 64px 0 72px; }
.hero-content { max-width: 650px; }
.eyebrow { margin: 0 0 14px; color: var(--gold); text-transform: uppercase; letter-spacing: .2em; font-size: .76rem; font-weight: 700; }
.lead { max-width: 720px; margin-top: 24px; color: #4e6462; font-size: clamp(1.05rem, 2vw, 1.28rem); }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 36px; }
.button { display: inline-block; padding: 14px 22px; border: 0; border-radius: 6px; color: #fff; background: var(--teal); font: inherit; font-size: .9rem; font-weight: 700; text-decoration: none; cursor: pointer; transition: background .2s, transform .2s; }
.button:hover { background: var(--teal-dark); transform: translateY(-2px); }
.button-light { color: var(--teal-dark); background: var(--gold-light); }
.button-light:hover { color: white; background: var(--gold); }
.text-link { color: var(--teal-dark); font-size: .9rem; font-weight: 700; text-decoration: none; }
.text-link span { margin-left: 5px; color: var(--gold); }
.hero-mark { display: grid; place-items: center; justify-self: center; width: min(430px,100%); aspect-ratio: 1; }
.hero-mark::before, .hero-mark::after { content: none; }
.hero-mark-inner { display: grid; place-items: center; width: 88%; height: 88%; }
.hero-mark img { width: 80%; }

.intro-band { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); align-items: center; gap: clamp(48px,8vw,120px); padding: 72px max(20px, calc((100% - 1180px)/2)); color: white; background: var(--teal-dark); }
.intro-band h2, .spotlight h2, .workshop-hero h1 { color: white; }
.intro-band > div { max-width: 520px; }
.intro-band h2 { font-size: clamp(2.1rem,4vw,3.25rem); }
.intro-band > p { max-width: 620px; margin: 0; font-size: 1.08rem; }
.section, .values-section, .learning-section, .faq-section { width: min(1180px, calc(100% - 40px)); margin: auto; padding: 88px 0; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card { min-height: 250px; padding: 30px; background: white; border: 1px solid var(--border); border-top: 3px solid var(--gold); box-shadow: 0 8px 30px rgba(20,63,60,.04); }
.feature-card .card-number { display: block; margin-bottom: 44px; color: var(--gold); font-size: .75rem; font-weight: 700; }
.feature-card h3 { font-family: "Playfair Display", Georgia, serif; font-size: 1.55rem; }
.feature-card p { color: var(--muted); }
.spotlight { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; align-items: center; padding: 100px max(20px, calc((100% - 1180px)/2)); color: white; background: var(--teal); }
.spotlight-copy { max-width: 680px; }
.spotlight-copy > p:not(.eyebrow) { margin: 24px 0 30px; }
.eyebrow.light { color: var(--gold-light); }
.topic-cloud { display: flex; flex-wrap: wrap; justify-content: center; align-content: center; gap: 14px; }
.topic-cloud span { padding: 14px 20px; border: 1px solid rgba(255,255,255,.28); border-radius: 100px; background: rgba(255,255,255,.08); }
.cta-panel { width: min(1180px, calc(100% - 40px)); margin: 90px auto; padding: 50px; display: flex; align-items: center; justify-content: space-between; gap: 35px; background: var(--gold-light); }
.cta-panel h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.cta-panel p:not(.eyebrow) { margin: 12px 0 0; }
.cta-panel > .button { flex: 0 0 auto; min-width: 230px; text-align: center; white-space: nowrap; }

.page-hero { padding: 110px max(20px, calc((100% - 960px)/2)); text-align: center; background: linear-gradient(180deg,#edf2ed 0%,var(--cream) 100%); }
.page-hero .lead { margin-right: auto; margin-left: auto; }
.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; }
.prose { font-size: 1.07rem; }
.prose p { margin-bottom: 24px; }
.values-section, .learning-section { width: auto; padding-right: max(20px, calc((100% - 1180px)/2)); padding-left: max(20px, calc((100% - 1180px)/2)); background: #e8efeb; }
.quote-band { padding: 90px max(20px, calc((100% - 940px)/2)); text-align: center; background: var(--teal-dark); }
.quote-band blockquote { margin: 0; color: white; font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.7rem,4vw,3rem); line-height: 1.4; }

.program-list { display: grid; gap: 24px; }
.program-card { padding: 38px; background: white; border: 1px solid var(--border); }
.program-card.featured { border-left: 5px solid var(--gold); }
.program-card h2 { margin-bottom: 16px; font-size: clamp(1.8rem,3vw,2.6rem); }
.program-card > p { max-width: 790px; }
.program-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.program-meta span { padding: 6px 10px; color: var(--teal-dark); background: var(--teal-soft); border-radius: 3px; text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; font-weight: 700; }
.check-list { margin: 22px 0 28px; padding: 0; list-style: none; }
.check-list li { margin: 8px 0; }
.check-list li::before { content: "✓"; margin-right: 10px; color: var(--gold); font-weight: 700; }
.muted { color: var(--muted); font-size: .9rem; }

.workshop-hero { min-height: 600px; display: grid; align-items: center; padding: 100px max(20px, calc((100% - 1180px)/2)); color: white; background: radial-gradient(circle at 85% 35%,rgba(198,168,91,.3),transparent 30%), var(--teal-dark); }
.workshop-hero > div { max-width: 850px; }
.workshop-hero .lead { color: #e6efec; }
.workshop-hero .button { margin-top: 18px; }
.topic-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #b8ceca; border-left: 1px solid #b8ceca; }
.topic-grid div { min-height: 170px; padding: 25px; border-right: 1px solid #b8ceca; border-bottom: 1px solid #b8ceca; }
.topic-grid span { color: var(--gold); font-size: .72rem; font-weight: 700; }
.topic-grid h3 { margin-top: 50px; }
.details-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.details-grid > div { padding: 28px; border-left: 2px solid var(--gold); }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 24px; padding-top: 42px; }
.contact-card { display: flex; flex-direction: column; align-items: flex-start; min-height: 330px; padding: 38px; background: white; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-card h2 { margin-bottom: 16px; font-size: clamp(1.7rem,3vw,2.4rem); }
.contact-card h2 a { text-decoration: none; }
.contact-card > p:not(.eyebrow) { max-width: 520px; }
.contact-card .button { margin-top: auto; }
.faq-section { max-width: 900px; padding-top: 30px; }
details { padding: 24px 0; border-top: 1px solid var(--border); }
details:last-child { border-bottom: 1px solid var(--border); }
summary { color: var(--teal-dark); font-weight: 700; cursor: pointer; }
details p { margin: 16px 0 0; color: var(--muted); }

.form-page { width: min(920px, calc(100% - 32px)); margin: 0 auto; padding: 72px 0 100px; }
.form-intro { max-width: 780px; margin: 0 auto 40px; text-align: center; }
.form-intro h1 { font-size: clamp(2.5rem,6vw,4.5rem); }
.form-intro .lead { margin-right: auto; margin-left: auto; }
.notice { color: var(--muted); font-size: .9rem; }
.form-card { overflow: hidden; background: rgba(255,255,255,.96); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow); }
.form-section { padding: 34px; border-bottom: 1px solid var(--border); }
.form-section h2 { margin-bottom: 24px; font-family: "Montserrat",Arial,sans-serif; font-size: 1.2rem; }
.section-title-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.section-title-row h2 { margin-bottom: 0; }
.compact-button { padding: 10px 14px; font-size: .82rem; }
.student-list { display: grid; gap: 22px; }
.student-entry { padding: 22px; background: #fbfcfb; border: 1px solid var(--border); border-radius: 8px; }
.student-entry-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.student-entry h3 { margin-bottom: 0; font-family: "Montserrat",Arial,sans-serif; font-size: 1rem; }
.remove-student-button { padding: 8px 12px; border: 1px solid var(--border); border-radius: 6px; color: var(--danger); background: #fff; font: inherit; font-size: .82rem; font-weight: 700; cursor: pointer; }
.remove-student-button:hover { border-color: var(--danger); }
.grid { display: grid; gap: 20px; }
.two-col { grid-template-columns: repeat(2,minmax(0,1fr)); }
label, legend { color: var(--ink); font-size: .93rem; font-weight: 600; }
label > span, legend > span { color: var(--danger); }
input[type="text"], input[type="tel"], input[type="email"], select, textarea { width: 100%; margin-top: 8px; padding: 12px 13px; color: var(--ink); background: var(--white); border: 1px solid #bbc8c5; border-radius: 7px; outline: none; font: inherit; transition: border-color .2s,box-shadow .2s; }
textarea { min-height: 105px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(31,94,90,.12); }
fieldset { min-width: 0; margin: 24px 0 0; padding: 0; border: 0; }
.choice-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-top: 12px; }
.choice-grid.grades { grid-template-columns: repeat(4,minmax(0,1fr)); }
.choice-grid label, .scale-row label { display: flex; align-items: center; gap: 9px; padding: 11px 12px; background: #fbfcfb; border: 1px solid var(--border); border-radius: 7px; font-weight: 500; cursor: pointer; }
input[type="radio"],input[type="checkbox"] { width: 17px; height: 17px; flex: 0 0 auto; accent-color: var(--teal); }
.scale-row { display: grid; grid-template-columns: 1.6fr repeat(5,56px) 1.6fr; gap: 8px; align-items: center; margin-top: 12px; }
.scale-row > span { color: var(--muted); text-align: center; font-size: .8rem; }
.scale-row label { justify-content: center; padding: 11px 8px; }
.form-section > label { display: block; margin-top: 20px; }
.submit-area { padding: 30px 32px 34px; text-align: center; }
.submit-area button { padding: 14px 24px; border: 0; border-radius: 6px; color: white; background: var(--teal); font: inherit; font-weight: 700; cursor: pointer; }
.submit-area button:hover { background: var(--teal-dark); }
.submit-area button:disabled { opacity: .65; cursor: wait; }
.status { min-height: 24px; margin: 14px 0 0; font-weight: 600; }
.status.success { color: var(--teal-dark); }
.status.error,.field-error { color: var(--danger); }
.field-error { margin: 8px 0 0; font-size: .84rem; }
.contact-note { margin: 8px 0 0; color: var(--muted); font-size: .88rem; }
.contact-note a { color: var(--teal-dark); font-weight: 600; text-decoration: none; }
.honeypot { position: absolute !important; left: -9999px !important; }

.site-footer { padding: 65px max(20px, calc((100% - 1180px)/2)) 25px; color: #d5e2df; background: var(--teal-deep); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 50px; padding-bottom: 50px; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { width: 60px; height: 60px; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; }
.footer-wordmark { display: block; color: white; font-family: "Montserrat",Arial,sans-serif; line-height: 1; text-transform: uppercase; letter-spacing: .14em; }
.footer-wordmark strong, .footer-wordmark small { display: block; }
.footer-wordmark strong { font-size: .9rem; }
.footer-wordmark small { margin-top: 5px; font-size: .56rem; font-weight: 500; letter-spacing: .31em; }
.footer-brand p { margin: 7px 0 0; font-size: .78rem; }
.site-footer h3 { margin-bottom: 14px; color: var(--gold-light); text-transform: uppercase; letter-spacing: .15em; font-size: .72rem; }
.site-footer a { display: block; margin: 8px 0; color: #d5e2df; font-size: .85rem; text-decoration: none; }
.site-footer a:hover { color: white; }
.copyright { margin: 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .75rem; }

@media (max-width: 900px) {
  .menu-toggle { display: block; cursor: pointer; }
  .site-nav { position: absolute; top: 88px; right: 0; left: 0; display: none; align-items: stretch; gap: 0; padding: 14px 20px 24px; background: var(--cream); border-bottom: 1px solid var(--border); box-shadow: 0 15px 30px rgba(20,63,60,.1); }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 13px 5px; }
  .site-nav .nav-cta { margin-top: 8px; padding: 12px; text-align: center; }
  .home-hero { min-height: auto; grid-template-columns: 1fr; padding: 70px 0; }
  .hero-mark { width: min(500px,90%); margin: 10px auto; }
  .intro-band, .spotlight, .split-section { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .feature-card .card-number { margin-bottom: 35px; }
}

@media (max-width: 680px) {
  .nav-wrap { width: min(100% - 24px,1180px); min-height: 76px; }
  .site-brand img { width: 48px; height: 48px; }
  .site-nav { top: 76px; }
  .home-hero, .section, .values-section, .learning-section, .faq-section, .cta-panel { width: min(100% - 24px,1180px); }
  .home-hero { grid-template-columns: 1fr; padding: 55px 0; }
  .hero-mark { display: none; }
  .intro-band, .spotlight { padding-top: 70px; padding-bottom: 70px; }
  .section, .values-section, .learning-section, .faq-section { padding-top: 75px; padding-bottom: 75px; }
  .section-heading { display: block; }
  .section-heading .text-link { display: inline-block; margin-top: 20px; }
  .cta-panel { display: block; margin: 55px auto; padding: 30px 24px; }
  .cta-panel .button { width: 100%; margin-top: 20px; white-space: normal; }
  .page-hero { padding-top: 75px; padding-bottom: 75px; }
  .program-card, .contact-card { padding: 28px 22px; }
  .topic-grid, .details-grid, .contact-layout { grid-template-columns: 1fr; }
  .contact-layout { padding-top: 34px; }
  .contact-card { min-height: 300px; }
  .topic-grid div { min-height: 130px; }
  .topic-grid h3 { margin-top: 25px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-page { width: min(100% - 20px,920px); padding-top: 50px; }
  .two-col,.choice-grid,.choice-grid.grades { grid-template-columns: 1fr; }
  .section-title-row,.student-entry-header { align-items: flex-start; flex-direction: column; }
  .form-section { padding: 24px 20px; }
  .submit-area { padding: 26px 20px 30px; }
  .scale-row { grid-template-columns: repeat(5,1fr); }
  .scale-row > span { grid-column: 1/-1; }
  .scale-row > span:first-child { order: -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
