@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --ink: #6c4037;
  --muted: #84665f;
  --cream: #f0dec7;
  --cream-deep: #eeb889;
  --sage: #eeb889;
  --sage-dark: #6c4037;
  --orange: #cf5517;
  --orange-dark: #aa4311;
  --white: #ffffff;
  --line: rgba(108, 64, 55, .16);
  --shadow: 0 20px 55px rgba(108, 64, 55, .12);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.08rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid rgba(232,129,63,.45); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-sm { padding: 58px 0; }
.bg-cream { background: var(--cream); }
.bg-sage { background: #f8eee4; }
.center { text-align: center; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0 0 18px;
  font-family: Montserrat, ui-sans-serif, system-ui, sans-serif;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.12rem, 1.6vw, 1.38rem); }
.lead, .copy { font-size:1.08rem; line-height:1.7; color:var(--muted); max-width:760px; }
.kicker { font-weight: 800; color: var(--sage-dark); }
.stack > * + * { margin-top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231,228,222,.8);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 900;
}
.brand-mark {
  width: 72px;
  height: 48px;
  display: block;
  flex: 0 0 72px;
  color: transparent;
  background: url('assets/images/foxville-kids-logo-transparent.png') center / contain no-repeat;
  font-size: 0;
}
.site-footer .brand-mark {
  width: 108px;
  height: 71px;
  flex-basis:108px;
}
.brand-text small { display:block; color: var(--muted); font-size: .65rem; letter-spacing:.12em; text-transform:uppercase; }
.nav-links { display: flex; align-items:center; gap: 24px; }
.nav-links a { text-decoration:none; font-size:.93rem; font-weight:700; }
.nav-links a:hover, .nav-links a.active { color: var(--orange-dark); }
.nav-links .btn:hover { color:white; }
.menu-toggle { display:none; border:0; background:var(--cream); width:46px; height:46px; border-radius:14px; cursor:pointer; font-size:1.4rem; }

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding: 12px 20px;
  border-radius:999px;
  border:1px solid transparent;
  background:var(--orange);
  color:white;
  text-decoration:none;
  font-weight:850;
  transition: .2s ease;
  cursor:pointer;
}
.btn:hover { background:var(--orange-dark); transform:translateY(-1px); }
.btn.secondary { background:white; color:var(--ink); border-color:var(--line); }
.btn.secondary:hover { background:var(--cream); }
.btn.small { min-height:42px; padding:10px 17px; font-size:.9rem; }
.section-link{display:inline-block;margin-top:18px;color:#6c4037;font-weight:750;text-decoration:none}.section-link:hover{color:#6c4037;text-decoration:underline;text-underline-offset:4px}.section-action{margin-top:30px}.inline-section-link{margin-left:18px}
.map-link { display:inline-flex; align-items:center; gap:8px; }
.map-link img { width:19px; height:19px; }
.program-glance { margin-top:28px; }
.program-glance h3 { margin-bottom:10px; }
.program-glance p { color:var(--muted); }

.hero {
  overflow:hidden;
  background:#fbf8f4;
}
.hero-grid {
  min-height: 720px;
  padding: 72px 0 96px;
  display:grid;
  grid-template-columns: 1.04fr .96fr;
  align-items:center;
  gap:62px;
}
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.hero-details {
  display:flex; flex-wrap:wrap; gap:10px 18px;
  margin-top:28px; color:var(--sage-dark); font-weight:760; font-size:.95rem;
}
.hero-visual {
  position:relative;
  min-height:540px;
}
.hero-single-photo{margin:0;overflow:hidden;border-radius:var(--radius-lg);box-shadow:var(--shadow);background:var(--cream)}
.hero-single-photo img{width:100%;height:540px;object-fit:cover;object-position:center 56%}
.photo-placeholder {
  position:relative;
  min-height:360px;
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:
    linear-gradient(145deg, rgba(238,184,137,.72), rgba(240,222,199,.95)),
    var(--cream);
  box-shadow:var(--shadow);
}
.grid-2 > .photo-placeholder {
  width:min(100%, 520px);
  aspect-ratio:4 / 5;
  min-height:0;
  justify-self:center;
}
.content-photo {
  width:min(100%, 520px);
  aspect-ratio:4 / 5;
  margin:0;
  justify-self:center;
  overflow:hidden;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  background:var(--cream);
}
.content-photo img,
.card-photo {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.photo-placeholder::before {
  content:"PHOTO PLACEHOLDER";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color:rgba(40,52,47,.48);
  font-weight:900;
  letter-spacing:.14em;
  font-size:.72rem;
}
.photo-placeholder::after {
  content:attr(data-label);
  position:absolute;
  left:18px; right:18px; bottom:18px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.88);
  color:var(--ink);
  font-size:.86rem;
  font-weight:760;
}
.hero-card-main { position:absolute; inset:0 28px 48px 0; }
.hero-card-small { position:absolute; width:46%; right:0; bottom:0; min-height:210px; border:8px solid white; }
.badge {
  position:absolute;
  left:-20px; bottom:56px;
  width:150px; height:150px;
  border-radius:50%;
  display:grid; place-items:center;
  text-align:center;
  background:var(--orange);
  color:white;
  padding:18px;
  font-family:Montserrat,sans-serif;
  font-size:1.08rem;
  transform:rotate(-7deg);
  box-shadow:var(--shadow);
}

.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:34px; align-items:center; }

