/* ============================================================
   The Nurtured Nurse — concept redesign (premium pass)
   Aesthetic direction: "Organic Editorial" — warm botanical,
   refined serif, asymmetric bento, aura/leaf motifs.
   Palette: deep sage (dominant) · terracotta clay (accent) ·
   warm cream (base) · warm near-black (anchor).
   ============================================================ */
:root {
  --ink: #2a251e;
  --ink-soft: #5f574a;
  --paper: #faf6ec;
  --paper-2: #f2ebdb;
  --card: #fffdf8;
  --sage: #3f5a44;
  --sage-2: #5d7a5f;
  --sage-deep: #354b3a;
  --moss: #97a887;
  --clay: #bd6844;
  --clay-deep: #9c4f31;
  --gold: #c9a24b;
  --line: #e7ddc6;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Karla", "Trebuchet MS", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.72;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--clay-deep); text-decoration: none; }
p a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--moss); }

/* accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--sage); color: #fff; padding: 12px 20px; font-weight: 700;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 3px; }

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

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 246, 236, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 700; font-size: 22px; color: var(--ink); letter-spacing: -.01em; }
.brand svg { width: 30px; height: 30px; flex: 0 0 auto; }
.brand small { display: block; font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--clay); margin-top: -2px; }
.nav ul { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav ul a {
  font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--ink-soft); padding: 6px 0; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
}
.nav ul a:hover { color: var(--sage); border-color: var(--sage); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; font-weight: 700; font-size: 15px; letter-spacing: .02em;
  border-radius: 8px; transition: transform .16s, box-shadow .16s, background .2s, color .2s; cursor: pointer;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--clay-deep); color: #fff; box-shadow: 0 12px 26px -12px rgba(156,79,49,.6); }
.btn-primary:hover { background: var(--sage); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid var(--sage); color: var(--sage); }
.btn-ghost:hover { background: var(--sage); color: var(--paper); transform: translateY(-2px); }
.btn-light { background: var(--paper); color: var(--sage); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(0,0,0,.4); }
.nav .btn { padding: 11px 22px; font-size: 13.5px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; cursor: pointer; color: var(--ink); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 96px 0 88px; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(720px 480px at 108% -12%, rgba(93,122,95,.18), transparent 60%),
    radial-gradient(560px 420px at -12% 112%, rgba(189,104,68,.12), transparent 60%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--clay-deep); margin-bottom: 24px;
}
.kicker::before { content: ""; width: 36px; height: 2px; background: var(--clay); }
.hero h1, h1, h2 { text-wrap: balance; }
.hero h1 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(42px, 5.8vw, 74px);
  line-height: 1.04; letter-spacing: -.02em; max-width: 15ch;
}
.hero h1 em { font-style: italic; color: var(--sage); }
.hero .lede { margin: 26px 0 34px; font-size: 19px; color: var(--ink-soft); max-width: 52ch; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-trust { margin-top: 26px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.hero-trust b { color: var(--sage); }

/* aura panel */
.aura { position: relative; min-height: 460px; }
.aura .orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.aura .o1 { width: 380px; height: 380px; top: 6%; left: 4%;
  background: radial-gradient(circle at 35% 30%, rgba(151,168,135,.55), rgba(63,90,68,.85) 68%, rgba(42,37,30,.9) 100%);
  box-shadow: 0 40px 90px -40px rgba(63,90,68,.7); }
.aura .o2 { width: 200px; height: 200px; top: -4%; right: 4%;
  background: radial-gradient(circle at 40% 35%, rgba(201,162,75,.6), rgba(189,104,68,.75) 70%, transparent 100%); }
.aura .o3 { width: 130px; height: 130px; bottom: 6%; left: 12%;
  background: radial-gradient(circle at 50% 40%, rgba(250,246,236,.85), rgba(151,168,135,.5) 100%); }
