/* =========================================================
   A FULLER LIFE THERAPY — Design System
   Signature element: "The Vein" — an organic line, drawn from
   the leaf mark in the logo, that threads through the page and
   marks each turning point in the story the way a leaf's veins
   branch from a single stem.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root{
  /* ---- brand palette ---- */
  --ivory:        #FAF6F2;
  --ivory-soft:   #F3ECE3;
  --oatmeal:      #E4D5C7;
  --oatmeal-deep: #CAB7A7;
  --forest:       #2F4F4F;
  --forest-deep:  #172A2A;
  --teal:         #577575;
  --amber:        #E6A756;
  --amber-deep:   #C98C3C;
  --terracotta:   #B87A45;
  --bark:         #3E322A;
  --white:        #FFFFFF;

  --ink:          #26332F;
  --ink-soft:     #55635D;

  /* ---- type ---- */
  --font-display: 'Fraunces', 'Iowan Old Style', serif;
  --font-body:    'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- rhythm ---- */
  --edge: clamp(1.5rem, 5vw, 5rem);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 20px 50px -25px rgba(23,42,42,0.35);
  --shadow-card: 0 12px 30px -18px rgba(23,42,42,0.28);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

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

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family:var(--font-display); color:var(--forest-deep); font-weight:500; letter-spacing:-0.01em; }
p{ margin:0; }
button{ font-family:inherit; }

:focus-visible{
  outline:2.5px solid var(--amber-deep);
  outline-offset:3px;
  border-radius:4px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.6em;
  font-family:var(--font-body);
  font-size:0.72rem;
  font-weight:600;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--terracotta);
}
.eyebrow::before{
  content:"";
  width:22px; height:1.5px;
  background:var(--terracotta);
  display:inline-block;
}

.container{
  max-width:1180px;
  margin-inline:auto;
  padding-inline:var(--edge);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55em;
  padding:0.95em 1.8em;
  border-radius:999px;
  font-weight:600;
  font-size:0.95rem;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--forest-deep);
  color:var(--ivory);
  box-shadow:0 14px 28px -14px rgba(23,42,42,0.55);
}
.btn-primary:hover{ background:var(--forest); transform:translateY(-2px); box-shadow:0 18px 32px -14px rgba(23,42,42,0.6); }
.btn-secondary{
  background:transparent;
  color:var(--forest-deep);
  border-color:rgba(47,79,79,0.3);
}
.btn-secondary:hover{ border-color:var(--forest-deep); background:rgba(47,79,79,0.06); transform:translateY(-2px); }
.btn-amber{
  background:var(--amber);
  color:var(--forest-deep);
}
.btn-amber:hover{ background:var(--amber-deep); transform:translateY(-2px); box-shadow:0 14px 26px -14px rgba(201,140,60,0.6); }
.btn-ghost-light{
  background:rgba(250,246,242,0.12);
  color:var(--ivory);
  border-color:rgba(250,246,242,0.4);
}
.btn-ghost-light:hover{ background:rgba(250,246,242,0.2); transform:translateY(-2px); }

/* =========================================================
   NAV
   ========================================================= */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  padding:1.15rem 0;
  transition:background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; }
.site-header.is-scrolled{
  background:rgba(250,246,242,0.92);
  backdrop-filter:blur(10px);
  box-shadow:0 8px 24px -18px rgba(23,42,42,0.4);
  padding:0.7rem 0;
}
.brand{ display:flex; align-items:center; gap:.65rem; }
.brand img{ height:38px; width:auto; transition:height .3s ease; }
.site-header.is-scrolled .brand img{ height:32px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.brand-text strong{ font-family:var(--font-display); font-size:1.06rem; color:var(--forest-deep); font-weight:600; letter-spacing:0.01em; }
.brand-text span{ font-family:var(--font-body); font-size:0.62rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--terracotta); font-weight:600; }

