/* ============================================
   Trees to Sea Counseling NW — Main Stylesheet
   ============================================ */

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

:root {
  --bg:           #FDFAF7;
  --bg-alt:       #F4EFE8;
  --teal:         #2A7B8C;
  --teal-mid:     #3D9AAD;
  --teal-light:   #5BB3C4;
  --teal-pale:    #D6EEF3;
  --teal-deep:    #1A5A68;
  --terra:        #B85C3A;
  --terra-light:  #D07452;
  --terra-pale:   #F5E4DC;
  --stone:        #E8DDD0;
  --sand:         #C9B89E;
  --sand-dark:    #9E8E7A;
  --cream:        #FAF6F0;
  --ink:          #1E2E30;
  --ink-mid:      #2E4446;
  --text-secondary: #4A5E60;
  --text-muted:   #7A8E90;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

/* ── NAV ── */
body > nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(253,250,247,0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42,123,140,0.12);
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-logo img { height: 46px; width: auto; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 400; color: var(--ink); line-height: 1.2; }
.nav-logo-text span { display: block; font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.8rem; font-weight: 400; letter-spacing: 0.04em; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta { background: var(--terra) !important; color: white !important; padding: 0.5rem 1.15rem; border-radius: 2px; font-size: 0.76rem !important; letter-spacing: 0.08em !important; text-transform: uppercase; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--terra-light) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.25rem; color: var(--ink); font-size: 1.4rem; line-height: 1; }
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--stone); padding: 1.5rem 2rem; z-index: 99; flex-direction: column; gap: 1rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 0.9rem; color: var(--text-secondary); text-decoration: none; padding: 0.4rem 0; border-bottom: 1px solid var(--stone); }
.mobile-menu .nav-cta { border-radius: 2px; text-align: center; padding: 0.75rem !important; margin-top: 0.5rem; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--teal-deep);
  padding: 8rem 2rem 5rem;
}
.hero-botanical { position: absolute; inset: 0; opacity: 0.06; pointer-events: none; }
.hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  position: relative;
}
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--terra-light); }
h1.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.15;
  color: #F5F0EB; margin-bottom: 1.5rem;
}
h1.hero-headline em { font-style: italic; color: var(--terra-light); }
.hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.85;
  color: rgba(245,240,235,0.68); max-width: 480px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-credentials {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(91,179,196,0.15);
  border: 1px solid rgba(91,179,196,0.15); border-radius: 2px;
}
.hero-cred-item { padding: 1.5rem; background: rgba(26,90,104,0.5); }
.hero-cred-item .num {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300;
  color: var(--terra-light); line-height: 1; margin-bottom: 0.35rem;
}
.hero-cred-item .lbl {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.08em;
  color: rgba(245,240,235,0.5); text-transform: uppercase; line-height: 1.4;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--terra); color: white;
  padding: 0.9rem 2rem; border-radius: 2px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s; display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--terra-light); }
