/* ============================================================
   Small Wonders Child Care — unique design system
   Archetype: warm & nurturing, playful editorial. Rounded
   everything, oversized Fraunces headlines, organic blob masks,
   dotted paths + leaf/star doodles, gentle vertical wave with
   alternating sage / cream sections and rounded-pill cards.
   ============================================================ */

:root {
  /* palette from design_dna */
  --cream:   #FBF6EC;
  --cream-2: #F4ECDB;
  --sage:    #8AA178;
  --sage-d:  #6F8560;
  --clay:    #D08A66;
  --clay-d:  #B86F4B;
  --sky:     #A9C4D4;
  --sky-d:   #7FA6BC;
  --ink:     #4A3F35;
  --ink-soft:#6B5E50;
  --yellow:  #F2C66B;
  --white:   #FFFDF8;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --r-sm: 16px;
  --r-md: 26px;
  --r-lg: 40px;
  --r-pill: 999px;

  --shadow-soft: 0 18px 40px -22px rgba(74, 63, 53, .35);
  --shadow-lift: 0 26px 60px -28px rgba(74, 63, 53, .45);

  --ease: cubic-bezier(.34, 1.2, .5, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--clay-d); text-decoration: none; }
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .4em;
  letter-spacing: -.01em;
}

p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--cream);
  padding: 10px 18px; border-radius: var(--r-pill); font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: var(--cream); }

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-body);
  font-weight: 700; font-size: 1rem;
  padding: .85em 1.5em;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s ease;
  line-height: 1;
}
.btn .ic { width: 18px; height: 18px; }
.btn-primary { background: var(--clay); color: var(--white); box-shadow: 0 10px 22px -10px var(--clay-d); }
.btn-primary:hover { background: var(--clay-d); color: var(--white); transform: translateY(-2px); }
.btn-secondary { background: var(--cream); color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-sage { background: var(--sage); color: var(--white); box-shadow: 0 10px 22px -10px var(--sage-d); }
.btn-sage:hover { background: var(--sage-d); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(74,63,53,.25); }
.btn-ghost:hover { background: rgba(74,63,53,.06); color: var(--ink); }

.ic { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- sky bar ---------- */
.skybar { background: var(--sage); color: var(--white); font-size: .86rem; }
.skybar-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.sky-tag { font-weight: 500; letter-spacing: .01em; }
.sky-phone { color: var(--white); display: inline-flex; align-items: center; gap: .45em; font-weight: 700; }
.sky-phone .ic { width: 15px; height: 15px; }
.sky-phone:hover { color: var(--yellow); }
@media (max-width: 620px) { .sky-tag { display: none; } .skybar-in { justify-content: center; } }

/* ---------- header / nav ---------- */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 246, 236, .92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(138, 161, 120, .25);
}
.head-in { display: flex; align-items: center; gap: 18px; min-height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  background: var(--yellow);
  border-radius: 50% 50% 48% 52% / 55% 50% 50% 45%;
  flex: none;
}
.brand-mark svg { width: 30px; height: 30px; fill: var(--ink); }
.brand-words { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--ink); }
.brand-sub { font-size: .72rem; color: var(--sage-d); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav > a {
  font-weight: 600; color: var(--ink-soft);
  padding: .55em .9em; border-radius: var(--r-pill);
  transition: background .2s ease, color .2s ease;
}
.nav > a:hover { background: rgba(138, 161, 120, .18); color: var(--ink); }
.nav > a.active { color: var(--ink); background: rgba(208, 138, 102, .16); }
.nav-cta { margin-left: 8px; color: var(--white); }
.nav-cta:hover { color: var(--white); }

.menu-btn {
  display: none; margin-left: auto;
  width: 46px; height: 46px;
  background: var(--cream-2); border: 2px solid rgba(74,63,53,.15);
  border-radius: 50%; cursor: pointer; place-items: center;
}
.menu-btn svg { width: 24px; height: 24px; fill: none; stroke: var(--ink); stroke-width: 2.2; stroke-linecap: round; }

@media (max-width: 900px) {
  .menu-btn { display: grid; }
  .nav {
    position: fixed; inset: 112px 14px auto 14px;
    flex-direction: column; align-items: stretch; gap: 6px;
    background: var(--white);
    padding: 16px; border-radius: var(--r-lg);
    box-shadow: var(--shadow-lift);
    border: 2px solid rgba(138,161,120,.3);
    transform: translateY(-12px) scale(.98); opacity: 0; pointer-events: none;
    transition: opacity .22s ease, transform .22s var(--ease);
  }
  .site-head.open .nav { opacity: 1; transform: none; pointer-events: auto; }
  .nav > a { padding: .8em 1em; font-size: 1.05rem; }
  .nav-cta { margin: 6px 0 0; justify-content: center; }
}

/* ---------- section scaffolding (the gentle wave) ---------- */
section { position: relative; }
.band { padding: 88px 0; position: relative; }
.band-cream { background: var(--cream); }
.band-sage  { background: var(--sage); color: var(--cream); }
.band-sky   { background: var(--sky); }
.band-cream2 { background: var(--cream-2); }
.band-sage h2, .band-sage h3 { color: var(--white); }

/* top/bottom organic wave dividers */
.wave-top, .wave-bot { position: absolute; left: 0; width: 100%; line-height: 0; pointer-events: none; }
.wave-top { top: -1px; transform: translateY(-99%); }
.wave-bot { bottom: -1px; transform: translateY(99%); }
.wave-top svg, .wave-bot svg { width: 100%; height: 56px; display: block; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--clay-d);
  background: rgba(208,138,102,.12);
  padding: .45em 1em; border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.band-sage .eyebrow { color: var(--ink); background: rgba(251,246,236,.85); }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
h2.big { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.lead { font-size: 1.18rem; color: var(--ink-soft); }
.band-sage .lead { color: rgba(251,246,236,.9); }

/* dotted-path doodle */
.dots { display: block; height: 18px; margin: 6px 0; opacity: .55; }
.dots svg { height: 18px; }

/* ============================================================
   HERO — big Fraunces headline over overlapping blob photos
   ============================================================ */
.hero { position: relative; padding: 56px 0 96px; background: var(--cream); overflow: hidden; }
.hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-deco .blob-bg { position: absolute; border-radius: 46% 54% 60% 40% / 50% 44% 56% 50%; }
.hero-deco .b1 { width: 420px; height: 420px; background: rgba(169,196,212,.35); top: -120px; right: -80px; }
.hero-deco .b2 { width: 320px; height: 320px; background: rgba(242,198,107,.28); bottom: -120px; left: -100px; }

.hero-in { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center; }
.hero-copy { max-width: 560px; }
.hero h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); font-weight: 600; line-height: 1.02; }
.hero h1 .hl { color: var(--clay); font-style: italic; font-weight: 500; }
.hero-sub { font-size: 1.28rem; color: var(--ink-soft); margin-bottom: .4em; }
.hero-body { font-size: 1.05rem; color: var(--ink-soft); max-width: 500px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* blob photo cluster */
.hero-cluster { position: relative; min-height: 460px; }
.blob-photo { position: absolute; overflow: hidden; box-shadow: var(--shadow-lift); background: var(--cream-2); }
.blob-photo img { width: 100%; height: 100%; object-fit: cover; }
.hc-main {
  width: 78%; aspect-ratio: 3/2; top: 14%; left: 0;
  border-radius: 56% 44% 52% 48% / 56% 50% 50% 44%;
}
.hc-2 {
  width: 46%; aspect-ratio: 1/1; right: 0; top: 0;
  border-radius: 52% 48% 46% 54% / 50% 56% 44% 50%;
  border: 6px solid var(--cream);
}
.hc-3 {
  width: 40%; aspect-ratio: 1/1; right: 6%; bottom: 0;
  border-radius: 46% 54% 50% 50% / 54% 46% 54% 46%;
  border: 6px solid var(--cream);
}
.hero-badge {
  position: absolute; left: -6px; bottom: 6%;
  background: var(--white); color: var(--ink);
  padding: 14px 20px; border-radius: var(--r-md);
  box-shadow: var(--shadow-soft); z-index: 3;
  display: flex; align-items: center; gap: 12px; max-width: 230px;
}
.hero-badge .star { width: 38px; height: 38px; flex: none; display: grid; place-items: center; background: var(--yellow); border-radius: 50% 50% 48% 52% / 55% 50% 50% 45%; }
.hero-badge .star svg { width: 22px; height: 22px; fill: var(--ink); }
.hero-badge b { font-family: var(--font-display); font-size: 1.05rem; display: block; }
.hero-badge span { font-size: .82rem; color: var(--ink-soft); }

@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; gap: 40px; }
  .hero-cluster { min-height: 380px; max-width: 480px; margin-inline: auto; }
}
@media (max-width: 520px) {
  .hero-cluster { min-height: 320px; }
  .hero-badge { left: 0; padding: 10px 14px; }
}