.nav-links{ display:flex; align-items:center; gap:2.1rem; }
.nav-links a{
  font-size:0.9rem; font-weight:500; color:var(--ink-soft);
  position:relative; padding:.2rem 0;
  transition:color .25s ease;
}
.nav-links a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-3px; height:1.5px;
  background:var(--terracotta); transition:right .3s ease;
}
.nav-links a:hover{ color:var(--forest-deep); }
.nav-links a:hover::after{ right:0; }
.nav-links a.current{ color:var(--forest-deep); }
.nav-links a.current::after{ right:0; }

.nav-cta{ display:flex; align-items:center; gap:1.1rem; }
.nav-phone{ display:flex; align-items:center; gap:.5rem; font-size:0.88rem; font-weight:600; color:var(--forest-deep); }
.nav-phone svg{ width:16px; height:16px; stroke:var(--terracotta); }

.menu-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  width:42px; height:42px; border-radius:50%;
  align-items:center; justify-content:center;
  flex-direction:column; gap:5px;
}
.menu-toggle span{ width:20px; height:2px; background:var(--forest-deep); border-radius:2px; transition:.3s ease; }
.menu-toggle.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2){ opacity:0; }
.menu-toggle.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* =========================================================
   THE VEIN — signature scroll spine
   ========================================================= */
.vein-wrap{
  position:fixed;
  left:calc(var(--edge) - 20px);
  top:0;
  height:100vh;
  width:40px;
  z-index:5;
  pointer-events:none;
}
.vein-wrap svg{ display:block; height:100%; width:100%; overflow:visible; }
.vein-path{
  fill:none;
  stroke:var(--oatmeal-deep);
  stroke-width:1.6;
  stroke-linecap:round;
}
.vein-path-fill{
  fill:none;
  stroke:var(--terracotta);
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-dasharray:1400;
  stroke-dashoffset:1400;
  transition:stroke-dashoffset .15s linear;
}
.vein-node{
  fill:var(--ivory);
  stroke:var(--oatmeal-deep);
  stroke-width:1.6;
  transition:fill .4s ease, stroke .4s ease;
}
.vein-node.is-active{ fill:var(--terracotta); stroke:var(--terracotta); }

