:root {
  --brand-ink: #173b4b;
  --brand-ink-deep: #0d2b38;
  --brand-paper: #f6f1e7;
  --brand-surface: #fffdf8;
  --brand-moon: #f4b860;
  --brand-signal: #e75b3a;
  --brand-leaf: #3c735e;
  --brand-muted: #65757c;
  --brand-line: rgba(23, 59, 75, 0.18);
  --display: "Trebuchet MS", "Avenir Next", sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(13, 43, 56, 0.13);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--brand-ink);
  background: var(--brand-surface);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--brand-moon); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: #fff;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-signal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 { font-size: clamp(3.05rem, 7vw, 6.7rem); }
h2 { font-size: clamp(2.25rem, 4.7vw, 4.5rem); }
h3 { font-size: clamp(1.45rem, 2.1vw, 2rem); }
p { text-wrap: pretty; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: var(--brand-signal);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}
.button:hover { background: #c9472b; transform: translateY(-2px); }
.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}
.button.secondary {
  border-color: var(--brand-ink);
  background: transparent;
  color: var(--brand-ink);
}
.button.secondary:hover { background: var(--brand-ink); color: #fff; }

.camp-notice {
  background: var(--brand-moon);
  color: var(--brand-ink-deep);
  font-size: 0.92rem;
  font-weight: 750;
}
.camp-notice .container {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.camp-notice a { text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--brand-line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.brand img { width: 58px; height: 38px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 25px; }
.nav a:not(.button) {
  color: var(--brand-ink-deep);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}
.nav a:not(.button):hover { text-decoration: underline; text-underline-offset: 5px; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--brand-line);
  border-radius: 5px;
  background: transparent;
  color: var(--brand-ink);
  cursor: pointer;
}

.hero {
  overflow: hidden;
  padding: clamp(54px, 7vw, 96px) 0 70px;
  background:
    linear-gradient(90deg, rgba(244,184,96,.13) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--brand-paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
}
.hero h1 { font-size: clamp(3.05rem, 6.8vw, 5.1rem); }
.hero h1 span { color: var(--brand-signal); }
.hero-lead {
  max-width: 670px;
  margin: 26px 0 30px;
  color: #3e5863;
  font-size: clamp(1.16rem, 1.8vw, 1.42rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin: 34px 0 0;
  padding: 21px 0 0;
  border-top: 1px solid var(--brand-line);
  color: var(--brand-muted);
  font-size: 0.94rem;
  font-weight: 700;
}
.hero-visual { position: relative; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 28px -28px -28px 28px;
  border: 2px solid var(--brand-ink);
}
.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.photo-note {
  position: absolute;
  right: -18px;
  bottom: 22px;
  z-index: 2;
  max-width: 250px;
  padding: 16px 18px;
  background: var(--brand-ink);
  color: #fff;
  font-weight: 750;
  line-height: 1.35;
}

.section { padding: clamp(76px, 10vw, 132px) 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .55fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 50px;
}
.section-head > p { margin: 0 0 4px; color: var(--brand-muted); font-size: 1.07rem; }

.directions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--brand-line);
  border-left: 1px solid var(--brand-line);
}
.direction {
  display: grid;
  grid-template-columns: 43% 1fr;
  min-height: 310px;
  border-right: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
  background: #fff;
}
.direction img { width: 100%; height: 100%; object-fit: cover; }
.direction-body { display: flex; flex-direction: column; padding: 29px; }
.direction-number {
  color: var(--brand-signal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}
.direction h3 { margin-top: auto; }
.direction p { margin: 12px 0 18px; color: var(--brand-muted); }
.age { font-size: 0.84rem; font-weight: 800; text-transform: uppercase; }

.camp-section { padding: 0 0 clamp(76px, 10vw, 132px); }
.camp-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  min-height: 560px;
  background: var(--brand-ink-deep);
  color: #fff;
  box-shadow: var(--shadow);
}
.camp-image { position: relative; overflow: hidden; }
.camp-image img { width: 100%; height: 100%; object-fit: cover; }
.camp-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, rgba(13,43,56,.45));
}
.camp-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 5vw, 70px); }
.camp-copy .eyebrow { color: var(--brand-moon); }
.camp-copy h2 { font-size: clamp(2.4rem, 4.3vw, 4.4rem); }
.camp-copy > p { margin: 24px 0; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.camp-list { display: grid; gap: 12px; margin: 0 0 30px; padding: 0; list-style: none; }
.camp-list li { padding-left: 23px; position: relative; }
.camp-list li::before { content: "—"; position: absolute; left: 0; color: var(--brand-moon); }
.camp-copy .button { align-self: flex-start; }

.method { background: var(--brand-paper); }
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--brand-ink);
}
.method-step { min-height: 230px; padding: 26px 25px; border-right: 1px solid var(--brand-line); }
.method-step:last-child { border-right: 0; }
.method-step b { display: block; color: var(--brand-signal); font-size: 0.82rem; letter-spacing: .12em; }
.method-step h3 { margin-top: 50px; font-size: 1.55rem; }
.method-step p { margin-bottom: 0; color: var(--brand-muted); font-size: 0.96rem; }

