/*
  Matthew Monroe Counseling — Main Stylesheet
  ============================================================
  STYLE DECISIONS
  ─────────────────────────────────────────────────────────────
  PRIMARY BLUE    : #2C3E50 — Deep Charcoal Blue ("The Anchor")
                   Used for: headings, nav background, primary text,
                   dark sections, footer
  SECONDARY SILVER: #E6E6E3 — Light Gray
                   Used for: borders, dividers, card outlines,
                   form field borders, subtle backgrounds
  ACCENT GREEN    : #4A7C59 — Muted Forest Green ("Clarity & Growth")
                   Used for: nav border, section dividers, icons,
                   checklist markers, step numbers, focus rings
  CTA GOLD        : #A4905E — Muted Gold/Ochre ("Activation & Insight")
                   Used for: primary buttons, CTAs
  BACKGROUND      : #F7F7F5 — Warm Off-White ("The Self")
                   Used for: primary section backgrounds
  BORDER RADIUS   : 2px everywhere (per style guide — NO rounded corners)
  SHADOWS         : None (per style guide — use borders + whitespace)
  ─────────────────────────────────────────────────────────────
  Source: Visual Style Guide IFS Coaching & Clinical Materials.pdf
  ============================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;1,600&family=Montserrat:wght@400;600;700&family=Lato:wght@400;400i;700&display=swap');

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --bg:           #F7F7F5;
  --bg-warm:      #FAF6EF;
  --bg-white:     #FFFFFF;
  --charcoal:     #2C3E50;
  --green:        #4A7396;   /* steel blue — replaces forest green for Blue+Silver palette */
  --silver:       #8A9BAD;   /* cool metallic silver accent */
  --gold:         #A4905E;
  --gray:         #E6E6E3;
  --black:        #000000;
  --text:         #2C3E50;
  --text-muted:   #5a6d7e;

  --font-heading:  'Montserrat', sans-serif;
  --font-body:     'Lato', sans-serif;
  --font-display:  'Cormorant Garamond', Georgia, serif;

  --radius:       2px;
  --max-width:    1060px;
  --section-pad:  80px;
  --header-h:     68px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--green); }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; letter-spacing: 0.01em; }

p {
  font-size: 1rem;
  line-height: 1.78;
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 0.7rem;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: var(--section-pad) 0; }
.section--alt  { background-color: var(--bg-warm); }
.section--gold { background-color: rgba(164, 144, 94, 0.05); }

/* Italic-accent headings — for personality */
h2 em, h1 em { font-style: italic; color: inherit; font-weight: inherit; }

.section--dark {
  background-color: var(--charcoal);
}
.section--dark h2,
.section--dark h3,
.section--dark .eyebrow {
  color: #fff;
}
.section--dark p {
  color: rgba(255, 255, 255, 0.82);
}
.section--dark .eyebrow {
  color: var(--gold);
}

