/* ================================================================
   MISTY MOUNTAINS COUNSELING — Design System
   Marcellus · PT Serif · Public Sans
   Twilight · Parchment · Ember · Stone
================================================================ */

/* --- Reset --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Public Sans', sans-serif;
  color: var(--charcoal);
  background: var(--mist);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }
img { display: block; }

/* --- Variables ----------------------------------------------- */
:root {
  --twilight:     #2D2444;
  --twilight-mid: #3D3260;
  --mist:         #E8E4F0;
  --parchment:    #F7F4EE;
  --moss:         #4A6741;
  --stone:        #9B8EA8;
  --ember:        #C4785A;
  --ember-light:  #D4956B;
  --charcoal:     #1A1A2E;
  --muted:        #6B6478;
  --soft:         #9B8EA8;
}

/* --- Font helpers -------------------------------------------- */
.font-marcellus { font-family: 'Marcellus', serif; }
.font-pt        { font-family: 'PT Serif', serif; }

/* --- Scroll animations --------------------------------------- */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* --- Hero entrance animation --------------------------------- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero-logo    { animation: heroFadeUp 0.9s ease forwards; }
.hero-h1      { animation: heroFadeUp 0.9s 0.4s ease both; }
.hero-sub     { animation: heroFadeUp 0.9s 0.8s ease both; }
.hero-loc     { animation: heroFadeUp 0.9s 1.0s ease both; }
.hero-cta-wrap { animation: heroFadeUp 0.9s 1.3s ease both; }
.hero-note    { animation: heroFadeUp 0.9s 1.55s ease both; }

/* --- Star field --------------------------------------------- */
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.9); }
  50%       { opacity: 1;   transform: scale(1.1); }
}
.stars { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.star {
  position: absolute; background: rgba(232,228,240,0.7);
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

/* Vignette overlay */
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(18,12,35,0.55) 100%);
  pointer-events: none; z-index: 1;
}

/* ================================================================
   NAVIGATION
================================================================ */
.nav {
  background: var(--twilight);
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 56px; position: sticky; top: 0; z-index: 100;
}
.nav-logo img {
  height: 52px; width: auto;
  filter: brightness(0) invert(1);
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(232,228,240,0.68); font-size: 13px;
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  text-decoration: none; letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ember-light); }
.nav-cta {
  background: var(--ember); color: var(--parchment) !important;
  padding: 9px 22px; border-radius: 4px; font-size: 13px;
  font-family: 'Public Sans', sans-serif; font-weight: 400;
  text-decoration: none; transition: background 0.2s, opacity 0.2s;
}
.nav-cta:hover { background: var(--ember-light) !important; color: var(--parchment) !important; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(232,228,240,0.8); border-radius: 2px; transition: background 0.2s;
}

/* Mobile overlay */
.nav-overlay {
  position: fixed; inset: 0; background: var(--twilight);
  z-index: 200; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.25rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.32s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: rgba(232,228,240,0.8);
  font-size: 1.5rem; cursor: pointer; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.2s;
}
.nav-overlay-close:hover { background: rgba(232,228,240,0.1); }
.nav-overlay a {
  font-family: 'Marcellus', serif; font-size: clamp(1.75rem, 6vw, 2.75rem);
  color: rgba(232,228,240,0.85); transition: color 0.2s;
}
.nav-overlay a:hover { color: var(--ember-light); }
.nav-overlay .nav-cta { margin-top: 0.5rem; font-size: 14px; padding: 12px 32px; }

/* ================================================================
   HERO — HOMEPAGE TITLE SCREEN
================================================================ */
.hero {
  min-height: 100vh;
  background: var(--twilight);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  padding: 80px 40px;
  position: relative; overflow: hidden;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; width: 100%; }
