:root {
  --navy-950: #071c27;
  --navy-900: #0d2d3d;
  --navy-800: #123e51;
  --teal-700: #17666c;
  --teal-500: #31959a;
  --amber-500: #d8972f;
  --amber-300: #efc16e;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --ink: #12242d;
  --muted: #57656b;
  --line: #d8ddd9;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 28, 39, 0.10);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--amber-300); outline-offset: 4px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--amber-300);
  color: var(--navy-950);
  padding: .7rem 1rem;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.62);
  color: var(--amber-300);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.brand-name {
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: clamp(.9rem, 1.8vw, 2rem); }
.site-nav a {
  position: relative;
  font-size: .92rem;
  font-weight: 650;
  text-decoration: none;
}
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.45rem;
  height: 2px;
  background: var(--amber-300);
  transition: right .25s ease;
}
.site-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta {
  border: 1px solid rgba(255,255,255,.7);
  padding: .65rem 1rem;
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover { background: var(--white); color: var(--navy-950); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  height: min(900px, 100svh);
  color: var(--white);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,21,31,.95) 0%, rgba(5,21,31,.83) 32%, rgba(5,21,31,.30) 62%, rgba(5,21,31,.16) 100%),
    linear-gradient(0deg, rgba(5,21,31,.58) 0%, transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1320px, calc(100% - 2.5rem));
  height: 100%;
  margin: 0 auto;
  padding: 6.5rem 0 7rem;
}
.eyebrow, .section-kicker, .group-label {
  margin: 0 0 1rem;
  color: var(--teal-700);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--amber-300); }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .99;
}
.hero-copy {
  max-width: 655px;
  margin: 1.7rem 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.1rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 52px;
  padding: .78rem 1.15rem;
  border: 1px solid transparent;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--amber-500); color: var(--navy-950); }
.button-primary:hover { background: var(--amber-300); }
.text-link {
  color: var(--white);
  font-size: .95rem;
  font-weight: 750;
  text-underline-offset: .35rem;
}
.credibility-strip {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1320px, 100%);
  transform: translateX(-50%);
  background: rgba(8,31,43,.91);
  border-top: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(10px);
}
.credibility-strip span {
  padding: 1.2rem 1.5rem;
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  letter-spacing: .07em;
  text-align: center;
  text-transform: uppercase;
}
.credibility-strip span + span { border-left: 1px solid rgba(255,255,255,.15); }
.credibility-strip strong { color: var(--white); font-weight: 800; }

.section-pad { padding: clamp(5rem, 9vw, 8rem) 0; }
.section-shell { width: min(1180px, calc(100% - 2.5rem)); margin: 0 auto; }
.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: .95fr .8fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.06;
}
.intro-copy { padding-top: 1.6rem; border-top: 3px solid var(--amber-500); }
.intro-copy p { margin: 0; color: var(--muted); font-size: 1.1rem; }
.intro-copy p + p { margin-top: 1.25rem; }

