/* Juno — modern luxury Montessori
   Palette: pine / honey / sage on warm paper. Type: Fraunces + Albert Sans. */

:root {
  --paper: #f7f3ec;
  --cream: #efe8db;
  --ink: #222b24;
  --muted: #5c655c;
  --pine: #2c4234;
  --pine-deep: #1e2e23;
  --honey: #a87f3f;
  --honey-soft: #e8d9b8;
  --sage: #9fae98;
  --line: #ddd3c2;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Albert Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 76rem;
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --section-pad: clamp(5rem, 11vw, 9.5rem);
}

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

html { scroll-behavior: smooth; }

/* anchored sections land below the fixed/sticky header */
section[id] { scroll-margin-top: 5.5rem; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: inherit; }

/* ---------- type ---------- */

h1, h2, h3, blockquote p, .wordmark, .footer-tagline {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.75rem, 6.2vw, 4.9rem);
  line-height: 1.06;
  max-width: 16ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12;
  max-width: 18ch;
}

h3 { font-size: 1.35rem; line-height: 1.3; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 1.6rem;
}

.lede { color: var(--muted); max-width: 46ch; }

/* ---------- header ---------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--gutter);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
}

.wordmark {
  font-size: 1.6rem;
  text-decoration: none;
  color: var(--pine-deep);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
}

.site-nav a {
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.site-nav a:not(.nav-cta):hover { color: var(--honey); }

.nav-cta {
  border: 1px solid var(--pine);
  border-radius: 2px;
  padding: 0.55rem 1.15rem;
  color: var(--pine);
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-cta:hover { background: var(--pine); color: var(--paper); }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  background: var(--pine);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border-radius: 2px;
  transition: background 0.25s ease;
}

.btn:hover { background: var(--pine-deep); }

.text-link {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--honey);
  text-underline-offset: 0.45em;
  text-decoration-thickness: 1px;
}

.text-link:hover { color: var(--honey); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.6rem;
}

/* ---------- hero ---------- */

.hero {
  padding: clamp(4rem, 9vh, 7rem) var(--gutter) 0;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-text { max-width: 46rem; }

.hero-sub {
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 38ch;
}

.hero-media {
  margin-top: clamp(3rem, 7vh, 5rem);
  height: clamp(22rem, 68vh, 42rem);
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.hero-media img { object-position: 50% 62%; }

/* ---------- shared section layout ---------- */

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.split-media { aspect-ratio: 4 / 5; overflow: hidden; }

.split--reverse .split-media { aspect-ratio: 4 / 5; }

.split-text h2 { margin-bottom: 1.4rem; }

/* ---------- philosophy ---------- */

.philosophy { border-top: 1px solid var(--line); }

.hero-banner + .philosophy { border-top: 0; }

.pillars {
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2.5rem;
}

.pillar {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.pillar:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }

.pillar dt {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--pine-deep);
}

.pillar dd {
  margin-top: 0.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ---------- interlude ---------- */

.interlude {
  position: relative;
  height: clamp(20rem, 60vh, 34rem);
  overflow: hidden;
}

.interlude figcaption {
  position: absolute;
  left: var(--gutter);
  bottom: 1.8rem;
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(30, 46, 35, 0.55);
}

/* ---------- programs ---------- */

.programs { background: var(--cream); }

.program-list { list-style: none; margin-top: 1rem; }

.program-row {
  padding: 1.9rem 0;
  border-top: 1px solid var(--line);
}

.program-row:last-child { border-bottom: 1px solid var(--line); }

.program-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.program-ages {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--honey);
  white-space: nowrap;
}

.program-row p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 44ch;
}

