:root {
  --ink: #603520;
  --ink-soft: #7a5540;
  --rust: #a14a1d;
  --brown: #62402b;
  --blush: #ffdfd0;
  --peach: #f2cebe;
  --cream: #fff9ee;
  --white: #ffffff;
  --radius: 18px;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Assistant", "Poppins", sans-serif;
  color: var(--ink);
  background: var(--peach);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: "Heebo", "Assistant", sans-serif;
  font-weight: 700;
  margin: 0 0 .5em;
  line-height: 1.3;
}

p { margin: 0 0 1em; }
a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section--peach { background: var(--peach); }
.section--rust { background: var(--rust); color: var(--white); }
.section--rust h2, .section--rust h3 { color: var(--white); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: var(--rust);
  font-weight: 700;
  margin-bottom: .6em;
  display: block;
}

.section--rust .eyebrow { color: var(--blush); }

.center { text-align: center; }

/* Hero */
.hero {
  position: relative;
  padding: 60px 24px 50px;
  background: var(--peach);
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto 32px;
}

.hero-meta {
  font-size: 1.05rem;
  color: var(--rust);
  line-height: 1.9;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  color: var(--rust);
  text-align: end;
}

.hero-photo {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/8;
  background-size: cover;
  background-position: center 30%;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rust);
  opacity: .16;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-video {
  display: block;
  max-width: var(--max);
  width: 100%;
  margin: 32px auto 0;
  border-radius: var(--radius);
}

.hero-quote {
  max-width: var(--max);
  margin: 32px auto 0;
  text-align: center;
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--rust);
}

/* Intro */
.lede {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 1.4em;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.photo-placeholder {
  position: relative;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rust);
  opacity: .22;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.photo-placeholder--wide { aspect-ratio: 16/10; }

/* Cards grid */
.grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: var(--cream);
  border: 1px solid var(--rust);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .photo-placeholder { border-radius: 0; aspect-ratio: 4/3; }

.card-body { padding: 22px 24px 26px; }

.card h3 {
  color: var(--rust);
  font-size: 1.2rem;
  border-bottom: 1px solid var(--blush);
  padding-bottom: .5em;
  margin-bottom: .6em;
}

.card p { font-size: .96rem; margin: 0; }

/* Curriculum list */
.curriculum {
  max-width: 720px;
  margin: 40px auto 0;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
}

.curriculum li {
  display: flex;
  gap: .7em;
  align-items: flex-start;
  font-size: 1.02rem;
}

.curriculum .mark {
  color: var(--blush);
  font-size: 1.1rem;
  line-height: 1.5;
}

.lotus {
  display: block;
  margin: 40px auto 0;
  width: 56px;
  height: 56px;
  opacity: .8;
}

/* Teachers */
.teacher-role {
  color: var(--rust);
  font-weight: 600;
  font-size: .85rem;
  display: block;
  margin-bottom: .6em;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 30px 28px;
  font-size: .96rem;
}

.testimonial::before {
  content: "”";
  font-family: "Lora", serif;
  font-size: 2.4rem;
  color: var(--rust);
  line-height: 0;
  display: block;
  margin-bottom: .3em;
}

/* Details + form */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.details-grid .who-list {
  margin: 1em 0;
  padding-inline-start: 1.2em;
}

.details-grid .who-list li { margin-bottom: .4em; }

.form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 14px;
}

.form h3 { color: var(--rust); }

.form input, .form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--peach);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
}

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

.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 999px;
  background: var(--rust);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .15s ease, background .15s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover { background: var(--brown); transform: translateY(-1px); }

@media (max-width: 760px) {
  .section { padding: 56px 0; }
  .hero-top { grid-template-columns: 1fr; }
  .hero h1 { text-align: start; }
  .intro-grid { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
}

footer {
  background: var(--ink);
  color: var(--blush);
  text-align: center;
  padding: 40px 24px;
  font-size: .9rem;
}