.programs { background: var(--paper); }
.section-heading { max-width: 760px; }
.section-heading > p:last-child { max-width: 650px; margin: 1.35rem 0 0; color: var(--muted); font-size: 1.08rem; }
.program-group { margin-top: 5rem; }
.group-heading {
  display: grid;
  grid-template-columns: 72px minmax(260px, 1.1fr) minmax(280px, .8fr);
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.group-number {
  color: var(--amber-500);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
}
.group-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
}
.group-label { margin-bottom: .55rem; }
.group-heading > p { margin: .25rem 0 0; color: var(--muted); }
.card-grid { display: grid; gap: 1.1rem; margin-top: 1.1rem; }
.card-grid-three { grid-template-columns: repeat(3, 1fr); }
.program-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 2rem;
  background: var(--white);
  border: 1px solid #e3e5e0;
  box-shadow: 0 4px 0 rgba(13,45,61,.03);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.program-card:hover { transform: translateY(-5px); border-color: #c8d4d2; box-shadow: var(--shadow); }
.featured-card { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.card-tag {
  color: var(--teal-700);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.featured-card .card-tag { color: var(--amber-300); }
.program-card h4 {
  margin: 1.5rem 0 .8rem;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.15;
}
.program-card > p { margin: 0; color: var(--muted); }
.featured-card > p { color: rgba(255,255,255,.73); }
.for-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .7rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
}
.for-line strong { color: var(--ink); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.featured-card .for-line { border-color: rgba(255,255,255,.17); color: rgba(255,255,255,.66); }
.featured-card .for-line strong { color: var(--amber-300); }

.camp-gallery {
  margin-top: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: #e7f0ef;
  border: 1px solid #cbdcda;
}
.camp-gallery-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: end;
  margin-bottom: 1.5rem;
}
.camp-gallery-head h4 {
  margin: 0;
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 400;
  line-height: 1.12;
}
.camp-gallery-head > p { margin: 0; color: var(--muted); }
.camp-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .7rem; }
.camp-photo {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  min-width: 0;
  overflow: hidden;
  background: var(--navy-900);
}
.camp-photo::after {
  content: "View";
  position: absolute;
  right: .65rem;
  bottom: .65rem;
  padding: .32rem .55rem;
  background: rgba(5,21,31,.82);
  color: var(--white);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
}
.camp-photo:hover::after, .camp-photo:focus-visible::after { opacity: 1; transform: none; }
.camp-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease, opacity .3s ease; }
.camp-photo:hover img { opacity: .88; transform: scale(1.025); }
.camp-photo:nth-child(4) img, .camp-photo:nth-child(5) img { object-position: center 30%; }
.camp-photo-flyer img { object-position: center 24%; }
.camp-photo-flyer > span {
  position: absolute;
  left: .65rem;
  top: .65rem;
  padding: .35rem .6rem;
  background: var(--amber-500);
  color: var(--navy-950);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.camp-gallery-note { margin-bottom: 0; }

.events {
  background: var(--cream);
  border-top: 1px solid #e2dfd5;
}
.events-heading { max-width: 850px; }
.events-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .5fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.future-events {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--navy-900);
  color: var(--white);
}
.past-events {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--white);
  border: 1px solid #dfdfd8;
}
.events-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.past-events .events-label-row { border-bottom-color: var(--line); }
.events-label {
  color: var(--amber-300);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.events-label.dark-label { color: var(--teal-700); }
.coming-note {
  color: rgba(255,255,255,.62);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.event-flyer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.event-flyer-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  color: var(--ink);
}
.flyer-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e7ebec;
  text-decoration: none;
}
.flyer-link img {
  width: 100%;
  aspect-ratio: 2 / 2.85;
  object-fit: cover;
  object-position: top center;
  transition: transform .3s ease;
}
.flyer-link > span {
  position: absolute;
  right: .7rem;
  bottom: .7rem;
  padding: .48rem .68rem;
  background: rgba(7,28,39,.92);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.flyer-link:hover img { transform: scale(1.018); }
.event-flyer-copy { display: flex; flex: 1; flex-direction: column; padding: 1.35rem; }
.event-type { margin: 0 0 .45rem; color: var(--amber-300); font-size: .73rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.event-flyer-card .event-type { color: var(--teal-700); }
.event-flyer-card h3, .past-events h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.08;
}
.event-theme { margin: .75rem 0 1.2rem; color: var(--muted); font-family: var(--serif); font-size: 1rem; font-style: italic; line-height: 1.5; }
.event-facts { display: grid; gap: .65rem; margin: 0 0 1.25rem; }
.event-facts div { display: grid; grid-template-columns: 48px 1fr; gap: .65rem; }
.event-facts dt { color: var(--teal-700); font-size: .65rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.event-facts dd { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.45; }
.event-button { width: 100%; margin-top: auto; padding-inline: .8rem; font-size: .82rem; }
.past-events h3 { font-size: clamp(1.8rem, 3vw, 2.45rem); }
.past-list { display: grid; margin-top: 1.6rem; }
.past-list article { display: grid; grid-template-columns: 38px 1fr; gap: .8rem; padding: 1.25rem 0; border-top: 1px solid var(--line); }
.past-number { color: var(--amber-500); font-family: var(--serif); font-style: italic; }
.past-list h4 { margin: 0 0 .35rem; font-family: var(--serif); font-size: 1.16rem; font-weight: 400; line-height: 1.25; }
.past-list p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }

.past-gallery {
  margin-top: 1.25rem;
  padding: clamp(1.6rem, 3.5vw, 3rem);
  background: var(--white);
  border: 1px solid #dfdfd8;
}
.past-gallery-head {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: 2rem;
}
.past-gallery-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.08;
}
.past-gallery-head > p { margin: 0; color: var(--muted); }
.past-gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 165px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .7rem;
}
.past-photo {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  background: var(--navy-900);
}
.past-photo::after {
  content: "View ↗";
  position: absolute;
  right: .55rem;
  bottom: .55rem;
  padding: .3rem .5rem;
  background: rgba(7,28,39,.9);
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease;
}
.past-photo:hover::after, .past-photo:focus-visible::after { opacity: 1; transform: none; }
.past-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease, opacity .3s ease;
}
.past-photo:hover img { opacity: .88; transform: scale(1.025); }
.past-photo-tall { grid-row: span 2; }
.past-photo-wide { grid-column: span 2; }
.gallery-note { margin: .9rem 0 0; color: var(--muted); font-size: .76rem; text-align: right; }