.hero-logo img {
  height: 120px; width: auto; margin: 0 auto 36px;
  filter: brightness(0) invert(1);
}
.hero h1 {
  font-family: 'Marcellus', serif; font-size: 64px; line-height: 1.1;
  color: var(--parchment); margin: 0 0 20px; font-weight: 400;
}
.hero-tagline {
  font-family: 'PT Serif', serif; font-size: 20px; font-style: italic;
  color: var(--stone); margin: 0 0 16px;
}
.hero-location {
  font-family: 'Public Sans', sans-serif; font-size: 14px; font-weight: 300;
  color: rgba(155,142,168,0.65); margin: 0 0 44px; letter-spacing: 0.04em;
}
.hero-btn {
  display: inline-block; background: var(--ember); color: var(--parchment);
  padding: 15px 40px; border-radius: 4px; font-size: 15px;
  font-family: 'Public Sans', sans-serif; font-weight: 400;
  text-decoration: none; transition: background 0.2s;
}
.hero-btn:hover { background: var(--ember-light); }
.hero-free {
  display: block; margin-top: 16px;
  font-size: 12px; color: rgba(155,142,168,0.55);
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  letter-spacing: 0.04em;
}

/* Inner page hero */
.hero-inner {
  min-height: 52vh;
  background: var(--twilight);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  padding: 100px 40px 72px;
  position: relative; overflow: hidden;
}
.hero-inner .hero-logo img { height: 80px; margin: 0 auto 28px; }
.hero-inner h1 {
  font-family: 'Marcellus', serif; font-size: 52px; color: var(--parchment);
  margin: 0 0 16px; font-weight: 400; line-height: 1.1;
}
.hero-inner .hero-tagline { font-size: 18px; }

/* ================================================================
   BUTTONS
================================================================ */
.btn-ember {
  display: inline-block; background: var(--ember); color: var(--parchment);
  padding: 14px 36px; border-radius: 4px; font-size: 15px;
  font-family: 'Public Sans', sans-serif; font-weight: 400;
  text-decoration: none; transition: background 0.2s;
  border: none; cursor: pointer;
}
.btn-ember:hover { background: var(--ember-light); }
.btn-ember-lg {
  padding: 17px 52px; font-size: 16px;
}
.link-ember {
  color: var(--ember); font-size: 14px;
  font-family: 'Public Sans', sans-serif; font-weight: 400;
  text-decoration: none; border-bottom: 1px solid rgba(196,120,90,0.3);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.link-ember:hover { color: var(--ember-light); border-color: var(--ember-light); }

/* ================================================================
   SECTION BACKGROUNDS & CONTAINERS
================================================================ */
.section-mist { background: var(--mist); }
.section-parchment { background: var(--parchment); }
.section-twilight { background: var(--twilight); }

.section { padding: 100px 56px; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 680px; margin: 0 auto; text-align: center; }

.section-eyebrow {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 16px; font-weight: 400;
}
.section-h2 {
  font-family: 'Marcellus', serif; font-size: 48px; color: var(--charcoal);
  line-height: 1.15; margin: 0 0 20px; font-weight: 400;
}
.section-h2--light { color: var(--parchment); }
.section-h2--italic { font-family: 'PT Serif', serif; font-style: italic; }
.section-body {
  font-size: 15px; line-height: 1.85; color: var(--muted);
  font-family: 'Public Sans', sans-serif; font-weight: 300; max-width: 640px;
}
.pull-quote {
  font-family: 'PT Serif', serif; font-size: 22px; font-style: italic;
  color: var(--twilight); line-height: 1.5; margin: 0 0 28px;
}
.pull-quote--light { color: rgba(232,228,240,0.85); }

/* ================================================================
   HOMEPAGE SECTIONS
================================================================ */

/* Intro */
.intro { padding: 100px 56px; background: var(--mist); }
.intro-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.intro-inner h2 {
  font-family: 'Marcellus', serif; font-size: 48px; color: var(--charcoal);
  margin: 0 0 24px; line-height: 1.15;
}
.intro-inner .pull-quote { font-size: 20px; color: var(--twilight-mid); }
.intro-inner p {
  font-size: 15px; line-height: 1.85; color: var(--muted);
  font-family: 'Public Sans', sans-serif; font-weight: 300; margin: 0 0 32px;
}

/* How it works — 3 steps */
.how { padding: 100px 56px; background: var(--parchment); }
.how-hd { max-width: 1100px; margin: 0 auto 64px; }
.how-hd h2 {
  font-family: 'Marcellus', serif; font-size: 48px; color: var(--charcoal); margin: 0;
}
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px; max-width: 1100px; margin: 0 auto;
  border-top: 1px solid rgba(45,36,68,0.1);
}
.how-step { padding-top: 40px; }
.how-num {
  font-family: 'Marcellus', serif; font-size: 56px; color: var(--stone);
  line-height: 1; margin: 0 0 20px; opacity: 0.5;
}
.how-step h3 {
  font-family: 'PT Serif', serif; font-size: 22px; color: var(--charcoal);
  margin: 0 0 16px; font-weight: 700;
}
.how-step p {
  font-size: 14px; line-height: 1.85; color: var(--muted);
  font-family: 'Public Sans', sans-serif; font-weight: 300; margin: 0;
}

