/* Cambiare Counseling: soft, zen, whimsical-professional.
   Palette: cream base, sage green, dusty rose. Type: Fraunces + Nunito Sans. */

:root {
  /* muted earthy boho: warm sand, sage, terracotta, clay-rose */
  --cream:      #EEE2D2;   /* warm sand cream */
  --cream-2:    #E3D3BF;   /* deeper sand */
  --ink:        #43382F;   /* warm espresso brown text */
  --muted:      #8C7A6B;   /* warm taupe */
  --green:      #6E8C6B;   /* muted sage */
  --green-deep: #45563F;   /* deep sage (headings, panels) */
  --green-soft: #D3DCC4;   /* soft sage */
  --rose:       #C68A75;   /* dusty clay-rose (buttons) */
  --rose-deep:  #A86552;   /* terracotta (eyebrows, links) */
  --rose-soft:  #EAD6C8;   /* warm blush-sand */
  --card:       rgba(255, 252, 247, 0.48);  /* frosted semi-transparent cards */
  --line:       rgba(82, 60, 46, 0.16);
  --shadow:     0 18px 50px -24px rgba(70, 50, 38, 0.45);
  --shadow-sm:  0 8px 24px -16px rgba(70, 50, 38, 0.5);
  --r-lg: 28px;
  --r-md: 20px;
  --r-pill: 999px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Mulish", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--green-deep);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }
a { color: var(--green-deep); }

.wrap { width: min(var(--maxw), 92vw); margin-inline: auto; }

/* ---------------- top nav ---------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 16px clamp(18px, 4vw, 40px);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 12px;
}
.nav__mark {
  display: flex; align-items: center; gap: 10px;
  font-family: "Cormorant Garamond", serif; font-size: 1.15rem; color: var(--green-deep);
  text-decoration: none; opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.nav.scrolled .nav__mark { opacity: 1; pointer-events: auto; }
.nav__mark svg { width: 26px; height: 26px; }
.nav__links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav__links a {
  text-decoration: none;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  transition: background 0.25s ease, color 0.25s ease;
}
.nav__links a:hover { background: rgba(255,255,255,0.16); color: #fff; }
.nav.scrolled .nav__links a { color: var(--ink); text-shadow: none; }
.nav.scrolled .nav__links a:hover { background: var(--green-soft); color: var(--green-deep); }
.nav__links a.cta {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.nav__links a.cta:hover { background: var(--green-deep); color: #fff; }

/* hamburger (mobile only) */
.nav__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 40px; padding: 9px 10px; margin-left: auto;
  background: transparent; border: 0; cursor: pointer; border-radius: 10px;
}
.nav__toggle span {
  display: block; height: 2px; width: 100%; border-radius: 2px;
  background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.45);
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.25s ease;
}
.nav.scrolled .nav__toggle span,
.nav--solid .nav__toggle span { background: var(--green-deep); box-shadow: none; }

