/* ===========================================================
   EXCLUSIVE RECOVERY CENTERS — GLOBAL STYLESHEET
   Mission Hills, Los Angeles · Joint Commission Accredited
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --green-deep: #1a3a2e;
  --green-darker: #0e2419;
  --green-mid: #2d5544;
  --green-light: #e8efe9;
  --gold: #c9a961;
  --gold-light: #e6d4a3;
  --gold-soft: #f4ecd6;
  --cream: #f8f7f2;
  --cream-warm: #f4f1e8;
  --ink: #1a1a1a;
  --ink-soft: #444;
  --ink-mute: #777;
  --line: #e5e1d6;
  --white: #ffffff;
  --red-alert: #b04545;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(26,58,46,0.06);
  --shadow-md: 0 6px 20px rgba(26,58,46,0.1);
  --shadow-lg: 0 12px 40px rgba(26,58,46,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================
   TOP CRISIS BAR
   ============================================ */
.crisis-bar {
  background: linear-gradient(90deg, #5a1a1a 0%, #7a2222 100%);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  padding: 8px 20px;
  letter-spacing: 0.3px;
}
.crisis-bar strong { color: var(--gold-light); }
.crisis-bar a { color: var(--gold-light); text-decoration: underline; }

/* ============================================
   ACCREDITATION BAR
   ============================================ */
.accred-bar {
  background: var(--green-deep);
  color: var(--white);
  padding: 14px 20px;
  font-size: 13px;
  text-align: center;
}
.accred-bar .accred-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto;
}
.accred-bar .accred-inner span { display: flex; align-items: center; gap: 6px; }
.accred-bar .phone-link { color: var(--gold-light); font-weight: 600; font-size: 14px; }
.accred-bar .phone-link:hover { color: var(--white); }

/* ============================================
   PROMO BAR
   ============================================ */
.promo-bar {
  background: linear-gradient(90deg, var(--gold) 0%, #d4b572 100%);
  color: var(--green-darker);
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.promo-bar a {
  color: var(--green-darker);
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================
   MAIN HEADER / NAVIGATION
   ============================================ */
.site-header {
  background: var(--white);
  padding: 18px 40px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-logo {
  width: 52px;
  height: 52px;
  background: var(--green-deep);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  font-style: italic;
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name .name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--green-deep);
}
.brand-name .tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.main-nav a.active,
.main-nav a:hover { color: var(--gold); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}
.cta-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 11px;
  color: var(--ink-mute);
}
.cta-call .num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--green-deep);
}
.cta-button {
  background: var(--green-deep);
  color: var(--white) !important;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  display: inline-block;
}
.cta-button:hover {
  background: var(--gold) !important;
  color: var(--green-darker) !important;
  transform: translateY(-1px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background:
    linear-gradient(135deg, rgba(14,36,25,0.94) 0%, rgba(26,58,46,0.88) 100%),
    radial-gradient(circle at 20% 30%, rgba(201,169,97,0.15) 0%, transparent 50%);
  color: var(--white);
  padding: 80px 40px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 30px 30px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,97,0.15);
  border: 1px solid rgba(201,169,97,0.3);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  max-width: 540px;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-features span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,169,97,0.25);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--gold-light);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #d4b572 100%);
  color: var(--green-darker) !important;
  padding: 16px 32px;
  border-radius: 40px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--green-darker) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,97,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--white) !important;
  padding: 16px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.8px;
  border: 2px solid rgba(255,255,255,0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light) !important;
}

/* Hero contact card */
.hero-card {
  background: var(--white);
  color: var(--ink);
  padding: 36px 32px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 14px 14px 0 0;
}
.hero-card .label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--green-deep);
  margin-bottom: 6px;
  font-weight: 600;
}
.hero-card p.subtle {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.hero-card input, .hero-card select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--sans);
  margin-bottom: 12px;
  transition: border 0.2s ease;
}
.hero-card input:focus, .hero-card select:focus {
  outline: none;
  border-color: var(--gold);
}
.hero-card button {
  width: 100%;
  background: var(--green-deep);
  color: var(--white);
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: var(--sans);
}
.hero-card button:hover { background: var(--gold); color: var(--green-darker); }
.hero-card .hipaa {
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 14px;
}

/* ============================================
   PAGE BANNER (for inner pages)
   ============================================ */
.page-banner {
  background:
    linear-gradient(135deg, rgba(14,36,25,0.94) 0%, rgba(26,58,46,0.92) 100%),
    radial-gradient(circle at 75% 30%, rgba(201,169,97,0.18) 0%, transparent 50%);
  color: var(--white);
  padding: 70px 40px 80px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 30px 30px;
  pointer-events: none;
}
.page-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { margin: 0 8px; }
.breadcrumb .current { color: var(--gold-light); }
.page-banner h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 16px;
}
.page-banner .lede {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin-bottom: 26px;
  line-height: 1.6;
}
.page-banner .banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================
   SECTION GENERICS
   ============================================ */