/* Who I work with */
.who { padding: 100px 56px; background: var(--twilight); }
.who-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  max-width: 1100px; margin: 0 auto; align-items: start;
}
.who-left h2 {
  font-family: 'Marcellus', serif; font-size: 48px; color: var(--parchment);
  margin: 0 0 28px; line-height: 1.15;
}
.who-left p {
  font-size: 15px; line-height: 1.85; color: rgba(232,228,240,0.65);
  font-family: 'Public Sans', sans-serif; font-weight: 300; margin: 0 0 16px;
}
.who-list { display: flex; flex-direction: column; gap: 0; }
.who-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid rgba(232,228,240,0.07);
}
.who-item:first-child { border-top: 1px solid rgba(232,228,240,0.07); }
.who-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ember); flex-shrink: 0; margin-top: 8px;
}
.who-item p {
  font-family: 'PT Serif', serif; font-size: 16px;
  color: rgba(232,228,240,0.78); line-height: 1.5; margin: 0;
}

/* Services teaser cards */
.svc-teaser { padding: 100px 56px; background: var(--mist); }
.svc-teaser-hd { max-width: 1100px; margin: 0 auto 56px; }
.svc-teaser-hd h2 {
  font-family: 'Marcellus', serif; font-size: 48px; color: var(--charcoal); margin: 0 0 8px;
}
.svc-teaser-hd p {
  font-size: 14px; color: var(--soft); font-weight: 300;
  font-family: 'Public Sans', sans-serif; letter-spacing: 0.03em;
}
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.svc-card {
  background: var(--parchment); border-radius: 4px; padding: 36px 32px;
  border-top: 3px solid var(--ember);
}
.svc-card h3 {
  font-family: 'Marcellus', serif; font-size: 24px; color: var(--charcoal);
  margin: 0 0 8px;
}
.svc-card-price {
  font-family: 'Public Sans', sans-serif; font-size: 13px; font-weight: 400;
  color: var(--ember); margin: 0 0 16px; letter-spacing: 0.02em;
}
.svc-card p {
  font-family: 'PT Serif', serif; font-size: 15px; line-height: 1.7;
  color: var(--muted); margin: 0 0 24px;
}

/* About teaser */
.about-teaser { padding: 100px 56px; background: var(--parchment); }
.about-teaser-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  max-width: 1100px; margin: 0 auto; align-items: center;
}
.about-teaser-text h2 {
  font-family: 'Marcellus', serif; font-size: 48px; color: var(--charcoal);
  margin: 0 0 24px; line-height: 1.15;
}
.about-teaser-text p {
  font-size: 15px; line-height: 1.85; color: var(--muted);
  font-family: 'Public Sans', sans-serif; font-weight: 300; margin: 0 0 16px;
}
.about-teaser-note {
  font-family: 'PT Serif', serif; font-style: italic;
  font-size: 14px; color: var(--moss); margin: 0 0 28px; display: block;
}
.mountain-wrap { display: flex; align-items: center; justify-content: center; }
.mountain-wrap svg { width: 100%; max-width: 460px; height: auto; }

