/* ============================================================
   RELATE.ivity Psychotherapy and Integration Group
   Main Stylesheet
   ============================================================ */

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

/* === CSS VARIABLES === */
:root {
  --primary:         #2D3F5E;
  --primary-dark:    #1E2A3A;
  --primary-light:   #4A607A;
  --secondary:       #C4874A;
  --secondary-dark:  #A06835;
  --secondary-light: #D9A068;
  --cream:           #F8F9FB;
  --cream-dark:      #ECF0F4;
  --cream-mid:       #F2F5F8;
  --text-dark:       #1E2A3A;
  --text-mid:        #4A607A;
  --text-light:      #8095A8;
  --border:          #D0D9E4;
  --white:           #FFFFFF;
  --shadow-sm:  0 2px 8px rgba(30, 42, 58, 0.08);
  --shadow-md:  0 4px 20px rgba(30, 42, 58, 0.12);
  --shadow-lg:  0 8px 40px rgba(30, 42, 58, 0.16);
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition:   0.25s ease;
  --max-width:    1200px;
}


/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 500;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 400; }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.375rem, 3vw, 2rem); font-weight: 400; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === LAYOUT === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 5rem 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.875rem;
  display: block;
}
.section-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: 0.875rem;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-logo .dot { color: var(--primary); }
.nav-logo .lower { font-weight: 300; font-style: italic; }
.nav-logo .tagline {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}
.nav-link:hover { color: var(--primary); background: var(--cream-dark); }
.nav-link .arrow { font-size: 0.6rem; transition: transform var(--transition); }
.nav-item:hover .arrow { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  padding-top: 0.875rem;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  pointer-events: none;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-dropdown a:hover { background: var(--cream); color: var(--primary); padding-left: 1.25rem; }
.nav-cta { margin-left: 1.25rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 999;
  overflow-y: auto;
  padding: 2rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.125rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.mobile-nav .mobile-section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 1.5rem 0 0.5rem;
  text-decoration: none;
  display: block;
}
.mobile-nav .mobile-section-label:hover {
  color: var(--primary);
}
.mobile-nav .mobile-sub-link {
  padding-left: 1rem;
  font-size: 1rem;
  color: var(--text-mid);
}
.mobile-nav .btn { margin-top: 2rem; width: 100%; justify-content: center; color: white; }

/* ============================================================
   HERO (Home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #1A2535 0%, #2D3F5E 50%, #1A3548 100%);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(14,26,42,0.72) 0%, rgba(14,26,42,0.4) 55%, rgba(30,64,90,0.25) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem;
}
.hero-text { max-width: 680px; }
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
}
.hero-title strong {
  font-weight: 500;
  display: block;
}
.hero-subtitle {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.84);
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1.25rem;
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--primary);
  color: var(--white);
  padding: 1.25rem 2rem;
  text-align: center;
}
.intro-strip p {
  font-size: 0.9375rem;
  font-weight: 400;
  opacity: 0.92;
  margin: 0;
  letter-spacing: 0.02em;
}

/* ============================================================
   AREAS OF FOCUS (Home)
   ============================================================ */
.areas-section { background: var(--cream); }
.areas-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.areas-header-text { max-width: 500px; }
.areas-header .section-subtitle { margin-bottom: 0; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.area-card:hover::before { transform: scaleX(1); }
.area-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.area-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
}
.area-card h3 {
  font-size: 1.375rem;
  color: var(--text-dark);
  line-height: 1.2;
}
.area-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.area-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: auto;
  letter-spacing: 0.02em;
  transition: gap var(--transition);
}
.area-card:hover .area-link { gap: 0.625rem; }

/* ============================================================
   INCLUSIVE CALLOUT
   ============================================================ */
.inclusive-section {
  background: var(--cream-dark);
  padding: 4rem 0;
}
.inclusive-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.inclusive-text { flex: 1; }
.inclusive-text h2 { margin-bottom: 1rem; }
.inclusive-text p { color: var(--text-mid); line-height: 1.8; }
.inclusive-badges {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 220px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid var(--border);
}
.badge-icon { font-size: 1.125rem; }

/* ============================================================
   ABOUT PREVIEW (Home)
   ============================================================ */
.about-section { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about-photo { position: relative; }
.about-photo-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, #C8D6E5 0%, #8095A8 50%, #4A607A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
}
.about-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.photo-placeholder-label {
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem;
  opacity: 0.8;
}
.photo-placeholder-icon { font-size: 2.5rem; opacity: 0.5; }
.about-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--secondary);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.5;
  box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; font-size: 1.375rem; font-family: var(--font-heading); }
