/* =========================================================
   Crossway Center — stylesheet
   Palette & layout mirror the live crosswaycenter.com design.
   ========================================================= */

:root {
  --radius: 0.75rem;
  /* Brand palette (exact values from live site) */
  --sage: #7c9885;
  --sage-light: #a3bfab;
  --sage-dark: #5a7562;
  --forest: #2d4a3e;
  --cream: #faf8f5;
  --warm-white: #fefdfb;
  --stone: #6b6560;
  --stone-light: #9b958f;
  --sand: #e8e4de;
  --terracotta: #c4785c;
  --terracotta-light: #d8a08a;
  --border: #e5e2dd;
  --background: var(--warm-white);
  --foreground: #1a1a1a;

  /* Typography */
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "DM Sans", system-ui, -apple-system, Segoe UI, Arial, sans-serif;

  /* Layout scale */
  --container: 1152px;   /* max-w-6xl */
  --container-narrow: 896px; /* max-w-4xl */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings in serif, forest color */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--forest);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3rem); line-height: 1.2; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1rem; }

p { margin: 0 0 1em; color: var(--stone); line-height: 1.7; }
a { color: var(--forest); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--sage-dark); }
img { max-width: 100%; display: block; }
ul { padding-left: 1.15rem; margin: 0 0 1em; }
ul li { margin-bottom: 0.35em; color: var(--stone); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.accent-sage { color: var(--sage); }
.accent-block { display: block; margin-top: 8px; color: var(--sage); }

section { padding: 96px 0; position: relative; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--forest);
  color: var(--warm-white);
}
.btn-primary:hover {
  background: var(--sage-dark);
  color: var(--warm-white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--warm-white);
}
.btn-ghost {
  background: transparent;
  color: var(--forest);
  padding: 14px 20px;
}
.btn-ghost:hover {
  background: rgba(163, 191, 171, 0.2);
  color: var(--forest);
}
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(254, 253, 251, 0.82);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(229, 226, 221, 0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--forest);
}
.brand img { height: 64px; width: 64px; transition: transform 0.3s ease; }
.brand:hover img { transform: scale(1.05); }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--stone);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
  padding: 6px 0;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--sage);
  transition: width 0.25s ease;
}
.nav-links a:not(.btn):hover { color: var(--forest); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links .btn { padding: 10px 18px; font-size: 0.85rem; }
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--forest);
  padding: 8px;
  cursor: pointer;
}

/* ============ Nav dropdown menus ============ */
.has-dropdown {
  position: relative;
}
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 6px 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--stone);
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
}
.dropdown-trigger svg.chevron {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.dropdown-trigger:hover,
.has-dropdown:hover .dropdown-trigger,
.has-dropdown:focus-within .dropdown-trigger {
  color: var(--forest);
}
.has-dropdown:hover .dropdown-trigger svg.chevron,
.has-dropdown[data-open="true"] .dropdown-trigger svg.chevron {
  transform: rotate(180deg);
}
.dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--sage);
  transition: width 0.25s ease;
}
.dropdown-trigger:hover::after,
.has-dropdown:hover .dropdown-trigger::after,
.has-dropdown[data-open="true"] .dropdown-trigger::after {
  width: 100%;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 260px;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 20px 40px -15px rgba(26, 26, 26, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 60;
}
/* Invisible hover bridge: fills the 12px gap between the trigger and the
   menu so the cursor can move between them without the menu closing.
   This pseudo-element inherits pointer-events from .dropdown-menu, so it's
   only active when the menu is open (no click-blocking at rest). Extends
   past the menu edges horizontally to be forgiving. */
.dropdown-menu::after {
  content: "";
  position: absolute;
  top: -16px;          /* slightly bigger than the visual gap */
  left: -32px;
  right: -32px;
  height: 18px;
  background: transparent;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown[data-open="true"] .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--stone);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
  line-height: 1.35;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: rgba(163, 191, 171, 0.18);
  color: var(--forest);
}
.dropdown-menu a .dd-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--stone-light);
  font-weight: 400;
  margin-top: 2px;
}
/* small arrow pointer on top of dropdown */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--warm-white);
  border-top: 1px solid var(--sand);
  border-left: 1px solid var(--sand);
}

/* offset body for fixed header */
main { padding-top: 0; }