@media (max-width: 720px) {
  .nav { padding: 12px clamp(14px, 4vw, 24px); }
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute; top: calc(100% + 6px); right: clamp(12px, 4vw, 24px);
    flex-direction: column; align-items: stretch; gap: 2px; min-width: 210px;
    background: rgba(251, 248, 242, 0.98); backdrop-filter: blur(12px);
    border: 1px solid var(--line); border-radius: 18px; padding: 10px;
    box-shadow: var(--shadow);
    opacity: 0; transform: translateY(-8px) scale(0.98); pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav.open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { color: var(--ink) !important; text-shadow: none !important; text-align: left; padding: 12px 14px; }
  .nav__links a:hover { background: var(--green-soft); color: var(--green-deep) !important; }
  .nav__links a.cta { background: var(--green); color: #fff !important; margin-top: 2px; text-align: center; }
  .nav__links a.cta:hover { background: var(--green-deep); color: #fff !important; }
  .nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
/* scenic hero: looping waterfall video, subtly graded for mood + text contrast */
.hero__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  background: #2a1f16;
  /* mute + warm the footage (sepia) so the cool water reads earthy and blends
     with the warm boho palette; darken a touch for text contrast */
  filter: saturate(0.62) contrast(1.04) brightness(0.82) sepia(0.28);
}
/* warm earthy wash + vignette so the video melts into the boho palette */
.hero__grade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(124,86,56,0.26) 0%, rgba(92,68,48,0.18) 45%, rgba(52,38,26,0.44) 100%),
    radial-gradient(125% 95% at 50% 42%, transparent 48%, rgba(40,28,18,0.5) 100%);
}
/* warm central scrim so the logo text stands out */
.hero__veil {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(46% 40% at 50% 50%, rgba(30,20,12,0.62), rgba(30,20,12,0.18) 60%, transparent 78%),
    linear-gradient(180deg, rgba(36,25,16,0.44) 0%, rgba(36,25,16,0.14) 30%, rgba(36,25,16,0.5) 100%);
}
/* drifting / falling leaves */
.hero__leaves { position: absolute; inset: 0; z-index: 3; overflow: hidden; pointer-events: none; }
.leaf { position: absolute; top: -16vh; opacity: 0.85;
  animation-name: fall; animation-timing-function: linear; animation-iteration-count: infinite; }
.leaf > svg { display: block; animation: sway 5s ease-in-out infinite alternate;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.22)); }
@keyframes fall { to { transform: translateY(132vh); } }
@keyframes sway { from { transform: translateX(-2.4vw) rotate(-18deg); } to { transform: translateX(2.4vw) rotate(36deg); } }
/* plain fallback colour behind the photo (only shows if the image is missing) */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(160deg, #2C4A39 0%, #1A2E24 100%);
}
.hero__inner { position: relative; z-index: 4; padding: 7rem 1.25rem 6rem; pointer-events: none; }
.hero__inner a, .hero__inner button { pointer-events: auto; }

.logo {
  display: inline-flex; flex-direction: row; align-items: center;
  gap: clamp(0.1rem, 0.5vw, 0.35rem); text-align: left;
}
.logo__text { display: flex; flex-direction: column; align-items: flex-start; }
.logo__leaf { width: clamp(56px, 9vw, 96px); height: auto; color: #FCFAF5;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.7)) drop-shadow(0 6px 22px rgba(0,0,0,0.5)); }
.logo__name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(2.9rem, 8vw, 5.4rem);
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1;
  margin: 0 0 0 -0.045em; /* pull the C optically in line with "Counseling" below */
  text-shadow: 0 1px 2px rgba(0,0,0,0.6), 0 3px 16px rgba(0,0,0,0.65), 0 0 46px rgba(0,0,0,0.45);
}
.logo__sub {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: clamp(0.6rem, 1.5vw, 0.78rem);
  font-weight: 700;
  color: #FBEAEE;
  margin: 0.5rem 0 0;
  padding-left: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7), 0 2px 14px rgba(0,0,0,0.6);
}
.hero__tag {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 3.4vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin: 1.8rem auto 0.3rem;
  max-width: 22ch;
}
.hero__sub { color: var(--muted); margin: 0 auto; max-width: 30ch; font-size: 1.05rem; }
.hero__cta {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-top: 2rem;
  background: var(--rose);
  color: #fff; text-decoration: none; font-weight: 700;
  padding: 14px 30px; border-radius: var(--r-pill);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, background 0.25s ease;
}
.hero__cta:hover { transform: translateY(-2px); background: var(--rose-deep); color: #fff; }

/* scroll-down button */
.scrolldown {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3;
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  background: none; border: 0; cursor: pointer;
  color: #fff; font: inherit; text-shadow: 0 1px 8px rgba(0,0,0,0.45);
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.22em; font-weight: 700;
  opacity: 0.9; transition: opacity 0.25s ease; z-index: 5;
}
.scrolldown:hover { opacity: 1; }
.scrolldown span.ring {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.8); display: grid; place-items: center;
  animation: bob 2s ease-in-out infinite;
}
.scrolldown svg { width: 16px; height: 16px; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ---------------- sections ---------------- */
section { position: relative; }
.section { padding: clamp(3rem, 6vw, 5rem) 0; scroll-margin-top: 74px; }
.section--tint { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }

/* soft green "what I help with" zone: the approach block fades down into the
   green, specialties sits in green, and insurance fades back out to cream */
#approach { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 32%, #C3D0A6 100%); }
#specialties { background: linear-gradient(180deg, #C3D0A6 0%, #ADBF8A 100%); }
#insurance { background: linear-gradient(180deg, #ADBF8A 0%, var(--cream-2) 55%, var(--cream) 100%); }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.72rem; font-weight: 800;
  color: var(--rose-deep); margin: 0 0 0.9rem;
}
.section h2 { font-size: clamp(2rem, 5vw, 3rem); }
.lead { font-size: 1.18rem; color: var(--ink); }