.about-content { }
.about-pretitle {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.875rem;
}
.about-name {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.25rem;
  font-weight: 400;
}
.about-creds {
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}
.about-text {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-size: 1.0125rem;
}
.about-qualities {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.quality-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--text-mid);
}
.quality-dot {
  width: 8px; height: 8px; min-width: 8px;
  background: var(--secondary);
  border-radius: 50%;
  margin-top: 0.55em;
}

/* ============================================================
   QUOTE / MISSION
   ============================================================ */
.quote-section {
  background: var(--text-dark);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: block;
}
.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.625rem, 4vw, 2.625rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: rgba(255,255,255,0.9);
  max-width: 820px;
  margin: 0 auto 1.5rem;
}
.quote-attr {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   ACCESS / INSURANCE
   ============================================================ */
.access-section { background: var(--cream); }
.access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.access-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.access-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.access-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.access-card h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-dark); }
.access-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--text-dark); }
.access-card p { font-size: 0.875rem; color: var(--text-mid); margin: 0; line-height: 1.6; }

.insurance-strip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.insurance-strip-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}
.insurance-logos {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.ins-logo {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

/* ============================================================
   BLOG PREVIEW (Home)
   ============================================================ */
.blog-section { background: var(--cream-dark); }
.blog-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.blog-section-header .section-subtitle { margin-bottom: 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.blog-card-body {
  padding: 1.625rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.625rem;
}
.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3125rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: var(--text-dark);
}
.blog-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}
.blog-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: var(--secondary);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.cta-note {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.55);
  margin-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.65);
  padding: 4.5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2.25fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand .footer-logo .dot { color: var(--primary); }
.footer-brand .footer-logo .lower { font-weight: 300; font-style: italic; }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); padding-left: 0.25rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-oregon {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(140deg, #0F1A2A 0%, #1E2A3A 60%, #2D3F5E 100%);
  padding: 7rem 0 4.5rem;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.75rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb-sep { opacity: 0.35; }
.page-hero .section-label { color: rgba(255,255,255,0.55); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead {
  font-size: 1.1875rem;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  line-height: 1.75;
}

/* ============================================================
   SERVICE PAGES
   ============================================================ */
.service-layout {
  padding: 5rem 0;
}
.service-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.service-body h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  color: var(--text-dark);
}
.service-body h2:first-child { margin-top: 0; }
.service-body p { color: var(--text-mid); line-height: 1.85; margin-bottom: 1.25rem; }
.service-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 1rem 0 1.5rem;
}
.service-body li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.service-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
}
.service-sidebar {
  position: sticky;
  top: 96px;
}
.sidebar-cta-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.sidebar-cta-card h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.sidebar-cta-card p { font-size: 0.9rem; opacity: 0.88; margin-bottom: 1.5rem; }
.sidebar-cta-card .btn { width: 100%; justify-content: center; }
.sidebar-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-info-card h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.sidebar-info-card p { font-size: 0.9rem; color: var(--text-mid); }
.sidebar-info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sidebar-info-card li {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding-left: 1rem;
  position: relative;
}
.sidebar-info-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.75rem;
}
.related-services { background: var(--cream-dark); padding: 4rem 0; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.related-card .area-icon { width: 44px; height: 44px; font-size: 1.375rem; margin-bottom: 0.75rem; }
.related-card h4 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 0.375rem; color: var(--text-dark); }
.related-card p { font-size: 0.85rem; color: var(--text-mid); margin: 0; }

/* ============================================================
   WHO WE ARE
   ============================================================ */
