/* Heritage Comfort Living Homes — landing page
   Tokens and spec from design_handoff_heritage_landing/README.md (Option B, "Navy Immersive") */

:root {
  --navy: #0E2A47;
  --navy-deep: #133559;
  --cream: #F7F1E8;
  --white: #FFFFFF;
  --mint: #3FB79F;
  --mint-light: #8FD9C9;
  --blush: #EE9BAE;
  --blush-deep: #B9718A;
  --slate: #41586E;
  --slate-mid: #6E7F8E;
  --slate-light: #9FB0BD;
  --error: #B3261E;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: 'Mulish', sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: 'Nunito', sans-serif;
  margin: 0;
}

p { margin: 0; }

a { color: inherit; }

.tel-link { text-decoration: none; }

button, input, textarea {
  font-family: inherit;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 150ms ease;
}
.btn:hover { filter: brightness(.94); }

.btn-cream-on-navy { background: var(--cream); color: var(--navy); }
.btn-navy-on-cream { background: var(--navy); color: var(--cream); }
.btn-mint { background: var(--mint); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}
.mint-bg :focus-visible {
  outline-color: var(--navy);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.masthead {
  background: var(--cream);
  padding: 14px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.masthead-label {
  flex: 1;
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy-deep);
}

.masthead-logo-link {
  flex: none;
  display: flex;
  align-items: center;
}

.masthead-logo {
  flex: none;
  height: 72px;
  width: auto;
}

.page-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.masthead-phone {
  flex: 1;
  text-align: right;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.4;
  color: var(--navy);
  text-decoration: none;
}

.nav-row {
  background: var(--navy);
  padding: 16px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border-bottom: 1px solid rgba(247,241,232,.14);
  flex-wrap: wrap;
}

.nav-link {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(247,241,232,.85);
  text-decoration: none;
  transition: color 150ms ease;
}
.nav-link:hover { color: var(--cream); }

.nav-cta {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  background: var(--mint);
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-toggle { display: none; }

/* ---------- Section base ---------- */

section {
  padding: 80px 56px;
  scroll-margin-top: 130px;
}
.bg-cream { background: var(--cream); color: var(--navy); }
.bg-navy { background: var(--navy); color: var(--cream); }

/* ---------- Hero ---------- */

.hero {
  background: var(--navy);
  padding: 64px 56px 72px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 130px;
}

.glow { position: absolute; border-radius: 50%; pointer-events: none; }
.glow-mint {
  right: -120px; top: -80px; width: 520px; height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(63,183,159,.26), rgba(63,183,159,0) 70%);
}
.glow-blush {
  left: -90px; bottom: -160px; width: 420px; height: 420px;
  background: radial-gradient(circle at 60% 40%, rgba(238,155,174,.22), rgba(238,155,174,0) 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow-pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(247,241,232,.28);
  border-radius: 999px;
  padding: 9px 16px;
  margin-bottom: 24px;
}
.eyebrow-pill img { height: 14px; }
.eyebrow-pill span {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blush);
}

.hero-left { display: flex; flex-direction: column; }

.hero h1 {
  font-weight: 900;
  font-size: 68px;
  line-height: 1.02;
  letter-spacing: -.03em;
  text-wrap: balance;
  margin-bottom: 20px;
}
.hero h1 .line-mint { color: var(--mint); }

.hero-subhead {
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 21px;
  line-height: 1.5;
  color: rgba(247,241,232,.9);
  max-width: 520px;
  margin-bottom: 16px;
}

.hero-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(247,241,232,.7);
  max-width: 520px;
  margin-bottom: 30px;
  text-wrap: pretty;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-cta-row .btn { padding: 19px 30px; font-size: 16px; min-height: 44px; }
.hero-location {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(247,241,232,.6);
}

.hero-image-slot {
  height: 460px;
  border-radius: 220px 220px 24px 24px;
  position: relative;
}
.hero-image-slot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(14,42,71,.28), rgba(14,42,71,0) 48%);
  pointer-events: none;
}

/* ---------- Placeholder image slots ---------- */