/* ============================================================
   TRUST strip — rounded pill cards
   ============================================================ */
.trust { background: var(--white); padding: 0; }
.trust-in {
  margin-top: -40px; position: relative; z-index: 5;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(138,161,120,.2);
  padding: 30px 26px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item .tdot {
  width: 44px; height: 44px; flex: none; display: grid; place-items: center;
  border-radius: 50% 50% 48% 52% / 55% 50% 50% 45%;
}
.trust-item:nth-child(1) .tdot { background: rgba(138,161,120,.22); }
.trust-item:nth-child(2) .tdot { background: rgba(208,138,102,.22); }
.trust-item:nth-child(3) .tdot { background: rgba(169,196,212,.3); }
.trust-item:nth-child(4) .tdot { background: rgba(242,198,107,.3); }
.trust-item .tdot svg { width: 24px; height: 24px; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-item h3 { font-size: 1.05rem; margin: 0 0 2px; }
.trust-item p { font-size: .9rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 820px) { .trust-in { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .trust-in { grid-template-columns: 1fr; } }

/* ============================================================
   PROGRAM cards (rounded-pill, organic, never rigid)
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 2px solid rgba(74,63,53,.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card-media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--cream); color: var(--ink);
  font-size: .76rem; font-weight: 700; letter-spacing: .03em;
  padding: .35em .9em; border-radius: var(--r-pill);
  box-shadow: var(--shadow-soft);
}
.card-body { padding: 22px 24px 26px; }
.card-body h3 { font-size: 1.3rem; }
.card-body p { color: var(--ink-soft); font-size: .98rem; margin: 0; }
.card-noimg .card-body { padding-top: 26px; }
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

/* simple feature pills (no image) */
.pills { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 40px; }
.pill {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  border: 2px solid rgba(138,161,120,.25);
  display: flex; gap: 18px; align-items: flex-start;
}
.band-sage .pill { background: rgba(251,246,236,.95); border-color: transparent; }
.pill .pnum {
  font-family: var(--font-display); font-weight: 700;
  width: 48px; height: 48px; flex: none; display: grid; place-items: center;
  background: var(--yellow); color: var(--ink);
  border-radius: 50% 50% 48% 52% / 55% 50% 50% 45%;
  font-size: 1.2rem;
}
.pill h3 { font-size: 1.2rem; margin: 0 0 4px; }
.pill p { color: var(--ink-soft); margin: 0; font-size: .97rem; }
@media (max-width: 700px) { .pills { grid-template-columns: 1fr; } }

/* ============================================================
   DAILY SCHEDULE — signature section, dotted vertical path
   ============================================================ */
.day-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; margin-top: 20px; }
.day-photo { position: relative; }
.day-photo .blob-photo {
  position: relative; width: 100%; aspect-ratio: 4/5;
  border-radius: 52% 48% 46% 54% / 56% 52% 48% 44%;
}
.day-photo .day-sticker {
  position: absolute; right: -10px; top: -16px;
  background: var(--clay); color: var(--white);
  font-family: var(--font-display); font-weight: 600;
  width: 96px; height: 96px; border-radius: 50% 50% 46% 54% / 54% 50% 50% 46%;
  display: grid; place-items: center; text-align: center; line-height: 1.1;
  font-size: .92rem; padding: 10px; box-shadow: var(--shadow-lift);
}
.timeline { position: relative; padding-left: 38px; }
.timeline::before {
  content: ""; position: absolute; left: 13px; top: 8px; bottom: 8px;
  width: 0; border-left: 3px dotted rgba(251,246,236,.55);
}
.band-cream .timeline::before, .band-cream2 .timeline::before { border-left-color: rgba(138,161,120,.5); }
.tl-item { position: relative; padding: 0 0 26px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -38px; top: 4px;
  width: 28px; height: 28px; border-radius: 50% 50% 48% 52% / 55% 50% 50% 45%;
  background: var(--yellow); border: 3px solid var(--white);
  box-shadow: var(--shadow-soft);
}
.tl-item h3 { font-size: 1.15rem; margin: 0 0 3px; }
.tl-item p { margin: 0; font-size: .97rem; }
.band-sage .tl-item p { color: rgba(251,246,236,.88); }
.band-cream .tl-item p, .band-cream2 .tl-item p { color: var(--ink-soft); }
@media (max-width: 820px) { .day-wrap { grid-template-columns: 1fr; gap: 40px; } .day-photo { max-width: 420px; margin-inline: auto; } }

/* ============================================================
   ABOUT / founder split
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media .blob-photo {
  position: relative; width: 100%; aspect-ratio: 4/5; max-width: 460px;
  border-radius: 54% 46% 48% 52% / 58% 50% 50% 42%;
  margin-inline: auto;
}
.split-media .leaf { position: absolute; width: 70px; opacity: .9; }
.split-media .leaf.l1 { top: -22px; left: -10px; fill: var(--sage); }
.split-media .leaf.l2 { bottom: -18px; right: 8%; fill: var(--clay); }
.split-copy h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
.signature { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--clay-d); margin-top: 8px; }
.prog-list { list-style: none; margin: 4px 0 24px; padding: 0; display: grid; gap: 10px; }
.prog-list li { position: relative; padding-left: 32px; color: var(--ink-soft); font-size: 1rem; }
.prog-list li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px;
  background: var(--sage); border-radius: 50% 50% 48% 52% / 55% 50% 50% 45%;
}
.prog-list li::after {
  content: ""; position: absolute; left: 5px; top: 11px;
  width: 8px; height: 5px; border-left: 2px solid var(--white); border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 38px; }
  .split.rev .split-media { order: 0; }
  .split-media .blob-photo { max-width: 380px; }
}

/* ============================================================
   TESTIMONIALS — soft cards
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 44px; }
.quote {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 34px;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(74,63,53,.06);
  position: relative;
}
.quote .qmark { font-family: var(--font-display); font-size: 3.4rem; color: var(--sky-d); line-height: .6; display: block; height: 30px; }
.quote p { font-size: 1.06rem; color: var(--ink); font-style: italic; }
.quote .qby { font-family: var(--font-display); font-weight: 600; font-style: normal; color: var(--clay-d); font-size: 1rem; }
@media (max-width: 700px) { .quotes { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faqs { max-width: 820px; margin: 40px auto 0; display: grid; gap: 14px; }
.faq-item {
  background: var(--white); border-radius: var(--r-md);
  border: 2px solid rgba(138,161,120,.22);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; cursor: pointer;
  background: none; border: 0; padding: 20px 24px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { width: 26px; height: 26px; flex: none; display: grid; place-items: center; background: rgba(138,161,120,.18); border-radius: 50%; transition: transform .3s var(--ease); }
.faq-q .chev svg { width: 15px; height: 15px; fill: none; stroke: var(--ink); stroke-width: 2.5; stroke-linecap: round; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--clay); }
.faq-item.open .faq-q .chev svg { stroke: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-in { padding: 0 24px 22px; color: var(--ink-soft); }
.faq-item.open .faq-a { max-height: 320px; }

/* ============================================================
   FORMS (tour / contact)
   ============================================================ */
.form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift);
  border: 2px solid rgba(138,161,120,.25);
  padding: 36px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .9rem; color: var(--ink); }