.section-header { margin-bottom: 3rem; }
.section-header p {
  margin-top: 1rem;
  font-size: 1.05rem;
  max-width: 60ch;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--charcoal);
  border-bottom: 2px solid var(--green);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.01em;
  margin-right: 1.25rem;  /* breathing room between logo and nav links */
  flex-shrink: 0;
}
.nav-logo em {
  color: var(--gold);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;            /* tighter gap to fit more items */
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-heading);
  font-size: 0.65rem;     /* compact to fit 7-item nav */
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-cta {
  background-color: var(--gold);
  color: var(--black) !important;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 14px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background-color: transparent;
  color: var(--gold) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background-color 0.2s, border-color 0.2s, color 0.2s;
  min-height: 48px;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background-color: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(164, 144, 94, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-secondary:hover {
  background-color: var(--charcoal);
  color: #fff;
}

.btn-outline-light {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background-color: var(--charcoal);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
/* Noise grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22300%22 height=%22300%22%3E%3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.85%22 numOctaves=%224%22 stitchTiles=%22stitch%22/%3E%3CfeColorMatrix type=%22saturate%22 values=%220%22/%3E%3C/filter%3E%3Crect width=%22300%22 height=%22300%22 filter=%22url(%23n)%22/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}
/* Radial depth gradient — steel-blue glow left (where text is), dark vignette bottom-right */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 10% 45%, rgba(74, 115, 150, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 55% 65% at 88% 88%, rgba(0, 0, 0, 0.38) 0%, transparent 50%),
    linear-gradient(155deg, rgba(28, 42, 58, 0.55) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero h1 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}

.hero__subhead {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.68;
  max-width: 62ch;
}

/* ============================================================
   Trust Strip
   ============================================================ */
.trust-strip {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--gray);
  padding: 18px 0;
}

.trust-strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  align-items: center;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.trust-item__dot {
  width: 7px;
  height: 7px;
  background-color: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   Cards
   ============================================================ */
.card {
  background-color: var(--bg-white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}
.card--green-top { border-top: 3px solid var(--green); }
.card--gold-top  { border-top: 3px solid var(--gold); }

/* Featured card — dark treatment for visual rhythm */
.card--featured {
  background: linear-gradient(145deg, var(--charcoal) 0%, #2a3440 100%);
  border-color: transparent;
  border-top: 3px solid var(--green);
}
.card--featured h3 { color: #fff; }
.card--featured p  { color: rgba(255, 255, 255, 0.82); }
.card--featured:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.card h3 { margin-bottom: 0.65rem; }
.card p  { font-size: 0.95rem; }

/* ============================================================
   Dividers
   ============================================================ */
.divider {
  height: 1px;
  background-color: var(--gray);
  border: none;
  margin: 0;
}
.divider--green {
  width: 44px;
  height: 3px;
  background-color: var(--green);
  border: none;
  margin: 1.1rem 0 1.5rem;
}

/* ============================================================
   Checklist
   ============================================================ */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.checklist li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 1rem;
  line-height: 1.55;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2.5 7l3.5 3.5 5.5-6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   Process Steps
   ============================================================ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 1.75rem;
  position: relative;
  padding-bottom: 2.5rem;
}
.step:last-child { padding-bottom: 0; }
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 0;
  width: 1px;
  background-color: var(--gray);
}
.step__number {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green);
  background-color: var(--bg);
  position: relative;
  z-index: 1;
}
.step__content h3 { margin-bottom: 0.35rem; }
.step__content p  { font-size: 0.95rem; }

/* ============================================================
   Split / Two-Column with Media
   ============================================================ */
.split__media { display: flex; }
.headshot {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  border: 2px solid var(--gray);
  display: block;
}
.headshot-placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  background-color: var(--gray);
  border-radius: var(--radius);
  border: 2px solid var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  padding: 1rem;
}

/* ============================================================
   About Grid — Editorial Photo + Content Layout
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Photo frame with steel-blue tint overlay */
.about-photo-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  background-color: var(--charcoal);
}

.about-headshot {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(100%) contrast(1.08);
  transition: filter 0.3s ease;
}

/* Steel-blue multiply overlay — integrates photo with palette */
.about-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(74, 115, 150, 0.18);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Polished placeholder when photo not yet available */
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(155deg, #2a3440 0%, var(--charcoal) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.about-photo-placeholder::before {
  content: '';
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(74, 115, 150, 0.2);
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  background-color: var(--charcoal);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22300%22 height=%22300%22%3E%3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.85%22 numOctaves=%224%22 stitchTiles=%22stitch%22/%3E%3CfeColorMatrix type=%22saturate%22 values=%220%22/%3E%3C/filter%3E%3Crect width=%22300%22 height=%22300%22 filter=%22url(%23n)%22/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 70% at 50% 50%, rgba(74, 115, 150, 0.13) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  color: #fff;
  max-width: 560px;
  margin: 0 auto 1rem;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto;
  max-width: 52ch;
  font-size: 1.05rem;
}
.cta-section .btn-group {
  justify-content: center;
  margin-top: 2rem;
}

/* ============================================================
   Contact Form
   ============================================================ */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--charcoal);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  background-color: var(--bg-white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.2s;
  min-height: 48px;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
/* Honeypot — hidden from real users */
.hp-field { display: none; }

/* ============================================================
   Contact Info Block
   ============================================================ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.contact-item__label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
  display: block;
}
.contact-item__value {
  font-size: 0.97rem;
  line-height: 1.55;
}

/* ============================================================
   Credential Badges
   ============================================================ */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 7px 13px;
  font-family: var(--font-heading);
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--charcoal);
  background-color: var(--bg-white);
}
.credential-badge__dot {
  width: 6px;
  height: 6px;
  background-color: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   Policy / Fee Cards
   ============================================================ */
.policy-card {
  background-color: var(--bg-white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.policy-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray);
}
.policy-card p,
.policy-card li {
  font-size: 0.95rem;
  line-height: 1.7;
}
.policy-card ul { list-style: none; }
.policy-card ul li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.3rem;
}
.policy-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--green);
}