@media (min-width: 721px) {
  .hero-grid {
    grid-template-columns:minmax(0, 2fr) minmax(280px, 1fr);
  }
  .grid-2:has(> .content-photo:last-child) {
    grid-template-columns:minmax(0, 2fr) minmax(260px, 1fr);
  }
  .grid-2:has(> .content-photo:first-child) {
    grid-template-columns:minmax(260px, 1fr) minmax(0, 2fr);
  }
}
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.cards { margin-top:40px; }
.card {
  padding:28px;
  background:white;
  border:1px solid var(--line);
  border-radius:var(--radius);
}
.card.soft { background:var(--cream); border-color:transparent; }
.card .num {
  width:42px; height:42px; border-radius:14px; display:grid; place-items:center;
  background:var(--cream); color:var(--orange-dark); font-weight:900; margin-bottom:18px;
}
.icon {
  width:50px; height:50px; border-radius:16px; display:grid; place-items:center;
  background:var(--cream); font-size:1.35rem; margin-bottom:18px;
}
.card p { margin:0; color:var(--muted); }
.learning-path-options {
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-top:28px;
}
.learning-path-card {
  padding:22px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--cream);
}
.learning-path-card h3 { margin-bottom:8px; }
.learning-path-card .kicker { margin-bottom:14px; }
.learning-path-card > p:not(.kicker) { color:var(--muted); }
.learning-path-card .list-clean { margin-bottom:0; }
.learning-path-note { margin-top:22px; }
.faq-layout { display:grid; gap:64px; max-width:960px; }
.faq-group > h2 { margin-bottom:28px; }
.faq-item { border-top:1px solid var(--line); }
.faq-item:last-child { border-bottom:1px solid var(--line); }
.faq-item summary { position:relative; padding:22px 52px 22px 0; cursor:pointer; list-style:none; font-weight:750; font-size:1.08rem; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:"+"; position:absolute; right:8px; top:50%; translate:0 -50%; color:var(--orange); font-size:1.55rem; font-weight:500; }
.faq-item[open] summary::after { content:"−"; }
.faq-answer { padding:0 52px 22px 0; color:var(--muted); }
.faq-answer p { margin:0; }
.faq-answer p + p { margin-top:16px; }
.faq-answer ul + p { margin-top:16px; }
.schedule-list { list-style:none; padding:0; margin:0 0 18px; display:grid; gap:8px; }
.schedule-list li { display:grid; grid-template-columns:125px 1fr; gap:18px; padding:8px 0; border-bottom:1px solid rgba(108,64,55,.09); }
.schedule-list strong { color:var(--ink); }
.photo-cards .card,.cards .card:has(.card-photo){padding:10px 10px 26px;overflow:hidden}.card-photo{aspect-ratio:1 / 1;height:auto;object-fit:cover;min-height:0;margin-bottom:22px;border-radius:18px;box-shadow:none}.photo-cards .card h3,.photo-cards .card p,.cards .card:has(.card-photo) h3,.cards .card:has(.card-photo) p{margin-left:16px;margin-right:16px}
.portrait-photo-cards .card-photo { aspect-ratio:4 / 5; }

