/* ==================================================================
   Willow Counseling Services
   Palette from brand board: deep green matches logo artwork.
================================================================== */

:root{
  --deep:   #485342;   /* matches the green baked into the logo files */
  --forest: #5F6F5D;
  --sage:   #8FA58A;
  --mist:   #BCC8B9;
  --fog:    #DCE2D7;
  --blush:  #E7E2DA;
  --blue:   #BFD1D6;
  --cream:  #F7F5F0;
  --ink:    #39413A;
  --ink-soft: #5c655b;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Karla', 'Helvetica Neue', Arial, sans-serif;

  --wrap: 1240px;
  --wrap-narrow: 780px;
}

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

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

body{
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a{ color: var(--forest); text-decoration:none; transition: color .25s ease; }
a:hover{ color: var(--deep); }

::selection{ background: var(--mist); color: var(--deep); }

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

.eyebrow{
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}

h1, h2, h3{
  font-family: var(--serif);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.18;
}

h1{ font-size: clamp(38px, 5vw, 58px); }
h2{ font-size: clamp(30px, 3.6vw, 44px); }
h3{ font-size: clamp(22px, 2.4vw, 28px); }

.lede{
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 23px);
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
}

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

.btn{
  display:inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 1px solid var(--deep);
  color: var(--deep);
  background: transparent;
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}
.btn:hover{ background: var(--deep); color: var(--cream); }

.btn-solid{ background: var(--deep); color: var(--cream); }
.btn-solid:hover{ background: var(--forest); color: var(--cream); }

.btn-light{ border-color: rgba(247,245,240,.7); color: var(--cream); }
.btn-light:hover{ background: var(--cream); color: var(--deep); }

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