@media (max-width:900px){
  .vein-wrap{ display:none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  padding:9.5rem 0 6rem;
  overflow:hidden;
  background:
    radial-gradient(ellipse 90% 60% at 85% -10%, rgba(230,167,86,0.16), transparent 60%),
    var(--ivory);
}
.hero .container{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:3.5rem;
  align-items:center;
}
.hero-copy h1{
  font-size:clamp(2.5rem, 4.6vw, 3.9rem);
  line-height:1.06;
  margin:1rem 0 1.4rem;
}
.hero-copy h1 em{ font-style:italic; color:var(--terracotta); font-weight:400; }
.hero-copy .lede{
  font-size:1.1rem;
  color:var(--ink-soft);
  max-width:34rem;
  margin-bottom:2.1rem;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:1rem; margin-bottom:2rem; }
.hero-credentials{
  display:flex; flex-wrap:wrap; gap:.6rem 1rem;
}
.credential-pill{
  display:inline-flex; align-items:center; gap:.4rem;
  font-size:0.76rem; font-weight:600; letter-spacing:0.04em;
  color:var(--teal);
  padding:.4rem .85rem;
  border:1px solid rgba(87,117,117,0.3);
  border-radius:999px;
}
.credential-pill svg{ width:12px; height:12px; }

.hero-portrait{ position:relative; display:flex; justify-content:center; }
.portrait-frame{
  position:relative;
  width:min(420px, 90%);
  aspect-ratio:1/1.08;
}
.portrait-frame .ring{
  position:absolute; inset:-22px;
  background:conic-gradient(from 220deg, var(--amber), var(--terracotta) 35%, var(--oatmeal-deep) 65%, var(--amber) 100%);
  clip-path: path("M210,0 C300,0 380,55 400,150 C420,250 380,340 300,390 C220,440 90,420 40,340 C-10,260 0,150 60,80 C110,20 150,0 210,0 Z");
  opacity:0.9;
  filter:blur(0.3px);
}
.portrait-frame .photo-clip{
  position:absolute; inset:0;
  overflow:hidden;
  clip-path: path("M210,0 C300,0 380,55 400,150 C420,250 380,340 300,390 C220,440 90,420 40,340 C-10,260 0,150 60,80 C110,20 150,0 210,0 Z");
  background:var(--oatmeal);
}
.portrait-frame img{ width:100%; height:100%; object-fit:cover; }
.portrait-badge{
  position:absolute;
  bottom:6%;
  left:-8%;
  background:var(--forest-deep);
  color:var(--ivory);
  border-radius:var(--radius-md);
  padding:1rem 1.3rem;
  box-shadow:var(--shadow-soft);
  max-width:230px;
}
.portrait-badge .quote-mark{ font-family:var(--font-display); font-size:1.6rem; color:var(--amber); line-height:.5; display:block; margin-bottom:.4rem; }
.portrait-badge p{ font-family:var(--font-display); font-style:italic; font-size:0.95rem; line-height:1.35; }

@media (max-width:900px){
  .hero .container{ grid-template-columns:1fr; }
  .hero-portrait{ order:-1; margin-bottom:1rem; }
  .portrait-frame{ width:min(300px, 80%); }
  .portrait-badge{ display:none; }
}

/* =========================================================
   SECTION GENERIC
   ========================================================= */
section{ position:relative; }
.section-pad{ padding:6.5rem 0; }
.section-head{ max-width:40rem; margin-bottom:3rem; }
.section-head h2{ font-size:clamp(1.9rem, 3vw, 2.6rem); margin-top:.7rem; line-height:1.12; }
.section-head .lede{ margin-top:1rem; color:var(--ink-soft); font-size:1.05rem; }

.bg-soft{ background:var(--ivory-soft); }
.bg-forest{ background:var(--forest-deep); color:var(--ivory); }
.bg-forest h2, .bg-forest h3, .bg-forest h4{ color:var(--ivory); }
.bg-forest .ink-soft{ color:rgba(250,246,242,0.72); }

/* =========================================================
   INTRO STRIP (who this is for)
   ========================================================= */
.intro-strip{ padding:4.5rem 0 1rem; }
.intro-strip .container{ max-width:900px; text-align:left; }
.intro-strip p{ font-family:var(--font-display); font-size:clamp(1.3rem,2.4vw,1.7rem); line-height:1.5; color:var(--forest-deep); font-weight:400; }
.intro-strip .tags{ display:flex; flex-wrap:wrap; gap:.6rem; margin-top:2rem; }
.tag{
  font-size:0.82rem; font-weight:500; color:var(--teal);
  background:var(--oatmeal); padding:.5rem 1rem; border-radius:999px;
}

/* =========================================================
   BIO
   ========================================================= */
.bio-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:3.5rem; align-items:start; }
.bio-photo{ position:relative; }
.bio-photo img{ border-radius:var(--radius-lg); box-shadow:var(--shadow-card); width:100%; aspect-ratio:4/5; object-fit:cover; }
.bio-photo::after{
  content:""; position:absolute; inset:auto -18px -18px auto; top:auto;
  width:65%; height:55%; border:1.5px solid var(--oatmeal-deep);
  border-radius:var(--radius-lg); z-index:-1;
}
.bio-copy p{ margin-bottom:1.15rem; color:var(--ink-soft); }
.bio-copy p:first-of-type{ font-size:1.12rem; color:var(--ink); }
.pull-quote{
  font-family:var(--font-display); font-style:italic; font-size:1.4rem;
  color:var(--forest-deep); border-left:2.5px solid var(--terracotta);
  padding-left:1.3rem; margin:1.8rem 0; line-height:1.4;
}
.credential-line{ display:flex; align-items:center; gap:.8rem; margin-top:1.8rem; padding-top:1.6rem; border-top:1px solid var(--oatmeal-deep); }
.credential-line img{ width:44px; height:44px; border-radius:50%; object-fit:cover; }
.credential-line strong{ display:block; font-size:0.92rem; color:var(--forest-deep); }
.credential-line span{ font-size:0.82rem; color:var(--ink-soft); }

@media (max-width:900px){
  .bio-grid{ grid-template-columns:1fr; }
  .bio-photo::after{ display:none; }
}

/* =========================================================
   APPROACH / SERVICES
   ========================================================= */