/* Final CTA */
.final-cta { padding: 100px 56px; background: var(--twilight); text-align: center; }
.final-cta-inner { max-width: 600px; margin: 0 auto; }
.final-cta h2 {
  font-family: 'PT Serif', serif; font-size: 48px; font-style: italic;
  color: var(--parchment); margin: 0 0 16px; font-weight: 400;
}
.final-cta p {
  font-family: 'PT Serif', serif; font-size: 20px;
  color: rgba(232,228,240,0.65); margin: 0 0 44px;
}
.final-cta-note {
  display: block; margin-top: 20px;
  font-size: 13px; color: rgba(155,142,168,0.6);
  font-family: 'Public Sans', sans-serif; font-weight: 300;
}

/* ================================================================
   ABOUT PAGE
================================================================ */
.bio { padding: 100px 56px; background: var(--parchment); }
.bio-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px;
  max-width: 1100px; margin: 0 auto; align-items: start;
}
.bio-text h2 {
  font-family: 'Marcellus', serif; font-size: 36px; color: var(--charcoal);
  margin: 0 0 28px; line-height: 1.15;
}
.bio-text p {
  font-size: 15px; line-height: 1.9; color: var(--muted);
  font-family: 'Public Sans', sans-serif; font-weight: 300; margin: 0 0 20px;
}
.bio-text p:last-child { margin: 0; }

.cred-list { display: flex; flex-direction: column; gap: 12px; }
.cred-card {
  background: var(--mist); border-radius: 4px; padding: 20px 24px;
  border-left: 3px solid var(--ember);
}
.cred-title {
  font-family: 'PT Serif', serif; font-size: 15px; color: var(--charcoal);
  margin: 0 0 4px; font-weight: 700;
}
.cred-body {
  font-size: 12px; color: var(--muted); font-weight: 300;
  font-family: 'Public Sans', sans-serif; line-height: 1.5; margin: 0;
}

/* Philosophy cards */
.philosophy { padding: 100px 56px; background: var(--twilight); }
.phil-hd { max-width: 1100px; margin: 0 auto 56px; }
.phil-hd h2 {
  font-family: 'Marcellus', serif; font-size: 48px; color: var(--parchment); margin: 0 0 12px;
}
.phil-hd p {
  font-size: 15px; color: rgba(232,228,240,0.5); font-weight: 300; font-family: 'Public Sans', sans-serif;
}
.phil-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.phil-card {
  background: rgba(255,255,255,0.06); border-radius: 4px;
  padding: 40px 32px; border-top: 2px solid var(--ember);
}
.phil-card h3 {
  font-family: 'PT Serif', serif; font-size: 22px; color: var(--parchment);
  margin: 0 0 16px; font-weight: 700;
}
.phil-card p {
  font-size: 14px; line-height: 1.8; color: rgba(232,228,240,0.58);
  font-family: 'Public Sans', sans-serif; font-weight: 300; margin: 0;
}

/* Storytelling section */
.storytelling { padding: 100px 56px; background: var(--mist); }
.story-inner { max-width: 800px; margin: 0 auto; }
.story-inner h2 {
  font-family: 'PT Serif', serif; font-size: 48px; font-style: italic;
  color: var(--charcoal); margin: 0 0 28px; line-height: 1.2; font-weight: 400;
}
.story-inner .pull-quote { font-size: 20px; color: var(--twilight); margin: 0 0 40px; }
.story-inner p {
  font-size: 15px; line-height: 1.9; color: var(--muted);
  font-family: 'Public Sans', sans-serif; font-weight: 300; margin: 0 0 20px;
}
.story-inner p:last-child { margin: 0; }