.program-hours {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.footnote {
  margin-top: 1.6rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
}

/* ---------- why ---------- */

.why .section-inner > h2 { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.why-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.why-media { aspect-ratio: 3 / 2; overflow: hidden; }

.why-list { list-style: none; }

.why-list li {
  padding: 1.7rem 0;
  border-top: 1px solid var(--line);
}

.why-list li:last-child { border-bottom: 1px solid var(--line); }

.why-list h3 { color: var(--pine-deep); }

.why-list p {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.98rem;
}

/* ---------- voices ---------- */

.voices { background: var(--pine-deep); color: var(--paper); }

.voices .eyebrow { color: var(--sage); }

.voices-inner { text-align: center; }

blockquote { max-width: 44rem; margin: 0 auto; }

blockquote p {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.4;
  font-style: italic;
  letter-spacing: 0;
}

blockquote cite {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ---------- visit ---------- */

.visit .split-media { aspect-ratio: 16 / 11; }

.visit-list {
  list-style: none;
  margin-top: 2.2rem;
}

.visit-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.visit-list li:last-child { border-bottom: 1px solid var(--line); }

.visit-list li span:first-child {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--honey);
  padding-top: 0.2rem;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--pine-deep);
  color: var(--paper);
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter);
  border-top: 1px solid rgba(247, 243, 236, 0.12);
}

.footer-tagline {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-style: italic;
  color: var(--cream);
}

.footer-small {
  margin-top: 1.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--sage);
}

/* ---------- reveal ---------- */

/* scoped to html.js so content stays visible if the script never loads */
html.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 54rem) {
  .split, .why-grid { grid-template-columns: 1fr; }

  .split--reverse .split-media { order: -1; }

  .split-media, .split--reverse .split-media { aspect-ratio: 4 / 3; }

  .pillars { grid-template-columns: 1fr; }

  .site-nav a:not(.nav-cta) { display: none; }

  .hero-media { height: clamp(16rem, 52vh, 26rem); }

  .hero-actions { flex-wrap: wrap; gap: 1.2rem 1.8rem; }
}

/* ---------- brand / logo ---------- */

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }

.brand-mark { width: 38px; height: auto; }

.site-nav a[aria-current] { color: var(--honey); }

.footer-mark { width: 96px; height: auto; margin: 0 auto 1.7rem; }

body { overflow-x: clip; }

/* ---------- programs: coming soon + rhythm ---------- */

.program-row--soon h3 { color: var(--muted); }

.program-row--soon .program-ages {
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.3rem 0.75rem;
  background: var(--paper);
}

/* the tag shows the age range; hovering the row reveals "Opening soon" */
.ages-swap { display: inline-grid; }

.ages-swap > span {
  grid-area: 1 / 1;
  justify-self: end;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ages-swap .ages-b {
  opacity: 0;
  transform: translateY(5px);
  color: var(--honey);
}

@media (hover: hover) {
  .program-row--soon:hover .ages-a { opacity: 0; transform: translateY(-5px); }

  .program-row--soon:hover .ages-b { opacity: 1; transform: none; }
}

/* no hover (touch): show both, separated */
@media (hover: none) {
  .ages-swap { display: inline-flex; gap: 0.45rem; }

  .ages-swap .ages-b { opacity: 1; transform: none; }

  .ages-swap .ages-b::before { content: "· "; color: var(--muted); }
}

.program-row--soon p { font-size: 0.92rem; }

.rhythm {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.rhythm-heading { font-size: 1.7rem; margin-bottom: 2.2rem; }

.rhythm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.rhythm-col h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--pine-deep);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.rhythm-col ul { list-style: none; }

.rhythm-col li {
  display: flex;
  gap: 1.4rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}

.rhythm-col li span:first-child {
  min-width: 2.9rem;
  padding-top: 0.14rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--honey);
}

/* ---------- voices: rotating quotes ---------- */

.quotes { display: grid; }

