/* =========================================================
   SOLVIA HEALTH SERVICES — style.css
   Brand: Navy #1B3A6B  ·  Gold #D4941A
   One stylesheet shared across all five pages.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --navy:        #1B3A6B;
  --navy-deep:   #142C52;
  --navy-900:    #0E1F3B;
  --gold:        #D4941A;
  --gold-soft:   #E4AC4A;
  --gold-tint:   #F6EAD3;
  --ivory:       #FBF8F3;
  --cream:       #F2EBDE;
  --white:       #FFFFFF;
  --ink:         #26262B;
  --ink-soft:    #565660;
  --line:        rgba(27, 58, 107, 0.14);
  --line-strong: rgba(27, 58, 107, 0.28);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Source Sans 3", system-ui, -apple-system, Segoe UI, sans-serif;

  --radius:   14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(20, 44, 82, 0.06);
  --shadow-md: 0 14px 40px rgba(20, 44, 82, 0.10);
  --shadow-lg: 0 30px 70px rgba(20, 44, 82, 0.16);

  --wrap: 1160px;
  --gutter: 24px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: var(--cream); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.lead { font-size: 1.22rem; color: var(--ink-soft); }

/* ---------- Sunrise motif (echoes the brand, not a logo) ---------- */
.arc {
  width: 74px; height: 37px;
  border-radius: 74px 74px 0 0;
  border: 2px solid var(--gold);
  border-bottom: none;
  margin: 0 auto 22px;
  position: relative;
}
.arc::after {
  content: "";
  position: absolute; left: 50%; bottom: -3px;
  width: 108px; height: 2px; background: var(--gold);
  transform: translateX(-50%);
  opacity: 0.5;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 14px 28px; border-radius: 999px;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn--gold { background: var(--gold); color: var(--navy-900); }
.btn--gold:hover { background: var(--gold-soft); color: var(--navy-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-deep); color: var(--white); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--light { background: var(--white); color: var(--navy); }
.btn--light:hover { background: var(--gold-tint); color: var(--navy); transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.topbar {
  background: var(--navy-900); color: rgba(255,255,255,.85);
  font-size: 0.86rem; letter-spacing: 0.01em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 9px; padding-bottom: 9px; }
.topbar a { color: rgba(255,255,255,.9); }
.topbar a:hover { color: var(--gold-soft); }
.topbar .bilingual { color: var(--gold-soft); font-weight: 600; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 20px; }

/* Text wordmark placeholder — swap for logo PNG (see comment in HTML) */
.brand { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.brand__mark {
  font-family: var(--font-display);
  font-size: 1.62rem; font-weight: 600; color: var(--navy);
  letter-spacing: -0.02em;
}
.brand__mark span { color: var(--gold); }
.brand__sub {
  display: block;
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink-soft);
  margin-top: 3px;
}
.brand__logo { height: 56px; width: auto; }
@media (max-width: 560px) { .brand__logo { height: 46px; } }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-weight: 600; font-size: 1rem; color: var(--ink);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--gold); transition: width .22s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--navy); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* CSS-only mobile menu (checkbox hack — no JS needed) */
.nav-toggle { display: none; }
.nav-burger {
  display: none; cursor: pointer; padding: 10px; border-radius: 10px;
  border: 1px solid var(--line-strong);
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: ""; display: block; width: 24px; height: 2px; background: var(--navy);
  position: relative; transition: .25s;
}
.nav-burger span::before { position: absolute; top: -7px; }
.nav-burger span::after  { position: absolute; top: 7px; }

@media (max-width: 900px) {
  .nav-burger { display: block; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; gap: 6px;
    background: var(--white); padding: 96px 28px 40px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .28s ease;
  }
  .nav-links a { font-size: 1.15rem; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-toggle:checked ~ .nav-links { transform: translateX(0); }
  .nav-toggle:checked ~ .nav-burger span { background: transparent; }
  .nav-toggle:checked ~ .nav-burger span::before { top: 0; transform: rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span::after  { top: 0; transform: rotate(-45deg); }
  .nav-cta .phone-pill { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(212,148,26,0.22), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 60%, var(--navy-900) 100%);
  color: var(--cream);
}
.hero__inner { padding: 96px 0 104px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero__eyebrow { color: var(--gold-soft); }
.hero__eyebrow::before { background: var(--gold-soft); }
.hero h1 { color: var(--white); font-size: clamp(2.5rem, 5.4vw, 4rem); font-weight: 500; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero p { color: rgba(255,255,255,0.86); font-size: 1.18rem; max-width: 40ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__trust { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 20px 30px; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* Hero side card (holds the Why + a photo slot) */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 34px; backdrop-filter: blur(6px);
}
.hero-card .arc { margin: 0 0 18px; }
.hero-card h3 { color: var(--white); font-size: 1.55rem; }
.hero-card p { font-size: 1.05rem; margin-bottom: 0; }
.photo-slot {
  margin-top: 24px; border-radius: var(--radius);
  border: 1px dashed rgba(255,255,255,0.3);
  aspect-ratio: 16 / 10;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: rgba(255,255,255,0.55); font-size: 0.85rem; padding: 16px;
  background: rgba(255,255,255,0.03);
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; padding: 66px 0 74px; }
}

/* =========================================================
   VALUE STRIP
   ========================================================= */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm);
}
.value .icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--gold-tint); color: var(--navy);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
}
.value h3 { font-size: 1.28rem; }
.value p { color: var(--ink-soft); margin-bottom: 0; font-size: 1rem; }
@media (max-width: 820px) { .values { grid-template-columns: 1fr; } }

/* =========================================================
   SERVICE CARDS (Home overview + Services page)
   ========================================================= */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.service-card .kicker { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 1rem; }
.service-card .badge {
  display: inline-block; margin-top: 6px; padding: 5px 13px; border-radius: 999px;
  background: var(--navy); color: var(--white); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
}
.card-list { margin: 14px 0 0; }
.card-list li { padding: 7px 0 7px 26px; position: relative; color: var(--ink); font-size: 1rem; border-top: 1px solid var(--line); }
.card-list li:first-child { border-top: none; }
.card-list li::before {
  content: ""; position: absolute; left: 4px; top: 15px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}
@media (max-width: 820px) { .service-grid { grid-template-columns: 1fr; } }

/* =========================================================
   PRICING TIERS (Signature Care)
   ========================================================= */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.tier {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.tier--featured { border: 2px solid var(--gold); box-shadow: var(--shadow-md); position: relative; }
.tier--featured .tier__tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy-900); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px;
}
.tier h3 { font-size: 1.6rem; margin-bottom: 4px; }
.tier__price { font-family: var(--font-display); font-size: 2.6rem; color: var(--navy); font-weight: 600; line-height: 1; margin: 12px 0 4px; }
.tier__price small { font-size: 0.95rem; font-family: var(--font-body); color: var(--ink-soft); font-weight: 600; }
.tier__note { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 18px; }
.tier ul { margin: 0 0 26px; flex: 1; }
.tier ul li { padding: 9px 0 9px 28px; position: relative; font-size: 0.98rem; border-top: 1px solid var(--line); }
.tier ul li:first-child { border-top: none; }
.tier ul li::before {
  content: "✓"; position: absolute; left: 0; top: 8px; color: var(--gold); font-weight: 700;
}
.tier .btn { width: 100%; justify-content: center; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* =========================================================
   SPECIALTY LIST (Private Duty)
   ========================================================= */
.specialties { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.specialty {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; box-shadow: var(--shadow-sm);
}
.specialty .num {
  flex: none; width: 40px; height: 40px; border-radius: 10px;
  background: var(--navy); color: var(--gold-soft);
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.specialty h4 { font-size: 1.18rem; margin-bottom: 4px; color: var(--navy); }
.specialty p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
@media (max-width: 720px) { .specialties { grid-template-columns: 1fr; } }

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.leader-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-md); position: sticky; top: 110px;
}
.leader-photo {
  border-radius: var(--radius); aspect-ratio: 4/5; background: var(--gold-tint);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--ink-soft); font-size: 0.85rem; padding: 20px; margin-bottom: 22px;
  border: 1px dashed var(--line-strong);
}
.leader-card h3 { font-size: 1.7rem; margin-bottom: 2px; }
.leader-card .role { color: var(--gold); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.04em; margin-bottom: 20px; }
.creds { margin-top: 4px; }
.creds li { padding: 9px 0 9px 26px; position: relative; font-size: 0.98rem; border-top: 1px solid var(--line); }
.creds li::before { content: ""; position: absolute; left: 3px; top: 16px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.pill-progress { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); background: var(--gold-tint); padding: 2px 9px; border-radius: 999px; margin-left: 6px; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } .leader-card { position: static; } }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 10px; }
.pillar { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.pillar .arc { margin: 0 0 14px; width: 54px; height: 27px; }
.pillar h4 { font-size: 1.25rem; }
.pillar p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }

/* =========================================================
   PAGE HERO (interior pages)
   ========================================================= */
.page-hero {
  background:
    radial-gradient(100% 120% at 90% -20%, rgba(212,148,26,0.20), transparent 50%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream); padding: 78px 0 70px; text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 60ch; margin: 0 auto; font-size: 1.12rem; }
.page-hero .arc { margin: 0 auto 20px; }

/* =========================================================
   CAREERS
   ========================================================= */
.role-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.role {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.role h3 { font-size: 1.4rem; margin-bottom: 6px; }
.role .role-type { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.role p { color: var(--ink-soft); font-size: 1rem; }
@media (max-width: 720px) { .role-grid { grid-template-columns: 1fr; } }

.checklist { max-width: 760px; margin: 0 auto; }
.checklist li { padding: 14px 0 14px 40px; position: relative; border-top: 1px solid var(--line); font-size: 1.05rem; }
.checklist li::before {
  content: "✓"; position: absolute; left: 6px; top: 12px; color: var(--white);
  background: var(--gold); width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-top: 1px solid var(--line); }
.contact-info .info-item:first-of-type { border-top: none; }
.contact-info .info-item .icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--navy);
  color: var(--gold-soft); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600;
}
.contact-info .info-item h4 { margin: 0 0 2px; font-size: 1.1rem; }
.contact-info .info-item p, .contact-info .info-item a { margin: 0; color: var(--ink-soft); }
.contact-info .info-item a:hover { color: var(--gold); }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 7px; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--ivory);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,148,26,0.18); background: var(--white);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }
.hp { position: absolute; left: -9999px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band { background: linear-gradient(150deg, var(--navy) 0%, var(--navy-900) 100%); color: var(--cream); text-align: center; }
.cta-band .arc { margin: 0 auto 20px; }
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.7rem); }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 54ch; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.75); padding: 66px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 44px; margin-bottom: 44px; }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: 0.86rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-brand .brand__mark { color: var(--white); font-size: 1.5rem; }
.footer-brand .brand__mark span { color: var(--gold-soft); }
.footer-brand p { margin-top: 14px; font-size: 0.98rem; max-width: 34ch; }
.footer-links li { margin-bottom: 11px; }
.footer-contact li { margin-bottom: 12px; font-size: 0.98rem; }
.footer-contact .bilingual { color: var(--gold-soft); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Accessibility ---------- */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -9999px; top: 8px; background: var(--gold); color: var(--navy-900);
  padding: 10px 18px; border-radius: 8px; z-index: 100; font-weight: 700;
}
.skip-link:focus { left: 12px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* =========================================================
   SIGNATURE CARE — time-based tiers (1 / 2 / 4 hours)
   ========================================================= */
.sig-tier {
  display: grid; grid-template-columns: 290px 1fr; gap: 36px; align-items: start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm); margin-bottom: 26px; position: relative;
}
.sig-tier--featured { border: 2px solid var(--gold); box-shadow: var(--shadow-md); }
.sig-tier__tag {
  position: absolute; top: -13px; left: 40px; background: var(--gold); color: var(--navy-900);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
}
.sig-tier__hours { display: flex; align-items: baseline; gap: 9px; }
.sig-tier__hours .n { font-family: var(--font-display); font-size: 3.1rem; font-weight: 600; color: var(--navy); line-height: 1; }
.sig-tier__hours .u { font-weight: 600; color: var(--gold); letter-spacing: 0.03em; }
.sig-tier__name { font-size: 1.7rem; margin: 14px 0 6px; }
.sig-tier__tagline { font-style: italic; color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 22px; }
.sig-tier__body p { margin: 0; color: var(--ink); font-size: 1.05rem; line-height: 1.72; }
.sig-tier .btn { width: 100%; justify-content: center; }
@media (max-width: 780px) {
  .sig-tier { grid-template-columns: 1fr; gap: 18px; padding: 30px; }
  .sig-tier__tag { left: 30px; }
}

/* Every-visit-includes panel */
.includes-band {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm);
}
.includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px 30px; margin-top: 18px; }
.includes-grid li { padding: 9px 0 9px 28px; position: relative; border-top: 1px solid var(--line); font-size: 1rem; }
.includes-grid li::before { content: "\2713"; position: absolute; left: 2px; top: 9px; color: var(--gold); font-weight: 700; }
@media (max-width: 680px) { .includes-grid { grid-template-columns: 1fr; } }
