/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

:root {
  /* Flyer colors */
  --navy:      #1a2552;
  --navy-dk:   #111838;
  --navy-lt:   #243070;
  --tan:       #a08a6e;
  --tan-lt:    #bfaa90;
  --tan-bg:    #d6c4aa;
  --cream:     #fdf8f2;
  --warm:      #f2ebe0;
  --white:     #ffffff;
  --charcoal:  #2a2a2a;
  --muted:     #6a6a6a;
  --border:    #ddd5c8;

  --serif: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --sans:  Optima, 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

  --shadow-sm: 0 2px 10px rgba(26,37,82,0.08);
  --shadow-md: 0 6px 28px rgba(26,37,82,0.13);
  --shadow-lg: 0 16px 52px rgba(26,37,82,0.2);
}

body { font-family: var(--serif); background: var(--cream); color: var(--charcoal); line-height: 1.6; overflow-x: hidden; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--tan); border-radius: 3px; }

/* ── TYPOGRAPHY HELPERS ─────────────────────────────────── */
.eyebrow {
  font-family: var(--sans); font-size: 0.68rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 700; margin-bottom: 10px;
}
.eyebrow.tan { color: var(--tan-lt); }
.eyebrow.navy { color: var(--navy); }

h1,h2,h3,h4 { font-family: var(--serif); }

/* ── NAV ────────────────────────────────────────────────── */
#nav {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  background: var(--navy-dk);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  transition: background 0.3s;
}
.nav-brand { text-decoration: none; }
.nav-brand .name {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.3px;
}
.nav-brand .name em { color: var(--tan-bg); font-style: normal; }
.nav-brand .sub {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.38); margin-top: -1px;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.72); text-decoration: none;
  padding: 8px 14px; border-radius: 6px; transition: all 0.2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); color: white; }
.nav-links .cta {
  background: var(--tan-bg); color: var(--navy-dk) !important;
  font-weight: 700; margin-left: 8px; padding: 8px 20px; border-radius: 6px;
  font-size: 0.9rem;
}
.nav-links .cta:hover { background: var(--tan-lt); transform: translateY(-1px); }

/* ── NAV WITH SUBTITLES ─────────────────────────────────── */
.nav-with-sub {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 6px 10px !important; gap: 1px;
  height: 56px; white-space: nowrap;
}
.nav-title {
  font-size: 0.85rem; font-weight: 500; display: block;
  line-height: 1.1; white-space: nowrap;
}
.nav-sub {
  font-size: 0.6rem; font-weight: 400; display: block;
  color: rgba(255,255,255,0.5); letter-spacing: 0.4px;
  margin-top: 0; text-transform: capitalize; white-space: nowrap;
}
.nav-with-sub:hover .nav-sub { color: rgba(255,255,255,0.7); }

/* ── HERO ───────────────────────────────────────────────── */
#hero {
  background: var(--navy-dk);
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  padding: 130px 40px 80px;
  position: relative; overflow: hidden;
}
/* Radial glow */
#hero::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 85%, rgba(160,138,110,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(36,48,112,0.5) 0%, transparent 60%);
  pointer-events:none;
}
/* Top decorative bar */
#hero::after {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background: linear-gradient(90deg, var(--tan), var(--tan-lt), var(--tan));
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(160,138,110,0.18); border: 1px solid rgba(160,138,110,0.45);
  color: var(--tan-bg); font-family: var(--sans);
  font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 30px; margin-bottom: 28px;
  position: relative;
}

.hero-logo-line {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
  margin-bottom: 10px; position: relative;
}

#hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 700; line-height: 1.08;
  color: var(--tan-bg); max-width: 820px; margin-bottom: 6px;
  position: relative;
}
#hero h1 em { font-style: normal; }

.hero-tagline-big {
  font-family: var(--sans); font-size: clamp(0.9rem, 1.6vw, 1.15rem);
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 12px;
  position: relative;
}

.hero-rule {
  width: 80px; height: 2px; background: var(--tan); margin: 18px auto 28px;
  position: relative;
}

.hero-sub {
  font-family: var(--sans); font-size: 1rem; color: rgba(255,255,255,0.62);
  max-width: 520px; line-height: 1.8; margin-bottom: 16px; position: relative;
}