/* ============ Hero ============ */
.hero {
  background: linear-gradient(160deg, #f5f3ef 0%, var(--cream) 30%, #e8ebe6 60%, #dfe5df 100%);
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 72px;
}
.hero-deco {
  position: absolute;
  pointer-events: none;
}
.hero-deco.dec-1 { top: 128px; left: 8%; color: var(--sage); opacity: 0.6; }
.hero-deco.dec-2 { top: 160px; right: 12%; color: var(--sage-dark); opacity: 0.5; }
.hero-deco.dec-3 { top: 55%; left: 5%; color: var(--terracotta); opacity: 0.45; }
.hero-deco.dec-4 { top: 60%; right: 6%; color: var(--sage-light); opacity: 0.5; }
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-narrow);
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  color: var(--forest);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero h1 .accent-block {
  display: block;
  margin-top: 8px;
  color: var(--forest);
}
.two-col h2 .accent-block {
  display: block;
  margin-top: 4px;
  color: var(--forest);
}
.hero .lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--stone);
  max-width: 640px;
  margin: 32px auto 0;
  line-height: 1.7;
}
.hero-actions {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ Generic sub-page hero ============ */
.page-hero {
  background: linear-gradient(160deg, #f5f3ef 0%, var(--cream) 50%, #e8ebe6 100%);
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
.page-hero .lead {
  font-size: 1.15rem;
  color: var(--stone);
  max-width: 720px;
  margin: 20px auto 0;
  line-height: 1.7;
}
/* Minimal page heading — simple left-aligned, narrow wrapper (max-w-4xl).
   Mirrors the live site's `<section class="pt-32 pb-24 bg-white">
   <div class="max-w-4xl mx-auto px-6"> <header class="mb-12"> …` structure. */
.page-heading {
  background: #fff;
  padding: 128px 0 32px;  /* pt-32 = 8rem = 128px */
}
.page-heading .wrap {
  max-width: 896px;  /* max-w-4xl */
  margin: 0 auto;
  padding: 0 24px;
}
.page-heading .title-block { margin-bottom: 48px; }  /* header mb-12 */
.page-heading h1 {
  font-size: clamp(2.25rem, 4.5vw, 3rem);  /* text-4xl md:text-5xl */
  font-weight: 600;
  margin: 0 0 24px;  /* mb-6 */
  color: var(--forest);
  line-height: 1.15;
}
.page-heading .lead {
  font-size: 1.125rem;  /* text-lg */
  color: var(--stone);
  line-height: 1.625;  /* leading-relaxed */
  margin: 0;
  max-width: none;
}
.page-heading .breadcrumbs { margin-bottom: 24px; }

/* Content section paired with .page-heading — matches `pt-32 pb-24` layout.
   Used on About + area-detail pages. */
.page-body {
  background: #fff;
  padding: 32px 0 96px;
}
.page-body .wrap {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-body .wrap > :first-child { margin-top: 0; }
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--stone-light);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.breadcrumbs a { color: var(--stone-light); }
.breadcrumbs a:hover { color: var(--forest); }
.breadcrumbs .sep { margin: 0 8px; color: var(--stone-light); }

/* ============ Two column generic ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col h2 { margin-bottom: 24px; line-height: 1.2; }
.two-col p { font-size: 1.125rem; line-height: 1.75; margin-bottom: 24px; }

/* ============ Feature card grid (homepage "Why Crossway") ============ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-card {
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -12px rgba(26, 26, 26, 0.08);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(163, 191, 171, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  margin-bottom: 18px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 8px;
}
.feature-card p {
  color: var(--stone);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* ============ Areas of Support grid ============ */
.areas-section { background: var(--cream); overflow: hidden; }
.areas-section::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 33%; height: 100%;
  background: linear-gradient(to left, rgba(163, 191, 171, 0.1), transparent);
  pointer-events: none;
}
.areas-intro { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.areas-intro p { font-size: 1.125rem; color: var(--stone); margin-top: 20px; line-height: 1.7; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}
.area-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 24px;
  color: var(--stone);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.area-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--sage);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  transition: height 0.5s ease;
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(26, 26, 26, 0.12);
  color: var(--stone);
  text-decoration: none;
}
.area-card:hover::before { height: 100%; }
.area-card:hover h3 { color: var(--sage-dark); }
.area-card h3 {
  font-size: 1.55rem;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--forest);
  transition: color 0.25s ease;
}
.area-card p { color: var(--stone); line-height: 1.7; margin: 0 0 24px; flex: 1; }
.area-card .arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: gap 0.25s ease;
}
.area-card:hover .arrow { gap: 12px; }
.area-card .arrow svg { width: 16px; height: 16px; }

/* ============ Closing CTA (homepage) ============ */
.cta-section {
  background: #fff;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
.cta-section::before {
  top: 40px; left: 10%;
  width: 256px; height: 256px;
  background: var(--sage-light);
}
.cta-section::after {
  bottom: 80px; right: 20%;
  width: 360px; height: 360px;
  background: var(--sage);
}
.cta-section .container-narrow { position: relative; z-index: 1; }
.cta-section p { font-size: 1.125rem; max-width: 620px; margin: 24px auto 40px; color: var(--stone); line-height: 1.75; }

/* Dark CTA band (sub-pages) */
.cta-band {
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage-dark) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--sage), var(--sage-light), var(--sage));
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 620px; margin: 20px auto 32px; font-size: 1.1rem; }
.cta-band .btn-primary { background: #fff; color: var(--forest); }
.cta-band .btn-primary:hover { background: var(--cream); color: var(--forest); }

/* ============ Prose pages (body text areas) ============ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); color: var(--forest); margin-top: 1.8em; margin-bottom: 0.75em; }
.prose h3 { color: var(--forest); margin-top: 1.5em; margin-bottom: 0.5em; }
.prose p { font-size: 1.08rem; line-height: 1.8; color: var(--stone); }
.prose p:first-of-type { margin-top: 0; }

/* FAQ */
.faq-list { max-width: 840px; margin: 48px auto 0; display: grid; gap: 14px; }
.faq-item {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 16px;
  padding: 22px 24px;
}
.faq-item h3 {
  font-size: 1.1rem;
  color: var(--forest);
  margin: 0 0 8px;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0;
}
.faq-item p { margin: 0; color: var(--stone); line-height: 1.7; font-size: 0.98rem; }

/* Simple "View team" link used on the About page */
.team-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-dark);
  font-weight: 500;
  font-size: 1rem;
  margin-top: 8px;
}
.team-link:hover { color: var(--forest); gap: 12px; }
.team-link svg { width: 16px; height: 16px; }

