:root {
  --ink: #101724;
  --midnight: #07111e;
  --midnight-2: #0d1d2d;
  --charcoal: #132337;
  --muted: #5f6875;
  --teal: #078b82;
  --teal-dark: #075f5a;
  --blue: #1c4f8f;
  --mint: #e1f7f2;
  --aqua: #ecf8fb;
  --cream: #fff8ed;
  --gold: #d7a846;
  --gold-strong: #f2c96f;
  --gold-soft: rgba(215, 168, 70, 0.2);
  --champagne: #f7ead0;
  --white: #ffffff;
  --line: #d9e5e8;
  --shadow: 0 22px 60px rgba(16, 32, 51, 0.14);
  --premium-shadow: 0 28px 90px rgba(7, 17, 30, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8faf7 0%, #f3f8f7 42%, #fbfaf4 100%);
}
a { color: inherit; text-decoration: none; }

.top-bar {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 9px clamp(18px, 5vw, 70px);
  background:
    linear-gradient(90deg, var(--midnight), #101f31 56%, #1a2b3e);
  color: rgba(247,234,208,.92);
  font-size: .86rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(215,168,70,.22);
}
.top-bar a:hover { color: var(--gold-strong); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(7,17,30,.96), rgba(13,29,45,.92));
  border-bottom: 1px solid rgba(215,168,70,.28);
  box-shadow: 0 20px 45px rgba(7,17,30,.18);
  backdrop-filter: blur(16px);
}
.site-header::after {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 70px);
  right: clamp(18px, 5vw, 70px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242,201,111,.72), transparent);
  pointer-events: none;
}
.brand {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}
.brand::before {
  content: "";
  position: absolute;
  left: -7px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,201,111,.28), rgba(242,201,111,0) 68%);
  z-index: -1;
}
.brand-logo {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(242,201,111,.62);
  background: var(--midnight);
  box-shadow: 0 10px 28px rgba(0,0,0,.34), 0 0 0 5px rgba(215,168,70,.1);
}
.brand strong, .brand small { display: block; line-height: 1.15; }
.brand strong { color: var(--white); font-size: 1rem; }
.brand small { margin-top: 3px; color: rgba(247,234,208,.78); font-size: .76rem; }
.site-nav { display: flex; align-items: center; gap: 26px; color: rgba(255,255,255,.84); font-weight: 800; font-size: .95rem; }
.site-nav a:hover { color: var(--gold-strong); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid rgba(215,168,70,.34); border-radius: 10px; background: rgba(255,255,255,.08); padding: 10px; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--gold-strong); }