.hero-subtitle-tag {
  display: inline-block;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  padding: 6px 18px; border-radius: 4px; margin-bottom: 36px;
  position: relative;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; position: relative; }

/* Key stats strip */
.hero-stats {
  position: relative;
  display: flex; gap: 0; margin-top: 56px;
  border: 1px solid rgba(160,138,110,0.28);
  border-radius: 12px; overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.stat {
  flex: 1; padding: 20px 24px; text-align: center;
  border-right: 1px solid rgba(160,138,110,0.2);
}
.stat:last-child { border-right: none; }
.stat-val {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  color: var(--tan-bg); line-height: 1;
}
.stat-lbl {
  font-family: var(--sans); font-size: 0.68rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 5px;
}

.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.25); font-family: var(--sans);
  font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bob 2.8s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 7px; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.4px; text-decoration: none; transition: all 0.22s;
}
.btn-tan { background: var(--tan); color: var(--navy-dk); box-shadow: 0 4px 18px rgba(160,138,110,0.4); }
.btn-tan:hover { background: var(--tan-lt); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.22); color: white; }
.btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-lt); transform: translateY(-1px); }
.btn-outline-navy { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: white; }
.btn-outline-white { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: white; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 9px 18px; font-size: 0.78rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── WHEN SECTION ───────────────────────────────────────── */
#when {
  background: var(--navy);
  padding: 80px 48px;
}
.when-inner { max-width: 1160px; margin: 0 auto; }
.when-inner .eyebrow { color: var(--tan-bg); }

.when-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start; margin-bottom: 48px;
}
.when-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem); color: white; line-height: 1.2;
}
.when-header p {
  font-family: var(--sans); color: rgba(255,255,255,0.6);
  font-size: 0.9rem; line-height: 1.8; padding-top: 8px;
}

.when-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.when-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(160,138,110,0.22);
  border-radius: 12px; padding: 22px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: background 0.2s;
}
.when-card:hover { background: rgba(255,255,255,0.09); }
.when-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--tan); color: var(--navy-dk);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.when-card p {
  font-family: var(--sans); font-size: 0.84rem; color: rgba(255,255,255,0.75); line-height: 1.55;
}

/* ── WHAT WE PROVIDE ────────────────────────────────────── */
#provide {
  background: var(--cream); padding: 80px 48px;
}
.provide-inner { max-width: 1160px; margin: 0 auto; }

.provide-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-top: 48px; align-items: start;
}

.provide-block h3 {
  font-size: 1.5rem; color: var(--navy); margin-bottom: 8px;
}
.provide-block .sub-p {
  font-family: var(--sans); color: var(--muted); font-size: 0.88rem;
  line-height: 1.7; margin-bottom: 28px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* Checklist */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.checklist li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 0.87rem; color: var(--charcoal);
}
.chk {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; flex-shrink: 0;
}

/* Care card */
.care-callout {
  background: var(--navy);
  border-radius: 16px; padding: 36px;
  color: white; margin-bottom: 20px;
}
.care-callout h3 { font-size: 1.35rem; color: var(--tan-bg); margin-bottom: 14px; }
.care-callout p {
  font-family: var(--sans); font-size: 0.86rem;
  color: rgba(255,255,255,0.7); line-height: 1.75;
}
.care-callout .highlight {
  background: rgba(160,138,110,0.18); border: 1px solid rgba(160,138,110,0.35);
  border-radius: 8px; padding: 14px 18px; margin-top: 18px;
  font-family: var(--sans); font-size: 0.82rem; color: rgba(255,255,255,0.65);
}

/* Medicare note */
.medicare-box {
  background: var(--warm); border: 1px solid var(--border);
  border-left: 4px solid var(--tan); border-radius: 0 10px 10px 0;
  padding: 18px 20px;
  font-family: var(--sans); font-size: 0.84rem; color: var(--charcoal); line-height: 1.65;
}
.medicare-box strong { color: var(--navy); }

/* ── PRICING ────────────────────────────────────────────── */
#pricing {
  background: var(--tan-bg); padding: 72px 48px;
}
.pricing-inner {
  max-width: 900px; margin: 0 auto; text-align: center;
}
#pricing .eyebrow { color: var(--navy); }
#pricing h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--navy-dk); margin-bottom: 10px; }
.pricing-sub {
  font-family: var(--sans); font-size: 0.9rem; color: var(--navy-lt);
  margin-bottom: 40px; line-height: 1.7;
}