.field label .req { color: var(--clay-d); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--cream);
  border: 2px solid rgba(74,63,53,.14);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); background: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-actions { margin-top: 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-note { font-size: .86rem; color: var(--ink-soft); }
.thanks {
  display: none;
  background: rgba(138,161,120,.14);
  border: 2px solid var(--sage);
  border-radius: var(--r-md);
  padding: 26px 28px; margin-top: 0;
}
.thanks.show { display: block; }
.thanks h3 { color: var(--sage-d); }
.thanks p { margin: 0; color: var(--ink-soft); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 26px 22px; } }

/* ---------- contact layout ---------- */
.contact-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 36px; align-items: start; }
.contact-side { display: grid; gap: 20px; }
.info-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 2px solid rgba(138,161,120,.22);
  box-shadow: var(--shadow-soft); padding: 26px 28px;
}
.info-card h3 { font-size: 1.2rem; margin: 0 0 10px; }
.info-card p { font-size: .96rem; color: var(--ink-soft); margin: 0 0 8px; }
.info-card p:last-child { margin-bottom: 0; }
.info-phone { font-size: 1.45rem; margin: 0 0 8px; }
.map-placeholder { position: relative; border-radius: var(--r-md); overflow: hidden; margin-top: 14px; aspect-ratio: 300/160; }
.map-placeholder svg { width: 100%; height: 100%; display: block; }
.map-label {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  background: var(--white); color: var(--ink); font-weight: 700; font-size: .82rem;
  padding: .3em .9em; border-radius: var(--r-pill); box-shadow: var(--shadow-soft);
}
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero { background: var(--cream-2); padding: 64px 0 70px; position: relative; overflow: hidden; }
.page-hero .blob-bg { position: absolute; border-radius: 46% 54% 60% 40% / 50% 44% 56% 50%; pointer-events: none; }
.page-hero .pb1 { width: 360px; height: 360px; background: rgba(169,196,212,.3); top: -140px; right: -60px; }
.page-hero .pb2 { width: 240px; height: 240px; background: rgba(242,198,107,.28); bottom: -120px; left: -80px; }
.page-hero-in { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { font-size: clamp(2.3rem, 5.4vw, 3.8rem); }
.page-hero .lead { font-size: 1.2rem; }
.crumbs { font-size: .85rem; color: var(--ink-soft); margin-bottom: 14px; font-weight: 600; }
.crumbs a { color: var(--sage-d); }

/* ============================================================
   GALLERY grid + lightbox
   ============================================================ */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 20px; }