.quotes .quote {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.quotes .quote.is-active { opacity: 1; }

.quote-nav {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 2.6rem;
}

.quote-nav button {
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  padding: 0.35rem 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  opacity: 0.55;
  cursor: pointer;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}

.quote-nav button:hover { opacity: 0.85; }

.quote-nav button.is-active { opacity: 1; border-bottom-color: var(--sage); }

/* ---------- visit: status + map ---------- */

/* value column: times on one line, status chip right-aligned beneath */
.visit-list li > span:last-child {
  display: grid;
  justify-items: end;
  gap: 0.35rem;
  text-align: right;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.24rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
}

.status.is-open {
  border-color: color-mix(in srgb, #3d7a4f 35%, transparent);
  background: color-mix(in srgb, #3d7a4f 7%, var(--paper));
  color: #2f5f3e;
}

.status.is-open i { background: #3d7a4f; }

.status em { font-style: normal; }

.map-frame {
  aspect-ratio: 4 / 3.2;
  border: 1px solid var(--line);
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) sepia(0.1) saturate(0.9);
}

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

.closing {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(5rem, 12vw, 9rem) var(--gutter);
}

.closing-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 243, 236, 0.97) 0%, rgba(247, 243, 236, 0.7) 100%);
}

.closing-inner { position: relative; z-index: 1; max-width: 38rem; }

.closing-inner h2 { margin: 0 auto 1rem; }

.closing-inner p { color: var(--muted); margin-bottom: 2.4rem; }

/* ---------- doula page ---------- */

.inline-quote { margin: 1.8rem 0; max-width: none; text-align: left; }

.inline-quote p {
  font-size: 1.32rem;
  line-height: 1.5;
  color: var(--pine-deep);
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.moments-grid img { aspect-ratio: 4 / 5; }

.moments-grid figcaption {
  margin-top: 0.85rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

.cta-sub {
  max-width: 46ch;
  margin: 1.9rem auto 0;
  color: var(--sage);
  font-size: 1rem;
}

.btn--light { background: var(--paper); color: var(--pine-deep); }

.btn--light:hover { background: var(--cream); }

/* ---------- immersive hero banner ---------- */

.hero-banner {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 38rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 80% at 20% 88%, rgba(30, 46, 35, 0.72) 0%, rgba(30, 46, 35, 0) 62%),
    linear-gradient(180deg, rgba(30, 46, 35, 0.55) 0%, rgba(30, 46, 35, 0.05) 30%, rgba(30, 46, 35, 0.38) 100%);
}

.hero-banner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) calc(clamp(2.6rem, 6vh, 4.5rem) + clamp(2.2rem, 5vw, 4rem));
  color: var(--paper);
}

.hero-banner-content h1 {
  color: #fff;
  max-width: 17ch;
  text-shadow: 0 1px 24px rgba(30, 46, 35, 0.35);
}

.hero-banner-content h1 em {
  font-style: italic;
  font-weight: 400;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.15rem;
  margin-bottom: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(30, 46, 35, 0.38);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.5;
}

.hero-badge i {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--honey);
  box-shadow: 0 0 0 3px rgba(168, 127, 63, 0.3);
}

.hero-banner-content .hero-tagline {
  color: var(--honey-soft);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

.hero-banner-content .hero-sub {
  color: rgba(247, 243, 236, 0.92);
  text-shadow: 0 1px 16px rgba(30, 46, 35, 0.4);
}

/* shallow paper arch rising into the hero's bottom edge */
.hero-arch {
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -1px;
  height: clamp(2.2rem, 5vw, 4rem);
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 1;
}

/* staggered entrance for the hero stack */
.hero-banner-content .reveal:nth-child(1) { transition-delay: 0.05s; }
.hero-banner-content .reveal:nth-child(2) { transition-delay: 0.15s; }
.hero-banner-content .reveal:nth-child(3) { transition-delay: 0.25s; }
.hero-banner-content .reveal:nth-child(4) { transition-delay: 0.32s; }
.hero-banner-content .reveal:nth-child(5) { transition-delay: 0.4s; }

.text-link--light {
  color: #fff;
  text-decoration-color: var(--honey-soft);
}

.text-link--light:hover { color: var(--honey-soft); }

/* ---------- overlay header (transparent over hero, solid on scroll) ---------- */

.site-header--overlay {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header--overlay:not(.is-scrolled) .wordmark,
.site-header--overlay:not(.is-scrolled) .site-nav a {
  color: #fff;
  text-shadow: 0 1px 10px rgba(30, 46, 35, 0.4);
}

.site-header--overlay:not(.is-scrolled) .site-nav a:not(.nav-cta):hover { color: var(--honey-soft); }

.site-header--overlay:not(.is-scrolled) .nav-cta {
  border-color: rgba(255, 255, 255, 0.75);
}

.site-header--overlay:not(.is-scrolled) .nav-cta:hover {
  background: var(--paper);
  color: var(--pine-deep);
}

.site-header--overlay.is-scrolled {
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom-color: var(--line);
  backdrop-filter: blur(10px);
}

/* ---------- hero tagline ---------- */

.hero-tagline {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--honey);
}

.hero-tagline + .hero-sub { margin-top: 0.9rem; }

/* ---------- about page ---------- */

.portrait-media { aspect-ratio: 1 / 1; }

.landscape-media { aspect-ratio: 4 / 3; }

.chip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.chip-list li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pine);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  background: var(--paper);
}