.img-slot {
  background: rgba(247,241,232,.06);
  border: 1px dashed rgba(247,241,232,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  color: rgba(247,241,232,.55);
}
.bg-cream .img-slot {
  background: rgba(14,42,71,.05);
  border-color: rgba(14,42,71,.2);
  color: var(--slate-mid);
}

.photo-fill { overflow: hidden; }
.photo-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.whole-image-slot img { height: auto; object-fit: cover; }

/* ---------- Video play overlay (hero) ---------- */

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(14,42,71,.55);
  border: 2px solid rgba(247,241,232,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
}
.video-play-overlay:hover { background: rgba(14,42,71,.75); transform: translate(-50%, -50%) scale(1.06); }
.video-play-overlay .play-icon-lg {
  color: var(--cream);
  font-size: 24px;
  margin-left: 4px;
}

/* ---------- Media lightbox (video + gallery images) ---------- */

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.media-lightbox[hidden] { display: none; }
.media-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14,42,71,.9);
}
.media-lightbox-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.media-lightbox-content.is-video { max-width: 480px; }
.media-lightbox-content.is-image { max-width: 920px; }
.media-lightbox-content video {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 85vh;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  background: #000;
}
.media-lightbox-content img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 16px;
  display: block;
  background: #000;
}
.media-lightbox-content img[hidden],
.media-lightbox-content video[hidden] { display: none; }
.media-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(247,241,232,.15);
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.media-lightbox-close:hover { background: rgba(247,241,232,.28); }

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(14,42,71,.05);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14,42,71,.6);
  border: 2px solid rgba(247,241,232,.85);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  pointer-events: none;
}
.gallery-intro { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.gallery-intro h1 { font-weight: 900; font-size: 42px; line-height: 1.1; letter-spacing: -.025em; margin-bottom: 14px; }
.gallery-intro p { font-weight: 400; font-size: 16.5px; line-height: 1.7; color: var(--slate); }

/* ---------- Section 2: Honor Compassion Purpose ---------- */

.hcp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.hcp-intro { grid-column: span 3; max-width: 640px; margin-bottom: 6px; }
.hcp-intro h2 { font-weight: 900; font-size: 44px; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 16px; }
.hcp-intro p { font-weight: 400; font-size: 17px; line-height: 1.7; color: var(--slate); }

.card-cream {
  background: var(--white);
  border-radius: 20px;
  padding: 34px 30px;
}
.card-dot { width: 34px; height: 34px; border-radius: 50%; margin-bottom: 18px; }
.card-cream h3 { font-weight: 800; font-size: 20px; line-height: 1.2; margin-bottom: 10px; }
.card-cream p { font-weight: 400; font-size: 15.5px; line-height: 1.7; color: var(--slate); }

/* ---------- Section 3: Care that sees the whole person ---------- */

.sees-whole-section { padding-top: 0; }
.white-panel {
  background: var(--white);
  border-radius: 28px;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.white-panel h1, .white-panel h2 { font-weight: 900; font-size: 40px; line-height: 1.12; letter-spacing: -.02em; margin-bottom: 16px; }
.white-panel > div > p.body-text { font-weight: 400; font-size: 16px; line-height: 1.75; color: var(--slate); margin-bottom: 26px; }
.whole-image-slot { border-radius: 20px; }

.stack-cards { display: flex; flex-direction: column; gap: 16px; }
.card-tinted {
  background: var(--cream);
  border-radius: 16px;
  padding: 22px 24px;
}
.card-tinted h3 { font-weight: 800; font-size: 17px; margin-bottom: 8px; }
.card-tinted p { font-weight: 400; font-size: 15px; line-height: 1.7; color: var(--slate); }

.cta-row-start { align-self: flex-start; margin-top: 8px; }
.btn-sm { padding: 17px 26px; font-size: 15px; min-height: 44px; }

/* ---------- Section 4: Still life to live ---------- */

.still-life { position: relative; overflow: hidden; }
.glow-blush-2 {
  left: 40%; top: -140px; width: 460px; height: 460px;
  background: radial-gradient(circle at 50% 50%, rgba(238,155,174,.18), rgba(238,155,174,0) 70%);
}
.still-life-header { position: relative; max-width: 660px; margin-bottom: 44px; }
.still-life-header h1, .still-life-header h2 { font-weight: 900; font-size: 46px; line-height: 1.06; letter-spacing: -.025em; margin-bottom: 14px; }
.still-life-header .lead { font-weight: 600; font-size: 18px; line-height: 1.6; color: rgba(247,241,232,.88); margin-bottom: 10px; }
.still-life-header .kicker { font-weight: 400; font-size: 15px; color: rgba(247,241,232,.6); }

.living-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.living-card {
  border-radius: 20px;
  padding: 30px 28px;
  background: rgba(247,241,232,.08);
}
.living-card.span2 { grid-column: span 2; }
.living-card.span3 { grid-column: span 3; }
.living-card.tint-mint { background: rgba(63,183,159,.14); }
.living-card h3 { font-weight: 800; font-size: 19px; line-height: 1.25; margin-bottom: 8px; }
.living-card.tint-mint h3 { color: var(--mint-light); }
.living-card.accent-blush h3 { color: var(--blush); }
.living-card.accent-mint h3 { color: var(--mint-light); }
.living-card p { font-weight: 400; font-size: 15px; line-height: 1.7; color: rgba(247,241,232,.82); }

.trailing-cta { position: relative; margin-top: 30px; }

/* ---------- Section 5: Comfort Familiarity Home ---------- */

.comfort-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}
.comfort-header h1, .comfort-header h2 { font-weight: 900; font-size: 44px; line-height: 1.08; letter-spacing: -.025em; margin-bottom: 12px; }
.comfort-header .body-text { font-weight: 400; font-size: 16px; line-height: 1.75; color: var(--slate); }
.comfort-header-right { text-align: right; }
.comfort-header-right .note { font-weight: 400; font-size: 13.5px; line-height: 1.5; color: var(--slate-mid); margin-bottom: 14px; }

.feature-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 26px;
}
.feature-card h3 { font-weight: 800; font-size: 18px; line-height: 1.25; margin-bottom: 8px; }
.feature-card p { font-weight: 400; font-size: 14.5px; line-height: 1.7; color: var(--slate); }