.gal-grid figure { margin: 0; }
.gal-item {
  display: block; width: 100%; padding: 0; border: 0; cursor: pointer;
  background: var(--cream-2); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; transition: transform .5s var(--ease); }
.gal-item:hover img { transform: scale(1.06); }
.gal-grid .g-tall img { aspect-ratio: 1/1; }
/* organic varied blob masks across the grid */
.gal-item.m1 { border-radius: 54% 46% 50% 50% / 56% 50% 50% 44%; }
.gal-item.m2 { border-radius: 48% 52% 56% 44% / 50% 56% 44% 50%; }
.gal-item.m3 { border-radius: 50% 50% 46% 54% / 54% 46% 54% 46%; }
.gal-item.m4 { border-radius: 56% 44% 48% 52% / 50% 52% 48% 50%; }
@media (max-width: 760px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .gal-grid { grid-template-columns: 1fr; } }

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(74,63,53,.88);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lb-img { max-width: 90vw; max-height: 82vh; border-radius: var(--r-lg); box-shadow: var(--shadow-lift); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: var(--cream); color: var(--ink);
  border: 0; width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; font-size: 1.4rem; font-weight: 700;
  box-shadow: var(--shadow-soft);
}
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover, .lb-close:hover { background: var(--yellow); }
.lb-count { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: var(--cream); font-weight: 600; }