.live2lead-testimonials {
  margin-top: 1.25rem;
  padding: clamp(1.8rem, 4vw, 3.5rem);
  background: var(--navy-950);
  color: var(--white);
}
.testimonials-head {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: 2.2rem;
}
.testimonials-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.08;
}
.testimonials-head > p { margin: 0; color: rgba(255,255,255,.7); }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.15);
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: .8rem;
  right: 1.2rem;
  color: var(--amber-300);
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
  opacity: .7;
}
.testimonial-card blockquote { margin: 0 0 1.8rem; }
.testimonial-card blockquote p { position: relative; z-index: 1; margin: 0; color: rgba(255,255,255,.83); font-family: var(--serif); font-size: 1.02rem; line-height: 1.72; }
.testimonial-card blockquote p + p { margin-top: 1rem; }
.testimonial-card figcaption { display: grid; grid-template-columns: 64px 1fr; gap: 1rem; align-items: center; margin-top: auto; padding-top: 1.35rem; border-top: 1px solid rgba(255,255,255,.14); }
.testimonial-photo { width: 64px; height: 64px; border: 2px solid var(--amber-300); border-radius: 50%; object-fit: cover; object-position: center 28%; }
.testimonial-card figcaption > span:last-child { display: grid; gap: .15rem; }
.testimonial-card figcaption strong { color: var(--white); font-size: .9rem; }
.testimonial-card figcaption small { color: rgba(255,255,255,.58); font-size: .72rem; line-height: 1.45; }
.video-testimonial {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  color: var(--ink);
}
.video-person-photo { position: relative; width: 72px; height: 72px; }
.video-person-photo > img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center 24%; }
.video-play { position: absolute; right: -3px; bottom: -3px; display: grid; place-items: center; width: 28px; height: 28px; padding-left: .1rem; background: var(--teal-700); color: var(--white); border: 3px solid var(--white); border-radius: 50%; font-size: .62rem; }
.video-label { margin: 0 0 .15rem; color: var(--teal-700); font-size: .67rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.video-testimonial h4 { margin: 0; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; line-height: 1.2; }
.video-testimonial p:last-child { margin: .2rem 0 0; color: var(--muted); font-size: .8rem; }

.school-section {
  position: relative;
  background: var(--teal-700);
  color: var(--white);
  overflow: hidden;
}
.school-section::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -250px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 140px rgba(255,255,255,.025);
}
.school-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 9vw, 8rem); }
.light-kicker { color: var(--amber-300); }
.school-statement blockquote {
  margin: 2.5rem 0 0;
  padding: 0 0 0 1.5rem;
  border-left: 3px solid var(--amber-300);
  color: rgba(255,255,255,.73);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}
.school-copy { padding-top: 2rem; }
.school-copy > p { margin: 0; color: rgba(255,255,255,.81); font-size: 1.07rem; }
.school-copy > p + p { margin-top: 1.25rem; }
.school-audience { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.8rem 0 2rem; }
.school-audience span { padding: .42rem .72rem; border: 1px solid rgba(255,255,255,.32); font-size: .77rem; font-weight: 700; letter-spacing: .04em; }
.button-light { background: var(--white); color: var(--teal-700); }
.button-light:hover { background: var(--amber-300); }