/* ---------- Trusted Care Partner ---------- */

.partner-intro { max-width: 720px; margin-bottom: 28px; }
.partner-intro h2 { font-weight: 900; font-size: 36px; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 14px; color: var(--navy); }
.partner-intro .body-text { font-weight: 400; font-size: 16px; line-height: 1.75; color: var(--slate); }
.partner-subtitle { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 22px; color: var(--navy); margin-bottom: 20px; }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.comfort-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.comfort-image-wide { height: 300px; border-radius: 20px; }
.comfort-image-narrow { height: 300px; border-radius: 20px 20px 150px 150px; }

/* ---------- Section 6: Personalized care + confidence ---------- */

.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.pc-grid h2 { letter-spacing: -.02em; }
.pc-left h2 { font-weight: 900; font-size: 38px; line-height: 1.12; margin-bottom: 14px; }
.pc-left > p.body-text { font-weight: 400; font-size: 16px; line-height: 1.7; color: rgba(247,241,232,.7); margin-bottom: 26px; }

.pc-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.pc-list-item { padding-bottom: 14px; border-bottom: 1px solid rgba(247,241,232,.18); }
.pc-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.pc-list-item h3 { font-weight: 800; font-size: 17px; line-height: 1.25; color: var(--mint-light); margin-bottom: 6px; }
.pc-list-item p { font-weight: 400; font-size: 15px; line-height: 1.7; color: rgba(247,241,232,.78); }

.confidence-panel {
  background: rgba(247,241,232,.07);
  border-radius: 24px;
  padding: 40px 36px;
}
.confidence-panel h2 { font-weight: 900; font-size: 34px; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 14px; }
.confidence-panel > p.body-text { font-weight: 400; font-size: 15.5px; line-height: 1.7; color: rgba(247,241,232,.75); margin-bottom: 28px; }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.stat-cell { background: var(--navy); border-radius: 16px; padding: 24px 22px; }
.stat-cell .stat-number { font-family: 'Nunito', sans-serif; font-weight: 900; margin-bottom: 10px; }
.stat-cell h3 { font-weight: 800; font-size: 16px; line-height: 1.25; color: var(--cream); margin-bottom: 6px; }
.stat-cell p { font-weight: 400; font-size: 14px; line-height: 1.65; color: rgba(247,241,232,.72); }

.confidence-close { font-weight: 600; font-size: 16px; line-height: 1.7; color: var(--mint-light); }

/* ---------- Section 7: Start a conversation + process ---------- */