.example-path {
  display:flex;
  align-items:stretch;
  gap:14px;
  margin-top:34px;
}
.path-step {
  flex:1;
  position:relative;
  padding:10px 10px 24px;
  border-radius:var(--radius);
  background:white;
  border:1px solid var(--line);
  overflow:hidden;
}
.path-photo {
  width:100%;
  aspect-ratio:4 / 5;
  object-fit:cover;
  display:block;
  margin-bottom:22px;
  border-radius:16px;
}
.path-step small,
.path-step h3,
.path-step p { margin-left:14px; margin-right:14px; }
.path-step:not(:last-child)::after {
  content:"→";
  position:absolute;
  top:50%;
  right:-18px;
  transform:translateY(-50%);
  z-index:2;
  width:22px; height:22px; display:grid; place-items:center;
  border-radius:50%; background:var(--orange); color:white; font-weight:900;
}
.path-step small { color:var(--orange-dark); font-weight:850; text-transform:uppercase; letter-spacing:.08em; }
.path-step h3 { margin-top:10px; }

.program-band {
  display:grid; grid-template-columns: 1fr auto; gap:30px; align-items:center;
  padding:36px; background:var(--ink); color:white; border-radius:var(--radius-lg);
}
.program-band p { color:rgba(255,255,255,.75); margin:8px 0 0; }
.program-band .time { font-family:Montserrat,sans-serif; font-weight:750; font-size:clamp(1.7rem,4vw,2.7rem); white-space:nowrap; }

