:root {
  --green: #07824c;
  --green-dark: #075c3e;
  --blue: #123e72;
  --orange: #ed5530;
  --ink: #18342c;
  --muted: #65776f;
  --paper: #f8f8f3;
  --cream: #eef3e9;
  --line: #dce5dc;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: 'DM Sans', sans-serif; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }

.topbar { background: var(--blue); color: #dce8f2; font-size: 12px; letter-spacing: .04em; }
.topbar-inner { min-height: 34px; display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: var(--white); font-weight: 600; }
.site-header { position: absolute; z-index: 5; width: 100%; top: 34px; }
.nav-wrap { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); }
.brand img { width: 47px; height: 47px; object-fit: cover; border-radius: 50%; border: 2px solid var(--white); }
.brand strong, .brand small { display: block; line-height: 1.1; }
.brand strong { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; }
.brand small { margin-top: 4px; color: #d2e0d8; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 34px; color: var(--white); font-size: 13px; font-weight: 600; }
.site-nav a:not(.nav-cta) { opacity: .9; transition: opacity .2s; }
.site-nav a:not(.nav-cta):hover { opacity: 1; }
.nav-cta { padding: 10px 15px; border: 1px solid rgba(255,255,255,.5); border-radius: 2px; }
.nav-cta span, .button span { margin-left: 11px; }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 720px; overflow: hidden; color: var(--white); background: linear-gradient(110deg, #075b3f 0%, #097c4d 46%, #12684a 100%); }
.hero::before { position: absolute; content: ''; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; left: -170px; bottom: -260px; }
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; min-height: 720px; padding-top: 90px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 27px; height: 2px; background: currentColor; }
.hero .eyebrow { color: #f6b15d; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: 'Playfair Display', serif; font-weight: 600; letter-spacing: -.03em; line-height: 1.08; }
h1 { margin-bottom: 23px; font-size: clamp(48px, 5vw, 70px); }
h1 em, h2 em { color: #f9a35e; font-style: italic; }
.hero-text { max-width: 430px; color: #d6e8df; font-size: 16px; }
.hero-actions { display: flex; align-items: center; gap: 27px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; padding: 14px 19px; font-size: 13px; font-weight: 700; border-radius: 2px; }
.button-primary { color: var(--green-dark); background: var(--white); }
.button-light { color: var(--green-dark); background: #f8d49a; }
.text-link { color: var(--white); font-size: 13px; font-weight: 700; }
.text-link span, .map-link span { color: var(--orange); margin-left: 8px; }
.hero-note { display: flex; align-items: center; gap: 12px; max-width: 270px; margin-top: 72px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.25); color: #cee2d6; font-size: 11px; }
.note-mark { color: #f6b15d; font-size: 19px; }
.hero-media { position: relative; height: 525px; align-self: end; overflow: hidden; border: 11px solid rgba(255,255,255,.15); border-bottom: 0; border-radius: 230px 230px 0 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.image-caption { position: absolute; bottom: 0; left: 0; display: flex; flex-direction: column; width: 100%; padding: 50px 26px 22px; background: linear-gradient(transparent, rgba(0,0,0,.68)); font-size: 12px; }
.image-caption strong { font-size: 15px; }
.image-caption span { color: #d8e3df; font-size: 11px; }
.hero-stamp { position: absolute; right: 38px; bottom: 60px; color: rgba(255,255,255,.55); font-size: 9px; letter-spacing: .15em; text-align: center; }
.hero-stamp strong { color: rgba(255,255,255,.8); font-family: 'Playfair Display', serif; font-size: 17px; }

.section { padding: 115px 0; }
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
h2 { margin-bottom: 24px; color: var(--green-dark); font-size: clamp(38px, 4vw, 55px); }
.intro-copy { max-width: 600px; }
.lead { color: var(--green-dark); font-family: 'Playfair Display', serif; font-size: 23px; line-height: 1.45; }
.intro-copy > p:not(.lead) { max-width: 525px; color: var(--muted); font-size: 15px; }
.text-link.dark { display: inline-block; margin-top: 13px; color: var(--green-dark); }

.learning { background: var(--cream); }
.centered { max-width: 650px; margin: 0 auto 55px; text-align: center; }
.centered .eyebrow { justify-content: center; }
.heading-intro { color: var(--muted); font-size: 15px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.value-card { min-height: 260px; padding: 33px 31px; border: 1px solid var(--line); background: rgba(255,255,255,.35); }
.value-card.featured { color: var(--white); background: var(--green-dark); border-color: var(--green-dark); }
.card-number { display: block; margin-bottom: 43px; color: var(--orange); font-family: 'Playfair Display', serif; font-size: 14px; }
.value-card h3 { margin-bottom: 13px; font-family: 'Playfair Display', serif; font-size: 23px; font-weight: 600; }
.value-card p { margin: 0; color: var(--muted); font-size: 13px; }
.featured p { color: #cde0d5; }

.story { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 90px; }
.story-media { height: 545px; overflow: hidden; }
.story-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.story-copy { max-width: 430px; }
.story-copy > p:not(.eyebrow) { color: var(--muted); font-size: 15px; }
.quote { display: flex; gap: 12px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); }
.quote > span { color: var(--orange); font-family: Georgia, serif; font-size: 48px; line-height: .7; }
.quote p { max-width: 230px; margin: 0; color: var(--blue); font-family: 'Playfair Display', serif; font-size: 18px; line-height: 1.35; }

.meeting { padding-top: 0; background: var(--paper); }
.meeting-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 90px; padding: 64px; color: var(--white); background: var(--blue); }
.meeting-copy h2 { color: var(--white); font-size: clamp(35px, 3.5vw, 48px); }
.meeting-copy > p:not(.eyebrow) { max-width: 355px; margin: 0; color: #cbdbe8; font-size: 15px; }
.meeting-media { position: relative; min-height: 360px; margin: 0; overflow: hidden; }
.meeting-media img { width: 100%; height: 100%; object-fit: cover; }
.meeting-media::after { position: absolute; inset: 0; content: ''; background: linear-gradient(transparent 58%, rgba(0,0,0,.62)); pointer-events: none; }
.meeting-media figcaption { position: absolute; z-index: 1; right: 19px; bottom: 15px; left: 19px; color: var(--white); font-size: 12px; font-weight: 700; }

.teachers { background: var(--cream); }
.teachers-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 43px; }
.teachers-head .section-heading { flex: 1; }
.teachers-head > p { max-width: 315px; margin: 0 0 8px; color: var(--muted); font-size: 14px; }
.leadership-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; margin-bottom: 17px; }
.teachers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.teacher-card { overflow: hidden; border: 1px solid var(--line); background: var(--paper); }
.leader-card { display: grid; grid-template-columns: 170px 1fr; align-items: center; }
.teacher-photo { aspect-ratio: 1; overflow: hidden; border-radius: 50%; background: #dfe9e0; scale: 0.8; border: 5px solid #0d4a33;}
.teacher-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transform: scale(1.12); }
.teacher-info { padding: 19px 20px 21px; }
.teacher-info span { display: block; margin-bottom: 8px; color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: .1em; line-height: 1.35; text-transform: uppercase; }
.teacher-info h3 { margin: 0; color: var(--green-dark); font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; line-height: 1.2; }
.leader-card .teacher-info { padding: 23px 26px; }
.leader-card .teacher-info h3 { font-size: 24px; }
.teacher-info p { margin: 13px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.gallery { background: #f2f5ef; }
.gallery-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 43px; }
.gallery-head .section-heading { flex: 1; }
.gallery-head > p { max-width: 290px; margin: 0 0 8px; color: var(--muted); font-size: 14px; }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 240px 240px; gap: 14px; }
.gallery-item { position: relative; min-height: 0; margin: 0; overflow: hidden; }
.gallery-item.large { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after { position: absolute; inset: 0; content: ''; background: linear-gradient(transparent 55%, rgba(0,0,0,.62)); pointer-events: none; }
.gallery-item figcaption { position: absolute; z-index: 1; bottom: 16px; left: 18px; color: var(--white); font-size: 12px; font-weight: 700; }

.contact { color: var(--white); background: var(--green-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.contact h2 { color: var(--white); }
.eyebrow.light { color: #f6b15d; }
.contact-copy > p:not(.eyebrow) { max-width: 440px; color: #c7ded1; font-size: 15px; }
.contact-copy .button { margin-top: 20px; }
.contact-details { border-top: 1px solid rgba(255,255,255,.25); }
.detail { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.detail span { color: #a8cabb; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.detail strong { color: var(--white); font-size: 14px; font-weight: 500; text-align: right; }
.detail a:hover, .map-link:hover { color: #f6b15d; }
.map-link { display: inline-block; margin-top: 24px; color: #f6b15d; font-size: 13px; font-weight: 700; }
.site-footer { background: #064a35; color: #bdd3c7; font-size: 11px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; min-height: 90px; }
.footer-brand { transform: scale(.78); transform-origin: left center; }
.footer-inner p { margin: 0; }

@media (max-width: 800px) {
  .container { width: min(100% - 38px, 580px); }
  .topbar-inner { min-height: 32px; }
  .topbar-inner span { display: none; }
  .topbar-inner a { margin-left: auto; font-size: 11px; }
  .site-header { top: 32px; }
  .nav-wrap { padding: 16px 0; }
  .menu-toggle { display: block; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.45); padding: 8px 12px; font-family: inherit; font-size: 12px; }
  .site-nav { position: absolute; top: 82px; right: 19px; display: none; flex-direction: column; align-items: stretch; gap: 0; min-width: 160px; padding: 9px; background: var(--green-dark); box-shadow: 0 12px 30px rgba(0,0,0,.2); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 8px; }
  .site-nav .nav-cta { border: 0; }
  .hero { min-height: auto; }
  .hero-grid { display: flex; flex-direction: column; gap: 45px; min-height: 0; padding: 180px 0 0; }
  .hero-copy { padding-bottom: 0; }
  h1 { font-size: clamp(43px, 13vw, 63px); }
  .hero-note { margin-top: 45px; }
  .hero-media { width: 100%; height: 390px; border-width: 7px; border-bottom: 0; }
  .hero-stamp { display: none; }
  .section { padding: 78px 0; }
  .intro-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .meeting-grid { grid-template-columns: 1fr; gap: 35px; padding: 38px; }
  .meeting-media { min-height: 330px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: auto; }
  .card-number { margin-bottom: 25px; }
  .story-media { height: 390px; }
  .teachers-head { display: block; }
  .teachers-head > p { margin-top: 20px; }
  .leadership-grid { grid-template-columns: 1fr; }
  .teachers-grid { grid-template-columns: repeat(2, 1fr); }
  .leader-card { grid-template-columns: 140px 1fr; }
  .gallery-head { display: block; }
  .gallery-head > p { margin-top: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 180px 180px; }
  .gallery-item.large { grid-row: span 1; grid-column: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .contact-details { margin-top: 10px; }
  .footer-inner { flex-wrap: wrap; gap: 12px 30px; padding: 20px 0; }
  .footer-brand { width: 100%; }
}

@media (max-width: 430px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .detail { display: block; }
  .detail strong { display: block; margin-top: 7px; text-align: left; }
  .leader-card { display: block; }
  .meeting-grid { padding: 29px 20px; }
  .meeting-media { min-height: 250px; }
  .leader-card .teacher-photo { width: 150px; margin: 18px auto 0; }
  .leader-card .teacher-info { padding: 5px 20px 22px; text-align: center; }
  .teachers-grid { gap: 10px; }
  .teacher-info { padding: 14px 12px 16px; }
  .teacher-info h3 { font-size: 16px; }
}