.conv-intro { max-width: 700px; margin: 0 auto 40px; text-align: center; }
.conv-intro h2 { font-weight: 900; font-size: 42px; line-height: 1.1; letter-spacing: -.025em; margin-bottom: 14px; }
.conv-intro p { font-weight: 400; font-size: 16.5px; line-height: 1.7; color: var(--slate); }

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 64px;
}
.audience-card { border-radius: 24px; padding: 34px 32px; }
.audience-card .eyebrow { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px; }
.audience-card.families { background: var(--navy); color: var(--cream); }
.audience-card.families .eyebrow { color: var(--mint-light); }
.audience-card.families p { color: rgba(247,241,232,.82); }
.audience-card.pros { background: var(--white); color: var(--navy); }
.audience-card.pros .eyebrow { color: var(--blush-deep); }
.audience-card.pros p { color: var(--slate); }
.audience-card p { font-weight: 400; font-size: 16px; line-height: 1.7; margin-bottom: 22px; }

.process-title { font-weight: 900; font-size: 34px; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 32px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-card { background: var(--white); border-radius: 20px; padding: 28px 26px; }
.process-badge {
  width: 38px; height: 38px; border-radius: 50%;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 18px;
  line-height: 38px; text-align: center; color: var(--navy); margin-bottom: 16px;
}
.process-card h3 { font-weight: 800; font-size: 18px; line-height: 1.25; margin-bottom: 8px; }
.process-card p { font-weight: 400; font-size: 14.5px; line-height: 1.7; color: var(--slate); }

/* ---------- Section 8: Connection is a part of care ---------- */

.connection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.connection-left h2 { font-weight: 900; font-size: 36px; line-height: 1.14; letter-spacing: -.02em; margin-bottom: 16px; }
.connection-left p { font-weight: 400; font-size: 16px; line-height: 1.75; color: rgba(247,241,232,.78); margin-bottom: 16px; }
.connection-left img.heart { height: 34px; margin-top: 8px; }

.connection-cards { display: flex; flex-direction: column; gap: 16px; }
.connection-card { background: rgba(247,241,232,.08); border-radius: 16px; padding: 24px 26px; }
.connection-card h3 { font-weight: 800; font-size: 17px; line-height: 1.25; color: var(--mint-light); margin-bottom: 8px; }
.connection-card p { font-weight: 400; font-size: 15px; line-height: 1.7; color: rgba(247,241,232,.78); }

/* ---------- Section 9: Options + FAQ ---------- */

.options-faq-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.options-left h1, .options-left h2 { font-weight: 900; font-size: 34px; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 14px; }
.options-left > p.body-text { font-weight: 400; font-size: 16px; line-height: 1.75; color: var(--slate); margin-bottom: 22px; }
.options-eyebrow { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--blush-deep); margin-bottom: 12px; }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.chip {
  background: var(--white); border-radius: 999px; padding: 13px 20px;
  font-weight: 600; font-size: 14.5px; color: var(--navy);
}

.options-note { font-weight: 400; font-size: 15.5px; line-height: 1.75; color: var(--slate); margin-bottom: 22px; }

.faq-title { font-weight: 900; font-size: 34px; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 22px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.35;
  color: var(--navy);
}
.faq-item[open] summary { font-weight: 800; }
.faq-item:not([open]) summary { font-weight: 600; font-size: 15.5px; line-height: 1.4; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex: none;
  color: var(--slate-light);
  font-size: 20px;
  line-height: 1;
}
.faq-item[open] summary::after { content: '\2212'; color: var(--mint); }
.faq-answer {
  padding: 0 24px 22px;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--slate);
}

/* ---------- Section 10: Why Heritage Exists ---------- */

.why-exists { position: relative; overflow: hidden; text-align: center; }
.glow-mint-2 {
  left: 50%; top: -100px; transform: translateX(-50%); width: 600px; height: 600px;
  background: radial-gradient(circle at 50% 40%, rgba(63,183,159,.16), rgba(63,183,159,0) 70%);
}
.why-exists-inner { position: relative; max-width: 780px; margin: 0 auto; }
.why-exists img.heart { height: 36px; margin: 0 auto 22px; }
.why-exists h2 { font-weight: 900; font-size: 42px; line-height: 1.1; letter-spacing: -.025em; margin-bottom: 26px; }
.why-exists .lead { font-weight: 600; font-size: 19px; line-height: 1.7; color: var(--cream); margin-bottom: 18px; }
.why-exists p.body-text { font-weight: 400; font-size: 16px; line-height: 1.8; color: rgba(247,241,232,.72); margin-bottom: 16px; text-align: left; }
.why-exists .pull-line { font-weight: 800; font-size: 22px; line-height: 1.5; color: var(--blush); margin-bottom: 16px; }
.why-exists .kicker { font-weight: 400; font-size: 13.5px; color: rgba(247,241,232,.55); margin-bottom: 6px; }
.why-exists .foundation { font-weight: 900; font-size: 34px; line-height: 1.25; color: var(--mint-light); margin-bottom: 22px; }
.why-exists .closing { font-weight: 400; font-size: 16px; line-height: 1.75; color: rgba(247,241,232,.72); margin-bottom: 30px; }