/* Who I work with — fit list */
.fit { padding: 100px 56px; background: var(--parchment); }
.fit-inner { max-width: 1100px; margin: 0 auto; }
.fit-inner h2 {
  font-family: 'Marcellus', serif; font-size: 48px; color: var(--charcoal); margin: 0 0 48px;
}
.fit-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid rgba(45,36,68,0.08);
}
.fit-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 0; border-bottom: 1px solid rgba(45,36,68,0.08);
}
.fit-item:nth-child(odd) { padding-right: 48px; }
.fit-item:nth-child(even) { padding-left: 48px; border-left: 1px solid rgba(45,36,68,0.08); }
.fit-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ember); flex-shrink: 0; margin-top: 10px;
}
.fit-item p {
  font-family: 'PT Serif', serif; font-size: 16px; color: var(--charcoal); line-height: 1.5; margin: 0;
}

/* ================================================================
   SERVICES PAGE
================================================================ */
.svc-intro { padding: 64px 56px; background: var(--mist); text-align: center; }
.svc-intro p {
  font-family: 'PT Serif', serif; font-size: 18px; font-style: italic;
  color: var(--twilight-mid); line-height: 1.7; max-width: 700px; margin: 0 auto;
}

.svc-section { padding: 100px 56px; }
.svc-section--parchment { background: var(--parchment); }
.svc-section--mist      { background: var(--mist); }
.svc-section-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  max-width: 1100px; margin: 0 auto; align-items: center;
}
.svc-section-grid--rev { direction: rtl; }
.svc-section-grid--rev > * { direction: ltr; }
.svc-section-text h2 {
  font-family: 'Marcellus', serif; font-size: 40px; color: var(--charcoal);
  margin: 0 0 10px; line-height: 1.15;
}
.svc-price {
  font-family: 'Public Sans', sans-serif; font-size: 14px; font-weight: 400;
  color: var(--ember); margin: 0 0 24px; letter-spacing: 0.02em;
}
.svc-section-text p {
  font-size: 15px; line-height: 1.85; color: var(--muted);
  font-family: 'Public Sans', sans-serif; font-weight: 300; margin: 0 0 16px;
}
.svc-section-text p:last-of-type { margin-bottom: 28px; }
.svc-note {
  font-family: 'PT Serif', serif; font-style: italic; font-size: 14px;
  color: var(--moss); margin: 0 0 28px; display: block;
}

/* Free intro call */
.free-call { padding: 100px 56px; background: var(--twilight); text-align: center; }
.free-call-inner { max-width: 600px; margin: 0 auto; }
.free-call h2 {
  font-family: 'Marcellus', serif; font-size: 48px; color: var(--parchment); margin: 0 0 20px;
}
.free-call p {
  font-size: 16px; line-height: 1.8; color: rgba(232,228,240,0.65);
  font-family: 'PT Serif', serif; margin: 0 0 44px;
}

/* Accessibility */
.access { padding: 100px 56px; background: var(--parchment); }
.access-inner { max-width: 1100px; margin: 0 auto; }
.access-inner h2 {
  font-family: 'Marcellus', serif; font-size: 48px; color: var(--charcoal); margin: 0 0 48px;
}
.access-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.access-card {
  padding: 32px 28px; background: var(--mist); border-radius: 4px;
  border-top: 2px solid var(--moss);
}
.access-card h3 {
  font-family: 'PT Serif', serif; font-size: 18px; color: var(--charcoal);
  margin: 0 0 12px; font-weight: 700;
}
.access-card p {
  font-size: 14px; line-height: 1.75; color: var(--muted);
  font-family: 'Public Sans', sans-serif; font-weight: 300; margin: 0;
}

