:root {
  --navy: #0e315d;
  --navy-soft: #183f6d;
  --coral: #d97542;
  --cream: #f8f3ec;
  --warm-white: #fffdf9;
  --sand: #eadfd3;
  --pale-blue: #dce5ef;
  --ink: #1f2630;
  --muted: #6f7175;
  --shadow: 0 24px 60px rgba(14, 49, 93, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 76px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 253, 249, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(14, 49, 93, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 600;
}
.brand-logo {
  width: 52px;
  height: auto;
  flex: 0 0 auto;
  overflow: visible;
}
.logo-block {
  stroke: var(--navy);
  stroke-width: 3;
}
.logo-block-sand { fill: #f1d6ac; }
.logo-block-blue { fill: var(--pale-blue); }
.logo-block-cream { fill: var(--warm-white); }
.logo-letter {
  fill: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
}
.logo-heart,
.logo-star {
  fill: var(--coral);
}

.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color .25s ease;
}
.nav a:hover, .nav a.active { color: var(--coral); }

.menu-button {
  display: none;
  background: transparent;
  border: 0;
}
.menu-button span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.snap-container {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

.panel {
  position: relative;
  min-height: 100vh;
  padding: 118px 7vw 60px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 6vw;
  background: var(--warm-white);
}

.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
h1, h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-weight: 500;
  line-height: .98;
}
h1 { font-size: clamp(4.6rem, 8vw, 8.5rem); letter-spacing: -.05em; }
h1 span { color: var(--navy); }
h2 { font-size: clamp(3rem, 5vw, 5.6rem); letter-spacing: -.035em; }

.hero-subtitle {
  color: var(--coral);
  margin: 24px 0 16px;
  font-size: clamp(1.2rem, 2vw, 2rem);
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero-lede {
  max-width: 560px;
  color: var(--navy-soft);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; margin-top: 30px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}
.button-primary { color: white; background: var(--coral); }
.button-secondary { color: var(--navy); border-color: rgba(14,49,93,.22); background: transparent; }

.hero-visual { position: relative; z-index: 2; }
.photo-frame {
  height: min(72vh, 790px);
  border-radius: 42% 42% 44% 56% / 32% 48% 52% 68%;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-frame img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.organic-shape { position: absolute; border-radius: 50%; opacity: .7; }
.shape-one { width: 430px; height: 430px; top: -150px; left: 33%; background: #f1dfcd; }
.shape-two { width: 320px; height: 320px; bottom: -160px; left: -90px; background: var(--pale-blue); }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--navy);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.arrow { font-size: 1.1rem; animation: bounce 1.5s infinite; }
@keyframes bounce { 50% { transform: translateY(6px); } }

.about {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 8vw;
  align-items: center;
  background: var(--cream);
}
.section-copy p, .teacher-copy p {
  max-width: 680px;
  margin-top: 28px;
  color: #4f5358;
  font-size: 1.2rem;
  line-height: 1.85;
}
.soft-divider {
  width: 220px;
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--coral);
}
.soft-divider::before, .soft-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--navy);
}
.quote-card {
  padding: 54px;
  border-radius: 42px;
  background: var(--warm-white);
  box-shadow: var(--shadow);
}
.quote-card p {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  line-height: 1.35;
}
.quote-card span { color: var(--coral); font-weight: 700; }

.explore { background: var(--warm-white); }
.section-heading { max-width: 900px; margin-bottom: 50px; }
.activity-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.activity-card {
  min-height: 310px;
  padding: 34px 24px;
  border-radius: 28px;
  background: var(--cream);
  border: 1px solid rgba(217,117,66,.15);
  transition: transform .3s ease, box-shadow .3s ease;
}
.activity-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.icon {
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--coral);
  background: white;
  font-size: 2rem;
}
.activity-card h3 {
  color: var(--navy);
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.activity-card p { color: var(--muted); line-height: 1.6; }

.details {
  display: grid;
  align-content: center;
  background: var(--pale-blue);
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.detail-card {
  min-height: 150px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
}
.detail-icon { color: var(--coral); font-size: 2.5rem; }
.detail-card strong { color: var(--navy); font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; }
.detail-card p { margin: 8px 0 0; font-size: 1.15rem; }

.teacher {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 7vw;
  background: var(--warm-white);
}
.teacher-photo {
  height: 68vh;
  min-height: 480px;
}
.teacher-headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 46%;
  border-radius: 38% 40% 42% 46% / 32% 38% 48% 54%;
  box-shadow: var(--shadow);
}
.photo-placeholder {
  height: 100%;
  border-radius: 42% 42% 45% 55% / 34% 44% 56% 66%;
  display: grid;
  place-items: center;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(217,117,66,.18), rgba(220,229,239,.9)),
    var(--sand);
  border: 2px dashed rgba(14,49,93,.2);
}
.teacher-copy ul { padding-left: 20px; color: var(--navy-soft); line-height: 1.9; }