/* ---------- Section 11: Final CTA + form ---------- */

.final-cta {
  background: var(--mint);
  color: var(--navy);
  padding: 76px 56px;
}
.final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.final-left h2 { font-weight: 900; font-size: 46px; line-height: 1.06; letter-spacing: -.03em; margin-bottom: 18px; }
.final-left .lead { font-weight: 600; font-size: 17px; line-height: 1.7; margin-bottom: 14px; }
.final-left .body-text { font-weight: 400; font-size: 16.5px; line-height: 1.75; color: rgba(14,42,71,.8); margin-bottom: 28px; }
.final-phone {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 3px solid rgba(14,42,71,.35);
  padding-bottom: 6px;
}
.final-email {
  display: block;
  margin-top: 14px;
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: rgba(14,42,71,.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 34px 32px;
}
.form-card h3 { font-weight: 800; font-size: 19px; line-height: 1.25; margin-bottom: 20px; color: var(--navy); }

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 7px;
}
.field input, .field textarea {
  width: 100%;
  height: 46px;
  background: var(--white);
  border: 1px solid rgba(14,42,71,.15);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 15px;
  color: var(--navy);
}
.field input:focus, .field textarea:focus {
  border-color: var(--mint);
}
.field textarea { height: 96px; padding: 12px 14px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-error {
  color: var(--error);
  font-size: 12.5px;
  margin-top: 6px;
  display: none;
}
.field.has-error input, .field.has-error textarea { border-color: var(--error); }
.field.has-error .field-error { display: block; }

.role-toggle { display: flex; gap: 10px; }
.role-btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--slate);
  background: var(--white);
  border: 1px solid rgba(14,42,71,.12);
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
}
.role-btn[aria-pressed="true"] {
  font-weight: 700;
  color: var(--cream);
  background: var(--navy);
  border-color: var(--navy);
}

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-submit {
  width: 100%;
  padding: 18px 0;
  font-size: 15px;
  min-height: 44px;
}
.form-submit[disabled] { opacity: .7; cursor: not-allowed; }

.form-status {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
}
.form-status.error { color: var(--error); }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--slate); font-size: 14.5px; line-height: 1.6; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  padding: 36px 56px;
  border-top: 1px solid rgba(247,241,232,.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-name { font-weight: 800; font-size: 16px; line-height: 1.3; color: var(--cream); }
.footer-location { font-weight: 400; font-size: 13px; line-height: 1.5; color: rgba(247,241,232,.65); text-align: center; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.footer-phone { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 14px; color: var(--mint); text-decoration: none; }
.footer-email { font-family: 'Mulish', sans-serif; font-weight: 400; font-size: 12.5px; color: rgba(247,241,232,.55); text-decoration: none; }
.footer-email:hover { color: rgba(247,241,232,.8); }

.footer-secondary {
  background: var(--navy);
  border-top: 1px solid rgba(247,241,232,.1);
  padding: 4px 56px 22px;
  text-align: center;
}
.footer-cookie-link {
  font-family: 'Mulish', sans-serif;
  font-size: 12.5px;
  color: rgba(247,241,232,.5);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px;
}
.footer-cookie-link:hover { color: var(--cream); }

/* ---------- Cookie consent ---------- */

.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.consent-modal[hidden] { display: none; }
.consent-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14,42,71,.55);
}
.consent-modal-content {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border-radius: 20px;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 28px 24px;
}
.consent-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.consent-modal-header h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 21px;
  color: var(--navy);
}
.consent-modal-close {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(14,42,71,.08);
  color: var(--navy);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.consent-modal-close:hover { background: rgba(14,42,71,.16); }
.consent-modal-text {
  font-family: 'Mulish', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 20px;
}
.consent-prefs { margin-bottom: 20px; display: flex; flex-direction: column; gap: 12px; }
.consent-prefs[hidden] { display: none; }
.consent-pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
}
.consent-pref-row h3 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 14.5px; color: var(--navy); margin-bottom: 4px; }
.consent-pref-row p { font-family: 'Mulish', sans-serif; font-size: 13px; line-height: 1.5; color: var(--slate-mid); }
.consent-toggle-locked {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--slate-light);
  flex: none;
  white-space: nowrap;
}
.consent-toggle { position: relative; flex: none; width: 42px; height: 24px; display: inline-block; }
.consent-toggle input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.consent-toggle-track {
  position: absolute;
  inset: 0;
  background: rgba(14,42,71,.18);
  border-radius: 999px;
  transition: background 150ms ease;
  pointer-events: none;
}
.consent-toggle-track::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 150ms ease;
}
.consent-toggle input:checked + .consent-toggle-track { background: var(--mint); }
.consent-toggle input:checked + .consent-toggle-track::before { transform: translateX(18px); }
.consent-toggle input:focus-visible + .consent-toggle-track { outline: 2px solid var(--mint); outline-offset: 2px; }