/* ============ Provider cards ============ */
.provider-intro { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.provider-intro p { font-size: 1.1rem; color: var(--stone); margin-top: 20px; line-height: 1.75; }

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.provider-card {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  text-decoration: none !important;
  color: var(--stone);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}
.provider-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -15px rgba(26,26,26,0.12); color: var(--stone); }
.provider-initials {
  width: 92px; height: 92px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.provider-card h3 { font-size: 1.35rem; color: var(--forest); margin: 0 0 6px; }
.provider-card .title { color: var(--stone); font-size: 0.95rem; margin-bottom: 14px; }
.provider-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sage-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Provider detail header */
.provider-detail-hero {
  background: linear-gradient(160deg, #f5f3ef 0%, var(--cream) 50%, #e8ebe6 100%);
  padding: 140px 24px 40px;
  position: relative;
  overflow: hidden;
}
.provider-detail-inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.provider-detail-inner .provider-initials {
  width: 96px; height: 96px;
  font-size: 1.9rem;
  margin: 0;
}
.provider-detail-inner h1 {
  margin: 0 0 4px;
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
}
.provider-detail-inner .credentials-line {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone-light);
  font-weight: 500;
  margin-bottom: 8px;
}
.provider-detail-inner .title {
  color: var(--sage-dark);
  font-size: 1rem;
  font-weight: 500;
}

/* Provider two-column body (bio + sidebar) */
.provider-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .provider-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Specialty list (provider detail sidebar) */
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.spec-list li {
  color: var(--stone);
  font-size: 0.95rem;
  padding-left: 18px;
  position: relative;
  margin: 0;
}
.spec-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
}
.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.area-list li { margin: 0; }
.area-list a {
  color: var(--forest);
  font-size: 0.95rem;
}
.area-list a:hover { color: var(--sage-dark); }

/* Info panel (right-rail on provider detail + contact) */
.panel {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 24px;
  padding: 32px 28px;
}
.panel h3 {
  font-size: 1.25rem;
  color: var(--forest);
  margin: 0 0 18px;
}

/* Contact-specific */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info dt {
  font-weight: 600;
  color: var(--forest);
  margin-top: 14px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-sans);
}
.contact-info dd { margin: 4px 0 10px; color: var(--stone); font-size: 1rem; }
.contact-info a { color: var(--forest); }
.contact-info a:hover { color: var(--sage-dark); }

/* ============ Footer ============ */
.site-footer {
  background: var(--forest);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 72px 0 32px;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--sage), var(--sage-light), var(--sage));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.site-footer h3, .site-footer h4 { color: #fff; }
.site-footer h3 {
  font-size: 1.5rem;
  margin: 0 0 12px;
  font-family: var(--font-serif);
}
.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--sage-light);
  font-weight: 600;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; color: rgba(255,255,255,0.85); }
.site-footer a { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.site-footer a:hover { color: #fff; }
.site-footer .tagline { color: rgba(255,255,255,0.72); font-size: 0.95rem; max-width: 38ch; line-height: 1.65; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.88rem;
  color: var(--sage-light);
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 80px;
    right: 16px;
    background: var(--warm-white);
    border: 1px solid var(--sand);
    border-radius: 14px;
    padding: 16px 22px;
    box-shadow: 0 16px 32px rgba(26,26,26,0.08);
    gap: 14px;
    min-width: 240px;
  }
  .menu-toggle { display: inline-flex; }
  /* on mobile, dropdowns flatten — menu is always visible inline */
  .has-dropdown { width: 100%; }
  .dropdown-trigger { width: 100%; justify-content: space-between; }
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    background: transparent;
  }
  .dropdown-menu::before { display: none; }
  .dropdown-menu a { padding: 6px 8px; font-size: 0.88rem; }
  section { padding: 72px 0; }
  .hero { padding: 110px 24px 64px; min-height: 70vh; }
  .two-col, .contact-grid, .provider-detail-inner { grid-template-columns: 1fr; gap: 32px; }
  .provider-detail-inner { text-align: center; }
  .provider-detail-inner .provider-initials { margin: 0 auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .brand img { height: 52px; width: 52px; }
  .brand-name { font-size: 1.25rem; }
  .header-inner { height: 72px; }
  .hero { padding-top: 100px; }
  .page-hero, .provider-detail-hero { padding-top: 130px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
}