.hero {
  position: relative;
  min-height: calc(92vh - 38px);
  display: grid;
  align-items: center;
  padding: 96px clamp(20px, 6vw, 82px) 70px;
  overflow: hidden;
  background: var(--midnight);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 4% -12% 0 34%;
  z-index: 1;
  opacity: .8;
  background:
    radial-gradient(circle at 64% 30%, rgba(242,201,111,.3), transparent 28%),
    radial-gradient(circle at 72% 68%, rgba(7,139,130,.18), transparent 24%),
    linear-gradient(125deg, transparent 0 20%, rgba(242,201,111,.2) 20.35%, transparent 20.8% 45%, rgba(215,168,70,.18) 45.35%, transparent 46% 100%);
  filter: blur(.2px);
  animation: careFlow 14s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,17,30,.97) 0%, rgba(10,27,44,.88) 42%, rgba(7,17,30,.36) 76%),
    linear-gradient(180deg, rgba(7,17,30,.38), rgba(7,17,30,.72));
}
.hero-content { position: relative; z-index: 2; width: min(720px, 100%); }
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(242,201,111,.38);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(9,22,36,.88), rgba(16,37,54,.64));
  box-shadow: 0 18px 48px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(242,201,111,.62);
  box-shadow: 0 8px 22px rgba(0,0,0,.26);
}
.hero-brand span {
  color: var(--champagne);
  font-size: .9rem;
  font-weight: 900;
}
.eyebrow {
  margin: 0 0 12px;
  color: #9c792e;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 20px; font-size: clamp(2.45rem, 5.4vw, 5.7rem); line-height: .98; letter-spacing: 0; max-width: 11em; }
h2 { margin-bottom: 16px; font-size: clamp(2rem, 3.7vw, 3.35rem); line-height: 1.05; letter-spacing: 0; }
h3 { margin-bottom: 10px; font-size: 1.1rem; line-height: 1.22; }
.hero h1, .page-hero h1 {
  color: var(--white);
  text-shadow: 0 18px 46px rgba(0,0,0,.34);
}
.hero .eyebrow, .page-hero .eyebrow { color: var(--gold-strong); }
.hero-copy { max-width: 640px; color: rgba(247,234,208,.82); font-size: clamp(1.05rem, 2vw, 1.24rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-assurance span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(242,201,111,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 800;
}
.hero-medallion {
  --mx: 0px;
  --my: 0px;
  position: absolute;
  right: clamp(28px, 7vw, 110px);
  bottom: clamp(46px, 8vw, 110px);
  z-index: 2;
  display: grid;
  width: clamp(170px, 20vw, 270px);
  gap: 14px;
  justify-items: center;
  padding: 18px 18px 20px;
  border: 1px solid rgba(242,201,111,.44);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(7,17,30,.92), rgba(13,29,45,.78)),
    radial-gradient(circle at 50% 0%, rgba(242,201,111,.2), transparent 45%);
  box-shadow: var(--premium-shadow), inset 0 1px 0 rgba(255,255,255,.12);
  transform: translate(var(--mx), var(--my));
  transition: transform .18s ease-out;
}
.hero-medallion img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(215,168,70,.5);
  box-shadow: 0 16px 42px rgba(0,0,0,.28);
}
.hero-medallion strong {
  color: rgba(255,255,255,.92);
  font-size: .82rem;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}
.medallion-orbit {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(215,168,70,.28);
  border-radius: 20px;
  pointer-events: none;
  animation: medallionPulse 3.8s ease-in-out infinite;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 900;
  cursor: pointer;
}
.button-primary {
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: #101724;
  box-shadow: 0 14px 30px rgba(215,168,70,.28);
}
.button-primary:hover { background: linear-gradient(135deg, #ffe09b, #d7a846); }
.button-secondary { background: rgba(255,255,255,.88); border-color: rgba(215,168,70,.36); color: var(--ink); }
.hero .button-secondary {
  background: rgba(255,255,255,.08);
  border-color: rgba(242,201,111,.34);
  color: var(--champagne);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(215,168,70,.28);
  border-block: 1px solid rgba(215,168,70,.28);
}
.quick-info div {
  position: relative;
  padding: 25px clamp(18px, 3.5vw, 45px);
  background:
    linear-gradient(180deg, rgba(16,32,51,.98), rgba(7,17,30,.98));
}
.quick-info div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(242,201,111,.85), transparent);
}
.quick-info strong, .quick-info span { display: block; }
.quick-info strong { margin-bottom: 7px; color: var(--white); font-size: 1.05rem; }
.quick-info span { color: rgba(247,234,208,.74); line-height: 1.5; }

.section, .programs, .photo-section, .experience-section, .plans-section, .trust-section { padding: clamp(72px, 9vw, 118px) clamp(20px, 6vw, 82px); }
.section-heading { max-width: 820px; margin-bottom: 38px; }
.section-heading p:not(.eyebrow), .about-copy p, .contact-copy p, .steps p, .service-card p, .program-grid p, .photo-card p, .experience-copy p, .plan-card p { color: var(--muted); line-height: 1.7; }

.photo-section {
  background:
    linear-gradient(180deg, var(--white), #fbfaf4);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 18px;
}

.photo-card {
  overflow: hidden;
  border: 1px solid rgba(215,168,70,.2);
  border-radius: 8px;
  background: #f9fcfc;
  box-shadow: 0 8px 28px rgba(16,32,51,.05);
}

.photo-card img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.photo-card:first-child img {
  height: 360px;
}

.photo-card div {
  padding: 24px;
}

.photo-credit {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .86rem;
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr);
  gap: clamp(34px,5vw,76px);
  align-items: center;
  background:
    radial-gradient(circle at 18% 8%, rgba(215,168,70,.16), transparent 26%),
    linear-gradient(135deg, rgba(236,248,251,.96), rgba(255,248,237,.95)),
    #f6fbfb;
}
.experience-copy {
  max-width: 620px;
}
.journey-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.journey-board div {
  position: relative;
  min-height: 180px;
  padding: 26px;
  border: 1px solid rgba(215,168,70,.22);
  border-radius: 10px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 38px rgba(16,32,51,.08);
}
.journey-board span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: #111a27;
  font-weight: 900;
  font-size: .82rem;
}
.journey-board strong,
.journey-board small {
  display: block;
}
.journey-board strong {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.journey-board small {
  color: var(--muted);
  line-height: 1.5;
}
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.service-card {
  position: relative;
  min-height: 255px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(215,168,70,.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(16,32,51,.05);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}
.service-card:nth-child(3n+2) { background: linear-gradient(180deg, var(--aqua), var(--white)); }
.service-card:nth-child(4n) { background: linear-gradient(180deg, var(--cream), var(--white)); }
.service-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--midnight-2), var(--charcoal));
  color: var(--gold-strong);
  box-shadow: 0 10px 24px rgba(7,17,30,.14);
  font-size: .82rem;
  font-weight: 900;
}

