:root {
  --teal: #00687a;
  --deep-teal: #004d5e;
  --green: #6f9f63;
  --mustard: #f1b627;
  --coral: #f3705d;
  --cream: #fff8e8;
  --sky: #e8f6f8;
  --ink: #1f3037;
  --muted: #63757d;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(0, 77, 94, 0.14);
  --soft-shadow: 0 14px 35px rgba(0, 77, 94, 0.1);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 92px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  background: var(--deep-teal);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 1000;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 104, 122, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.brand img {
  width: 255px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--deep-teal);
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--coral);
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--mustard);
  color: #3b3000;
  box-shadow: 0 10px 24px rgba(241, 182, 39, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--sky);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: var(--deep-teal);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 16%, rgba(241, 182, 39, 0.18), transparent 26%),
    radial-gradient(circle at 86% 22%, rgba(111, 159, 99, 0.2), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4fbfc 54%, #fff8e8 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -200px auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(0, 104, 122, 0.08);
}

.hero-grid,
.approach-grid,
.about-grid,
.location-grid,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
}

h1,
h2 {
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--deep-teal);
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.55rem);
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.75rem);
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.45rem;
  color: var(--deep-teal);
  margin-bottom: 12px;
}

.hero-text,
.section-heading p,
.approach-copy p,
.about-copy p,
.location-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  min-height: 52px;
  padding: 14px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 16px 30px rgba(0, 104, 122, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--deep-teal);
}

.btn-secondary {
  color: var(--deep-teal);
  background: var(--white);
  box-shadow: inset 0 0 0 2px rgba(0, 104, 122, 0.16), var(--soft-shadow);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--deep-teal);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(0, 104, 122, 0.1);
}

.hero-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 104, 122, 0.12);
}

.hero-card::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 48px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--mustard);
  transform: rotate(12deg);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--deep-teal);
  margin-bottom: 24px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #523900;
  background: var(--mustard);
}

.learning-board {
  display: grid;
  gap: 16px;
}

.board-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: var(--cream);
}

.board-row p {
  margin: 0;
  color: var(--deep-teal);
  font-weight: 900;
}

.shape {
  display: inline-block;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.circle {
  border-radius: 50%;
  background: var(--coral);
}

.triangle {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 32px solid var(--green);
  background: transparent;
}

.square {
  border-radius: 8px;
  background: var(--mustard);
}

.mini-note {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  color: var(--muted);
  background: var(--sky);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.programs {
  background: var(--white);
}

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

.program-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(0, 104, 122, 0.12);
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.program-image {
  min-height: 190px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.program-image::before,
.program-image::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.program-image::before {
  width: 170px;
  height: 170px;
  left: -42px;
  bottom: -60px;
}

.program-image::after {
  width: 120px;
  height: 120px;
  right: -36px;
  top: -34px;
}

.program-image span {
  position: relative;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 28px;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  background: rgba(0, 77, 94, 0.78);
  z-index: 1;
}

.program-home {
  background: linear-gradient(135deg, var(--teal), #5aa4b0);
}

.program-location {
  background: linear-gradient(135deg, var(--green), #b7ce79);
}

.program-enrichment {
  background: linear-gradient(135deg, var(--coral), var(--mustard));
}

.program-content {
  padding: 26px;
}

.program-content p,
.program-content li {
  color: var(--muted);
}

.program-content ul {
  padding-left: 20px;
  margin: 18px 0 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 900;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.approach {
  background: linear-gradient(135deg, var(--cream), #ffffff);
}

.approach-list {
  display: grid;
  gap: 18px;
}

.approach-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.approach-item span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 16px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.approach-item p {
  color: var(--muted);
  margin: 0;
}

.about {
  background: var(--white);
}

.about-photo {
  display: grid;
  place-items: center;
}

.photo-frame {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 44% 56% 46% 54% / 55% 42% 58% 45%;
  background:
    radial-gradient(circle at 30% 30%, rgba(241, 182, 39, 0.28), transparent 28%),
    radial-gradient(circle at 72% 70%, rgba(243, 112, 93, 0.24), transparent 30%),
    linear-gradient(135deg, var(--sky), #ffffff);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 104, 122, 0.12);
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: 42px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0, 104, 122, 0.1);
}

.photo-initials {
  position: relative;
  z-index: 1;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--deep-teal);
  font-weight: 800;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--deep-teal);
  font-weight: 900;
}

.testimonial {
  background: var(--deep-teal);
}

.quote-card {
  position: relative;
  max-width: 870px;
  margin: 0 auto;
  padding: 46px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.quote-card p {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0 0 20px;
}

.quote-card strong {
  color: var(--mustard);
}

.quote-mark {
  display: block;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--mustard);
}

.location {
  background: var(--sky);
}

address {
  font-style: normal;
  font-size: 1.1rem;
  color: var(--ink);
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
  margin: 22px 0;
}

.map-card {
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--white);
  border: 10px solid var(--white);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.contact {
  background: linear-gradient(135deg, #ffffff, var(--cream));
}

.contact-note {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--muted);
  box-shadow: var(--soft-shadow);
}

.contact-note a {
  color: var(--teal);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  font-weight: 900;
  color: var(--deep-teal);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 104, 122, 0.2);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: #fbfeff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 104, 122, 0.12);
}

.form-row {
  display: grid;
  gap: 7px;
}

.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.consent-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  column-gap: 10px;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--teal);
}

.consent-row .field-error {
  grid-column: 2;
}

.field-error {
  min-height: 18px;
  color: #a2382d;
  font-weight: 800;
  font-size: 0.88rem;
}

.contact-form .input-error {
  border-color: #c5483c;
  background: #fff8f6;
}

.contact-form .input-error:focus {
  border-color: #c5483c;
  box-shadow: 0 0 0 4px rgba(197, 72, 60, 0.13);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.copy-button[hidden] {
  display: none;
}

.form-message {
  margin: 4px 0 0;
  color: var(--deep-teal);
  font-weight: 900;
}

.form-message.success {
  color: var(--deep-teal);
}

.form-message.error {
  color: #a2382d;
}

.small-note {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.94rem;
}

.small-note code {
  padding: 2px 5px;
  border-radius: 6px;
  background: var(--sky);
  color: var(--deep-teal);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-footer {
  padding: 54px 0 28px;
  background: #052f38;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  align-items: start;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
}

.footer-logo {
  width: 240px;
  background: var(--white);
  padding: 10px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.site-footer h2 {
  font-family: "Nunito", Arial, sans-serif;
  color: var(--mustard);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: var(--white);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding-top: 22px;
}

.footer-bottom a {
  display: inline;
  color: var(--mustard);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .brand img {
    width: 220px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 92px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero-grid,
  .approach-grid,
  .about-grid,
  .location-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .hero-card::before {
    display: none;
  }

  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 68px 0;
  }

  .header-inner {
    min-height: 82px;
  }

  .brand img {
    width: 180px;
  }

  .site-nav {
    top: 82px;
  }

  h1 {
    font-size: clamp(2.35rem, 15vw, 3.65rem);
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-card,
  .contact-form,
  .quote-card {
    padding: 24px;
  }

  .two-column,
  .consent-row {
    grid-template-columns: 1fr;
  }

  .consent-row .field-error {
    grid-column: 1;
  }


  .map-card,
  .map-card iframe {
    min-height: 330px;
    height: 330px;
  }
}