.consent-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; }
.consent-actions[hidden] { display: none; }
.consent-actions + .consent-actions { margin-top: 14px; }
.consent-btn-outline {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid rgba(14,42,71,.25);
  border-radius: 999px;
  padding: 11px 22px;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease;
}
.consent-btn-outline:hover { border-color: var(--navy); background: rgba(14,42,71,.05); }
.consent-btn-link {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--slate-mid);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 8px 2px;
}
.consent-btn-link:hover { color: var(--navy); }
.consent-actions .btn { padding: 13px 24px; font-size: 14px; }

/* ---------- Motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Tablet ---------- */

@media (max-width: 1279px) {
  .masthead, .nav-row, section { padding-left: 40px; padding-right: 40px; }
  .hero { padding-left: 40px; padding-right: 40px; }
  .hero h1 { font-size: 52px; }
  .hero-grid, .white-panel, .comfort-header, .pc-grid, .connection-grid,
  .options-faq-grid, .final-grid { grid-template-columns: 1fr; }
  .hcp-grid, .feature-grid-4, .process-grid, .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .hcp-intro { grid-column: span 2; }
  .living-grid { grid-template-columns: repeat(2, 1fr); }
  .living-card.span2, .living-card.span3 { grid-column: span 1; }
  .audience-grid { grid-template-columns: 1fr; }
  .comfort-header-right { text-align: left; }
  .comfort-images { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Mobile ---------- */

@media (max-width: 767px) {
  .masthead { padding: 14px 20px; justify-content: center; }
  .masthead-logo { height: 52px; }
  .masthead-label, .masthead-phone { display: none; }
  .nav-row { padding: 12px 20px; gap: 18px; }
  .nav-link { font-size: 13px; }
  .nav-cta { display: none; }

  section, .hero, .final-cta { padding: 26px 20px 34px; }
  .sees-whole-section { padding-top: 0; }

  .hero h1 { font-size: 40px; letter-spacing: -.03em; }
  .hero-subhead { font-size: 18px; }
  .hero-image-slot { height: 250px; border-radius: 130px 130px 20px 20px; margin: 0 0 8px; }
  .hero-cta-row .btn { display: block; width: 100%; text-align: center; }

  .hcp-grid, .feature-grid-4, .process-grid, .living-grid, .partner-grid { grid-template-columns: 1fr; }
  .hcp-intro, .living-card.span2, .living-card.span3 { grid-column: span 1; }

  section h2, .hero-header h2 { font-size: 28px !important; }
  body { font-size: 14px; }

  .white-panel { padding: 28px 22px; }
  .comfort-images { grid-template-columns: 1fr; }

  .stat-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .video-play-overlay { width: 60px; height: 60px; }

  .final-left .btn, .form-submit { display: block; width: 100%; text-align: center; }

  .site-footer { flex-direction: column; text-align: center; }
  .footer-contact { align-items: center; }
  .footer-secondary { padding: 4px 20px 20px; }

  .consent-modal-content { padding: 24px 20px 20px; }
  .consent-actions { flex-direction: column; align-items: stretch; }
  .consent-actions .btn, .consent-actions .consent-btn-outline { width: 100%; text-align: center; }
  .consent-actions .consent-btn-link { align-self: center; }
}