/* ---------- closing band, dark variant (doula CTA) ---------- */

.closing--dark { color: var(--paper); }

.closing--dark::after {
  background: linear-gradient(180deg, rgba(30, 46, 35, 0.78), rgba(30, 46, 35, 0.88));
}

.closing--dark .eyebrow { color: var(--sage); }

.closing--dark .closing-inner p { color: var(--cream); }

.closing--dark h2 { color: var(--paper); }

/* ---------- contact form ---------- */

.split--form { align-items: start; }

.inquiry-form {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}

.form-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--pine-deep);
  margin-bottom: 1.6rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.2rem;
  margin-bottom: 1.8rem;
}

.form-wide { grid-column: 1 / -1; }

.inquiry-form label { display: block; }

.inquiry-form label span {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 0.85rem;
}

.inquiry-form textarea { resize: vertical; }

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 2px solid var(--honey);
  outline-offset: 1px;
}

.inquiry-form .btn { border: 0; cursor: pointer; width: 100%; }

.form-note {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.map-frame--wide { aspect-ratio: 16 / 7; }

/* ---------- footer social ---------- */

.footer-social {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 1.6rem;
}

.footer-social a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
}

.footer-social a:hover { color: var(--cream); }

.footer-social + .footer-small { margin-top: 1.4rem; }

.visit-list a { text-decoration: none; }

.visit-list a:hover { color: var(--honey); }

/* ---------- responsive additions ---------- */

@media (max-width: 54rem) {
  .rhythm-grid, .moments-grid { grid-template-columns: 1fr; }

  .status { margin-top: 0.1rem; }

  .form-grid { grid-template-columns: 1fr; }

  .portrait-media, .split--reverse .portrait-media { aspect-ratio: 1 / 1; }
}

/* ============ micro-interactions & polish ============ */

/* nav links: honey underline slides in; current page keeps it */
.site-nav a:not(.nav-cta) { position: relative; }

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: var(--honey);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a[aria-current]:not(.nav-cta)::after { transform: scaleX(1); }

/* brand butterfly nudges on hover */
.brand-mark { transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }

.brand:hover .brand-mark { transform: translateY(-2px) rotate(-4deg); }

/* buttons lift */
.btn { transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; }

.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 16px -12px rgba(30, 46, 35, 0.45); }

.btn:active { transform: translateY(0); box-shadow: none; }

.text-link { transition: color 0.25s ease, text-underline-offset 0.25s ease; }

.text-link:hover { text-underline-offset: 0.6em; }

/* photography breathes slowly on hover */
.split-media img,
.why-media img,
.interlude img { transition: transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1); }

.split-media:hover img,
.why-media:hover img,
.interlude:hover img { transform: scale(1.04); }

/* moments: image brightens, caption warms */
.moments-grid img { transition: filter 0.5s ease; }

.moments-grid figure:hover img { filter: brightness(1.05) saturate(1.05); }

.moments-grid figcaption { transition: color 0.3s ease; }

.moments-grid figure:hover figcaption { color: var(--honey); }