.parents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.parents-grid h2 { position: sticky; top: 126px; }
.parent-points { border-top: 1px solid var(--brand-line); }
.parent-point { padding: 26px 0; border-bottom: 1px solid var(--brand-line); }
.parent-point h3 { font-size: 1.4rem; }
.parent-point p { margin: 10px 0 0; color: var(--brand-muted); }

.faq { background: var(--brand-ink); color: #fff; }
.faq .section-head > p { color: rgba(255,255,255,.67); }
.faq-list { border-top: 1px solid rgba(255,255,255,.22); }
details { border-bottom: 1px solid rgba(255,255,255,.22); }
summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 800;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--brand-moon); font-size: 1.8rem; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 760px; margin: -4px 0 25px; color: rgba(255,255,255,.74); }

.contact { background: var(--brand-paper); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: clamp(45px, 8vw, 100px);
  align-items: start;
}
.contact-info h2 { margin-bottom: 25px; }
.contact-info > p { color: var(--brand-muted); }
.contact-list { display: grid; gap: 18px; margin: 34px 0; padding: 0; list-style: none; }
.contact-list span { display: block; color: var(--brand-muted); font-size: .82rem; font-weight: 750; text-transform: uppercase; }
.contact-list a, .contact-list strong { font-size: 1.08rem; text-underline-offset: 4px; }
.social-row { display: flex; flex-wrap: wrap; gap: 16px; }
.social-row a { font-weight: 800; text-underline-offset: 4px; }

.lead-form {
  padding: clamp(28px, 5vw, 54px);
  background: #fff;
  box-shadow: var(--shadow);
}
.lead-form h3 { margin-bottom: 9px; }
.form-intro { margin: 0 0 27px; color: var(--brand-muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-size: .88rem; font-weight: 800; }
input, select, textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #9caab0;
  border-radius: 4px;
  background: #fff;
  color: var(--brand-ink-deep);
  padding: 12px 13px;
}
input:focus, select:focus, textarea:focus { border-color: var(--brand-ink); outline: 2px solid rgba(244,184,96,.55); }
textarea { min-height: 104px; resize: vertical; }
.consent { display: flex; align-items: flex-start; gap: 10px; color: var(--brand-muted); font-size: .83rem; }
.consent input { width: 18px; min-height: 18px; margin-top: 2px; flex: 0 0 auto; }
.form-actions { display: flex; align-items: center; gap: 18px; margin-top: 22px; }
.form-note { margin: 0; color: var(--brand-muted); font-size: .8rem; }
.form-status {
  display: none;
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--brand-leaf);
  background: #edf5ef;
  color: #285441;
  font-weight: 700;
}
.form-status.visible { display: block; }
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

footer { padding: 32px 0; background: var(--brand-ink-deep); color: rgba(255,255,255,.72); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
footer a { color: #fff; text-underline-offset: 4px; }
.mobile-cta { display: none; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav {
    position: fixed;
    inset: 113px 0 auto;
    display: none;
    align-items: stretch;
    padding: 24px 20px 28px;
    border-bottom: 1px solid var(--brand-line);
    background: var(--brand-surface);
    box-shadow: var(--shadow);
  }
  .nav.open { display: grid; }
  .nav a:not(.button) { padding: 8px 0; font-size: 1.08rem; }
  .hero-grid, .camp-card, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 740px; }
  .directions-grid { grid-template-columns: 1fr; }
  .camp-image { min-height: 430px; }
  .camp-image::after { background: linear-gradient(0deg, rgba(13,43,56,.25), transparent 50%); }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .method-step:nth-child(2) { border-right: 0; }
  .method-step:nth-child(-n+2) { border-bottom: 1px solid var(--brand-line); }
  .parents-grid { gap: 42px; }
  .parents-grid h2 { position: static; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .camp-notice .container { min-height: 46px; }
  .header-inner { min-height: 66px; }
  .brand img { width: 50px; }
  .nav { inset: 112px 0 auto; }
  .hero { padding-top: 46px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.85rem, 15vw, 4.4rem); }
  .hero-visual::before { inset: 15px -12px -14px 14px; }
  .photo-note { right: -5px; bottom: 14px; max-width: 220px; font-size: .9rem; }
  .section-head, .parents-grid { grid-template-columns: 1fr; }
  .direction { grid-template-columns: 1fr; }
  .direction img { height: 235px; }
  .direction-body { min-height: 235px; }
  .camp-image { min-height: 300px; }
  .method-grid { grid-template-columns: 1fr; }
  .method-step { min-height: 0; border-right: 0; border-bottom: 1px solid var(--brand-line); }
  .method-step h3 { margin-top: 25px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .button { width: 100%; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 90;
    display: flex;
    box-shadow: 0 14px 35px rgba(13,43,56,.3);
  }
  footer { padding-bottom: 90px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