/* Telehealth */
.telehealth-note { padding: 72px 56px; background: var(--mist); text-align: center; }
.telehealth-note-inner { max-width: 640px; margin: 0 auto; }
.telehealth-note h3 {
  font-family: 'Marcellus', serif; font-size: 28px; color: var(--charcoal); margin: 0 0 16px;
}
.telehealth-note p {
  font-size: 15px; line-height: 1.8; color: var(--muted);
  font-family: 'Public Sans', sans-serif; font-weight: 300; margin: 0 0 12px;
}
.telehealth-note p:last-child { margin: 0; font-style: italic; color: var(--soft); }

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-section { padding: 100px 56px; background: var(--parchment); }
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px;
  max-width: 1100px; margin: 0 auto; align-items: start;
}
.contact-form h2 {
  font-family: 'Marcellus', serif; font-size: 36px; color: var(--charcoal); margin: 0 0 36px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-family: 'PT Serif', serif; font-size: 14px; color: var(--charcoal); font-weight: 400;
}
.form-group input,
.form-group textarea {
  background: var(--mist); border: 2px solid transparent;
  border-radius: 6px; padding: 14px 16px;
  font-size: 15px; color: var(--charcoal);
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--twilight); background: var(--parchment);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-details h2 {
  font-family: 'Marcellus', serif; font-size: 28px; color: var(--charcoal); margin: 0 0 32px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgba(45,36,68,0.08);
}
.contact-item:first-of-type { border-top: 1px solid rgba(45,36,68,0.08); }
.contact-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--mist); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 16px; height: 16px; }
.contact-label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--soft); font-family: 'Public Sans', sans-serif; font-weight: 400; margin: 0 0 4px;
}
.contact-value {
  font-size: 14px; color: var(--charcoal);
  font-family: 'Public Sans', sans-serif; font-weight: 300; margin: 0;
}
.contact-value a { color: var(--twilight-mid); transition: color 0.2s; }
.contact-value a:hover { color: var(--ember); }
.contact-ext-links { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.contact-ext-link {
  font-size: 13px; color: var(--ember);
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(196,120,90,0.2); padding-bottom: 2px; width: fit-content;
  transition: color 0.2s;
}
.contact-ext-link:hover { color: var(--ember-light); }

/* Resources */
.resources { padding: 72px 56px; background: var(--mist); }
.resources-inner { max-width: 1100px; margin: 0 auto; }
.resources-inner h2 {
  font-family: 'Marcellus', serif; font-size: 36px; color: var(--charcoal); margin: 0 0 36px;
}
.resource-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.resource-card {
  background: var(--parchment); border-radius: 4px; padding: 28px 32px;
  border-left: 3px solid var(--ember); text-decoration: none;
  display: block; transition: box-shadow 0.2s;
}
.resource-card:hover { box-shadow: 0 8px 32px rgba(45,36,68,0.1); }
.resource-card h3 {
  font-family: 'PT Serif', serif; font-size: 18px; color: var(--charcoal);
  margin: 0 0 8px; font-weight: 700;
}
.resource-card p {
  font-size: 13px; color: var(--muted); font-weight: 300;
  font-family: 'Public Sans', sans-serif; margin: 0 0 12px; line-height: 1.6;
}
.resource-arrow {
  font-size: 13px; color: var(--ember);
  font-family: 'Public Sans', sans-serif; font-weight: 400;
}

/* Safety note */
.safety-note { padding: 40px 56px; background: var(--parchment); text-align: center; border-top: 1px solid rgba(45,36,68,0.06); }
.safety-note p {
  font-size: 13px; color: var(--soft); font-weight: 300;
  font-family: 'Public Sans', sans-serif; max-width: 640px; margin: 0 auto;
  line-height: 1.7;
}
.safety-note strong { color: var(--charcoal); font-weight: 400; }

/* ================================================================
   MOUNTAIN SVG ILLUSTRATION
================================================================ */
.mountain-illustration svg { width: 100%; height: auto; }

/* ================================================================
   FOOTER
================================================================ */
footer {
  background: var(--twilight);
  padding: 72px 56px 40px;
  font-family: 'Public Sans', sans-serif;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 56px; margin-bottom: 40px;
  max-width: 1100px; margin-left: auto; margin-right: auto;
}
.footer-logo img {
  height: 52px; width: auto;
  filter: brightness(0) invert(1); margin-bottom: 14px;
}
.footer-tagline {
  font-family: 'PT Serif', serif; font-size: 14px;
  color: rgba(232,228,240,0.45); font-style: italic;
  margin: 0 0 10px;
}
.footer-note {
  font-size: 12px; color: rgba(232,228,240,0.3);
  font-weight: 300; line-height: 1.7; max-width: 240px; margin: 0;
}
.footer-col h4 {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(232,228,240,0.3); margin: 0 0 20px; font-weight: 400;
}
.footer-col a {
  display: block; font-size: 13px;
  color: rgba(232,228,240,0.55); text-decoration: none;
  margin-bottom: 12px; font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ember-light); }