/* about */
.about { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__card {
  background: var(--card); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); border-radius: var(--r-lg); padding: 2.2rem; box-shadow: var(--shadow);
  border: 1px solid var(--line); position: relative;
}
.about__photo {
  position: relative; width: 132px; height: 132px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 1.2rem;
  background: radial-gradient(circle at 35% 30%, var(--green-soft), var(--rose-soft));
  display: grid; place-items: center;
  box-shadow: 0 10px 26px -16px rgba(60,87,71,0.6); border: 3px solid #fff;
}
.about__photo-leaf { width: 66px; height: 66px; }
.about__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.about__name { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; color: var(--green-deep); text-align: center; margin: 0; }
.about__cred { text-align: center; color: var(--rose-deep); font-weight: 700; letter-spacing: 0.04em; margin: 0.2rem 0 1.2rem; }
.about__facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.about__facts li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.98rem; color: var(--ink); }
.about__facts svg { flex: none; width: 20px; height: 20px; color: var(--green); margin-top: 2px; }

.ages-link {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--rose-deep); font: inherit; font-weight: 700; text-decoration: underline;
  text-underline-offset: 3px; display: inline-flex; align-items: center; gap: 4px;
}
.ages-link svg { width: 15px; height: 15px; }

.textlink {
  color: var(--rose-deep); font-weight: 700; text-decoration: none;
  border-bottom: 1.5px solid var(--rose-soft); padding-bottom: 1px;
  transition: border-color 0.2s ease;
}
.textlink:hover { border-color: var(--rose-deep); }