.approach-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.75rem; }
.approach-card{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:2.2rem 1.9rem;
  box-shadow:var(--shadow-card);
  border:1px solid rgba(202,183,167,0.35);
  transition:transform .3s ease, box-shadow .3s ease;
}
.approach-card:hover{ transform:translateY(-6px); box-shadow:0 22px 40px -20px rgba(23,42,42,0.35); }
.approach-icon{
  width:52px; height:52px; border-radius:50%;
  background:var(--oatmeal);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1.3rem;
}
.approach-icon svg{ width:24px; height:24px; stroke:var(--terracotta); }
.approach-card h3{ font-size:1.2rem; margin-bottom:.7rem; }
.approach-card p{ color:var(--ink-soft); font-size:0.95rem; }
.approach-card .tag-mini{
  display:inline-block; margin-top:1rem; font-size:0.72rem; font-weight:700;
  letter-spacing:0.08em; text-transform:uppercase; color:var(--amber-deep);
}

@media (max-width:900px){ .approach-grid{ grid-template-columns:1fr; } }

/* =========================================================
   RATES — table-style list (matches real content = a rate sheet)
   ========================================================= */
.rate-list{ border-top:1px solid rgba(250,246,242,0.2); }
.rate-row{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:1.5rem;
  align-items:center;
  padding:1.9rem 0;
  border-bottom:1px solid rgba(250,246,242,0.2);
}
.rate-row .rate-index{
  font-family:var(--font-display); font-style:italic; color:var(--amber);
  font-size:1rem; width:2.4rem;
}
.rate-row h3{ font-size:1.15rem; margin-bottom:.35rem; }
.rate-row p{ color:rgba(250,246,242,0.72); font-size:0.9rem; }
.rate-row .price{ font-family:var(--font-display); font-size:1.6rem; color:var(--amber); text-align:right; white-space:nowrap; }
.rate-row .price small{ font-family:var(--font-body); font-size:0.7rem; display:block; color:rgba(250,246,242,0.6); font-weight:500; text-align:right; }

@media (max-width:640px){
  .rate-row{ grid-template-columns:auto 1fr; }
  .rate-row .price{ grid-column:1/-1; text-align:left; padding-left:2.4rem; }
  .rate-row .price small{ text-align:left; }
}

/* =========================================================
   SCHEDULE / WHERE + WHEN
   ========================================================= */
.schedule-grid{ display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
.schedule-photo{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-card); aspect-ratio:4/5; }
.schedule-photo img{ width:100%; height:100%; object-fit:cover; }
.day-list{ margin-top:1.6rem; display:flex; flex-direction:column; gap:1rem; }
.day-row{ display:flex; justify-content:space-between; align-items:baseline; padding-bottom:1rem; border-bottom:1px dashed var(--oatmeal-deep); }
.day-row .mode{ font-weight:600; color:var(--forest-deep); }
.day-row .days{ color:var(--ink-soft); font-size:0.92rem; }

@media (max-width:900px){ .schedule-grid{ grid-template-columns:1fr; } }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:3rem; }
.contact-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:2.6rem;
  box-shadow:var(--shadow-card);
  border:1px solid rgba(202,183,167,0.35);
}
.contact-item{ display:flex; gap:1rem; align-items:flex-start; margin-bottom:1.5rem; }
.contact-item:last-child{ margin-bottom:0; }
.contact-item .icon{
  width:38px; height:38px; border-radius:50%; background:var(--oatmeal);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-item .icon svg{ width:17px; height:17px; stroke:var(--terracotta); }
.contact-item strong{ display:block; font-size:0.98rem; color:var(--forest-deep); margin-bottom:.2rem; }
.contact-item span, .contact-item a{ color:var(--ink-soft); font-size:0.92rem; }
.contact-item a:hover{ color:var(--terracotta); }
.social-row{ display:flex; gap:.8rem; margin-top:2rem; }
.social-row a{
  width:40px; height:40px; border-radius:50%; border:1.5px solid rgba(87,117,117,0.3);
  display:flex; align-items:center; justify-content:center; transition:.25s ease;
}
.social-row a:hover{ background:var(--forest-deep); border-color:var(--forest-deep); }
.social-row a:hover svg{ stroke:var(--ivory); }
.social-row svg{ width:16px; height:16px; stroke:var(--forest-deep); transition:.25s ease; }

.map-wrap{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-card); border:1px solid rgba(202,183,167,0.35); }
.map-wrap iframe{ width:100%; height:100%; min-height:280px; border:0; display:block; }
.map-caption{ display:flex; justify-content:space-between; align-items:center; padding:1rem 1.4rem; background:var(--white); font-size:0.85rem; }
.map-caption a{ color:var(--terracotta); font-weight:600; }

