:root {
  --bg:#fbfaf6;
  --surface:#fff;
  --ink:#173f37;
  --muted:#64746d;
  --primary:#205b48;
  --accent:#ddee9b;
  --line:#e0e5db;
  --soft:#eff2e8;
  --gold:#e4aa59;
  --radius:20px;
  color-scheme:light;
}

[data-theme=dark] {
  --bg:#12241f;
  --surface:#1c3029;
  --ink:#e8efe3;
  --muted:#b1bfb5;
  --primary:#b9d99b;
  --accent:#39513a;
  --line:#3b5145;
  --soft:#20382c;
  --gold:#e4b46d;
  color-scheme:dark;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:100px;
}

body {
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Tahoma,"Segoe UI",sans-serif;
  font-size:15px;
  line-height:1.9;
}

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

a:hover {
  color:var(--primary);
}

button,input,textarea,select {
  font:inherit;
}

button,a,input,textarea,select,summary {
  -webkit-tap-highlight-color:transparent;
}

button {
  cursor:pointer;
}

img {
  max-width:100%;
  display:block;
  object-fit:cover;
}

h1,h2,h3,p {
  margin-top:0;
}

h1,h2,h3 {
  line-height:1.65;
}

h1 {
  font-size:clamp(2rem,4vw,3.7rem);
  letter-spacing:-1.5px;
}

h2 {
  font-size:clamp(1.5rem,2.4vw,2.1rem);
  letter-spacing:-.7px;
}

h3 {
  font-size:1.12rem;
}

p {
  color:var(--muted);
}

:focus-visible {
  outline:3px solid var(--gold);
  outline-offset:5px;
}

[hidden] {
  display:none!important;
}

.container {
  width:min(1180px,calc(100% - 64px));
  margin-inline:auto;
}

.section {
  padding-block:68px;
}

.narrow {
  max-width:760px;
}

.article {
  max-width:860px;
}

.muted,small {
  color:var(--muted);
}

.skip-link {
  position:absolute;
  top:-100px;
  right:20px;
  background:var(--surface);
  padding:12px;
  z-index:100;
}

.skip-link:focus {
  top:12px;
}

.topbar {
  background:#193f35;
  color:#e6eeda;
  font-size:.72rem;
  padding:8px 0;
}

.topbar .container {
  display:flex;
  justify-content:space-between;
}

.topbar span {
  opacity:.65;
}

.site-header {
  border-bottom:1px solid var(--line);
  background:var(--bg);
  position:relative;
  z-index:10;
}

.header-inner {
  min-height:100px;
  display:flex;
  align-items:center;
  gap:26px;
}

.brand {
  display:flex;
  align-items:center;
  gap:13px;
  font-weight:bold;
  font-size:1.25rem;
  white-space:nowrap;
}

.brand img {
  width:50px;
  height:50px;
  object-fit:contain;
}

.brand small {
  display:block;
  font-weight:normal;
  font-size:.65rem;
  margin-top:1px;
}

.brand-mark {
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  background:var(--primary);
  color:var(--bg);
  border-radius:16px 16px 4px 16px;
  font-size:2rem;
}

nav {
  display:flex;
  gap:26px;
  align-items:center;
}

.header-inner nav {
  margin-right:auto;
  font-size:.8rem;
}

.button {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  border:1px solid var(--primary);
  border-radius:10px;
  background:var(--primary);
  color:var(--bg);
  padding:12px 24px;
  font-weight:bold;
  font-size:.84rem;
  transition:transform .18s,opacity .18s;
}

.button:hover {
  color:var(--bg);
  opacity:.88;
  transform:translateY(-2px);
}

.button.small {
  padding:10px 16px;
  font-size:.75rem;
}

.button.secondary {
  background:transparent;
  color:var(--ink);
  border-color:var(--line);
}

.theme-toggle,.menu-toggle {
  border:1px solid var(--line);
  background:transparent;
  color:var(--ink);
  border-radius:10px;
  padding:6px 10px;
}

.theme-toggle {
  font-size:1.3rem;
}

.menu-toggle {
  display:none;
}

.nav-dropdown {
  position:relative;
}

.nav-dropdown summary {
  cursor:pointer;
}

.nav-dropdown>div {
  position:absolute;
  top:36px;
  min-width:200px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:12px;
  padding:16px;
  box-shadow:0 10px 30px #0001;
}

.nav-dropdown a {
  display:block;
  padding:6px;
}

.eyebrow {
  font-size:.75rem;
  font-weight:bold;
  color:var(--primary);
  display:block;
  margin-bottom:15px;
  letter-spacing:.3px;
}