.aura .portrait { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.aura .portrait img {
  width: min(320px, 74%); height: 400px; object-fit: cover;
  border-radius: 999px 999px 16px 16px; border: 7px solid rgba(250,246,236,.94);
  box-shadow: 0 34px 70px -30px rgba(42,37,30,.55);
}
.aura .float {
  position: absolute; background: rgba(255,253,248,.94); border: 1px solid var(--line);
  padding: 14px 18px; border-radius: 4px 18px 18px 18px; box-shadow: 0 20px 40px -24px rgba(42,37,30,.35);
  font-size: 13px; line-height: 1.4;
}
.aura .float b { display: block; font-family: var(--serif); font-size: 20px; color: var(--sage); }
.aura .f1 { top: 12%; right: 2%; }
.aura .f2 { bottom: 4%; right: 8%; }

/* ---------- stat band (deep sage, same palette — not a near-black jump) ---------- */
.stats { background: linear-gradient(120deg, var(--sage-deep), var(--sage)); color: var(--paper); padding: 54px 0; }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.stat b { display: block; font-family: var(--serif); font-size: 42px; font-weight: 600; color: var(--gold); line-height: 1.05; }
.stat span { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: #cfd6c3; }

/* ---------- sections ---------- */
section { padding: 96px 0; }
.section-alt { background: var(--paper-2); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head h2 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.1; letter-spacing: -.015em;
}
.section-head h2 em { font-style: italic; color: var(--sage); }
.section-head p { margin-top: 18px; color: var(--ink-soft); font-size: 18px; }

/* ---------- about split ---------- */
.split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.leaf-panel {
  position: relative; border-radius: 4px 64px 4px 64px; min-height: 480px; overflow: hidden;
  background: url("img/tasha-beach.webp") center/cover no-repeat;
}
.leaf-panel::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(53,75,58,.18), rgba(53,75,58,.04) 45%, rgba(42,37,30,.74) 100%);
}
.leaf-panel::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(250,246,236,.16) 1px, transparent 1.4px);
  background-size: 22px 22px; mix-blend-mode: overlay;
}
.leaf-panel .quote { position: absolute; left: 40px; right: 40px; bottom: 40px; font-family: var(--serif); font-style: italic; font-size: 25px; line-height: 1.4; color: #fff; }
.leaf-panel .quote footer { font-family: var(--sans); font-style: normal; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-top: 14px; color: rgba(255,253,248,.85); }
.check-list { list-style: none; margin: 28px 0 30px; }
.check-list li { padding: 12px 0 12px 36px; position: relative; border-bottom: 1px solid var(--line); font-size: 16px; }
.check-list li::before { content: "❧"; position: absolute; left: 2px; top: 12px; color: var(--clay); font-size: 18px; }

/* ---------- services: asymmetric bento ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bento .card { display: flex; flex-direction: column; }
.bento .card p { flex: 1; }
.bento .card .more { margin-top: auto; padding-top: 20px; }
.bento .card.featured { grid-column: span 2; }
.bento .card.wide { grid-column: span 3; flex-direction: row; align-items: center; gap: 26px; }
.bento .card.wide .ico { margin-bottom: 0; flex: 0 0 auto; }
.bento .card.wide .wide-body { flex: 1; }
.bento .card.wide .more { margin: 0; padding: 0; flex: 0 0 auto; white-space: nowrap; }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 4px 24px 4px 24px;
  padding: 34px 30px; position: relative; overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -28px rgba(63,90,68,.45); }
.card::before { content: ""; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: linear-gradient(var(--sage), var(--moss)); opacity: 0; transition: opacity .22s; }
.card:hover::before { opacity: 1; }
.card .ico { color: var(--sage); margin-bottom: 18px; }
.card .ico svg { width: 32px; height: 32px; }
.card.featured .ico svg { width: 40px; height: 40px; }
.card h3 { font-family: var(--serif); font-size: 25px; font-weight: 600; margin-bottom: 12px; }
.card.featured h3 { font-size: 31px; }
.card p { font-size: 15.5px; color: var(--ink-soft); }
.card .more { display: inline-block; font-weight: 700; font-size: 13.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--clay-deep); }
.card .more::after { content: " →"; }

/* ---------- method ---------- */
.method { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { position: relative; padding: 30px; background: var(--card); border: 1px solid var(--line); border-radius: 4px 24px 4px 24px; }
.step .n { font-family: var(--serif); font-size: 54px; font-weight: 600; line-height: 1; color: var(--moss); display: block; margin-bottom: 16px; }
.step h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--ink-soft); }