.btn-teal {
  background: var(--teal-mid); color: white;
  padding: 0.9rem 2rem; border-radius: 2px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s; display: inline-block;
}
.btn-teal:hover { background: var(--teal-light); }
.btn-ghost {
  color: rgba(245,240,235,0.7); font-size: 0.8rem; font-weight: 400; letter-spacing: 0.06em;
  text-decoration: none; border-bottom: 1px solid rgba(245,240,235,0.3);
  transition: all 0.2s; display: inline-block; padding-bottom: 2px;
}
.btn-ghost:hover { color: #F5F0EB; border-color: rgba(245,240,235,0.7); }

/* ── WHO I HELP STRIP ── */
.strip { background: var(--teal-pale); padding: 3rem 2rem; }
.strip-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 2.5rem; align-items: flex-start; flex-wrap: wrap; }
.strip-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-deep); white-space: nowrap; padding-top: 0.2rem; min-width: 140px; }
.strip-pills { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.pill { background: rgba(42,123,140,0.08); border: 1px solid rgba(42,123,140,0.2); color: var(--ink-mid); padding: 0.4rem 0.95rem; border-radius: 100px; font-size: 0.8rem; font-weight: 400; }

/* ── SECTIONS ── */
section { padding: 6rem 2rem; }
section.alt { background: var(--bg-alt); }
.container { max-width: 1100px; margin: 0 auto; }
.section-eyebrow { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.9rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 300; line-height: 1.2; color: var(--ink); margin-bottom: 1.25rem; }
.section-lead { font-size: 1rem; font-weight: 300; line-height: 1.85; color: var(--text-secondary); max-width: 620px; }

/* ── POSITIONING ── */
.positioning { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.positioning-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 300; line-height: 1.6; color: var(--ink); font-style: italic; padding-left: 2rem; border-left: 2px solid var(--terra); }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.tag { background: var(--teal-pale); color: var(--teal-deep); padding: 0.35rem 0.85rem; border-radius: 2px; font-size: 0.74rem; font-weight: 400; letter-spacing: 0.03em; }

/* ── PILLARS ── */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 3rem; background: var(--stone); }
.pillar { background: var(--bg); padding: 2.25rem 1.75rem; }
.pillar-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--terra-pale); line-height: 1; margin-bottom: 0.9rem; display: block; }
.pillar-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--ink); margin-bottom: 0.85rem; line-height: 1.3; }
.pillar-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.pillar-list li { font-size: 0.83rem; font-weight: 300; color: var(--text-secondary); padding-left: 1rem; position: relative; line-height: 1.5; }
.pillar-list li::before { content: '—'; position: absolute; left: 0; color: var(--terra); font-size: 0.75rem; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2px; margin-top: 3rem; background: var(--stone); }
.service-card { background: var(--bg-alt); padding: 2rem 1.6rem; text-decoration: none; display: block; transition: background 0.25s; }
.service-card:hover { background: var(--teal-deep); }
.service-card:hover .service-name,
.service-card:hover .service-desc,
.service-card:hover .service-arrow { color: var(--cream) !important; }
.service-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--ink); margin-bottom: 0.55rem; line-height: 1.3; transition: color 0.25s; }
.service-desc { font-size: 0.81rem; font-weight: 300; color: var(--text-muted); line-height: 1.7; transition: color 0.25s; }
.service-arrow { display: block; margin-top: 1.1rem; font-size: 0.76rem; color: var(--terra); letter-spacing: 0.06em; transition: color 0.25s; }

/* ── MEN'S BAND ── */
.mens-band { background: var(--teal-deep); color: var(--cream); padding: 6rem 2rem; }
.mens-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.mens-band .section-eyebrow { color: var(--terra-light); }
.mens-band .section-title { color: #F5F0EB; }
.mens-band .section-lead { color: rgba(245,240,235,0.68); max-width: 100%; }
.mens-list { list-style: none; display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(91,179,196,0.2); }
.mens-list li { padding: 1rem 0; border-bottom: 1px solid rgba(91,179,196,0.2); font-size: 0.9rem; font-weight: 300; color: rgba(245,240,235,0.75); display: flex; align-items: center; gap: 0.85rem; }
.mens-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--terra-light); flex-shrink: 0; }

/* ── GROUP BAND ── */
.group-band { background: var(--terra-pale); padding: 6rem 2rem; }
.group-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
.group-band .section-eyebrow { color: var(--terra); }
.curriculum { margin-top: 2rem; display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(184,92,58,0.15); }
.curriculum-item { padding: 1rem 0; border-bottom: 1px solid rgba(184,92,58,0.15); display: flex; gap: 1rem; align-items: flex-start; }
.curriculum-week { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra); white-space: nowrap; padding-top: 0.2rem; min-width: 52px; }
.curriculum-topic { font-size: 0.88rem; font-weight: 300; color: var(--ink-mid); line-height: 1.55; }

/* ── WAITLIST FORM ── */
.waitlist-box { background: white; border-radius: 2px; padding: 2rem; border: 1px solid rgba(184,92,58,0.15); }
.waitlist-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--ink); margin-bottom: 0.5rem; }
.waitlist-box p { font-size: 0.85rem; font-weight: 300; color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.7; }
.waitlist-form { display: flex; flex-direction: column; gap: 0.85rem; }
.waitlist-form input,
.waitlist-form select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--stone); border-radius: 2px;
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 300;
  color: var(--ink); background: var(--bg);
  outline: none; transition: border-color 0.2s;
}
.waitlist-form input:focus,
.waitlist-form select:focus { border-color: var(--teal-mid); }
.waitlist-form button { width: 100%; }
.waitlist-note { font-size: 0.72rem; color: var(--text-muted); line-height: 1.6; }
.form-success { display: none; background: var(--teal-pale); border: 1px solid rgba(42,123,140,0.2); border-radius: 2px; padding: 1rem 1.25rem; font-size: 0.85rem; color: var(--teal-deep); line-height: 1.6; }
.form-error { display: none; background: #fdf0ed; border: 1px solid rgba(184,92,58,0.3); border-radius: 2px; padding: 1rem 1.25rem; font-size: 0.85rem; color: var(--terra); line-height: 1.6; }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; max-width: 580px; margin: 2.5rem auto 0; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid var(--stone); border-radius: 2px;
  font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 300;
  color: var(--ink); background: white;
  outline: none; transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--teal-mid); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button { align-self: flex-start; }
