:root {
  --ink: #202020;
  --muted: #67615b;
  --paper: #fffaf2;
  --surface: #ffffff;
  --teal: #0d5b59;
  --teal-dark: #073f3e;
  --saffron: #d9822b;
  --rose: #943f45;
  --line: #eadfce;
  --shadow: 0 18px 50px rgba(41, 30, 18, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid rgba(234, 223, 206, 0.8);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 24px;
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 12px; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { background: #efe5d5; color: var(--ink); }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 9px 14px;
  color: var(--ink);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(44px, 8vw, 96px) clamp(20px, 5vw, 72px) 44px;
}
.hero-copy { max-width: 700px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: 1.08; }
h1 {
  max-width: 860px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 700;
}
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: 22px; }
.hero p:not(.eyebrow), .page-hero p, .section-heading p, .split p, .cta p {
  color: var(--muted);
  font-size: 18px;
}
.actions, .footer-links { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.button.primary { background: var(--teal); color: #fff; }
.button.primary:hover { background: var(--teal-dark); }
.button.secondary { border: 1px solid var(--line); background: #fff; color: var(--teal); }
.hero-media { position: relative; margin: 0; }
.hero-media img {
  aspect-ratio: 16 / 10;
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}
.strip span { background: #fff; padding: 18px; color: var(--teal); font-weight: 900; text-align: center; }
.section, .page-hero, .contact-layout, .course-list, .cta {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}
.section-heading { max-width: 780px; margin-bottom: 30px; }
.program-grid, .benefit-grid, .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.program-card, .benefit-grid article, .testimonial-grid blockquote, .bio-panel, .contact-card, .contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(41, 30, 18, 0.06);
}
.program-card { display: flex; min-height: 270px; flex-direction: column; padding: 24px; }
.program-card.featured { background: var(--teal); color: #fff; }
.program-card span { color: var(--saffron); font-weight: 900; text-transform: uppercase; }
.program-card.featured span, .program-card.featured p, .program-card.featured a { color: #fff3dd; }
.program-card p { color: var(--muted); }
.program-card a, .text-link { margin-top: auto; color: var(--teal); font-weight: 900; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.quote-panel { border-left: 6px solid var(--saffron); padding: 28px; background: #fff1dd; border-radius: 8px; }
.quote-panel blockquote { margin: 0; font-family: Georgia, serif; font-size: clamp(26px, 3vw, 40px); line-height: 1.14; }
.quote-panel p { margin-bottom: 0; color: var(--rose); font-weight: 900; }
.muted { background: #f3eadc; }
.benefit-grid { grid-template-columns: repeat(3, 1fr); }
.benefit-grid article, .testimonial-grid blockquote { padding: 24px; }
.benefit-grid p, .testimonial-grid p { color: var(--muted); }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-grid blockquote { margin: 0; }
.testimonial-grid cite { color: var(--teal); font-style: normal; font-weight: 900; }
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(20px, 5vw, 72px) clamp(44px, 7vw, 72px);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}
.cta p { max-width: 700px; color: #e8ddd0; }
.page-hero { max-width: 980px; }
.page-hero h1 { font-size: clamp(42px, 6vw, 76px); }
.course-list { display: grid; gap: 18px; padding-top: 0; }
.course-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(24px, 4vw, 40px);
}
.course-card p, .course-card li { color: var(--muted); }
.course-card ul, .bio-panel ul { margin: 0; padding-left: 20px; }
.about-hero { background: linear-gradient(135deg, rgba(13, 91, 89, 0.1), rgba(217, 130, 43, 0.13)); max-width: none; }
.bio-panel { padding: 28px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr); gap: 24px; padding-top: 0; }
.contact-form { display: grid; gap: 18px; padding: clamp(24px, 4vw, 40px); }
.contact-form label { display: grid; gap: 8px; color: var(--teal); font-weight: 900; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}
textarea { resize: vertical; }
.hidden { display: none; }
.contact-card { align-self: start; padding: 28px; }
.contact-card a { display: block; margin: 12px 0; color: var(--teal); font-weight: 900; }
.contact-card p { color: var(--muted); }
.contact-card hr { border: 0; border-top: 1px solid var(--line); margin: 24px 0; }
.thanks-page { min-height: 100vh; display: grid; place-items: center; }
.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}
.site-footer p { margin: 6px 0 0; color: var(--muted); }
.footer-links a { color: var(--teal); font-weight: 900; text-decoration: none; }

@media (max-width: 980px) {
  .hero, .split, .course-card, .contact-layout { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .strip, .benefit-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .site-header { flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; }
  .site-nav.is-open { display: flex; }
  .site-nav a { border-radius: 8px; background: #fff; }
  .hero { padding-top: 36px; }
  .program-grid, .strip, .benefit-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .cta, .site-footer { flex-direction: column; align-items: flex-start; }
}
