/* ============================================================
   Children's Academy — design system
   Palette drawn from the brand mark: forest green on warm ivory
   ============================================================ */

:root {
  --ivory: #FBF9F5;
  --cream: #F4EFE6;
  --sage: #E9EFE7;
  --ink: #1C211C;
  --ink-soft: #4A544B;
  --forest: #1E3B2A;
  --forest-deep: #142B1E;
  --forest-tint: #2C5540;
  --gold: #B3873B;
  --gold-soft: #F0E4CE;
  --line: rgba(28, 33, 28, 0.12);
  --line-soft: rgba(28, 33, 28, 0.07);
  --white: #FFFFFF;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(20, 43, 30, 0.05), 0 4px 14px rgba(20, 43, 30, 0.05);
  --shadow-md: 0 2px 6px rgba(20, 43, 30, 0.06), 0 14px 38px rgba(20, 43, 30, 0.10);
  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--forest); text-decoration: none; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ---------- Type ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.12;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 5.2vw, 3.9rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.06; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.22rem; line-height: 1.3; }

h1 em, h2 em { font-style: normal; color: var(--forest-tint); }

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.lede {
  font-size: 1.16rem;
  color: var(--ink-soft);
  max-width: 58ch;
}

.section-head { max-width: 700px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 16px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-primary { background: var(--forest); color: #fff; }
.btn-primary:hover { background: var(--forest-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--forest); border-color: rgba(30, 59, 42, 0.35); }
.btn-ghost:hover { border-color: var(--forest); background: rgba(30, 59, 42, 0.05); }

.btn-light { background: #fff; color: var(--forest); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { filter: brightness(0.94); transform: translateY(-1px); }

.btn-sm { padding: 9px 18px; font-size: 0.86rem; }

/* ---------- Announcement bar ---------- */

.announce {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 9px 20px;
}
.announce a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }

/* ---------- Header ---------- */

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 245, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest-tint); }
.nav-links a.active { font-weight: 700; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-links .mobile-only { display: none; }

.bw-mark { width: 17px; height: 17px; flex-shrink: 0; }

.fi { width: 22px; height: 22px; }
.card .icon .fi, .hero-badge .mark .fi { color: var(--forest); }

/* ---------- Tour scheduler ---------- */

.sched-crumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.sched-crumbs .crumb {
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--sage);
  color: var(--forest);
  border-radius: 100px;
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sched-crumbs .crumb button {
  background: none; border: none; cursor: pointer;
  color: var(--forest-tint); font-size: 0.78rem; font-weight: 700;
  text-decoration: underline; text-underline-offset: 2px; padding: 0;
}

.sched-step h3 { margin-bottom: 18px; }
.sched-step .hint { font-size: 0.88rem; color: var(--ink-soft); margin: -10px 0 18px; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.choice {
  text-align: left;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  background: var(--ivory);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.choice:hover { border-color: var(--forest-tint); transform: translateY(-1px); }
.choice strong { display: block; font-size: 1.02rem; margin-bottom: 3px; }
.choice span { color: var(--ink-soft); font-size: 0.85rem; }

/* Calendly-style month calendar + slot column */
.cal-panel { display: grid; grid-template-columns: 1.35fr 1fr; gap: 34px; align-items: start; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-head strong { font-family: var(--font-display); font-size: 1.05rem; }
.cal-nav {
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--ivory);
  cursor: pointer;
  font-size: 1rem;
  color: var(--forest);
  display: grid; place-items: center;
  transition: border-color 0.15s, background 0.15s;
}
.cal-nav:hover:not(:disabled) { border-color: var(--forest-tint); background: var(--sage); }
.cal-nav:disabled { opacity: 0.3; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-dow {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  padding: 6px 0;
  text-transform: uppercase;
}
.cal-day {
  aspect-ratio: 1;
  border: none;
  border-radius: 50%;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(28, 33, 28, 0.32);
  display: grid; place-items: center;
  cursor: default;
}
.cal-day.avail {
  background: var(--sage);
  color: var(--forest);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.cal-day.avail:hover { background: #DCE6DA; transform: scale(1.06); }
.cal-day.sel { background: var(--forest); color: #fff; }
.cal-slots h4 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  margin-bottom: 14px;
  min-height: 22px;
}
.slot-col { display: grid; gap: 9px; max-height: 340px; overflow-y: auto; padding-right: 4px; }
.slot-col .slot { padding: 12px 8px; }
.cal-empty { font-size: 0.88rem; color: var(--ink-soft); border: 1.5px dashed var(--line); border-radius: 14px; padding: 28px 18px; text-align: center; }

.day-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.day, .slot {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 6px;
  background: var(--ivory);
  cursor: pointer;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}
.day small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 0.74rem; margin-top: 2px; }
.day:hover, .slot:hover { border-color: var(--forest-tint); background: var(--sage); }
.slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.slot[disabled] {
  opacity: 0.35; cursor: not-allowed; text-decoration: line-through;
  background: var(--cream);
}
.slot[disabled]:hover { border-color: var(--line); }

.sched-confirm { text-align: center; padding: 16px 0; }
.sched-confirm .big { font-size: 46px; margin-bottom: 14px; }
.sched-summary {
  max-width: 420px; margin: 24px auto; text-align: left;
  background: var(--sage); border-radius: 16px; padding: 22px 26px;
  display: grid; gap: 10px; font-size: 0.93rem;
}
.sched-summary .row { display: flex; justify-content: space-between; gap: 16px; }
.sched-summary .row span:first-child { color: var(--ink-soft); }
.sched-summary .row span:last-child { font-weight: 650; text-align: right; }

@media (max-width: 760px) {
  .day-grid { grid-template-columns: repeat(3, 1fr); }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
  .choice-grid { grid-template-columns: 1fr; }
  .cal-panel { grid-template-columns: 1fr; gap: 24px; }
  .slot-col { max-height: none; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: 0.2s; }

/* ---------- Hero ---------- */

.hero { padding: 84px 0 72px; overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero h1 em { font-style: normal; color: var(--forest-tint); }

.hero .lede { margin: 22px 0 34px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-chips li {
  list-style: none;
  font-size: 0.87rem;
  font-weight: 550;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-chips li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-photo { position: relative; }
.hero-photo .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 4.4;
}
.hero-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::before {
  content: "";
  position: absolute;
  inset: -26px -26px auto auto;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--sage);
  z-index: -1;
}
.hero-badge {
  position: absolute;
  left: -22px; bottom: 34px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 270px;
}
.hero-badge .mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--sage);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hero-badge strong { display: block; font-size: 0.9rem; line-height: 1.3; }
.hero-badge span { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.35; display: block; }

/* ---------- Trust bar ---------- */

.trustbar { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: #fff; }
.trustbar .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.trust-item { text-align: center; padding: 6px 10px; }
.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.22rem;
  display: block;
  color: var(--forest);
  margin-bottom: 3px;
}
.trust-item span { font-size: 0.84rem; color: var(--ink-soft); }

/* ---------- Sections ---------- */

section.block { padding: 96px 0; }
section.block.tint { background: var(--cream); }
section.block.sage { background: var(--sage); }
section.block.dark { background: var(--forest-deep); color: rgba(255,255,255,0.85); }
section.block.dark h2, section.block.dark h3 { color: #fff; }

/* ---------- Cards ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.card .icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--sage);
  display: grid;
  place-items: center;
  font-size: 21px;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- Programs ---------- */

.program-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
}
.program-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.program-card .age {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--sage);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 14px;
}
.program-card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.program-card p { font-size: 0.9rem; color: var(--ink-soft); }

.program-stage {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 40px 0 16px;
}
.program-stage:first-of-type { margin-top: 0; }

/* ---------- Split feature ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split .photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3.4;
}
.split .photo img { width: 100%; height: 100%; object-fit: cover; }

.checklist { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.98rem; color: var(--ink-soft); }
.checklist li strong { color: var(--ink); }
.checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-top: 3px;
}

/* ---------- Locations ---------- */

.location-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.location-card iframe { width: 100%; height: 250px; border: 0; display: block; filter: saturate(0.85); }
.location-card .body { padding: 28px 30px 30px; }
.location-card h3 { margin-bottom: 4px; }
.location-card .addr { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 16px; }
.location-meta { display: grid; gap: 8px; font-size: 0.92rem; }
.location-meta a { font-weight: 600; }
.location-meta .label { color: var(--ink-soft); display: inline-block; min-width: 52px; }

/* ---------- Forms ---------- */

.form-shell {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 44px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 650;
  margin-bottom: 7px;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A544B' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--forest-tint);
  box-shadow: 0 0 0 3px rgba(30, 59, 42, 0.12);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 100px; }

.check-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.check-pills label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--ivory);
  transition: border-color 0.15s, background 0.15s;
}
.check-pills input { accent-color: var(--forest); margin: 0; }
.check-pills label:has(input:checked) { border-color: var(--forest); background: var(--sage); }

.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--forest); flex-shrink: 0; }

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .big { font-size: 46px; margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto; }

/* ---------- FAQ accordion ---------- */

.faq-list { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
details.faq {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
details.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 650;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq .answer { padding: 0 26px 24px; color: var(--ink-soft); font-size: 0.96rem; }
details.faq .answer p + p { margin-top: 10px; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  color: rgba(255,255,255,0.85);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band .actions { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }

/* ---------- Footer ---------- */

footer.site {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.72);
  padding: 72px 0 36px;
  font-size: 0.92rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.foot-brand .wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.foot-brand .roof {
  display: inline-block;
  width: 22px; height: 22px;
}
.foot-brand p { max-width: 34ch; font-size: 0.88rem; }
footer.site h4 {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
footer.site ul { list-style: none; display: grid; gap: 10px; }
footer.site a { color: rgba(255,255,255,0.72); transition: color 0.15s; }
footer.site a:hover { color: #fff; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.foot-bottom a { color: rgba(255,255,255,0.6); }

/* ---------- Demo ribbon ---------- */

.demo-ribbon {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 90;
  background: var(--ink);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 100px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  opacity: 0.92;
}
.demo-ribbon button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
  line-height: 1;
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero { padding: 74px 0 56px; }
.page-hero .lede { margin-top: 18px; }

.photo-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-height: 440px;
}
.photo-banner img { width: 100%; height: 100%; max-height: 440px; object-fit: cover; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 44px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 48px 36px; }
  .cta-band .actions { justify-content: flex-start; }
  .trustbar .wrap { grid-template-columns: repeat(2, 1fr); }
  .hero-photo .frame { aspect-ratio: 16 / 11; }
  .split.reverse .photo { order: -1; }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 26px;
    gap: 18px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links .mobile-only { display: block; font-weight: 700; color: var(--forest); }
  .nav-toggle { display: block; }
  .nav-cta .btn-ghost { display: none; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-shell { padding: 30px 24px; }
  section.block { padding: 64px 0; }
  .hero { padding: 56px 0 48px; }
  .hero-badge { left: 10px; bottom: 14px; }
  .foot-grid { grid-template-columns: 1fr; gap: 34px; }
}