/* ============================================================
   FINAL CTA band
   ============================================================ */
.cta-band { position: relative; padding: 96px 0; overflow: hidden; color: var(--white); }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(74,63,53,.82) 0%, rgba(111,133,96,.7) 60%, rgba(111,133,96,.4) 100%); }
.cta-in { position: relative; z-index: 1; max-width: 640px; }
.cta-in h2 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); }
.cta-in p { color: rgba(255,253,248,.92); font-size: 1.15rem; }
.cta-in .eyebrow { color: var(--ink); background: var(--yellow); }
.cta-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { position: relative; background: var(--ink); color: rgba(251,246,236,.82); padding: 90px 0 30px; margin-top: 0; }
.foot-wave { position: absolute; top: -1px; left: 0; width: 100%; line-height: 0; transform: translateY(-99%); }
.foot-wave svg { width: 100%; height: 60px; display: block; fill: var(--ink); }
.foot-in { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; }
.foot-mark { background: var(--yellow); margin-bottom: 14px; }
.foot-name { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--cream); margin: 0 0 8px; }
.foot-tag { font-size: .95rem; max-width: 320px; }
.foot-col h4 { color: var(--yellow); font-size: 1.05rem; margin-bottom: 14px; }
.foot-line { font-size: .92rem; margin: 0 0 12px; }
.foot-line strong { color: var(--cream); }
.foot-lic { font-size: .82rem; opacity: .8; }
.foot-nav { display: flex; flex-direction: column; gap: 8px; }
.foot-nav a { color: rgba(251,246,236,.82); font-size: .95rem; }
.foot-nav a:hover { color: var(--yellow); }
.foot-phone { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--cream); margin-bottom: 8px; }
.foot-phone:hover { color: var(--yellow); }
.foot-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(251,246,236,.16); font-size: .85rem; }
@media (max-width: 860px) { .foot-in { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-in { grid-template-columns: 1fr; } .foot-bottom { justify-content: center; text-align: center; } }

/* ---------- utility ---------- */
.center { text-align: center; }
.mt-cta { margin-top: 40px; }
.text-block { max-width: 760px; }
.text-block p { color: var(--ink-soft); font-size: 1.06rem; }
.prose h2 { margin-top: 1.4em; }
.divider-doodle { display: flex; justify-content: center; margin: 0 auto; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