/* editorial rows: honey rule + gentle indent */
.program-row,
.why-list li {
  border-left: 2px solid transparent;
  transition: border-color 0.3s ease, padding-left 0.35s ease, margin-right 0.35s ease;
}

/* indent is offset by negative right margin so text never re-wraps */
.program-row:hover,
.why-list li:hover {
  border-left-color: var(--honey);
  padding-left: 0.6rem;
  margin-right: -0.6rem;
}

/* pillars: top rule warms */
.pillar { transition: border-color 0.35s ease; }

.pillar:hover { border-top-color: var(--honey); }

/* rhythm rows sharpen from muted to ink */
.rhythm-col li { transition: color 0.25s ease; }

.rhythm-col li:hover { color: var(--ink); }

/* map wakes to full colour */
.map-frame iframe { transition: filter 0.6s ease; }

.map-frame:hover iframe { filter: none; }

/* footer butterfly drifts */
@keyframes butterfly-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.footer-mark { animation: butterfly-drift 7s ease-in-out infinite; }

/* keyboard focus */
:focus-visible { outline: 2px solid var(--honey); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .footer-mark { animation: none; }

  .btn, .brand-mark, .text-link,
  .split-media img, .why-media img, .interlude img,
  .program-row, .why-list li { transition: none; }

  .btn:hover, .brand:hover .brand-mark,
  .split-media:hover img, .why-media:hover img, .interlude:hover img { transform: none; }
}

/* ============ mobile nav + review fixes ============ */

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.45rem;
  cursor: pointer;
  color: var(--pine-deep);
}

.nav-toggle i {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease;
}

.nav-toggle i + i { margin-top: 5px; }

.nav-open .nav-toggle i:first-child { transform: translateY(3.5px) rotate(45deg); }

.nav-open .nav-toggle i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.site-header--overlay:not(.is-scrolled) .nav-toggle { color: #fff; }

/* open menu forces the solid header treatment, even over the hero */
.site-header--overlay.nav-open {
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  border-bottom-color: var(--line);
}

.site-header--overlay.nav-open .wordmark,
.site-header--overlay.nav-open .site-nav a { color: var(--ink); text-shadow: none; }

.site-header--overlay.nav-open .nav-toggle { color: var(--pine-deep); }

.site-header--overlay.nav-open .nav-cta { border-color: var(--pine); color: var(--pine); }

/* larger, quieter quote-nav tap targets */
.quote-nav button { padding: 0.7rem 0.2rem; opacity: 0.7; }

/* balance the why column heights */
.why-media { aspect-ratio: 4 / 5; }

@media (max-width: 54rem) {
  .nav-toggle { display: block; }

  .site-header.nav-open .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.4rem var(--gutter) 1.5rem;
  }

  .site-header.nav-open .site-nav a:not(.nav-cta) {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-header.nav-open .nav-cta { margin-top: 1.1rem; text-align: center; }

  .hero-badge {
    font-size: 0.62rem;
    letter-spacing: 0.11em;
    padding: 0.5rem 0.95rem;
    border-radius: 1.1rem;
    align-items: flex-start;
  }

  .hero-badge i { margin-top: 0.4em; }

  /* embedded map must not trap scrolling; "Get directions" covers navigation */
  .map-frame iframe { pointer-events: none; }

  .program-row--soon .program-ages { white-space: normal; }

  .why-media { aspect-ratio: 4 / 3; }
}

/* ============ daily rhythm: looping day playback ============ */

.rhythm-col li {
  position: relative;
  padding-left: 1.15rem;
}

.rhythm-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--line);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.rhythm-col li.is-now {
  color: var(--ink);
  background: linear-gradient(90deg, rgba(168, 127, 63, 0.08), transparent 70%);
}

.rhythm-col li.is-now::before {
  background: var(--honey);
  box-shadow: 0 0 0 3px rgba(168, 127, 63, 0.22);
}

.rhythm-col li.is-now span:first-child { color: var(--pine-deep); }

.rhythm-col li { transition: color 0.35s ease, background 0.5s ease; }