.contact {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(217,117,66,.18), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(14,49,93,.14), transparent 36%),
    var(--cream);
}
.contact-card {
  width: min(940px, 92vw);
  padding: 48px;
  border-radius: 38px;
  background: rgba(255,253,249,.92);
  box-shadow: var(--shadow);
}
.contact-card > p { color: var(--muted); font-size: 1.15rem; }
.contact-form {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.contact-form label { color: var(--navy); font-size: .85rem; font-weight: 700; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(14,49,93,.16);
  border-radius: 14px;
  background: white;
  font: inherit;
}
.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}
.contact-form .comments-field {
  grid-column: span 2;
}
.contact-form .hidden-field {
  display: none;
}
.contact-form .button {
  grid-column: 1 / -1;
  justify-self: center;
  align-self: center;
}
.form-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: var(--navy-soft);
  font-size: .95rem;
  font-weight: 600;
  text-align: center;
}
.form-status.error {
  color: #a34835;
}
.contact-links {
  margin-top: 30px;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 1px solid rgba(14,49,93,.1);
  color: var(--navy);
  font-size: .95rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(14,49,93,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}
.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(218,123,95,.42);
  background: white;
  outline: none;
}
.social-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(14,49,93,.1);
  color: var(--muted);
  text-align: center;
  font-size: .88rem;
}
.site-footer p {
  margin: 0;
}

.section-dots {
  position: fixed;
  z-index: 30;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
}
.section-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(14,49,93,.25);
  cursor: pointer;
}
.section-dots button.active { background: var(--coral); transform: scale(1.35); }

.top-button {
  position: fixed;
  z-index: 32;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--warm-white);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(14,49,93,.22);
}
.top-button:hover,
.top-button:focus-visible {
  background: var(--coral);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  body { overflow: auto; }
  .snap-container { scroll-snap-type: y proximity; }
  .panel { padding: 110px 6vw 70px; }
  .hero, .about, .teacher { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .photo-frame { height: 52vh; }
  .activity-grid { grid-template-columns: repeat(2, 1fr); }
  .activity-card:last-child { grid-column: 1 / -1; }
  .nav {
    position: fixed;
    top: 76px;
    right: 0;
    width: min(320px, 90vw);
    padding: 28px;
    display: none;
    flex-direction: column;
    background: var(--warm-white);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .menu-button { display: block; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .comments-field { grid-column: auto; }
}

@media (max-width: 640px) {
  .site-header { height: 68px; }
  .panel { min-height: auto; padding: 100px 22px 70px; }
  .hero { min-height: 100vh; }
  h1 { font-size: clamp(4rem, 20vw, 6.6rem); }
  h2 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .activity-grid, .details-grid { grid-template-columns: 1fr; }
  .activity-card:last-child { grid-column: auto; }
  .quote-card, .contact-card { padding: 30px; }
  .section-dots { display: none; }
  .contact-links { flex-direction: column; gap: 10px; }
}


.section-intro {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.agenda-section {
  background: var(--warm-white);
  display: grid;
  align-content: center;
}

.agenda-timeline {
  position: relative;
  display: grid;
  gap: 16px;
  max-width: 1050px;
}

.agenda-timeline::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(var(--coral), var(--navy));
  opacity: .3;
}

.agenda-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 58px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 18px 24px 18px 0;
  border-radius: 24px;
  background: var(--cream);
  border: 1px solid rgba(217,117,66,.12);
  transition: transform .3s ease, box-shadow .3s ease;
}

.agenda-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
}

.agenda-number {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--coral);
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(217,117,66,.25);
}

.agenda-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: white;
  font-size: 1.5rem;
}

.agenda-content h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
}

.agenda-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 640px) {
  .agenda-item {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .agenda-number {
    width: 52px;
    height: 52px;
  }

  .agenda-icon {
    display: none;
  }

  .agenda-timeline::before {
    left: 41px;
  }
}