.programs {
  background:
    linear-gradient(135deg, #edf7f8, #fff8ed);
}
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.program-grid article {
  min-height: 220px;
  padding: 26px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(16,32,51,.05);
}

.plans-section {
  background:
    radial-gradient(circle at 80% 0%, rgba(215,168,70,.12), transparent 28%),
    #fbfdfd;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.plan-card {
  position: relative;
  min-height: 330px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(215,168,70,.2);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold-strong), var(--gold));
}
.plan-card.urgent::before { background: linear-gradient(90deg, #c44837, var(--gold)); }
.plan-card.recovery::before { background: linear-gradient(90deg, var(--blue), var(--gold)); }
.plan-card.senior::before { background: linear-gradient(90deg, var(--teal), var(--gold)); }
.plan-card span {
  color: #9c792e;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.plan-card h3 {
  font-size: clamp(1.55rem,2.4vw,2.1rem);
  line-height: 1.08;
}
.plan-card a {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--midnight), var(--charcoal));
  color: var(--champagne);
  font-weight: 900;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(280px,.75fr) 1.25fr;
  gap: clamp(32px,5vw,70px);
  background:
    linear-gradient(180deg, var(--white), #fbfaf4);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(215,168,70,.22);
  border-radius: 10px;
  background: rgba(215,168,70,.18);
}
.trust-grid article {
  min-height: 165px;
  padding: 26px;
  background: #fbfdfd;
}
.trust-grid strong,
.trust-grid span {
  display: block;
}
.trust-grid strong {
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.trust-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.band {
  padding: 82px clamp(20px, 6vw, 82px);
  background:
    radial-gradient(circle at 88% 12%, rgba(242,201,111,.18), transparent 28%),
    linear-gradient(135deg, var(--midnight), var(--charcoal));
  color: var(--white);
}
.band-content { display: grid; grid-template-columns: minmax(240px,.8fr) 1.6fr; gap: clamp(32px,5vw,70px); align-items: start; }
.band .eyebrow { color: var(--gold-strong); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps article { min-height: 225px; padding: 24px; border: 1px solid rgba(242,201,111,.22); border-radius: 8px; background: rgba(255,255,255,.06); }
.steps span { display: block; margin-bottom: 34px; color: var(--gold-strong); font-weight: 900; }
.steps p { color: rgba(255,255,255,.74); }

.split { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr); gap: clamp(34px,5vw,76px); align-items: center; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; }
.metrics div { padding: 20px; border: 1px solid rgba(215,168,70,.2); border-radius: 8px; background: var(--white); }
.metrics strong, .metrics span { display: block; }
.metrics strong { font-size: 1.45rem; color: #9c792e; }
.metrics span { margin-top: 6px; color: var(--muted); font-size: .9rem; line-height: 1.35; }
.commitment-panel { padding: 32px; border-radius: 8px; background: var(--white); border: 1px solid rgba(215,168,70,.22); box-shadow: var(--shadow); }
.panel-logo {
  width: 112px;
  height: 112px;
  display: block;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 2px solid rgba(242,201,111,.46);
  box-shadow: 0 16px 36px rgba(8,22,38,.18), 0 0 0 8px rgba(215,168,70,.09);
}
.commitment-panel ul { margin: 24px 0 0; padding: 0; list-style: none; }
.commitment-panel li { position: relative; padding: 14px 0 14px 30px; border-top: 1px solid var(--line); color: #425064; line-height: 1.5; }
.commitment-panel li::before { content: ""; position: absolute; left: 0; top: 20px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }

.contact-section {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(320px,1fr);
  gap: clamp(34px,5vw,76px);
  padding: clamp(72px,9vw,118px) clamp(20px,6vw,82px);
  background:
    radial-gradient(circle at 12% 20%, rgba(215,168,70,.16), transparent 26%),
    linear-gradient(135deg, var(--mint), #fff8ed);
}
.contact-list { display: grid; gap: 12px; margin-top: 28px; color: #203044; font-weight: 900; }
.social-links, .footer-social { display: flex; flex-wrap: wrap; gap: 10px; }
.social-links { margin-top: 24px; }
.social-links a, .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(215,168,70,.32);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  color: #7b5d1e;
  font-weight: 900;
  font-size: .9rem;
}
.social-links a:hover, .footer-social a:hover {
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: #101724;
}
.social-feature {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 4vw, 44px);
  margin: clamp(44px, 6vw, 84px) clamp(20px, 6vw, 82px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(215,168,70,.3);
  border-radius: 12px;
  background:
    radial-gradient(circle at 14% 20%, rgba(242,201,111,.24), transparent 24%),
    linear-gradient(135deg, rgba(7,17,30,.96), rgba(13,37,51,.93)),
    var(--midnight);
  color: var(--white);
  box-shadow: var(--premium-shadow);
}
.social-feature::after {
  content: "";
  position: absolute;
  inset: auto -8% -45% 35%;
  height: 220px;
  background: radial-gradient(circle, rgba(242,201,111,.18), rgba(242,201,111,0) 66%);
  pointer-events: none;
}
.social-feature > * {
  position: relative;
  z-index: 1;
}
.social-feature .eyebrow {
  color: #f4d282;
}
.social-feature h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}
.social-feature p:not(.eyebrow) {
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.7;
}
.social-feature-logo {
  position: relative;
  width: clamp(92px, 10vw, 132px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(215,168,70,.12);
}
.social-feature-logo::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(215,168,70,.35);
  animation: medallionPulse 4s ease-in-out infinite;
}
.social-feature-logo img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  border: 2px solid rgba(215,168,70,.46);
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px,4vw,34px);
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(215,168,70,.22);
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 8px; color: #304153; font-weight: 900; font-size: .92rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fbfdfd;
}
.contact-form textarea { resize: vertical; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px,6vw,82px);
  color: rgba(255,255,255,.72);
  background:
    radial-gradient(circle at 8% 20%, rgba(242,201,111,.14), transparent 22%),
    linear-gradient(90deg, var(--midnight), var(--midnight-2) 58%, #102337);
  border-top: 1px solid rgba(215,168,70,.28);
}
.site-footer p { margin: 0; color: var(--white); font-weight: 900; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(242,201,111,.56);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}
.footer-social { justify-content: flex-end; }
.footer-social a { min-height: 36px; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: rgba(255,255,255,.86); }

.site-nav a.is-active {
  color: var(--gold-strong);
}

.page-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 6vw, 82px) 76px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,17,30,.96), rgba(13,29,45,.78), rgba(7,17,30,.24)),
    url("assets/healthcare-hero.png") center/cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% 35%;
  height: 320px;
  background: radial-gradient(circle, rgba(242,201,111,.22), rgba(242,201,111,0) 62%);
  pointer-events: none;
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(247,234,208,.82);
  font-size: 1.15rem;
  line-height: 1.75;
}