.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .55fr 1.2fr; gap: clamp(3rem, 9vw, 8rem); align-items: start; }
.handwritten {
  margin: 0 0 1rem;
  color: var(--teal-700);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: 1.4rem;
  transform: rotate(-3deg);
}
.portrait-card {
  margin: 0;
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 18px 18px 0 var(--amber-300);
}
.portrait-card img { width: 100%; aspect-ratio: 2 / 2.65; object-fit: cover; object-position: center 18%; }
.portrait-card figcaption { display: grid; gap: .25rem; padding: 1.15rem 1.25rem; }
.portrait-card figcaption strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.portrait-card figcaption span { color: rgba(255,255,255,.65); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.about-copy .lead { color: var(--ink); font-family: var(--serif); font-size: 1.35rem; line-height: 1.6; }
.about-copy > p { color: var(--muted); }
.beliefs { display: grid; gap: .7rem; margin-top: 2rem; }
.beliefs div { display: grid; grid-template-columns: 42px 1fr; gap: .8rem; align-items: center; padding: .9rem 0; border-top: 1px solid #d6d7cf; }
.beliefs span { color: var(--amber-500); font-family: var(--serif); font-style: italic; }
.beliefs strong { font-size: .98rem; }

.contact-section { padding: clamp(4rem, 8vw, 6.5rem) 0; background: var(--navy-950); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(3rem, 8vw, 7rem); align-items: end; }
.contact-copy > p { margin: 0 0 1.5rem; color: rgba(255,255,255,.7); font-size: 1.06rem; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem; }
.button-gold { background: var(--amber-500); color: var(--navy-950); }
.button-gold:hover { background: var(--amber-300); }
.email-link { color: var(--white); font-weight: 700; text-underline-offset: .32rem; }

.site-footer { padding: 2.4rem 0; background: #061720; color: rgba(255,255,255,.56); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 2rem; }
.footer-brand { color: var(--white); }
.footer-grid > p { margin: 0; font-size: .78rem; }
.footer-grid > p:nth-child(2) { text-align: center; }
.footer-grid > p:last-child { text-align: right; }
.footer-grid p span { font-size: .7rem; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .program-card, .button { transition: none; }
}

@media (max-width: 900px) {
  .site-header { min-height: 78px; padding: 0 1.25rem; }
  .brand-mark { width: 44px; height: 44px; font-size: 1rem; }
  .brand-name { font-size: .66rem; }
  .menu-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255,255,255,.5);
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: var(--white); transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 6rem 2rem;
    background: var(--navy-950);
    visibility: hidden;
    opacity: 0;
    transition: opacity .25s ease, visibility .25s ease;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; }
  .site-nav a { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
  .site-nav .nav-cta { margin-top: 1rem; font-family: var(--sans); font-size: 1rem; font-weight: 750; }
  .hero { min-height: 760px; height: 100svh; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,21,31,.96) 0%, rgba(5,21,31,.78) 62%, rgba(5,21,31,.35) 100%), linear-gradient(0deg, rgba(5,21,31,.68) 0%, transparent 55%); }
  .hero-content { justify-content: center; padding: 6rem 0 9rem; }
  .hero h1 { max-width: 650px; font-size: clamp(3rem, 9vw, 5rem); }
  .hero-copy { max-width: 560px; }
  .credibility-strip { grid-template-columns: 1fr; width: 100%; }
  .credibility-strip span { padding: .52rem 1rem; font-size: .65rem; }
  .credibility-strip span + span { border-left: 0; border-top: 1px solid rgba(255,255,255,.11); }
  .intro-grid, .events-grid, .school-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .camp-gallery-head { grid-template-columns: 1fr; gap: 1rem; }
  .past-gallery-head { grid-template-columns: 1fr; gap: 1rem; }
  .testimonials-head { grid-template-columns: 1fr; gap: 1rem; }
  .past-gallery-grid { grid-auto-rows: 150px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .group-heading { grid-template-columns: 54px 1fr; }
  .group-heading > p { grid-column: 2; }
  .card-grid-three { grid-template-columns: 1fr; }
  .program-card { min-height: 0; }
  .for-line { margin-top: 2rem; }
  .about-grid { gap: 4rem; }
  .about-side { max-width: 450px; }
  .contact-copy { max-width: 520px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > p:nth-child(2), .footer-grid > p:last-child { text-align: left; }
}

@media (max-width: 560px) {
  .hero-content, .section-shell { width: min(100% - 2rem, 1180px); }
  .hero { min-height: 780px; }
  .hero-image { object-position: 68% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,21,31,.97), rgba(5,21,31,.74)), linear-gradient(0deg, rgba(5,21,31,.55), transparent); }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.1rem); }
  .hero-copy { font-size: 1rem; line-height: 1.55; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; margin-top: 1.65rem; }
  .section-pad { padding: 4.7rem 0; }
  h2 { font-size: clamp(2.25rem, 11vw, 3.35rem); }
  .group-heading { grid-template-columns: 1fr; }
  .group-number { margin-bottom: -.7rem; }
  .group-heading > p { grid-column: 1; }
  .program-group { margin-top: 4rem; }
  .program-card { padding: 1.5rem; }
  .camp-gallery { padding: 1rem; }
  .camp-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-flyer-grid { grid-template-columns: 1fr; }
  .past-gallery-grid { grid-auto-rows: 125px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .video-testimonial { grid-column: auto; grid-template-columns: auto 1fr; }
  .video-testimonial .button { grid-column: 1 / -1; }
  .portrait-card { box-shadow: 10px 10px 0 var(--amber-300); }
  .contact-actions, .button { width: 100%; }
  .email-link { align-self: center; font-size: .93rem; }
}