/* credentials section */
.creds { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.creds__intro { max-width: 32rem; }
.creds__badges { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.creds__badges li {
  background: var(--card); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.1rem 1.3rem; box-shadow: var(--shadow-sm);
}
.creds__badges strong {
  display: block; font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: 1.7rem; color: var(--green-deep); line-height: 1;
}
.creds__badges span { display: block; margin-top: 0.35rem; font-size: 0.86rem; color: var(--muted); }
@media (max-width: 860px) { .creds { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .creds__badges { grid-template-columns: 1fr; } }

/* approach / values cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.6rem; }
.card {
  background: var(--card); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.8rem; box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--green-soft); color: var(--green-deep); margin-bottom: 1rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* specialties: clickable buttons that open their own page (good for SEO) */
.chips { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none;
  background: var(--card); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); border: 1px solid var(--line); color: var(--green-deep);
  padding: 12px 14px 12px 22px; border-radius: var(--r-pill); font-weight: 700; font-size: 1.02rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.chip svg { width: 17px; height: 17px; color: var(--rose-deep); transition: transform 0.22s ease; }
.chip:hover { transform: translateY(-3px); box-shadow: var(--shadow); background: var(--green); color: #fff; }
.chip:hover svg { color: #fff; transform: translateX(3px); }
.specialties-note { margin-top: 1.8rem; color: var(--muted); font-style: italic; }

/* insurance: tidy grid of accepted carriers */
.insurance {
  list-style: none; margin: 2.4rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem;
}
.insurance li {
  background: var(--card); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1rem 1.2rem; font-weight: 600; color: var(--green-deep);
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 0.7rem;
  min-height: 60px;
}
.insurance li::before {
  content: ""; flex: none; width: 11px; height: 11px;
  border-radius: 0 50% 50% 50%; transform: rotate(45deg); background: var(--green);
}
@media (max-width: 760px) { .insurance { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .insurance { grid-template-columns: 1fr; } }

/* contact */
.contact { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.contact__panel {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff; border-radius: var(--r-lg); padding: clamp(2rem, 4vw, 3rem); box-shadow: var(--shadow);
}
.contact__panel h2 { color: #fff; }
.contact__panel p { color: rgba(255,255,255,0.86); }
.contact__rows { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.contact__rows li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact__rows svg { flex: none; width: 22px; height: 22px; color: var(--rose-soft); margin-top: 3px; }
.contact__rows a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.4); }
.contact__rows small { display: block; color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.contact__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin-top: 1.8rem; }
.btn--book { flex-basis: 100%; justify-content: center; font-size: 1.05rem; padding: 16px 26px; }
.contact__note { margin: 0.9rem 0 0; font-size: 0.85rem; color: rgba(255,255,255,0.72); text-align: center; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; font-weight: 700;
  padding: 13px 26px; border-radius: var(--r-pill); transition: transform 0.2s ease, background 0.2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn--rose { background: var(--rose); color: #fff; box-shadow: var(--shadow-sm); }
.btn--rose:hover { background: #fff; color: var(--rose-deep); }
.btn--ghost { background: rgba(255,255,255,0.14); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,0.26); }

.invite h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.invite p { color: var(--muted); font-size: 1.1rem; }
.invite .reassure {
  font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.4rem; color: var(--rose-deep); margin-top: 1.4rem;
}

/* ---------------- footer ---------------- */
.footer {
  background: var(--green-deep); color: rgba(255,255,255,0.82);
  text-align: center; padding: 3.5rem 1.5rem 2.5rem;
}
.footer__leaf { width: 38px; height: 38px; margin-bottom: 0.8rem; }
.footer__name { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; color: #fff; margin: 0 0 0.2rem; }
.footer__cambia { font-style: italic; color: var(--rose-soft); margin: 0 0 1.4rem; }
.footer__meta { font-size: 0.9rem; line-height: 1.8; }
.footer__meta a { color: var(--rose-soft); text-decoration: none; }
.footer__crisis {
  margin-top: 1.4rem; font-size: 0.82rem; color: rgba(255,255,255,0.62);
  max-width: 46ch; margin-inline: auto;
}
.footer__credit {
  margin-top: 1.1rem; font-size: 0.78rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.footer__credit a { color: var(--rose-soft); text-decoration: none; }
.footer__credit a:hover { text-decoration: underline; }

/* ---------------- modal (age disclaimer) ---------------- */
.modal {
  position: fixed; inset: 0; z-index: 60; display: none;
  place-items: center; padding: 1.2rem;
  background: rgba(40, 56, 47, 0.5); backdrop-filter: blur(4px);
}
.modal.open { display: grid; }
.modal__box {
  background: var(--cream); border-radius: var(--r-lg); max-width: 460px; width: 100%;
  padding: clamp(1.4rem, 5vw, 2.2rem); box-shadow: var(--shadow); position: relative;
  animation: pop 0.32s cubic-bezier(0.16,1,0.3,1);
}
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(0.97); } to { opacity: 1; transform: none; } }
.modal__box h3 { font-size: 1.5rem; }
.modal__box p { font-size: 0.98rem; color: var(--ink); }
.modal__box .fineprint { font-size: 0.85rem; color: var(--muted); }
.modal__close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%;
  border: 0; background: var(--green-soft); color: var(--green-deep); cursor: pointer;
  font-size: 1.1rem; line-height: 1; display: grid; place-items: center;
}
.modal__close:hover { background: var(--rose-soft); color: var(--rose-deep); }

/* reveal-on-scroll: only hides when JS is active, so no-JS users still see everything */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------------- responsive ---------------- */
@media (max-width: 860px) {
  .about, .contact { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .about__card { order: -1; }
  .nav__links a:not(.cta) { padding: 8px 11px; font-size: 0.92rem; }
}
@media (max-width: 540px) {
  body { font-size: 17px; }
  .nav__links { gap: 0; }
  .nav__links a { padding: 7px 9px; }
  .hero__inner { padding-top: 6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scrolldown span.ring { animation: none; }
  .leaf, .leaf > svg { animation: none !important; }
  .leaf { display: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Inner pages (About Me + individual specialty pages)
   ============================================================ */
.nav--solid {
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav--solid .nav__mark { opacity: 1; pointer-events: auto; }
.nav--solid .nav__links a { color: var(--ink); text-shadow: none; }
.nav--solid .nav__links a:hover { background: var(--green-soft); color: var(--green-deep); }

/* banner at the top of an inner page */
.subhero {
  position: relative; overflow: hidden;
  padding: clamp(7rem, 14vw, 10rem) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(60% 80% at 80% 10%, rgba(201,139,152,0.18), transparent 60%),
    linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff; text-align: center;
}
.subhero__leaf { width: 54px; height: 54px; color: var(--rose-soft); margin-bottom: 0.6rem; }
.subhero .eyebrow { color: var(--rose-soft); }
.subhero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4rem); margin: 0 0 0.4rem; }
.subhero p { color: rgba(255,255,255,0.9); font-size: 1.18rem; max-width: 40ch; margin: 0.6rem auto 0; }

/* readable article column */
.prose { width: min(720px, 92vw); margin: 0 auto; }
.prose > .eyebrow { margin-top: 0; }
.prose h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 2.2rem 0 0.5rem; }
.prose h3 { font-size: 1.3rem; margin: 1.6rem 0 0.4rem; }
.prose p { font-size: 1.1rem; color: var(--ink); }
.prose ul { list-style: none; margin: 1rem 0 1.4rem; padding: 0; display: grid; gap: 0.7rem; }
.prose ul li { position: relative; padding-left: 1.9rem; color: var(--ink); }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 0.55em; width: 11px; height: 11px;
  border-radius: 0 50% 50% 50%; transform: rotate(45deg);
  background: var(--green); opacity: 0.85;
}
.prose .lead { font-size: 1.22rem; color: var(--green-deep); }

/* call-to-action panel reused on inner pages */
.subcta {
  margin: 3rem auto 0; width: min(720px, 92vw);
  background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff; border-radius: var(--r-lg); padding: clamp(1.8rem, 4vw, 2.6rem); text-align: center;
  box-shadow: var(--shadow);
}
.subcta h2 { color: #fff; margin: 0 0 0.4rem; }
.subcta p { color: rgba(255,255,255,0.88); margin: 0 0 1.4rem; }
.subcta .btn--rose { background: var(--rose); color: #fff; }
.subcta .btn--rose:hover { background: #fff; color: var(--rose-deep); }
.subcta .actions { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }

/* "explore other areas" links at the foot of a specialty page */
.related { width: min(720px, 92vw); margin: 2.6rem auto 0; }
.related h3 { font-size: 1.1rem; color: var(--green-deep); margin-bottom: 0.8rem; }
.related .chips { margin-top: 0; }

.backlink {
  display: inline-flex; align-items: center; gap: 0.4rem; text-decoration: none;
  color: var(--green-deep); font-weight: 700; margin-bottom: 1.4rem;
}
.backlink svg { width: 16px; height: 16px; }
.backlink:hover { color: var(--rose-deep); }

/* About page: larger portrait */
.aboutpage__portrait {
  position: relative; width: min(320px, 80vw); aspect-ratio: 4 / 5; margin: 0 auto 2rem;
  border-radius: var(--r-lg); overflow: hidden; background: radial-gradient(circle at 35% 30%, var(--green-soft), var(--rose-soft));
  display: grid; place-items: center; box-shadow: var(--shadow); border: 4px solid #fff;
}
.aboutpage__portrait svg { width: 90px; height: 90px; color: var(--green-deep); }
.aboutpage__portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }

/* "How would you like to connect?" chooser modal */
.modal__box--connect p { font-size: 0.98rem; color: var(--muted); margin-bottom: 0; }
.connect-options { display: grid; gap: 0.7rem; margin-top: 1.3rem; }
.connect-opt {
  display: flex; align-items: center; gap: 0.9rem; text-decoration: none; min-width: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 0.85rem 1rem; box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.connect-opt:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--rose-soft); }
.connect-opt__ic {
  flex: none; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--green-soft); color: var(--green-deep);
}
.connect-opt__ic svg { width: 23px; height: 23px; }
.connect-opt__t { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; flex: 1 1 auto; }
.connect-opt__t strong { color: var(--ink); font-size: 1.05rem; }
.connect-opt__t small { color: var(--muted); font-size: 0.82rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.connect-opt__go { flex: none; width: 18px; height: 18px; color: var(--rose-deep); margin-left: auto; }
.connect-opt:nth-child(1) .connect-opt__ic { background: var(--rose-soft); color: var(--rose-deep); }

/* ===================================================================
   SEO / AEO service-page additions: breadcrumb, at-a-glance, FAQ
   =================================================================== */

/* Breadcrumb trail (matches BreadcrumbList schema) */
.breadcrumb {
  width: min(720px, 92vw); margin: 0 auto 0.4rem; font-size: 0.86rem;
  color: var(--muted); display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center;
}
.breadcrumb a { color: var(--green-deep); text-decoration: none; border-bottom: 1px solid transparent; }
.breadcrumb a:hover { border-color: var(--rose-soft); }
.breadcrumb span[aria-current] { color: var(--muted); }
.breadcrumb svg { width: 13px; height: 13px; color: var(--rose-deep); opacity: 0.7; }

/* "At a glance" quick-facts card, answer-engine friendly summary */
.glance {
  width: min(720px, 92vw); margin: 1.6rem auto 0; padding: 1.2rem 1.4rem;
  background: var(--green-soft); border-radius: var(--r-md);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.9rem 1.4rem;
}
.glance div { display: flex; flex-direction: column; gap: 0.15rem; }
.glance dt { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose-deep); font-weight: 700; }
.glance dd { margin: 0; color: var(--green-deep); font-weight: 600; font-size: 0.98rem; line-height: 1.35; }
.glance dd a { color: var(--green-deep); text-decoration: underline; text-decoration-color: var(--rose-soft); }

/* FAQ accordion (mirrors FAQPage schema; native details = zero-JS, accessible) */
.faq { width: min(720px, 92vw); margin: 2.6rem auto 0; }
.faq h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 0 0 1rem; color: var(--green-deep); }
.faq details {
  border: 1px solid var(--line); border-radius: var(--r-md); background: var(--card);
  margin-bottom: 0.7rem; overflow: hidden; transition: border-color 0.2s ease;
}
.faq details[open] { border-color: var(--green-soft); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.05rem 1.2rem; font-weight: 700;
  color: var(--green-deep); font-size: 1.05rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 11px; height: 11px; border-right: 2.2px solid var(--rose-deep);
  border-bottom: 2.2px solid var(--rose-deep); transform: rotate(45deg); transition: transform 0.22s ease; margin-top: -4px;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.faq summary:hover { color: var(--rose-deep); }
.faq__a { padding: 0 1.2rem 1.15rem; }
.faq__a p { margin: 0; color: var(--ink); font-size: 1.02rem; line-height: 1.65; }
.faq__a p + p { margin-top: 0.7rem; }