.service-hero {
  background:
    linear-gradient(90deg, rgba(7,17,30,.96), rgba(13,29,45,.78), rgba(7,17,30,.25)),
    url("https://images.pexels.com/photos/8376277/pexels-photo-8376277.jpeg?auto=compress&cs=tinysrgb&w=1600") center/cover no-repeat;
}

.plans-hero {
  background:
    linear-gradient(90deg, rgba(7,17,30,.96), rgba(13,29,45,.78), rgba(7,17,30,.25)),
    url("https://images.pexels.com/photos/7088526/pexels-photo-7088526.jpeg?auto=compress&cs=tinysrgb&w=1600") center/cover no-repeat;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(7,17,30,.96), rgba(13,29,45,.78), rgba(7,17,30,.25)),
    url("https://images.pexels.com/photos/5452201/pexels-photo-5452201.jpeg?auto=compress&cs=tinysrgb&w=1600") center/cover no-repeat;
}

.trust-hero {
  background:
    linear-gradient(90deg, rgba(7,17,30,.96), rgba(13,29,45,.78), rgba(7,17,30,.25)),
    url("https://images.pexels.com/photos/3902881/pexels-photo-3902881.jpeg?auto=compress&cs=tinysrgb&w=1600") center/cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(7,17,30,.96), rgba(13,29,45,.78), rgba(7,17,30,.25)),
    url("https://images.pexels.com/photos/7578803/pexels-photo-7578803.jpeg?auto=compress&cs=tinysrgb&w=1600") center/cover no-repeat;
}