.price-card {
  background: var(--navy-dk); border-radius: 18px; padding: 48px 44px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  display: inline-block; width: 100%; max-width: 520px; text-align: center;
}
.price-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background: linear-gradient(90deg, var(--tan), var(--tan-lt), var(--tan));
}
.price-label {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--tan-bg); margin-bottom: 8px;
}
.price-amount {
  font-family: var(--serif); font-size: 3.8rem; font-weight: 700;
  color: white; line-height: 1;
}
.price-amount sup { font-size: 1.8rem; vertical-align: super; }
.price-amount sub { font-size: 1rem; color: rgba(255,255,255,0.5); vertical-align: baseline; font-family: var(--sans); }
.price-note {
  font-family: var(--sans); font-size: 0.78rem; color: rgba(255,255,255,0.45);
  margin-top: 8px; margin-bottom: 28px;
}
.price-includes {
  display: flex; flex-direction: column; gap: 10px;
  text-align: left; margin-bottom: 28px;
}
.price-inc-row {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 0.83rem; color: rgba(255,255,255,0.7);
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.price-inc-row:last-child { border-bottom: none; padding-bottom: 0; }
.pi-dot { color: var(--tan); flex-shrink: 0; }

/* ── LOCATIONS ──────────────────────────────────────────── */
#locations {
  background: var(--white); padding: 80px 48px;
}
.loc-inner { max-width: 1160px; margin: 0 auto; }

.loc-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  margin-top: 48px;
}
.loc-card {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all 0.3s;
  position: relative; cursor: pointer;
}
.loc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.loc-card-overlay {
  position: absolute; inset: 0; z-index: 1;
}
.loc-card-btn { position: relative; z-index: 2; }

.loc-head {
  background: var(--navy); padding: 28px 24px;
  position: relative;
}
.loc-head::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--tan), var(--tan-lt));
}
.loc-head .city {
  font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 2px;
}
.loc-head .region {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.coming-soon {
  display: inline-block; background: var(--tan); color: var(--navy-dk);
  font-family: var(--sans); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; margin-top: 6px;
}
.loc-body { padding: 22px 24px; background: var(--cream); }
.loc-body p {
  font-family: var(--sans); font-size: 0.83rem; color: var(--muted);
  line-height: 1.6; margin-bottom: 16px;
}

/* ── WHO WE SERVE TABS ──────────────────────────────────── */
#serve {
  background: var(--warm); padding: 80px 48px;
}
.serve-inner { max-width: 1160px; margin: 0 auto; }

.tab-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
  background: var(--white); border-radius: 12px 12px 0 0;
  border: 1px solid var(--border); border-bottom: none;
  margin-top: 40px;
  position: relative; z-index: 1;
}
.stab {
  padding: 18px 16px; cursor: pointer; border: none; background: var(--warm);
  font-family: var(--serif); font-size: 0.95rem; font-weight: 700; color: var(--muted);
  border-bottom: 3px solid transparent; border-right: 1px solid var(--border);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center; position: relative; z-index: 2;
  pointer-events: all; -webkit-appearance: none; appearance: none;
  display: block; width: 100%;
}
.stab:last-child { border-right: none; }
.stab:hover { background: rgba(255,255,255,0.7); color: var(--navy); }
.stab.active { background: var(--white); color: var(--navy); border-bottom-color: var(--tan); }

.tab-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 0 0 14px 14px; box-shadow: var(--shadow-md);
}
.tpanel { display: none; }
.tpanel.active { display: block; }
.tpanel-inner { display: grid; grid-template-columns: 1fr 360px; }

.tpanel-left { padding: 40px; border-right: 1px solid var(--border); }
.tpanel-left h2 { font-size: 1.5rem; color: var(--navy); margin-bottom: 8px; }
.tpanel-left .tdesc {
  font-family: var(--sans); font-size: 0.87rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border);
}

.feat-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.feat-item { display: flex; align-items: flex-start; gap: 10px; font-family: var(--sans); font-size: 0.83rem; line-height: 1.5; }
.fd { width: 20px; height: 20px; border-radius: 50%; background: var(--navy); color: var(--tan-bg); display: flex; align-items: center; justify-content: center; font-size: 0.58rem; flex-shrink: 0; margin-top:1px; }