.team-section { background: var(--cream); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: visible;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.team-card > img {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #C8D6E5 0%, #8095A8 60%, #4A607A 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.25rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  text-align: center;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card > img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center top; display: block; }
.team-info { padding: 1.5rem 1.75rem 2rem; overflow: visible; }
.team-name { font-size: 1.5rem; margin-bottom: 0.2rem; }
.team-creds {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}
.team-role {
  font-size: 0.875rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 1rem;
}
.team-bio { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; overflow: visible; word-wrap: break-word; }

.values-section { background: var(--cream-dark); padding: 5rem 0; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 3rem; }
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2rem 2.25rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--secondary);
}
.value-card-inner { display: flex; flex-direction: column; }
.value-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.value-card p { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-page { padding: 3rem 0 5rem; background: var(--cream); }
.blog-page-grid { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; }
.blog-posts { display: flex; flex-direction: column; gap: 2rem; }
.blog-post-card {
  background: var(--white);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0 2rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  padding: 2rem 0;
}
.blog-post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-post-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.blog-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-post-card:hover .blog-post-img img { transform: scale(1.04); }
.blog-img-ph {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.blog-post-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.blog-post-body h3 { font-size: 1.5rem; margin-bottom: 0.75rem; line-height: 1.3; }
.blog-post-body p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; flex: 1; }
.blog-post-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.blog-sidebar { }
.blog-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.blog-sidebar-card h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.blog-categories { display: flex; flex-direction: column; gap: 0.5rem; }
.blog-cat {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.blog-cat:last-child { border-bottom: none; }
.blog-cat:hover { color: var(--primary); padding-left: 0.25rem; }
.blog-cat span { font-size: 0.78rem; color: var(--text-light); background: var(--cream-dark); padding: 0.15rem 0.5rem; border-radius: 100px; }

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.resources-section { padding: 5rem 0; background: var(--cream); }
.resources-intro { max-width: 700px; margin-bottom: 3rem; color: var(--text-mid); line-height: 1.8; font-size: 1.0125rem; }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  transition: all var(--transition);
}
.resource-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.resource-icon { font-size: 2rem; margin-bottom: 1rem; }
.resource-card h3 { font-size: 1.6rem; font-weight: 700; text-align: center; margin-bottom: 1rem; color: var(--text-dark); }
.resource-card > p { color: var(--text-mid); font-size: 0.9375rem; margin-bottom: 1.5rem; }
.resource-links { display: flex; flex-direction: column; }
.resource-link {
  font-size: 0.875rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
}
.resource-link:last-child { border-bottom: none; }
.resource-link:hover { color: var(--primary-dark); padding-left: 0.25rem; }
.resource-link-arrow { margin-left: auto; font-size: 0.75rem; opacity: 0.5; }

.crisis-section {
  background: #FFF5F2;
  border: 1px solid #F5C4B4;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-top: 2rem;
}
.crisis-section h3 { color: var(--primary-dark); font-size: 1.625rem; margin-bottom: 0.75rem; }
.crisis-section p { color: var(--text-mid); margin-bottom: 1rem; }
.crisis-numbers { display: flex; flex-direction: column; gap: 0.75rem; }
.crisis-number {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid #F5C4B4;
}
.crisis-number strong { font-size: 0.9rem; flex: 1; }
.crisis-number a { color: var(--primary); font-weight: 700; font-size: 1.0625rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 5rem 0; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.contact-info > p { color: var(--text-mid); line-height: 1.8; margin-bottom: 2.5rem; font-size: 1.0125rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid var(--border);
}
.contact-detail-text h5 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.contact-detail-text p, .contact-detail-text a { font-size: 0.9375rem; color: var(--text-mid); margin: 0; }
.contact-detail-text a:hover { color: var(--primary); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.contact-form-card > p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8125rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 99, 74, 0.1);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { margin-top: 1.5rem; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 1rem; text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .access-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 400px; }
  .service-inner { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .blog-page-grid { grid-template-columns: 1fr; }
  .inclusive-inner { flex-direction: column; gap: 2.5rem; }
  .inclusive-badges { flex-direction: row; flex-wrap: wrap; min-width: 0; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .areas-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-card { grid-template-columns: 1fr; }
  .blog-post-img { aspect-ratio: 16/9; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-badge { right: 0; bottom: -1rem; }
  .form-row { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .access-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .inclusive-badges { flex-direction: column; }
}

/* === ANCHOR SCROLL OFFSET (accounts for fixed nav height) === */
[id] {
  scroll-margin-top: 90px;
}

/* === SERVICE CARD GRID RESPONSIVE === */
@media (max-width: 900px) {
  .hero-full { min-height:70vh !important; }
}
@media (max-width: 768px) {
  section [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  .hero-full { min-height:60vh !important; }
  .hero-full [style*="max-width:480px"] {
    max-width: 100% !important;
    padding: 2rem 1rem !important;
  }
}

/* === HERO MOBILE OVERRIDES === */
@media (max-width: 768px) {
  .hero-main {
    min-height: 100svh !important;
    align-items: flex-end !important;
  }
  .hero-container {
    justify-content: center !important;
    padding: 2rem 1.25rem 2.5rem !important;
  }
  .hero-textbox {
    max-width: 100% !important;
    width: 100% !important;
    padding-right: 0 !important;
    justify-content: flex-end !important;
    gap: 0.75rem;
  }
  .hero-textbox p[style*="5.8rem"] {
    font-size: 2.4rem !important;
    line-height: 1.15 !important;
    letter-spacing: 0px !important;
  }
  .hero-textbox p[style*="2.2rem"] {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
  }
  /* Override gradient to be uniform dark overlay on mobile */
  .hero-main > div:nth-child(2) {
    background: rgba(33,54,74,0.72) !important;
  }
}

/* === SERVICES PAGE EXPANDED LAYOUT MOBILE === */
@media (max-width: 768px) {
  .container [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .container [style*="grid-template-columns:1fr 1fr"] > div[style*="border-radius:12px"] {
    height: 260px !important;
    order: -1;
  }
}