@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }

/* =========================================================
   CTA BANNER (used on multipage subpages)
   ========================================================= */
.cta-banner{
  background:var(--forest-deep);
  border-radius:var(--radius-lg);
  padding:3.4rem clamp(1.5rem,5vw,4rem);
  display:flex; align-items:center; justify-content:space-between;
  gap:2rem; flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.cta-banner::before{
  content:""; position:absolute; right:-60px; top:-60px; width:220px; height:220px;
  background:radial-gradient(circle, rgba(230,167,86,0.25), transparent 70%);
}
.cta-banner h3{ color:var(--ivory); font-size:1.7rem; max-width:24rem; }
.cta-banner p{ color:rgba(250,246,242,0.7); margin-top:.6rem; }
.cta-actions{ display:flex; gap:1rem; flex-wrap:wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--bark); color:rgba(250,246,242,0.85); padding:4rem 0 2rem; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:3rem; padding-bottom:3rem; border-bottom:1px solid rgba(250,246,242,0.14); }
.footer-brand{ display:flex; align-items:center; gap:.7rem; margin-bottom:1rem; }
.footer-brand img{ height:34px; }
.footer-brand strong{ font-family:var(--font-display); color:var(--ivory); font-size:1.05rem; }
.footer-col h4{ color:var(--amber); font-size:0.78rem; letter-spacing:0.14em; text-transform:uppercase; margin-bottom:1.1rem; font-family:var(--font-body); font-weight:700; }
.footer-col ul li{ margin-bottom:0.7rem; }
.footer-col a, .footer-col span{ font-size:0.9rem; color:rgba(250,246,242,0.72); }
.footer-col a:hover{ color:var(--amber); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; padding-top:1.6rem; font-size:0.8rem; color:rgba(250,246,242,0.5); }
.footer-bottom a{ color:rgba(250,246,242,0.6); }
.footer-bottom a:hover{ color:var(--amber); }

@media (max-width:760px){
  .footer-grid{ grid-template-columns:1fr; gap:2rem; }
}

/* =========================================================
   MOBILE NAV DRAWER
   ========================================================= */
@media (max-width:900px){
  .nav-links{
    position:fixed; top:0; right:0; height:100vh; width:min(320px,80vw);
    background:var(--ivory); flex-direction:column; align-items:flex-start;
    padding:6.5rem 2rem 2rem; gap:1.6rem;
    box-shadow:-20px 0 50px -20px rgba(23,42,42,0.4);
    transform:translateX(100%); transition:transform .4s ease;
    z-index:99;
  }
  .nav-links.is-open{ transform:translateX(0); }
  .nav-links a{ font-size:1.05rem; }
  .nav-phone{ display:none; }
  .menu-toggle{ display:flex; }
  .nav-cta .btn-primary{ padding:0.7em 1.2em; font-size:0.85rem; }
}

/* =========================================================
   PAGE HERO (subpages)
   ========================================================= */
.page-hero{
  padding:9rem 0 4rem;
  background:
    radial-gradient(ellipse 70% 60% at 90% -10%, rgba(230,167,86,0.16), transparent 60%),
    var(--ivory);
}
.page-hero .eyebrow{ margin-bottom:1rem; }
.page-hero h1{ font-size:clamp(2.2rem,4vw,3.2rem); line-height:1.1; max-width:38rem; }
.page-hero .lede{ margin-top:1.2rem; max-width:36rem; color:var(--ink-soft); font-size:1.08rem; }

/* reveal-on-scroll */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