.premium-grid .service-card,
.timeline article,
.plan-grid-large .plan-card,
.editorial-gallery .photo-card {
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.premium-grid .service-card:hover,
.timeline article:hover,
.plan-grid-large .plan-card:hover,
.editorial-gallery .photo-card:hover {
  transform: translateY(-8px);
  border-color: rgba(215,168,70,.42);
  box-shadow: 0 24px 60px rgba(16,32,51,.14);
}

.process-strip {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 6vw, 82px);
  background:
    radial-gradient(circle at 85% 10%, rgba(215,168,70,.15), transparent 28%),
    linear-gradient(135deg, rgba(236,248,251,.98), rgba(255,248,237,.94)),
    #f7fbfb;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline article {
  min-height: 235px;
  padding: 26px;
  border: 1px solid rgba(215,168,70,.22);
  border-radius: 10px;
  background: rgba(255,255,255,.88);
}

.timeline span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: #101724;
  font-weight: 900;
}

.timeline p {
  color: var(--muted);
  line-height: 1.65;
}

.plan-grid-large {
  grid-template-columns: repeat(3, 1fr);
}

.plan-card.diagnostics::before { background: linear-gradient(90deg, var(--gold-strong), var(--gold)); }
.plan-card.chronic::before { background: linear-gradient(90deg, #744f9e, var(--gold)); }
.plan-card.concierge::before { background: linear-gradient(90deg, var(--midnight), var(--gold)); }

.editorial-gallery {
  grid-template-columns: repeat(2, 1fr);
}

.editorial-gallery .photo-card:first-child {
  grid-row: span 2;
}

.editorial-gallery .photo-card:first-child img {
  height: 500px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes careFlow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-18px, 14px, 0) scale(1.04); }
}

@keyframes medallionPulse {
  0%, 100% { opacity: .55; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1.025); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero::before,
  .medallion-orbit,
  .social-feature-logo::before,
  .reveal,
  .premium-grid .service-card,
  .timeline article,
  .plan-grid-large .plan-card,
  .editorial-gallery .photo-card {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

@media (max-width: 1120px) {
  .service-grid, .program-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-info { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: 1fr; }
  .hero-medallion { display: none; }
  .social-feature { grid-template-columns: 1fr; text-align: center; }
  .social-feature-logo { margin-inline: auto; }
  .timeline, .plan-grid-large, .editorial-gallery { grid-template-columns: 1fr; }
  .editorial-gallery .photo-card:first-child { grid-row: auto; }
  .editorial-gallery .photo-card:first-child img { height: 320px; }
  .photo-card:first-child img, .photo-card img { height: 300px; }
  .experience-section, .trust-section { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
}

@media (max-width: 940px) {
  .top-bar { justify-content: center; flex-wrap: wrap; gap: 10px 18px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    background: rgba(7,17,30,.98);
    border-bottom: 1px solid rgba(215,168,70,.28);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 8px; }
  .hero { min-height: 820px; align-items: end; }
  .hero-overlay { background: linear-gradient(180deg, rgba(7,17,30,.2) 0%, rgba(7,17,30,.92) 48%, rgba(7,17,30,1) 100%); }
  .steps, .metrics, .band-content, .split, .contact-section { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { min-height: 68px; }
  .brand-logo { width: 40px; height: 40px; }
  .brand strong { font-size: .92rem; }
  .brand small { max-width: 180px; }
  .hero { min-height: 780px; padding-top: 92px; }
  .hero-actions, .quick-info, .service-grid, .program-grid, .journey-board, .trust-grid { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .quick-info div, .service-card, .program-grid article, .steps article, .commitment-panel, .contact-form { padding: 22px; }
  .site-footer { display: grid; }
}