.fee-highlight {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin: 0.5rem 0;
}
.fee-highlight span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ============================================================
   Accordion (FAQ)
   ============================================================ */
.accordion { border-top: 1px solid var(--gray); }
.accordion-item { border-bottom: 1px solid var(--gray); }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.2rem 0;
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 48px;
}
.accordion-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.22s;
  font-style: normal;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}
.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.28s ease;
}
.accordion-panel.is-open {
  max-height: 600px;
}
.accordion-panel__inner {
  padding-bottom: 1.2rem;
}
.accordion-panel p {
  font-size: 0.95rem;
}

/* ============================================================
   Page Hero (inner pages)
   ============================================================ */
.page-hero {
  background-color: var(--charcoal);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
/* Noise texture */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22300%22 height=%22300%22%3E%3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.85%22 numOctaves=%224%22 stitchTiles=%22stitch%22/%3E%3CfeColorMatrix type=%22saturate%22 values=%220%22/%3E%3C/filter%3E%3Crect width=%22300%22 height=%22300%22 filter=%22url(%23n)%22/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
/* Directional radial glow — upper right */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 80% at 88% 15%, rgba(74, 115, 150, 0.18) 0%, transparent 58%);
  pointer-events: none;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}
.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  margin-top: 0.9rem;
  max-width: 58ch;
}

/* ============================================================
   Disclaimer Banner
   ============================================================ */
.disclaimer-banner {
  background-color: rgba(0,0,0,0.2);
  border-left: 3px solid var(--gold);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.75rem;
}
.disclaimer-banner p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.68);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background-color: var(--charcoal);
  border-top: 3px solid var(--green);
  padding: 56px 0 32px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22300%22 height=%22300%22%3E%3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.85%22 numOctaves=%224%22 stitchTiles=%22stitch%22/%3E%3CfeColorMatrix type=%22saturate%22 values=%220%22/%3E%3C/filter%3E%3Crect width=%22300%22 height=%22300%22 filter=%22url(%23n)%22/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.site-footer .container { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand .footer-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 36ch;
  line-height: 1.65;
}

.footer-col h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}
.footer-links a:hover { color: var(--gold); }

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
}

.footer-disclaimer {
  background-color: rgba(0,0,0,0.18);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
}
.footer-disclaimer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
}

/* ============================================================
   Utility
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

/* ============================================================
   Shared noise texture — reusable for all dark surfaces
   ============================================================ */
.noise-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22300%22 height=%22300%22%3E%3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.85%22 numOctaves=%224%22 stitchTiles=%22stitch%22/%3E%3CfeColorMatrix type=%22saturate%22 values=%220%22/%3E%3C/filter%3E%3Crect width=%22300%22 height=%22300%22 filter=%22url(%23n)%22/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.noise-texture > .container,
.noise-texture > * > .container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   Pull Quote (full-bleed dark block)
   ============================================================ */