/* ---------- testimonials: featured + 2-col ---------- */
.pull-quote { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.pull-quote .q { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.32; }
.pull-quote .who { margin-top: 22px; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.pull-quote .who b { color: var(--sage); }
.t-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.t-card { background: var(--card); border: 1px solid var(--line); border-radius: 4px 24px 4px 24px; padding: 34px 32px; display: flex; flex-direction: column; }
.t-card blockquote { font-size: 16px; color: var(--ink-soft); flex: 1; }
.t-card blockquote::before { content: "“"; font-family: var(--serif); font-size: 56px; line-height: 1; color: var(--clay); display: block; margin-bottom: 6px; }
.t-card .who { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.t-card .who b { display: block; font-size: 15.5px; color: var(--ink); }
.t-card .who span { font-size: 13px; color: var(--ink-soft); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }

/* ---------- retreat band ---------- */
.retreat {
  position: relative; overflow: hidden; border-radius: 6px 48px 6px 48px;
  background: linear-gradient(140deg, rgba(53,75,58,.93), rgba(53,75,58,.66)), url("img/retreat-1.webp") center/cover no-repeat;
  color: #fff; padding: 72px 64px;
}
.retreat h2 { font-family: var(--serif); font-size: clamp(30px, 4vw, 46px); font-weight:600; max-width: 18ch; }
.retreat p { color: rgba(255,253,248,.92); max-width: 56ch; margin: 18px 0 28px; font-size: 18px; }
.retreat .chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.retreat .chip { border: 1px solid rgba(255,253,248,.4); border-radius: 6px; padding: 8px 16px; font-size: 13.5px; }

/* ---------- podcast ---------- */
.pod { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; }
.pod .mark { width: 110px; height: 110px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 35% 30%, var(--moss), var(--sage)); color: #fff; font-family: var(--serif); font-size: 40px; }

/* ---------- FAQ: static 2-col (no accordion) ---------- */
.faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.faq .qa { background: var(--card); border: 1px solid var(--line); border-radius: 4px 20px 4px 20px; padding: 28px 26px; }
.faq .qa h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.faq .qa p { font-size: 15px; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--sage), var(--sage-2)); color: #fff; padding: 92px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 360px at 85% -10%, rgba(201,162,75,.35), transparent 60%); }
.cta-band .wrap { position: relative; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(30px, 4.4vw, 52px); font-weight: 600; max-width: 22ch; margin: 0 auto 18px; }
.cta-band p { color: rgba(255,253,248,.92); max-width: 54ch; margin: 0 auto 36px; font-size: 18px; }
.cta-band .btn { background: #fff; color: var(--sage); }

/* ---------- footer ---------- */
footer.site { background: var(--ink); color: #b9ae9b; padding: 70px 0 32px; font-size: 14.5px; }
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; margin-bottom: 46px; }
footer.site h4 { color: var(--paper); font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
footer.site ul { list-style: none; }
footer.site li { margin: 8px 0; }
footer.site a { color: #b9ae9b; }
footer.site a:hover { color: var(--gold); }
footer.site .legal { border-top: 1px solid #3d362d; padding-top: 26px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: #8d8274; }

/* ---------- mobile sticky CTA ---------- */
.mobile-cta { display: none; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .aura { min-height: 380px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .card.featured, .bento .card.wide { grid-column: span 2; grid-row: auto; }
  .method { grid-template-columns: 1fr 1fr; }
  .stats .grid { grid-template-columns: 1fr 1fr; }
  .t-grid, .faq { grid-template-columns: 1fr; }
  footer.site .cols { grid-template-columns: 1fr; }
  .nav ul { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 64px 0; }
  .hero { padding: 64px 0 60px; }
  .bento, .method, .stats .grid { grid-template-columns: 1fr; }
  .bento .card.featured, .bento .card.wide { grid-column: auto; }
  .retreat { padding: 48px 30px; }
  .pod { grid-template-columns: 1fr; }
  .nav ul {
    display: none; position: absolute; top: 80px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 22px 28px; gap: 16px; align-items: flex-start;
  }
  .nav ul.open { display: flex; }
  .nav-toggle { display: block; }
  .nav .btn { display: none; }
  .mobile-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
    background: rgba(250,246,236,.96); border-top: 1px solid var(--line); padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  }
  .mobile-cta .btn { width: 100%; }
}