.footer-divider {
  border: none; border-top: 1px solid rgba(232,228,240,0.07);
  margin: 40px auto 28px; max-width: 1100px;
}
.footer-bottom {
  display: flex; justify-content: space-between;
  max-width: 1100px; margin: 0 auto;
}
.footer-bottom span { font-size: 11px; color: rgba(232,228,240,0.2); font-weight: 300; }
.footer-small {
  text-align: center; max-width: 1100px; margin: 20px auto 0;
}
.footer-small p {
  font-size: 11px; color: rgba(232,228,240,0.18);
  font-weight: 300; line-height: 1.6;
}

/* ================================================================
   MOBILE RESPONSIVE — 768px
================================================================ */
@media (max-width: 768px) {
  .nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 60px 24px; }
  .hero h1 { font-size: 40px; }
  .hero-logo img { height: 80px; }

  .hero-inner { padding: 80px 24px 56px; }
  .hero-inner h1 { font-size: 36px; }
  .hero-inner .hero-logo img { height: 64px; }

  .intro { padding: 60px 24px; }
  .intro-inner h2 { font-size: 36px; }

  .how { padding: 60px 24px; }
  .how-hd { margin-bottom: 36px; }
  .how-hd h2 { font-size: 36px; }
  .how-grid { grid-template-columns: 1fr; gap: 0; }
  .how-step { border-top: 1px solid rgba(45,36,68,0.08); padding: 32px 0; }

  .who { padding: 60px 24px; }
  .who-grid { grid-template-columns: 1fr; gap: 40px; }
  .who-left h2 { font-size: 36px; }

  .svc-teaser { padding: 60px 24px; }
  .svc-teaser-hd { margin-bottom: 32px; }
  .svc-teaser-hd h2 { font-size: 36px; }
  .svc-cards { grid-template-columns: 1fr; }

  .about-teaser { padding: 60px 24px; }
  .about-teaser-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-teaser-text h2 { font-size: 36px; }
  .mountain-wrap { display: none; }

  .final-cta { padding: 60px 24px; }
  .final-cta h2 { font-size: 36px; }

  .bio { padding: 60px 24px; }
  .bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-text h2 { font-size: 28px; }

  .philosophy { padding: 60px 24px; }
  .phil-hd h2 { font-size: 36px; }
  .phil-grid { grid-template-columns: 1fr; }

  .storytelling { padding: 60px 24px; }
  .story-inner h2 { font-size: 36px; }

  .fit { padding: 60px 24px; }
  .fit-inner h2 { font-size: 36px; }
  .fit-list { grid-template-columns: 1fr; }
  .fit-item:nth-child(even) { padding-left: 0; border-left: none; }
  .fit-item:nth-child(odd) { padding-right: 0; }

  .svc-intro { padding: 48px 24px; }
  .svc-section { padding: 60px 24px; }
  .svc-section-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-section-grid--rev { direction: ltr; }
  .svc-section-text h2 { font-size: 32px; }

  .free-call { padding: 60px 24px; }
  .free-call h2 { font-size: 36px; }

  .access { padding: 60px 24px; }
  .access-inner h2 { font-size: 36px; }
  .access-grid { grid-template-columns: 1fr; }

  .telehealth-note { padding: 48px 24px; }

  .contact-section { padding: 60px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form h2 { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .resources { padding: 48px 24px; }
  .resource-cards { grid-template-columns: 1fr; }

  .safety-note { padding: 32px 24px; }

  footer { padding: 48px 24px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .footer-top { grid-template-columns: 1fr; }
}