.pull-quote {
  background-color: var(--charcoal);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22300%22 height=%22300%22%3E%3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.85%22 numOctaves=%224%22 stitchTiles=%22stitch%22/%3E%3CfeColorMatrix type=%22saturate%22 values=%220%22/%3E%3C/filter%3E%3Crect width=%22300%22 height=%22300%22 filter=%22url(%23n)%22/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}
.pull-quote::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(74, 115, 150, 0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.pull-quote .container {
  position: relative;
  z-index: 1;
}
.pull-quote__inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.pull-quote__mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--green);
  display: block;
  margin-bottom: 1.75rem;
  opacity: 0.65;
}
.pull-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1.75rem;
}
.pull-quote blockquote em {
  color: var(--gold);
  font-style: italic;
}
.pull-quote__attr {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-heading);
}

/* ============================================================
   Dark Credentials Bar
   ============================================================ */
.dark-bar {
  background-color: #1e2c39;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}
.dark-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22300%22 height=%22300%22%3E%3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.85%22 numOctaves=%224%22 stitchTiles=%22stitch%22/%3E%3CfeColorMatrix type=%22saturate%22 values=%220%22/%3E%3C/filter%3E%3Crect width=%22300%22 height=%22300%22 filter=%22url(%23n)%22/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.dark-bar .container { position: relative; z-index: 1; }
.dark-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.dark-bar__item {
  text-align: center;
  padding: 0 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}
.dark-bar__item:last-child { border-right: none; }
.dark-bar__label {
  font-family: var(--font-heading);
  font-size: 0.63rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.45rem;
  line-height: 1.4;
}
.dark-bar__value {
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* ============================================================
   Psychology Today Badge
   ============================================================ */
.pt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background-color: #4a7fc1;
  border: none;
  border-radius: var(--radius);
  padding: 7px 14px 7px 10px;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.2s, opacity 0.2s;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.pt-badge:hover {
  background-color: #3968aa;
  color: #fff;
  opacity: 0.93;
}
.pt-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: rgba(255,255,255,0.18);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.75rem;
  line-height: 1;
}
.pt-badge__text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.2;
}
.pt-badge__verified {
  font-size: 0.56rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}
.pt-badge__name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
/* Legacy dot — kept for backward compat */
.pt-badge__dot { display: none; }

/* ============================================================
   Responsive — Tablet
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
    --header-h: 64px;
  }

  /* Nav: collapse to hamburger */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background-color: var(--charcoal);
    flex-direction: column;
    gap: 0;
    border-bottom: 2px solid var(--green);
    z-index: 99;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.09); }
  .nav-links a { display: block; padding: 15px 24px; }
  .nav-links li:last-child { padding: 14px 24px; border-bottom: none; }
  .nav-cta { display: inline-flex; width: auto; }

  /* Grids */
  .grid-2, .grid-3, .split { grid-template-columns: 1fr; }
  .split { gap: 2.5rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }

  /* Trust strip */
  .trust-strip__items { justify-content: flex-start; gap: 0.75rem 1.5rem; }

  /* Dark bar */
  .dark-bar__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 0;
  }
  .dark-bar__item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    padding-bottom: 1.25rem;
  }
  .dark-bar__item:nth-child(3n) { border-right: none; }
  .dark-bar__item:last-child { border-bottom: none; }

  /* Pull quote */
  .pull-quote { padding: 56px 0; }

  /* About grid — stack on tablet */
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-photo-frame {
    max-width: 240px;
  }
}

/* ============================================================
   Responsive — Mobile
   ============================================================ */
@media (max-width: 480px) {
  :root { --section-pad: 48px; }

  .hero { padding: 68px 0 60px; }
  .page-hero { padding: 56px 0 48px; }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-group .btn { text-align: center; }

  .fee-highlight { font-size: 2rem; }

  /* Dark bar mobile */
  .dark-bar__grid { grid-template-columns: 1fr 1fr; }
  .dark-bar__item:nth-child(3n) { border-right: none; }

  /* Pull quote mobile */
  .pull-quote { padding: 48px 0; }
  .pull-quote__mark { font-size: 3.5rem; margin-bottom: 1.25rem; }
}