.dot {
  display:inline-block;
  width:7px;
  height:7px;
  background:var(--primary);
  border-radius:50%;
  margin-left:8px;
}

.hero {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:65px;
  align-items:center;
  padding-block:65px 75px;
}

.hero h1 {
  font-size:clamp(2.7rem,4.9vw,4.4rem);
  line-height:1.6;
  margin-bottom:20px;
  letter-spacing:-2px;
}

.hero h1 em {
  font-style:normal;
  position:relative;
  z-index:0;
}

.hero h1 em:after {
  content:"";
  height:17px;
  position:absolute;
  bottom:6px;
  right:-4px;
  left:-6px;
  background:var(--accent);
  z-index:-1;
  border-radius:80% 15%;
}

.hero-copy>p {
  max-width:450px;
  line-height:2.2;
  font-size:.94rem;
}

.hero-actions {
  display:flex;
  align-items:center;
  gap:24px;
  margin-top:30px;
}

.text-link {
  font-size:.8rem;
  font-weight:bold;
  color:var(--primary);
}

.hero-note {
  display:flex;
  gap:10px;
  align-items:center;
  margin-top:36px;
  color:var(--muted);
  font-size:.7rem;
}

.hero-note span {
  font-size:1.7rem;
  color:var(--gold);
}

.hero-art {
  height:460px;
  position:relative;
  border-radius:150px 150px 26px 26px;
  background:#e5ebd8;
  overflow:hidden;
  color:#214c3e;
}

.orbit {
  position:absolute;
  border:1px solid #bac9aa;
  border-radius:50%;
  width:500px;
  height:500px;
  left:-150px;
  top:110px;
}

.orbit-two {
  left:130px;
  top:-320px;
}

.art-star {
  position:absolute;
  left:35px;
  top:35px;
  font-size:4rem;
  color:#678659;
  line-height:1;
}

.art-label {
  position:absolute;
  right:45px;
  top:90px;
  font-size:.7rem;
  transform:rotate(-8deg);
  background:#fff8;
  padding:8px 14px;
  border-radius:5px;
}

.school-drawing {
  position:absolute;
  left:12%;
  right:12%;
  top:135px;
  height:260px;
}

.school-body {
  width:210px;
  height:170px;
  position:absolute;
  bottom:37px;
  left:50%;
  transform:translateX(-50%);
  background:#f4dfb3;
  border:2px solid #4e6850;
  border-radius:4px;
  z-index:2;
}

.school-roof {
  width:180px;
  height:180px;
  background:#436c55;
  position:absolute;
  left:50%;
  top:-20px;
  transform:translateX(-50%) rotate(45deg);
  border-radius:8px;
  z-index:1;
}

.school-clock {
  position:absolute;
  left:calc(50% - 20px);
  top:8px;
  font-size:2rem;
  background:#fff4dc;
  border:2px solid #607655;
  border-radius:50%;
  width:40px;
  height:40px;
  line-height:35px;
  text-align:center;
}

.school-windows {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px 30px;
  margin:60px 22px 0;
}

.school-windows i {
  height:27px;
  background:#87afa1;
  border:3px solid #fff5d9;
  border-radius:12px 12px 0 0;
  box-shadow:0 0 0 1px #708875;
}

.school-door {
  position:absolute;
  bottom:0;
  left:calc(50% - 16px);
  width:32px;
  height:48px;
  background:#496c57;
  border-radius:15px 15px 0 0;
  border:3px solid #fff1ce;
}

.school-ground {
  position:absolute;
  bottom:23px;
  height:20px;
  border-radius:50%;
  width:100%;
  background:#becfaa;
  z-index:0;
}

.tree {
  position:absolute;
  width:43px;
  height:100px;
  background:#689771;
  border-radius:70% 70% 40% 40%;
  bottom:45px;
  z-index:3;
}

.tree:after {
  content:"";
  height:50px;
  width:5px;
  position:absolute;
  bottom:-15px;
  left:19px;
  background:#5b6645;
}

.tree-one {
  left:0;
}

.tree-two {
  right:0;
  height:80px;
  background:#8ea66d;
}

.art-card {
  position:absolute;
  bottom:20px;
  right:30px;
  left:30px;
  z-index:4;
  display:flex;
  align-items:center;
  gap:15px;
  border:1px solid #fff;
  background:#ffffffed;
  border-radius:12px;
  padding:15px 20px;
  box-shadow:0 10px 30px #244b3510;
  font-weight:bold;
  font-size:.78rem;
}

.art-card>span {
  background:#edf2dc;
  border-radius:10px;
  padding:3px 15px;
  font-size:1.8rem;
}