.instagram-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin:34px 0;
}
.outdoor-carousel { position:relative; width:min(100%, 400px); justify-self:center; }
.outdoor-carousel-window { overflow:hidden; border-radius:var(--radius-lg); background:var(--cream); box-shadow:var(--shadow); }
.outdoor-carousel-track { display:flex; transition:transform .35s ease; touch-action:pan-y pinch-zoom; }
.outdoor-slide { flex:0 0 100%; aspect-ratio:4 / 5; margin:0; }
.outdoor-slide img { display:block; width:100%; height:100%; object-fit:cover; }
.outdoor-slide .photo-placeholder { width:100%; height:100%; min-height:0; border-radius:0; box-shadow:none; }
.outdoor-arrow {
  position:absolute; top:calc(50% - 22px); z-index:2; width:44px; height:44px;
  display:grid; place-items:center; border:0; border-radius:50%;
  background:rgba(255,255,255,.38); color:rgba(108,64,55,.48); font:700 1.85rem/1 Montserrat,sans-serif;
  cursor:pointer; box-shadow:none; opacity:.45; transition:.18s ease;
}
.outdoor-arrow:hover { background:rgba(255,255,255,.82); opacity:.9; }
.outdoor-arrow:focus-visible { outline:3px solid rgba(207,85,23,.28); outline-offset:3px; }
.outdoor-arrow-prev { left:12px; }
.outdoor-arrow-next { right:12px; }
.outdoor-dots { display:flex; justify-content:center; gap:7px; min-height:12px; margin-top:16px; }
.outdoor-dot { width:8px; height:8px; padding:0; border:0; border-radius:50%; background:rgba(108,64,55,.25); cursor:pointer; }
.outdoor-dot.active { background:var(--orange); }
.instagram-tile { display:block; width:100%; aspect-ratio:4 / 5; object-fit:cover; min-height:0; border-radius:20px; box-shadow:none; }
.instagram-tile:nth-child(2) { background:linear-gradient(145deg,#f0d8bd,#fbf5ec); }
.instagram-tile:nth-child(3) { background:linear-gradient(145deg,#eeb889,#f8eee4); }

.page-hero { padding:90px 0 70px; background:var(--cream); }
.page-hero h1,
.page-hero .lead {
  width: 100%;
  max-width: none;
}
.page-hero .lead { margin-bottom:0; }
.split-copy { padding-right:24px; }

/* Daily Life */
.daily-hero { background:var(--cream); overflow:hidden; }
.daily-hero-grid {
  min-height:620px;
  padding:76px 0 88px;
  display:grid;
  grid-template-columns:minmax(0,2fr) minmax(270px,1fr);
  align-items:center;
  gap:64px;
}
.daily-hero-photo,
.daily-content-photo { margin:0; overflow:hidden; border-radius:var(--radius-lg); box-shadow:var(--shadow); }
.daily-hero-photo { width:min(100%,400px); aspect-ratio:4 / 5; justify-self:end; background:var(--cream-deep); }
.daily-program-details { align-items:center; }
.daily-program-details strong { white-space:nowrap; }
.daily-hero-photo img,
.daily-content-photo img { width:100%; height:100%; object-fit:cover; }
.daily-rhythm { display:grid; grid-template-columns:minmax(260px,.8fr) minmax(0,1.2fr); gap:76px; align-items:start; }
.daily-rhythm-intro .copy { margin-bottom:28px; }
.daily-rhythm-photo { width:min(100%,340px); aspect-ratio:4 / 5; margin:0; overflow:hidden; border-radius:var(--radius); }
.daily-rhythm-photo img { width:100%; height:100%; object-fit:cover; }
.daily-schedule-list { border-top:1px solid var(--line); }
.daily-schedule-list > div { display:grid; grid-template-columns:126px 1fr; gap:22px; padding:17px 0; border-bottom:1px solid var(--line); }
.daily-schedule-list strong { color:var(--orange-dark); font-size:.9rem; }
.daily-schedule-list span { display:grid; gap:3px; }
.daily-schedule-list b { color:var(--ink); font-size:1rem; }
.daily-schedule-list small { color:var(--muted); font-size:.84rem; line-height:1.5; }
.daily-split { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr); gap:76px; align-items:start; }
.daily-notes { display:grid; gap:14px; }
.daily-notes article {
  display:grid;
  grid-template-columns:52px 1fr;
  gap:16px;
  padding:22px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.62);
  border:1px solid rgba(108,64,55,.1);
}
.daily-notes article > span {
  width:44px; height:44px; display:grid; place-items:center; border-radius:50%;
  background:var(--orange); color:white; font-size:.76rem; font-weight:850;
}
.daily-notes h3 { margin:2px 0 7px; }
.daily-notes p { margin:0; color:var(--muted); }
.daily-content-photo { width:min(100%,390px); aspect-ratio:4 / 5; }
.outdoor-curriculum-intro { width:100%; max-width:none; margin-bottom:44px; }
.outdoor-curriculum-intro .copy { max-width:none; }
.outdoor-curriculum-grid {
  gap:22px;
}
.outdoor-curriculum-card {
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:white;
}
.outdoor-curriculum-card .photo-placeholder {
  width:100%;
  min-height:0;
  aspect-ratio:4 / 5;
  border-radius:0;
  box-shadow:none;
}
.outdoor-curriculum-card .card-photo {
  width:100%;
  margin-bottom:0;
  border-radius:0;
}
.outdoor-card-copy { padding:24px; }
.outdoor-card-copy h3 { margin-bottom:12px; }
.outdoor-card-copy p { margin:0; color:var(--muted); font-size:.94rem; line-height:1.62; }
.outdoor-card-copy p + p { margin-top:12px; }
.daily-faq-cards .card { min-height:100%; }
.daily-faq-cards .card p { margin-bottom:0; }
.afternoon-band { display:grid; grid-template-columns:minmax(0,2fr) minmax(260px,1fr); gap:72px; align-items:center; }
.afternoon-schedule { padding:8px 0; border-top:1px solid var(--line); }
.afternoon-schedule > div { display:grid; grid-template-columns:112px 1fr; gap:18px; padding:16px 0; border-bottom:1px solid var(--line); }
.afternoon-schedule strong { color:var(--orange-dark); }
.afternoon-schedule span { color:var(--muted); font-weight:650; }
.afternoon-photo { width:min(100%,360px); aspect-ratio:4 / 5; margin:0; justify-self:center; overflow:hidden; border-radius:var(--radius); }
.afternoon-photo img { width:100%; height:100%; object-fit:cover; }
.daily-practical { display:grid; grid-template-columns:minmax(220px,.7fr) minmax(0,1.3fr); gap:70px; align-items:start; }
.daily-practical-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:0 30px; }
.daily-practical-grid article { padding:24px 0; border-top:1px solid var(--line); }
.daily-practical-grid article:nth-last-child(-n+2) { border-bottom:1px solid var(--line); }
.daily-practical-grid h3 { margin-bottom:8px; }
.daily-practical-grid p { margin:0; color:var(--muted); }
.daily-cta { background:#f8eee4; }
.daily-cta .lead { margin:0 auto 28px; }

.list-clean { list-style:none; padding:0; margin:26px 0 0; }
.list-clean li { position:relative; padding-left:28px; margin:12px 0; color:var(--muted); }
.list-clean li::before { content:"✓"; position:absolute; left:0; color:var(--orange-dark); font-weight:900; }

.price-card {
  padding:36px; border-radius:var(--radius-lg); background:var(--cream);
}
.price { font-family:Montserrat,sans-serif; font-weight:750; font-size:3rem; line-height:1; margin:16px 0; }
.price span { font-family:Montserrat,sans-serif; font-size:1rem; color:var(--muted); }

.timeline { counter-reset:steps; display:grid; gap:14px; margin-top:34px; }
.timeline-item {
  counter-increment:steps;
  display:grid; grid-template-columns:58px 1fr; gap:18px;
  padding:22px; border:1px solid var(--line); border-radius:var(--radius);
}
.timeline-item::before {
  content:counter(steps);
  width:50px; height:50px; border-radius:50%;
  display:grid; place-items:center; background:var(--orange); color:white; font-weight:900;
}
.timeline-item h3 { margin:2px 0 6px; }
.timeline-item p { margin:0; color:var(--muted); }

.faq details { border-bottom:1px solid var(--line); padding:18px 0; }
.faq summary { cursor:pointer; font-weight:850; }
.faq p { color:var(--muted); }

.form {
  display:grid; grid-template-columns:1fr 1fr; gap:18px;
}
.contact-layout { display:grid; grid-template-columns:.72fr 1.28fr; gap:54px; align-items:start; }
.inquiry-form { padding:30px; border:1px solid var(--line); border-radius:var(--radius-lg); background:#fff; box-shadow:var(--shadow); }
.form .full { grid-column:1/-1; }
label { display:block; font-weight:800; margin-bottom:7px; }
input, textarea, select {
  width:100%; border:1px solid var(--line); border-radius:14px;
  padding:13px 14px; background:white; color:var(--ink);
}
textarea { min-height:100px; resize:vertical; }
.form-note { font-size:.86rem; color:var(--muted); }
.form-card { padding:30px; border:1px solid var(--line); border-radius:var(--radius-lg); background:white; box-shadow:var(--shadow); }
.social-intro { margin-inline:auto; }
.contact-form-prompt { margin:34px 0 0; font-weight:700; color:var(--ink); }
.social-contact-card { display:flex; flex-direction:column; align-items:flex-start; min-height:290px; }
.social-contact-card p { flex:1; margin-bottom:24px; }
.social-card-mark { width:52px; height:52px; display:grid; place-items:center; margin-bottom:18px; border-radius:50%; background:var(--cream); color:var(--ink); font-size:1.15rem; font-weight:850; }
.social-card-mark img { width:24px; height:24px; }
.social-icon img { width:20px; height:20px; }
[aria-disabled="true"] { cursor:not-allowed; opacity:.72; }
.optional { color:var(--muted); font-size:.78rem; font-weight:600; }
.choice-fieldset { margin:0; padding:0; border:0; }
.choice-fieldset legend { margin:0 0 10px; font-weight:800; }
.choice-grid { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:10px; }
.contact-choices { grid-template-columns:repeat(3, minmax(0,1fr)); }
.choice-option { margin:0; cursor:pointer; }
.choice-option input { position:absolute; opacity:0; pointer-events:none; }
.choice-option span { display:flex; min-height:48px; align-items:center; padding:11px 13px; border:1px solid var(--line); border-radius:14px; background:#fff; color:var(--ink); font-size:.86rem; font-weight:700; transition:.18s ease; }
.choice-option input:checked + span { border-color:var(--orange); background:var(--cream); box-shadow:0 0 0 1px var(--orange); }
.choice-option input:focus-visible + span { outline:3px solid rgba(207,85,23,.28); outline-offset:2px; }

.site-footer { background:var(--cream); color:var(--ink); padding:56px 0 22px; font-size:.88rem; line-height:1.6; }
.footer-grid { display:grid; grid-template-columns:1.4fr .8fr 1.1fr .8fr; gap:32px; }
.site-footer p, .site-footer a { color:var(--muted); }
.site-footer .brand { color:var(--ink); }
.site-footer a { text-decoration:none; }
.site-footer a:hover { color:var(--orange-dark); }
.site-footer h3 { font-family:Montserrat,sans-serif; font-size:.88rem; margin-bottom:12px; }
.footer-links { list-style:none; padding:0; margin:0; }
.footer-links li { margin:6px 0; }
.footer-grid > div:nth-child(3) .footer-links li { white-space:nowrap; }
.social-icons{display:flex;gap:10px;margin-top:8px}.social-icons li{margin:0}.social-icon{width:42px;height:42px;border:1px solid rgba(108,64,55,.28);border-radius:50%;display:grid!important;place-items:center;color:var(--ink)!important;font-weight:800;font-size:1.05rem;line-height:1}.social-icon:hover{background:var(--cream-deep);border-color:var(--orange)}
.footer-bottom {
  margin-top:48px; padding-top:22px; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; gap:20px; color:var(--muted); font-size:.84rem;
}

.notice {
  padding:16px 18px; border-radius:16px; background:#fff7ed; border:1px solid #f3d4b9; color:#7b4a2c;
}

@media (max-width: 980px) {
  .menu-toggle { display:grid; place-items:center; }
  .nav-links {
    display:none; position:absolute; left:20px; right:20px; top:70px;
    flex-direction:column; align-items:stretch; gap:0; padding:14px;
    background:white; border:1px solid var(--line); border-radius:20px; box-shadow:var(--shadow);
  }
  .nav-links.open { display:flex; }
  .nav-links a { padding:12px 10px; }
  .nav-links .btn { margin-top:8px; }
  .hero-grid { grid-template-columns:1fr; min-height:auto; padding-top:52px; gap:44px; }
  .hero-visual { min-height:480px; }
  .hero-single-photo img { height:480px; }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .contact-layout { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .daily-rhythm { gap:44px; }
  .daily-split,
  .afternoon-band,
  .daily-practical { gap:44px; }
}

@media (max-width: 720px) {
  .container { width:min(calc(100% - 28px), var(--max)); }
  .section { padding:64px 0; }
  .section-sm { padding:44px 0; }
  .hero-grid { padding-bottom:72px; }
  .hero-visual { min-height:390px; }
  .hero-single-photo img { height:390px; object-position:center 52%; }
  .hero-card-main { inset:0 12px 42px 0; }
  .hero-card-small { min-height:160px; width:48%; }
  .badge { width:112px; height:112px; font-size:.88rem; left:-5px; bottom:42px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns:1fr; }
  .grid-2 > .photo-placeholder,
  .content-photo { width:min(100%, 420px); }
  .example-path { flex-direction:column; }
  .path-step:not(:last-child)::after { content:"↓"; top:auto; bottom:-18px; right:calc(50% - 11px); transform:none; }
  .program-band { grid-template-columns:1fr; }
  .instagram-grid { grid-template-columns:repeat(3,1fr); gap:8px; }
  .outdoor-carousel { width:min(100%, 350px); }
  .outdoor-arrow { display:none; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-grid > div:nth-child(3) .footer-links li { white-space:normal; }
  .footer-bottom { flex-direction:column; }
  .form { grid-template-columns:1fr; }
  .form .full { grid-column:auto; }
  .inquiry-form { padding:20px; }
  .form-card { padding:20px; }
  .choice-fieldset { grid-column:auto; }
  .choice-grid, .contact-choices { grid-template-columns:1fr; }
  .learning-path-options { grid-template-columns:1fr; }
  .page-hero { padding:64px 0 52px; }
  .inline-section-link { display:block; margin-left:0; }
  .daily-hero-grid { grid-template-columns:1fr; min-height:auto; padding:56px 0 68px; gap:38px; }
  .daily-hero-photo { width:min(100%,360px); justify-self:center; }
  .daily-rhythm { grid-template-columns:1fr; }
  .daily-rhythm-photo { width:min(100%,320px); }
  .daily-schedule-list > div { grid-template-columns:100px 1fr; gap:16px; }
  .daily-split,
  .afternoon-band,
  .daily-practical { grid-template-columns:1fr; }
  .daily-practical-grid { grid-template-columns:1fr; }
  .daily-practical-grid article { border-bottom:0 !important; }
  .daily-practical-grid article:last-child { border-bottom:1px solid var(--line) !important; }
  .afternoon-schedule > div { grid-template-columns:96px 1fr; }
  .outdoor-curriculum-intro { margin-bottom:32px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior:auto !important; transition:none !important; }
}
.enrollment-tour-btn {
  margin-top: 18px;
}
/* WordPress inquiry form additions */
.foxville-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.form-response{grid-column:1/-1;margin:0 0 1rem;padding:1rem 1.1rem;border-radius:14px;font-weight:600}
.form-response.success{background:#f0dec7;color:#6c4037}
.form-response.error{background:#fff1ea;color:#9b3510;border:1px solid #eeb889}