.contact-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; line-height: 1.7; margin-top: 0.5rem; }

/* ── APPROACH ── */
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3rem; }
.approach-item .lbl { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.55rem; }
.approach-item p { font-size: 0.88rem; font-weight: 300; color: var(--text-secondary); line-height: 1.78; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-photo { border-radius: 2px; overflow: hidden; aspect-ratio: 3/4; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--ink); margin-bottom: 0.2rem; }
.about-cred { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.06em; color: var(--terra); text-transform: uppercase; margin-bottom: 1.75rem; }
.affiliation { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.75rem; padding: 1rem 1.25rem; background: var(--teal-pale); border-radius: 2px; font-size: 0.8rem; font-weight: 300; color: var(--teal-deep); }
.affiliation strong { font-weight: 500; }

/* ── INSURANCE ── */
.insurance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px; background: var(--stone); margin-top: 2.5rem; }
.insurance-item { background: var(--bg); padding: 1.75rem; }
.insurance-item .ins-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.6rem; }
.insurance-item .ins-val { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 300; color: var(--ink); margin-bottom: 0.4rem; line-height: 1.3; }
.insurance-item .ins-note { font-size: 0.78rem; font-weight: 300; color: var(--text-muted); line-height: 1.6; }
.insurance-panels { margin-top: 2.5rem; }
.insurance-panels h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--ink); margin-bottom: 0.5rem; }
.insurance-panels > p { font-size: 0.83rem; font-weight: 300; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }
.panel-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.panel-tag { background: var(--teal-pale); border: 1px solid rgba(42,123,140,0.2); color: var(--teal-deep); padding: 0.4rem 0.9rem; border-radius: 100px; font-size: 0.78rem; font-weight: 400; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 3rem; background: var(--stone); }
.blog-card { background: var(--bg); padding: 2rem 1.75rem; text-decoration: none; display: block; transition: background 0.2s; }
.blog-card:hover { background: var(--teal-pale); }
.blog-tag { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.75rem; }
.blog-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--ink); margin-bottom: 0.6rem; line-height: 1.35; }
.blog-excerpt { font-size: 0.8rem; font-weight: 300; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.blog-read { font-size: 0.74rem; color: var(--teal); letter-spacing: 0.06em; }

/* ── CTA BAND ── */
.cta-band { background: var(--teal-pale); padding: 5rem 2rem; text-align: center; }
.cta-band .section-eyebrow { color: var(--terra); }

/* ── FOOTER ── */
footer { background: var(--ink); color: rgba(245,240,235,0.5); padding: 3.5rem 2rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2.5rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; color: #F5F0EB; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.78rem; font-weight: 300; color: rgba(245,240,235,0.38); max-width: 250px; line-height: 1.65; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { font-size: 0.8rem; font-weight: 300; color: rgba(245,240,235,0.48); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: #F5F0EB; }
.footer-contact a { font-size: 0.8rem; font-weight: 300; color: rgba(245,240,235,0.48); text-decoration: none; display: block; margin-bottom: 0.4rem; }
.footer-contact a:hover { color: #F5F0EB; }
.footer-contact .muted { font-size: 0.8rem; font-weight: 300; color: rgba(245,240,235,0.3); }
.footer-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,235,0.28); margin-bottom: 0.75rem; }
.footer-legal { font-size: 0.7rem; text-align: center; padding-top: 2rem; border-top: 1px solid rgba(245,240,235,0.08); max-width: 1100px; margin: 2rem auto 0; color: rgba(245,240,235,0.28); line-height: 1.85; }
.footer-legal strong { color: rgba(245,240,235,0.5); }

/* ── GROUP DETAILS BOX ── */
.group-details { margin-top: 1.5rem; background: white; border-radius: 2px; padding: 1.5rem; border: 1px solid rgba(184,92,58,0.1); }
.group-details .ins-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.6rem; }
.group-details .detail-list { font-size: 0.83rem; font-weight: 300; color: var(--text-secondary); line-height: 1.9; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  body > nav { padding: 0.9rem 1.25rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-inner,
  .positioning,
  .mens-inner,
  .group-inner,
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillars-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  section,
  .mens-band,
  .group-band { padding: 4rem 1.25rem; }
  .strip { padding: 2.5rem 1.25rem; }
  .contact-form button { width: 100%; }
}

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