.art-card small {
  display:block;
  font-size:.63rem;
  margin-top:3px;
  color:#738270;
  font-weight:normal;
}

.values-strip {
  border-block:1px solid var(--line);
  background:var(--soft);
}

.values-strip .container {
  display:flex;
  justify-content:space-between;
  padding-block:25px;
  font-size:.85rem;
}

.section-heading {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  margin-bottom:32px;
}

.section-heading h2 {
  margin:0;
}

.section-heading .eyebrow {
  margin-bottom:6px;
}

.card-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:25px;
}

.card {
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--surface);
  overflow:hidden;
}

.card-image {
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:16/10;
  background:var(--soft);
  overflow:hidden;
  font-size:4rem;
}

.card-image img {
  width:100%;
  height:100%;
  transition:transform .3s;
}

.blog-card:hover .card-image img {
  transform:scale(1.035);
}

.card-body {
  padding:24px;
}

.meta {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  color:var(--muted);
  font-size:.68rem;
  margin-bottom:14px;
}

.card-body h3 {
  margin-bottom:12px;
}

.card-body p {
  font-size:.8rem;
}

.text-card {
  padding:30px;
}

.text-card h2 {
  font-size:1.3rem;
}

.card-symbol {
  font-size:1.8rem;
  display:block;
  margin-bottom:20px;
  color:var(--primary);
}

.staff-section {
  background:var(--soft);
  border-block:1px solid var(--line);
}

.staff-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:26px;
}

.employee-image {
  aspect-ratio:4/4.5;
  background:var(--accent);
  border-radius:90px 90px 16px 16px;
  overflow:hidden;
  display:grid;
  place-items:center;
  font-size:4rem;
}

.employee-image img {
  width:100%;
  height:100%;
}

.employee-card {
  text-align:center;
}

.employee-card h3 {
  margin:18px 0 4px;
}

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

.empty-state {
  grid-column:1/-1;
  border:1px dashed var(--line);
  border-radius:var(--radius);
  padding:48px 30px;
  text-align:center;
  background:var(--surface);
}

.empty-state>span {
  font-size:2.5rem;
  color:var(--primary);
}

.empty-state h2,.empty-state h3 {
  margin-bottom:12px;
}

.empty-state p {
  margin-bottom:0;
}

.empty-state .button {
  margin-top:25px;
}

.testimonial {
  padding:28px;
  margin:0;
}

.testimonial blockquote {
  margin:20px 0;
  font-size:.85rem;
}

.testimonial figcaption {
  display:flex;
  align-items:center;
  gap:12px;
  font-size:.8rem;
}

.testimonial figcaption img {
  width:45px;
  height:45px;
  border-radius:50%;
}

.testimonial small {
  display:block;
}

.rating {
  color:#a87520;
  font-size:.85rem;
}

.invitation {
  padding:55px;
  text-align:center;
  border:1px solid var(--line);
  background:var(--accent);
  border-radius:24px;
  margin-block:30px 80px;
}

.invitation h2 {
  font-size:2.1rem;
}

.quote-banner {
  margin-top:45px;
  padding:30px;
  border-right:4px solid var(--gold);
  background:var(--soft);
  border-radius:15px;
}

.quote-banner img {
  max-height:180px;
  border-radius:10px;
}

.site-footer {
  border-top:1px solid var(--line);
  background:var(--soft);
}

.newsletter {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px;
  align-items:center;
  border-bottom:1px solid var(--line);
  padding-block:45px;
}

.newsletter h2 {
  font-size:1.4rem;
  margin-bottom:10px;
}

.newsletter p {
  font-size:.8rem;
  margin:0;
}

.newsletter .eyebrow {
  margin-bottom:4px;
}

.newsletter-form label {
  font-size:.75rem;
}

.newsletter-form>div,.search-form>div {
  display:flex;
  gap:8px;
}

.newsletter-form input {
  min-width:0;
}

.footer-grid {
  display:grid;
  grid-template-columns:2fr repeat(3,1fr);
  gap:40px;
  padding-block:45px;
}

.footer-grid h3 {
  font-size:.9rem;
}

.footer-grid p {
  font-size:.77rem;
}

.footer-grid>div>a:not(.brand) {
  display:block;
  color:var(--muted);
  font-size:.75rem;
  margin-bottom:9px;
}

.socials {
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  font-size:.72rem;
}

.footer-bottom {
  display:flex;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid var(--line);
  padding-block:20px;
  font-size:.64rem;
  color:var(--muted);
}

.footer-logos {
  display:flex;
  gap:20px;
  padding-bottom:25px;
}