.steps { display: flex; flex-direction: column; gap: 10px; }
.step { display: flex; align-items: center; gap: 12px; background: var(--cream); border: 1px solid var(--border); border-radius: 8px; padding: 11px 14px; font-family: var(--sans); font-size: 0.82rem; }
.sn { width: 26px; height: 26px; border-radius: 50%; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; flex-shrink: 0; }

.tpanel-right { padding: 36px 28px; background: var(--cream); }
.act-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.act-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.act-card p { font-family: var(--sans); font-size: 0.78rem; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.act-card .btn + .btn { margin-top: 8px; }

.cr { display: flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 0.81rem; padding: 8px 0; border-bottom: 1px solid var(--border); }
.cr:last-child { border-bottom: none; }
.cr a { color: var(--navy); text-decoration: none; font-weight: 600; }
.cr a:hover { text-decoration: underline; color: var(--tan); }

.login-note { display: flex; align-items: center; gap: 8px; background: rgba(160,138,110,0.12); border: 1px solid rgba(160,138,110,0.35); border-radius: 6px; padding: 9px 12px; margin-bottom: 12px; font-family: var(--sans); font-size: 0.75rem; color: #6a5020; }
.badge { display: inline-block; background: rgba(26,37,82,0.1); color: var(--navy-lt); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.5px; padding: 2px 7px; border-radius: 3px; font-family: var(--sans); text-transform: uppercase; vertical-align: middle; margin-left: 5px; }

/* ── CONTACT ────────────────────────────────────────────── */
#contact {
  background: var(--navy-dk); padding: 80px 48px;
}
.contact-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
#contact .eyebrow { color: var(--tan-bg); }
#contact h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: white; margin-bottom: 14px; }
#contact .sub-p { font-family: var(--sans); color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; margin-bottom: 48px; }

.contact-grid { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }

.ccard {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(160,138,110,0.22);
  border-radius: 14px; padding: 32px;
}
.ccard h3 { font-size: 1.1rem; color: var(--tan-bg); margin-bottom: 20px; }

.cinfo-row {
  display: flex; align-items: center; gap: 14px; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cinfo-row:last-of-type { border-bottom: none; }
.cinfo-row div { text-align: left; }
.ci-ico {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(160,138,110,0.18); border: 1px solid rgba(160,138,110,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-lbl { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.38); display: block; }
.ci-val { font-family: var(--sans); font-size: 0.9rem; font-weight: 600; color: white; }
.ci-val a { color: var(--tan-bg); text-decoration: none; }
.ci-val a:hover { text-decoration: underline; }

/* Form */
.fg { margin-bottom: 14px; }
.flbl { display: block; font-family: var(--sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 5px; }
.finput {
  width: 100%; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px; background: rgba(255,255,255,0.07);
  color: white; font-family: var(--sans); font-size: 0.87rem;
  transition: border 0.2s; resize: vertical;
}
.finput::placeholder { color: rgba(255,255,255,0.28); }
.finput:focus { outline: none; border-color: var(--tan); background: rgba(255,255,255,0.1); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #0d1325; color: rgba(255,255,255,0.4);
  padding: 36px 48px; font-family: var(--sans); font-size: 0.78rem;
}
.foot-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.foot-brand { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.7); }
.foot-brand em { color: var(--tan-bg); font-style: normal; }
footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
footer a:hover { color: var(--tan-lt); }

/* ── MODAL ──────────────────────────────────────────────── */
.modal-bg {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.modal-bg.open { display: flex; }
.modal {
  background: var(--white); border-radius: 16px; padding: 38px;
  max-width: 460px; width: 92%; box-shadow: var(--shadow-lg);
  position: relative; animation: mIn 0.24s ease;
}
@keyframes mIn { from{opacity:0;transform:scale(0.94) translateY(12px)} to{opacity:1;transform:none} }
.modal::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: linear-gradient(90deg, var(--tan), var(--tan-lt)); border-radius: 16px 16px 0 0; }
.mcls { position:absolute; top:16px; right:16px; background:var(--warm); border:none; cursor:pointer; width:30px; height:30px; border-radius:50%; font-size:0.9rem; color:var(--muted); display:flex; align-items:center; justify-content:center; transition:all 0.2s; }
.mcls:hover { background:var(--border); }
.modal h3 { font-size:1.2rem; color:var(--navy); margin-bottom:8px; }
.modal .msub { font-family:var(--sans); font-size:0.83rem; color:var(--muted); line-height:1.65; margin-bottom:18px; }
.modal-acts { display:flex; flex-direction:column; gap:10px; }

/* ── TOAST ──────────────────────────────────────────────── */
#toast {
  position:fixed; bottom:28px; right:28px; z-index:3000;
  background:var(--navy); color:white; padding:14px 22px; border-radius:10px;
  font-family:var(--sans); font-size:0.83rem; box-shadow:var(--shadow-lg);
  display:flex; align-items:center; gap:10px;
  transform:translateY(80px); opacity:0; transition:all 0.3s;
  pointer-events:none;
}
#toast.show { transform:none; opacity:1; }

/* ── NAV LOGO ───────────────────────────────────────────── */
.nav-logo {
  height: 38px; width: auto; display: block;
}
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }

/* ── HAMBURGER ──────────────────────────────────────────── */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  width: 38px; height: 38px; border-radius: 6px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.1); }
.nav-hamburger span {
  display: block; height: 2px; background: white; border-radius: 2px;
  transition: all 0.28s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: var(--navy-dk); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 20px 24px; flex-direction: column; gap: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  animation: drawerIn 0.22s ease;
}
.nav-drawer.open { display: flex; }
@keyframes drawerIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:none} }
.nav-drawer a, .nav-drawer .cta {
  display: block; font-family: var(--sans); font-size: 0.95rem; font-weight: 500;
  color: rgba(255,255,255,0.82); text-decoration: none;
  padding: 12px 16px; border-radius: 8px; transition: background 0.2s;
  border: none; cursor: pointer; text-align: left; width: 100%;
}
.nav-drawer a:hover { background: rgba(255,255,255,0.08); color: white; }
.nav-drawer .cta {
  background: var(--tan); color: var(--navy-dk) !important;
  font-weight: 700; margin-top: 10px; text-align: center;
}
.nav-drawer .cta:hover { background: var(--tan-lt); }
.nav-drawer a span { filter: hue-rotate(280deg) saturate(2) brightness(1.1); }
.nav-drawer-divider {
  height: 1px; background: rgba(255,255,255,0.08); margin: 8px 0;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:960px){
  .when-header,.provide-grid,.tpanel-inner { grid-template-columns:1fr; }
  .when-grid,.loc-grid { grid-template-columns:1fr; }
  .feat-2col { grid-template-columns:1fr; }
  .tpanel-right { border-top:1px solid var(--border); }
  .contact-grid { grid-template-columns:1fr; }
  .tab-row { grid-template-columns:1fr; border-radius:12px 12px 0 0; }
  .stab { border-right:none; border-bottom:1px solid var(--border); text-align:left; padding-left:20px; }
  #nav { padding:0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-brand .sub { display: none; }
  .nav-brand .name { font-size: 0.95rem; white-space: nowrap; }
  .nav-logo { height: 26px; }
  .nav-brand { gap: 8px; }
  #hero,#when,#provide,#pricing,#locations,#serve,#contact,#about,#reviews,footer { padding-left:20px; padding-right:20px; }
  .tpanel-left,.tpanel-right { padding:24px 18px; }
  .foot-inner { flex-direction:column; text-align:center; }
  .hero-stats { flex-direction:column; }
  .stat { border-right:none; border-bottom:1px solid rgba(160,138,110,0.2); }
  .stat:last-child { border-bottom:none; }
  /* About / Reviews responsive */
  #about > div > div[style*="grid-template-columns:repeat(3"] { grid-template-columns:1fr !important; }
  #about > div > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns:1fr !important; }
  #reviews > div > div[style*="grid-template-columns:repeat(3"] { grid-template-columns:1fr !important; }
  /* Home #serve 3-up "Who We Serve" cards */
  #serve .serve-inner > div[style*="grid-template-columns:repeat(3"] { grid-template-columns:1fr !important; }
  /* About Story 3-up cards (use literal 1fr 1fr 1fr, not repeat()) */
  #about div[style*="grid-template-columns:1fr 1fr 1fr"] { grid-template-columns:1fr !important; }
  /* Providers Shared Performance Expectations 4-up grid + Join CTA bar */
  div[style*="grid-template-columns:repeat(4"] { grid-template-columns:1fr 1fr !important; }
  /* Allow text inside SPE cards to wrap and not overflow */
  .spe-card { white-space:normal !important; word-break:break-word; min-width:0; }
  /* Join CTA: stack the text + button so the button doesn't push off screen */
  div[style*="background:var(--cream)"][style*="display:flex"][style*="justify-content:space-between"] {
    flex-direction:column !important; align-items:flex-start !important; gap:12px !important;
  }
}