.site-header{
  background: var(--deep);
  padding: 30px 40px 0;
  position: relative;
  z-index: 50;
}
.header-inner{
  max-width: var(--wrap);
  margin: 0 auto;
  text-align: center;
}
.brand img{
  height: 185px;
  width: auto;
  margin: 0 auto 14px;
}
.site-nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(243,241,234,.18);
  padding: 18px 4px 20px;
}
.site-nav a{
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(243,241,234,.62);
  padding: 4px 2px;
}
.site-nav a:hover{ color: #F3F1EA; }
.site-nav a.active{ color: #F3F1EA; }
.site-nav a.nav-cta{ color: var(--mist); border-bottom: 1px solid rgba(188,200,185,.55); padding-bottom: 2px; }
.site-nav a.nav-cta:hover{ color: #fff; border-color: #fff; }

.nav-toggle{ display:none; }

/* ---------- hero (home) ---------- */

.hero{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  max-height: 720px;
  position: relative;
  overflow: hidden;
}
.hero-text{
  background: var(--cream);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 80px 50px;
}
.hero-card{
  width: min(560px, 100%);
  background: rgba(220,226,215,.55);
  border-left: 3px solid var(--sage);
  padding: 56px 54px;
}
.hero-card h1{ margin-bottom: 22px; font-size: clamp(30px, 3.6vw, 46px); }
.hero-card p{ margin-bottom: 34px; max-width: 42ch; }
.hero-art{
  position: relative;
  min-height: 420px;
}
.hero-art img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

/* ---------- deep green quote band ---------- */

.band{
  background: var(--deep);
  color: var(--cream);
  padding: 96px 40px;
}
.band-inner{
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.band .branch{ width:120px; color: var(--mist); margin: 0 auto 30px; opacity:.85; }
.band blockquote{
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 300;
  line-height: 1.45;
  color: #F3F1EA;
}
.band blockquote em{ font-style: italic; color: var(--mist); }

/* ---------- generic sections ---------- */

.section{ padding: 100px 40px; }
.section-inner{ max-width: var(--wrap); margin: 0 auto; }
.section-narrow{ max-width: var(--wrap-narrow); margin: 0 auto; }
.section-fog{ background: var(--fog); }
.section-blush{ background: var(--blush); }
.section-deep{ background: var(--deep); color: var(--cream); }
.section-deep h2, .section-deep h3{ color: #F3F1EA; }
.section-deep p{ color: rgba(243,241,234,.88); }
.section-deep .eyebrow{ color: var(--mist); }

.center{ text-align:center; }

/* ---------- three pillars ---------- */

.pillars{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 70px;
}
.pillar{
  border-top: 1px solid rgba(72,83,67,.22);
  padding-top: 34px;
}
.pillar .eyebrow{ margin-bottom: 12px; }
.pillar h3{ margin-bottom: 14px; }
.pillar p{ color: var(--ink-soft); }
.pillar a.more{
  display:inline-block;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--mist);
  padding-bottom: 3px;
}

/* ---------- split rows (image/panel + copy) ---------- */

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items:center;
}
.split .panel{
  background: var(--fog);
  min-height: 420px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 60px;
}
.split .panel img{ width: min(320px, 75%); }
.split .panel-blush{ background: var(--blush); }

/* portrait & photo treatments */
.portrait{
  width: min(340px, 82%);
  height: auto;
  box-shadow: 0 18px 44px rgba(72,83,67,.22);
  border: 8px solid var(--cream);
}
.panel-portrait{ background: var(--blush); }
.split .panel-photo{ padding: 0; overflow: hidden; position: relative; min-height: 480px; }
.split .panel-photo img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.about-hero{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 70px;
  align-items: center;
}
.about-hero-photo{
  background: var(--blush);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero-photo .portrait{
  width: min(340px, 100%);
  height: auto;
}

.office-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 54px;
}
.office-grid img{
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* ---------- concern list ---------- */

.concerns{
  columns: 3;
  column-gap: 70px;
  margin-top: 50px;
}
.concerns li{
  list-style:none;
  break-inside: avoid;
  border-bottom: 1px solid rgba(72,83,67,.15);
  padding: 13px 2px;
  font-size: 15.5px;
  letter-spacing: .02em;
  color: var(--ink);
}

/* ---------- fees ---------- */

.fees{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.fee{
  background: var(--cream);
  border: 1px solid rgba(72,83,67,.16);
  padding: 46px 36px 42px;
  text-align:center;
}
.fee .fee-length{
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.fee h3{ margin-bottom: 6px; }
.fee .price{
  font-family: var(--serif);
  font-size: 40px;
  color: var(--forest);
  margin-top: 10px;
}
.fee-note{
  margin-top: 40px;
  max-width: 640px;
  margin-left:auto; margin-right:auto;
  text-align:center;
  color: var(--ink-soft);
  font-size: 15px;
}

/* ---------- hours ---------- */

.hours{
  max-width: 520px;
  margin: 50px auto 0;
}
.hours .row{
  display:flex;
  justify-content:space-between;
  border-bottom: 1px solid rgba(72,83,67,.15);
  padding: 12px 4px;
  font-size: 15.5px;
}
.hours .row span:first-child{
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--forest);
  padding-top: 3px;
}

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

.questions{
  margin: 56px 0;
  border-left: 2px solid var(--mist);
  padding-left: 44px;
}
.questions p{
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  color: var(--forest);
  margin: 20px 0;
  line-height: 1.5;
}

/* ---------- modality blocks ---------- */

.modality{
  border-top: 1px solid rgba(72,83,67,.18);
  padding: 60px 0;
  display:grid;
  grid-template-columns: 300px 1fr;
  gap: 70px;
}
.modality:last-of-type{ border-bottom: 1px solid rgba(72,83,67,.18); }
.modality h3{ line-height: 1.3; }
.modality .mod-tag{
  font-size: 11.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 12px;
}
.modality p{ margin-bottom: 18px; color: var(--ink-soft); }
.modality p:last-child{ margin-bottom: 0; }
.mod-links{ margin-top: 22px; font-size: 14.5px; }
.mod-links a{
  border-bottom: 1px solid var(--mist);
  padding-bottom: 2px;
  margin-right: 26px;
}

/* ---------- prose (about) ---------- */

.prose p{ margin-bottom: 26px; }
.prose .lead-in{
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  color: var(--forest);
  margin: 44px 0 18px;
}
.creds{ margin-top: 26px; }
.creds li{
  list-style:none;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid rgba(72,83,67,.14);
  position: relative;
}
.creds li::before{
  content:'';
  position:absolute;
  left: 4px; top: 24px;
  width: 12px; height: 1px;
  background: var(--sage);
}

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

.contact-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  align-items: stretch;
}
.contact-info{
  background: var(--deep);
  color: var(--cream);
  padding: 90px 70px;
}
.contact-info h2{ color:#F3F1EA; margin-bottom: 26px; }
.contact-info p{ color: rgba(243,241,234,.88); margin-bottom: 22px; }
.contact-info .big{
  font-family: var(--serif);
  font-size: 30px;
  color: #F3F1EA;
}
.contact-info a{ color: var(--mist); }
.contact-info a:hover{ color: #fff; }
.contact-info .divider{
  width: 46px; height:1px;
  background: var(--sage);
  margin: 34px 0;
}
.contact-form{
  background: var(--fog);
  padding: 90px 70px;
}
.contact-form h3{ margin-bottom: 8px; }
.contact-form .form-sub{ color: var(--ink-soft); margin-bottom: 40px; }

.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field{ margin-bottom: 22px; }
.field label{
  display:block;
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea{
  width:100%;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(72,83,67,.2);
  padding: 14px 16px;
  outline: none;
  transition: border-color .25s ease;
  -webkit-appearance:none;
  appearance:none;
  border-radius: 0;
}
.field textarea{ min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus{ border-color: var(--forest); }

.form-note{
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 18px;
}

.alert{
  padding: 18px 22px;
  margin-bottom: 34px;
  font-size: 15px;
  border-left: 3px solid var(--forest);
  background: rgba(143,165,138,.18);
  color: var(--deep);
}
.alert-error{
  border-color: #9a6a55;
  background: rgba(154,106,85,.12);
  color: #6e4634;
}

/* honeypot — hidden from humans */
.field-website{ position:absolute; left:-9999px; opacity:0; height:0; overflow:hidden; }

/* ---------- page hero (interior pages) ---------- */

.page-hero{
  background: var(--fog);
  padding: 90px 40px;
}
.page-hero .section-inner{ max-width: var(--wrap); }
.page-hero h1{ max-width: 18ch; }
.page-hero .lede{ margin-top: 22px; max-width: 58ch; }

.page-hero-deep{ background: var(--deep); }
.page-hero-deep h1{ color: #F3F1EA; }
.page-hero-deep .lede{ color: var(--mist); }
.page-hero-deep .eyebrow{ color: var(--mist); }

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

.reveal{ opacity:0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; }
}

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

.site-footer{
  background: var(--deep);
  color: rgba(243,241,234,.85);
  padding: 90px 40px 40px;
}
.footer-quote{
  max-width: 700px;
  margin: 0 auto 80px;
  text-align:center;
}
.footer-quote .branch{ width: 110px; color: var(--mist); margin: 0 auto 26px; opacity:.8; }
.footer-quote p{
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-style: italic;
  line-height: 1.55;
  color: #EFEDE6;
}
.footer-cols{
  max-width: var(--wrap);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(243,241,234,.15);
}
.footer-col h4{
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 20px;
}
.footer-col p{ font-size: 14.5px; margin-bottom: 14px; }
.footer-col a{ color: rgba(243,241,234,.85); }
.footer-col a:hover{ color:#fff; }
.footer-brand img{ margin-bottom: 22px; }
.footer-areas{ font-size: 14px; color: rgba(243,241,234,.7); }
.footer-links a{ display:block; padding: 4px 0; }
.footer-col .btn{ margin-top: 8px; font-size: 11px; padding: 13px 26px; }
.footer-base{
  max-width: var(--wrap);
  margin: 70px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(243,241,234,.12);
  display:flex;
  justify-content:space-between;
  gap: 20px;
  flex-wrap:wrap;
  font-size: 12.5px;
  color: rgba(243,241,234,.55);
}
.footer-base a{ color: rgba(243,241,234,.7); }
.footer-base a:hover{ color:#fff; }

/* ==================================================================
   Responsive
================================================================== */

@media (max-width: 1080px){
  .split{ gap: 56px; }
  .concerns{ columns: 2; }
  .modality{ grid-template-columns: 1fr; gap: 24px; }
  .footer-cols{ grid-template-columns: 1fr 1fr; }
  .office-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px){
  .site-header{ padding: 18px 24px 0; }
  .brand img{ height: 128px; }

  .nav-toggle{
    display:block;
    position:absolute;
    top: 30px; right: 26px;
    background:none; border:none;
    width: 34px; height: 26px;
    cursor:pointer;
  }
  .nav-toggle span{
    display:block;
    height: 1.5px;
    background: var(--cream);
    margin: 6px 0;
    transition: transform .3s ease, opacity .3s ease;
  }
  .nav-toggle.open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity:0; }
  .nav-toggle.open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

  .site-nav{
    display:none;
    flex-direction:column;
    gap: 4px;
    padding: 20px 0 26px;
  }
  .site-nav.open{ display:flex; }
  .site-nav a{ padding: 10px 0; }

  .hero{ grid-template-columns: 1fr; min-height: 0; max-height: none; }
  .hero-text{ padding: 50px 24px; }
  .hero-card{ padding: 40px 30px; }
  .hero-art{ min-height: 340px; }

  .section{ padding: 70px 24px; }
  .band{ padding: 70px 24px; }
  .page-hero{ padding: 64px 24px; }

  .pillars{ grid-template-columns: 1fr; gap: 40px; margin-top: 50px; }
  .split{ grid-template-columns: 1fr; }
  .split .panel{ min-height: 300px; }
  .fees{ grid-template-columns: 1fr; }
  .concerns{ columns: 1; }

  .contact-grid{ grid-template-columns: 1fr; }
  .contact-info, .contact-form{ padding: 60px 30px; }
  .form-row{ grid-template-columns: 1fr; gap: 0; }

  .about-hero{ grid-template-columns: 1fr; gap: 40px; }
  .about-hero-photo{ padding: 30px; }
  .split .panel-photo{ min-height: 340px; }
  .office-grid{ grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 40px; }

  .footer-cols{ grid-template-columns: 1fr; gap: 44px; }
  .footer-base{ flex-direction:column; text-align:center; }
}

/* ultrawide: keep contact halves hugging the center seam */
.ci-inner{ max-width: 560px; margin-left: auto; }
.cf-inner{ max-width: 660px; margin-right: auto; }
@media (max-width: 860px){
  .ci-inner, .cf-inner{ margin: 0; }
}