.footer-logos img {
  width:65px;
  height:65px;
  object-fit:contain;
}

.page-heading {
  margin-bottom:40px;
}

.page-heading h1 {
  margin-bottom:18px;
}

.page-heading .meta {
  justify-content:flex-start;
}

.search-form {
  max-width:550px;
  margin-bottom:30px;
}

.search-form label {
  display:block;
  font-size:.75rem;
  margin-bottom:8px;
}

input,textarea,select {
  width:100%;
  padding:12px 14px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:9px;
  color:var(--ink);
  min-width:0;
}

input[type=checkbox],input[type=radio] {
  width:auto;
  accent-color:var(--primary);
  margin-left:8px;
}

input[type=file] {
  font-size:.8rem;
}

textarea {
  resize:vertical;
}

.category-list {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:35px;
}

.category-list a {
  font-size:.77rem;
  border:1px solid var(--line);
  border-radius:25px;
  padding:8px 20px;
}

.category-list a[aria-current] {
  background:var(--primary);
  color:var(--bg);
}

.pagination {
  justify-content:center;
  margin-top:40px;
  font-size:.8rem;
}

.article-image {
  width:100%;
  max-height:480px;
  border-radius:20px;
  margin-bottom:35px;
}

.article-content {
  line-height:2.3;
}

.article-content p {
  color:var(--ink);
}

.lead {
  font-size:1.1rem;
}

.richtext {
  overflow-wrap:anywhere;
}

.richtext p:last-child {
  margin-bottom:0;
}

.richtext a {
  color:var(--primary);
  text-decoration:underline;
}

.richtext table {
  display:block;
  max-width:100%;
  overflow-x:auto;
  border-collapse:collapse;
}

.richtext td,.richtext th {
  padding:8px;
  border:1px solid var(--line);
}

.comments {
  border-top:1px solid var(--line);
  padding-top:35px;
  margin-top:50px;
}

.comment {
  border-bottom:1px solid var(--line);
  padding:20px 0;
}

.comment .meta {
  justify-content:flex-start;
}

.votes {
  display:flex;
  gap:12px;
}

.votes button {
  background:var(--soft);
  border:1px solid var(--line);
  color:var(--ink);
  border-radius:8px;
  padding:5px 12px;
  font-size:.7rem;
}

.form-panel {
  padding:32px;
  border:1px solid var(--line);
  border-radius:20px;
  background:var(--surface);
  margin-top:25px;
}

.form-panel>p {
  font-size:.8rem;
}

.form-field {
  margin-bottom:22px;
}

.form-field label,.form-field legend {
  display:block;
  margin-bottom:8px;
  font-size:.85rem;
  font-weight:bold;
}

.form-field fieldset {
  border:0;
  padding:0;
  margin:0;
}

.form-field fieldset label {
  font-weight:normal;
}

.form-field small {
  font-size:.73rem;
}

.required {
  color:#af483a;
}

.errorlist {
  color:#b33732;
  font-size:.8rem;
  padding-right:20px;
}

.has-error input,.has-error textarea,.has-error select {
  border-color:#b33732;
}

.notices {
  margin-top:25px;
}

.notice {
  padding:15px 20px;
  background:var(--accent);
  border:1px solid var(--line);
  border-radius:12px;
  margin-bottom:10px;
  font-size:.85rem;
}

.profile {
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:55px;
  align-items:start;
  margin-top:35px;
}

.profile-image {
  min-height:150px;
  background:var(--soft);
  border-radius:25px;
  overflow:hidden;
}

.profile-image img {
  width:100%;
}

.profile h1 {
  margin-bottom:20px;
}

.profile h2 {
  margin-top:35px;
  font-size:1.3rem;
}

.courses {
  padding:20px;
  background:var(--soft);
  border-radius:12px;
}

.courses p {
  margin-bottom:0;
}

.slider {
  border-radius:24px;
  overflow:hidden;
  background:var(--soft);
  border:1px solid var(--line);
}

.slide {
  display:grid;
  grid-template-columns:1fr 1fr;
}

.slide>img {
  width:100%;
  height:350px;
}

.slide-copy {
  padding:40px;
  align-self:center;
}

.slide-copy p {
  font-size:.85rem;
}

.slider-controls {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  padding:16px;
  border-top:1px solid var(--line);
  font-size:.8rem;
}

.slider-controls button {
  border:1px solid var(--line);
  background:var(--surface);
  color:var(--ink);
  border-radius:50%;
  width:40px;
  height:40px;
}

.subslides {
  grid-column:1/-1;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  padding:25px;
}

.subslides>div {
  padding:20px;
  background:var(--surface);
  border-radius:15px;
  font-size:.8rem;
}