section { padding: 70px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-wide { max-width: 1500px; margin: 0 auto; }

/* Larger displays - widen content area to fill the screen better */
@media (min-width: 1600px) {
  .header-inner,
  .hero-inner,
  .footer-grid,
  .footer-bottom,
  .accred-bar .accred-inner { max-width: 1600px; }
  .container { max-width: 1280px; }
  .page-banner-inner { max-width: 1280px; }
  .stat-grid { max-width: 1280px; }
  section { padding: 80px 60px; }
  .hero, .page-banner { padding: 80px 60px 100px; }
  .site-header { padding: 18px 60px; }
  .accred-bar { padding: 14px 60px; }
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding-left: 30px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--green-deep);
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
h2 em { color: var(--gold); font-style: italic; }

h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--green-deep);
  margin: 28px 0 14px;
  font-weight: 600;
}
h4 {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--green-deep);
  margin-bottom: 10px;
  font-weight: 700;
}

p { margin-bottom: 16px; font-size: 16px; line-height: 1.75; }

/* ============================================
   TWO-COLUMN LAYOUT (content + sidebar)
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 50px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 110px;
}
.sidebar-card {
  background: var(--cream);
  padding: 28px 26px;
  border-radius: 12px;
  border-top: 3px solid var(--gold);
  margin-bottom: 20px;
}
.sidebar-card h3 {
  font-size: 22px;
  margin-top: 0;
}
.sidebar-card .small {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.sidebar-card input, .sidebar-card select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 10px;
  font-family: var(--sans);
  background: var(--white);
}
.sidebar-card button {
  width: 100%;
  background: var(--green-deep);
  color: var(--white);
  padding: 13px;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  cursor: pointer;
  font-family: var(--sans);
}
.sidebar-card button:hover { background: var(--gold); color: var(--green-darker); }
.sidebar-card .hipaa-mini {
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 12px;
}
.sidebar-phone {
  background: var(--green-deep);
  color: var(--white);
  text-align: center;
  padding: 24px 20px;
  border-radius: 12px;
}
.sidebar-phone .label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.sidebar-phone a {
  color: var(--white);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  display: block;
}
.sidebar-phone .avail { font-size: 12px; opacity: 0.8; margin-top: 4px; }

/* Programs sidebar list */
.sidebar-programs {
  background: var(--green-deep);
  color: var(--white);
  padding: 28px 26px;
  border-radius: 12px;
}
.sidebar-programs h4 {
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sidebar-programs ul { list-style: none; }
.sidebar-programs li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sidebar-programs li:last-child { border-bottom: none; }
.sidebar-programs a {
  color: var(--white);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-programs a:hover { color: var(--gold-light); }

/* ============================================
   STAT BAR
   ============================================ */
.stat-bar {
  background: var(--cream);
  padding: 50px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat .num {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--green-deep);
  font-weight: 600;
  line-height: 1;
}
.stat .num em { color: var(--gold); font-style: italic; }
.stat .lbl {
  font-size: 13px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* ============================================
   PROGRAMS GRID
   ============================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.program-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 26px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.program-card:hover::before { transform: scaleX(1); }
.program-card .icon {
  width: 54px; height: 54px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.program-card h3 {
  font-size: 22px;
  margin: 0 0 12px 0;
}
.program-card p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.program-card a {
  font-weight: 600;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================
   ADDICTION GRID (for /addictions-we-treat)
   ============================================ */
.addiction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.addiction-tile {
  background: var(--cream);
  padding: 24px 22px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--green-deep);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid transparent;
}
.addiction-tile:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--gold);
  transform: translateX(4px);
}
.addiction-tile .icon { font-size: 26px; flex-shrink: 0; }
.addiction-tile .name {
  font-weight: 600;
  font-size: 15px;
  font-family: var(--serif);
}
.addiction-tile .arrow {
  margin-left: auto;
  opacity: 0.4;
  font-size: 18px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.addiction-tile:hover .arrow {
  opacity: 1;
  transform: translateX(4px);
  color: var(--gold-light);
}

/* ============================================
   WARNING SIGNS LIST
   ============================================ */
.signs-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.sign-item {
  background: var(--cream);
  padding: 22px 26px;
  border-radius: 10px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-left: 4px solid var(--gold);
}
.sign-num {
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--green-darker);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}
.sign-text strong {
  display: block;
  color: var(--green-deep);
  margin-bottom: 4px;
  font-size: 17px;
}
.sign-text { font-size: 15px; line-height: 1.6; }

/* ============================================
   TREATMENT GRID
   ============================================ */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.treatment-card {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 26px 24px;
  border-radius: 8px;
  transition: all 0.25s ease;
}
.treatment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.treatment-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.treatment-card p {
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
  color: var(--ink-soft);
}
.treatment-card a {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* ============================================
   HEALTH RISKS GRID
   ============================================ */
.risks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.risk-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 22px;
}
.risk-card h4 {
  color: var(--red-alert);
  margin-bottom: 8px;
  font-size: 16px;
}
.risk-card p { font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ============================================
   WHY US GRID
   ============================================ */
.why-section { background: var(--cream-warm); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.why-card {
  background: var(--white);
  padding: 26px 24px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.why-card h4 {
  color: var(--green-deep);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.why-card .check {
  color: var(--gold);
  font-weight: 800;
  font-size: 18px;
}
.why-card p { font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  font-size: 21px;
  margin: 0 0 10px 0;
  color: var(--green-deep);
}
.faq-item p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.7;
}

/* ============================================
   LOCAL SECTION
   ============================================ */
.local-section {
  background: var(--cream);
  border-top: 3px solid var(--gold);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background:
    linear-gradient(135deg, rgba(14,36,25,0.96) 0%, rgba(26,58,46,0.94) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 40px;
}
.final-cta .section-label { color: var(--gold-light); }
.final-cta .section-label::before { background: var(--gold-light); }
.final-cta h2 { color: var(--white); margin-bottom: 18px; }
.final-cta h2 em { color: var(--gold-light); }
.final-cta p {
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--green-darker);
  color: rgba(255,255,255,0.7);
  padding: 60px 40px 30px;
  font-size: 14px;
}
.footer-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h5 {
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
  font-family: var(--sans);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 14px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-brand .brand-name .name { color: var(--white); font-size: 24px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.6; margin-top: 14px; }
.footer-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
.footer-creds span {
  background: rgba(255,255,255,0.05);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}
.footer-bottom {
  max-width: 1500px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); margin-left: 18px; }

/* ============================================
   ABOUT / TEAM
   ============================================ */
.feature-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 48px;
  margin-bottom: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.team-card {
  text-align: center;
}
.team-avatar {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 44px;
  color: var(--gold-light);
  border: 3px solid var(--gold-light);
}
.team-card h4 { margin-bottom: 4px; }
.team-card .role {
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.team-card p { font-size: 14.5px; line-height: 1.55; }

/* ============================================
   INSURANCE GRID
   ============================================ */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.insurance-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s ease;
}
.insurance-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.insurance-card .name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--green-deep);
  font-weight: 600;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info-card {
  background: var(--cream);
  padding: 30px 28px;
  border-radius: 12px;
  margin-bottom: 18px;
  border-left: 3px solid var(--gold);
}
.contact-info-card h4 {
  font-size: 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.contact-info-card p {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--green-deep);
  margin: 0;
  font-weight: 600;
}
.contact-info-card p.small {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 400;
}
.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: 12px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--sans);
  margin-bottom: 14px;
  background: var(--cream);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.contact-form button {
  width: 100%;
  background: var(--green-deep);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.8px;
  cursor: pointer;
  font-family: var(--sans);
}
.contact-form button:hover { background: var(--gold); color: var(--green-darker); }

/* ============================================
   RESOURCE / BLOG
   ============================================ */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  margin-top: 40px;
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
}
.resource-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.resource-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--gold-light);
}
.resource-body { padding: 24px; }
.resource-body .cat {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}
.resource-body h3 {
  font-size: 20px;
  margin: 0 0 10px 0;
}
.resource-body p { font-size: 14.5px; }
.resource-body a {
  font-weight: 600;
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   ALERT BOX
   ============================================ */
.alert-box {
  background: linear-gradient(135deg, #f8e8e8 0%, #fef0f0 100%);
  border-left: 4px solid var(--red-alert);
  padding: 22px 24px;
  border-radius: 8px;
  margin: 26px 0;
}
.alert-box h4 {
  color: var(--red-alert);
  margin-bottom: 6px;
  font-size: 15px;
}
.alert-box p { margin: 0; font-size: 15px; }

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 980px) {
  .header-inner { flex-wrap: wrap; gap: 16px; }
  .main-nav { order: 3; width: 100%; justify-content: center; gap: 16px; flex-wrap: wrap; }
  .main-nav a { font-size: 13px; }
  .hero-inner, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .sidebar { position: static; }
  section { padding: 50px 24px; }
  .hero, .page-banner { padding: 60px 24px; }
  .accred-bar .accred-inner { gap: 14px; font-size: 11px; }
}
@media (max-width: 600px) {
  .stat-grid, .footer-grid { grid-template-columns: 1fr; }
  .crisis-bar { font-size: 11px; }
  .hero h1 { font-size: 38px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .page-banner h1 { animation: fadeUp 0.8s ease-out; }
.hero-sub, .page-banner .lede { animation: fadeUp 0.8s 0.2s ease-out backwards; }
.hero-actions, .page-banner .banner-actions { animation: fadeUp 0.8s 0.4s ease-out backwards; }