/* ── REGISTRATION MODAL ─────────────────────────────────── */
#m-registration { align-items: flex-start; padding: 20px; overflow-y: auto; }
#m-registration .modal { max-width: 780px; width: 100%; max-height: 92vh; overflow-y: auto; padding: 0; border-radius: 14px; }
.reg-header { background: #1a2552; padding: 22px 28px; display: flex; align-items: flex-start; justify-content: space-between; border-radius: 14px 14px 0 0; }
.reg-header h3 { font-family: "Palatino Linotype",Georgia,serif; color: white; font-size: 1.15rem; margin: 0; }
.reg-header p { font-family: Optima,sans-serif; color: rgba(255,255,255,0.5); font-size: 0.72rem; margin-top: 3px; }
.reg-body { padding: 0 28px 28px; }
.reg-sec { border-bottom: 1px solid #ddd5c8; padding: 20px 0; }
.reg-sec:last-child { border-bottom: none; }
.reg-sec-title { font-family: Optima,sans-serif; font-size: 0.62rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700; color: #1a2552; margin-bottom: 14px; padding: 7px 12px; background: #f2ebe0; border-left: 3px solid #a08a6e; border-radius: 0 4px 4px 0; }
.reg-note { font-family: Optima,sans-serif; font-size: 0.75rem; color: #6a6a6a; line-height: 1.6; margin-bottom: 12px; background: #fdf8f2; border: 1px solid #ddd5c8; border-radius: 6px; padding: 10px 14px; }
.reg-warn { font-family: Optima,sans-serif; font-size: 0.75rem; color: #6a5000; line-height: 1.6; margin-bottom: 10px; background: #fff8e8; border: 1px solid #e8c84a; border-radius: 6px; padding: 10px 14px; }
.rg2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.rg3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.rf { display: flex; flex-direction: column; gap: 3px; margin-bottom: 10px; }
.rf label { font-family: Optima,sans-serif; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: #6a6a6a; }
.rf input, .rf select, .rf textarea { padding: 8px 10px; border: 1px solid #ddd5c8; border-radius: 6px; font-family: Optima,sans-serif; font-size: 0.83rem; background: #fdf8f2; color: #2a2a2a; width: 100%; }
.rf input:focus, .rf select:focus, .rf textarea:focus { outline: none; border-color: #1a2552; background: white; }
.rchk { display: flex; align-items: flex-start; gap: 9px; font-family: Optima,sans-serif; font-size: 0.79rem; color: #2a2a2a; line-height: 1.5; margin-bottom: 7px; cursor: pointer; }
.rchk input { margin-top: 3px; accent-color: #1a2552; flex-shrink: 0; width: 14px; height: 14px; }
.rrad { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.rrad label { display: flex; align-items: flex-start; gap: 9px; font-family: Optima,sans-serif; font-size: 0.79rem; color: #2a2a2a; line-height: 1.45; cursor: pointer; }
.rrad input { margin-top: 3px; accent-color: #1a2552; flex-shrink: 0; }
.reg-submit { background: #1a2552; color: white; border: none; border-radius: 8px; padding: 14px 28px; font-family: Optima,sans-serif; font-size: 0.9rem; font-weight: 700; cursor: pointer; width: 100%; margin-top: 6px; }
.reg-submit:hover { background: #243070; }

/* ── Sticky Mobile Call Bar ─────────────────────────────── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1500;
  background: var(--navy-dk);
  border-top: 2px solid var(--tan);
  padding: 0;
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  color: white;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.mobile-call-bar .mcb-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.mobile-call-bar .mcb-sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tan-bg);
  display: block;
  line-height: 1;
  margin-top: 1px;
}
.mobile-call-bar .mcb-label { display: flex; flex-direction: column; }
@media(max-width: 800px) {
  .mobile-call-bar { display: block; }
  /* push footer content above the bar */
  body { padding-bottom: 58px; }
}