.subslides img {
  width:100%;
  height:150px;
  border-radius:10px;
  margin-bottom:15px;
}

@media(min-width:1000px) {
  .header-inner nav {
    display:flex!important;
  }
}

@media(max-width:1050px) {
  .header-inner {
    gap:16px;
  }
  .header-inner nav {
    gap:14px;
  }
  .hero {
    gap:30px;
  }
  .hero-actions {
    gap:15px;
    flex-wrap:wrap;
  }
  .brand {
    font-size:1rem;
  }
  .hero-art {
    height:420px;
  }
  .art-label {
    top:65px;
  }
  .school-drawing {
    top:110px;
  }
}

@media(max-width:999px) {
  .menu-toggle {
    display:block;
    margin-right:auto;
  }
  .header-inner {
    flex-wrap:wrap;
    padding-block:20px;
  }
  .header-inner nav {
    display:none;
    order:4;
    width:100%;
    flex-direction:column;
    align-items:stretch;
    margin:0;
    padding-block:15px;
  }
  .header-inner nav.is-open {
    display:flex;
  }
  .nav-dropdown>div {
    position:static;
    box-shadow:none;
    margin-top:10px;
  }
  .hero {
    padding-block:45px;
    gap:30px;
  }
  .hero-art {
    height:380px;
  }
  .school-drawing {
    transform:scale(.85);
    top:95px;
  }
  .art-label {
    right:30px;
    top:50px;
  }
  .hero h1 {
    font-size:2.8rem;
  }
  .hero-copy>p {
    font-size:.84rem;
  }
  .card-grid {
    gap:16px;
  }
  .card-body {
    padding:18px;
  }
  .staff-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .footer-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .newsletter {
    gap:30px;
  }
  .section {
    padding-block:45px;
  }
}

@media(max-width:650px) {
  .container {
    width:calc(100% - 36px);
  }
  .topbar span {
    display:none;
  }
  .topbar .container {
    justify-content:center;
  }
  .header-inner {
    min-height:85px;
  }
  .brand-mark {
    width:40px;
    height:40px;
    font-size:1.6rem;
  }
  .brand small {
    font-size:.6rem;
  }
  .hero {
    grid-template-columns:1fr;
    padding-top:35px;
  }
  .hero h1 {
    font-size:3rem;
  }
  .hero-art {
    height:360px;
    max-width:460px;
    width:100%;
    margin:auto;
  }
  .school-drawing {
    top:85px;
  }
  .hero-note {
    margin-top:20px;
  }
  .hero-copy>p {
    max-width:none;
  }
  .hero-actions {
    gap:20px;
  }
  .values-strip .container {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    font-size:.73rem;
  }
  .section-heading {
    align-items:flex-start;
    gap:10px;
  }
  .section-heading .text-link {
    white-space:nowrap;
    font-size:.7rem;
    padding-top:25px;
  }
  .section-heading h2 {
    font-size:1.35rem;
  }
  .eyebrow {
    font-size:.67rem;
  }
  .card-grid {
    grid-template-columns:1fr;
  }
  .card-body {
    padding:24px;
  }
  .staff-grid {
    gap:20px;
  }
  .employee-card h3 {
    font-size:.9rem;
  }
  .employee-card p {
    font-size:.67rem;
  }
  .newsletter {
    grid-template-columns:1fr;
    gap:22px;
  }
  .newsletter h2 {
    font-size:1.15rem;
  }
  .newsletter-form .button {
    padding:10px 16px;
    white-space:nowrap;
  }
  .footer-grid {
    gap:30px;
    padding-block:35px;
  }
  .footer-bottom {
    flex-direction:column;
    gap:5px;
  }
  .invitation {
    padding:35px 20px;
    margin-block:20px 45px;
  }
  .invitation h2 {
    font-size:1.6rem;
  }
  .profile {
    grid-template-columns:1fr;
    gap:30px;
  }
  .profile-image {
    max-width:300px;
  }
  .form-panel {
    padding:22px;
  }
  .page-heading {
    margin-bottom:25px;
  }
  .page-heading h1 {
    font-size:2rem;
  }
  .slide {
    grid-template-columns:1fr;
  }
  .slide>img {
    height:240px;
  }
  .slide-copy {
    padding:25px;
  }
  .subslides {
    grid-template-columns:1fr;
  }
  .pagination {
    gap:10px;
    font-size:.7rem;
  }
  .pagination .button {
    padding:8px 12px;
    font-size:.7rem;
  }
  .article-content {
    font-size:.9rem;
  }
  .art-star {
    font-size:3rem;
  }
}

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

