/* ==========================================================================
   Lucky Senior Care
   Palette sampled from the brand logo: deep forest green + warm gold,
   with sage, cream and white per the brand direction.
   Base size is 18px: the primary audience is families aged 50+ and seniors.
   ========================================================================== */

:root {
  --forest:        #244a31;
  --forest-deep:   #16301f;
  --forest-mid:    #2f6041;
  --sage:          #7c9c7e;
  --sage-pale:     #dfe8da;
  --sage-tint:     #eef3ea;
  --cream:         #f6f2e8;
  --cream-deep:    #ece5d5;
  --white:         #ffffff;
  --gold:          #a9873e;
  --gold-light:    #c9a961;
  --gold-pale:     #f2e7cd;
  --ink:           #21281e;
  --ink-soft:      #4f584b;
  --ink-faint:     #78806f;
  --line:          #dcdcd0;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --wrap-narrow: 760px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(33, 40, 30, .06), 0 4px 12px rgba(33, 40, 30, .05);
  --shadow-md: 0 2px 6px rgba(33, 40, 30, .07), 0 14px 34px rgba(33, 40, 30, .09);
  --shadow-lg: 0 4px 10px rgba(33, 40, 30, .08), 0 26px 60px rgba(33, 40, 30, .13);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 88px;
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 18px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "SOFT" 20, "WONK" 0;
  line-height: 1.15;
  color: var(--forest-deep);
  margin: 0 0 .5em;
  letter-spacing: -.012em;
}

h1 { font-size: clamp(2.15rem, 1.5rem + 2.6vw, 3.45rem); }
h2 { font-size: clamp(1.65rem, 1.25rem + 1.6vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.45rem); }
h4 { font-size: 1.08rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--forest-mid); text-decoration-thickness: 1.5px; text-underline-offset: .18em; }
a:hover { color: var(--gold); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 200;
  background: var(--forest); color: var(--white);
  padding: .7rem 1.2rem; border-radius: 0 0 10px 10px; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: var(--white); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* -------------------------------------------------------------- layout -- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--cream { background: var(--cream); }
.section--sage { background: var(--sage-tint); }
.section--forest { background: var(--forest); color: var(--sage-pale); }
.section--forest h2, .section--forest h3 { color: var(--white); }

.eyebrow {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 .9rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--gold); flex: none;
}
.section--forest .eyebrow { color: var(--gold-light); }
.section--forest .eyebrow::before { background: var(--gold-light); }

.lede {
  font-size: 1.16rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head.is-centered .eyebrow { justify-content: center; }

/* ------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 700; line-height: 1.2;
  padding: .95rem 1.6rem;
  border: 2px solid transparent; border-radius: 999px;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease),
              box-shadow .2s var(--ease);
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--gold); color: #2a2107; border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: #2a2107; box-shadow: var(--shadow-md); }

.btn--forest { background: var(--forest); color: var(--white); border-color: var(--forest); }
.btn--forest:hover { background: var(--forest-mid); border-color: var(--forest-mid); color: var(--white); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white); }

.btn--outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn--outline:hover { background: var(--forest); color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* -------------------------------------------------------------- header -- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 1.25rem;
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; flex: none; }
.brand img { height: 54px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.28rem;
  color: var(--forest); letter-spacing: -.02em;
}
.brand-tag { display: none; }

.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-list > li { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: .32rem;
  padding: .6rem .62rem; border-radius: 9px;
  font-size: .9rem; font-weight: 600; color: var(--ink);
  text-decoration: none; white-space: nowrap;
  background: none; border: 0; font-family: inherit; cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav-link:hover { background: var(--sage-tint); color: var(--forest); }
.nav-link[aria-current="page"] { color: var(--forest); }
.nav-link[aria-current="page"]::after {
  content: ""; position: absolute; left: .62rem; right: .62rem; bottom: .18rem;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-link .chev { width: 11px; height: 11px; transition: transform .2s var(--ease); }
.nav-link[aria-expanded="true"] .chev { transform: rotate(180deg); }

.submenu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 290px; padding: .5rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav-list > li:hover > .submenu,
.submenu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a {
  display: block; padding: .55rem .8rem; border-radius: 8px;
  font-size: .92rem; font-weight: 600; color: var(--ink); text-decoration: none;
}
.submenu a:hover { background: var(--sage-tint); color: var(--forest); }
.submenu .submenu-divider { height: 1px; background: var(--line); margin: .4rem .5rem; }
.submenu .submenu-all { color: var(--gold); }

/* the care menu is long: split it into two columns on desktop */
.submenu--wide { min-width: min(520px, 78vw); display: grid; grid-template-columns: 1fr 1fr; gap: 0 .3rem; }
.submenu--wide > li:nth-child(1),
.submenu--wide > li:nth-child(2),
.submenu--wide > .submenu-divider,
.submenu--wide > li:last-child { grid-column: 1 / -1; }
.submenu--wide > li:nth-child(1) a,
.submenu--wide > li:nth-child(2) a { background: var(--cream); }
.submenu--wide > li:nth-child(1) a:hover,
.submenu--wide > li:nth-child(2) a:hover { background: var(--sage-tint); }

.header-cta { display: flex; align-items: center; gap: .6rem; flex: none; }
.header-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .68rem 1.15rem; border-radius: 999px;
  background: var(--forest); color: var(--white);
  font-weight: 700; font-size: .95rem; text-decoration: none; white-space: nowrap;
  transition: background .2s var(--ease);
}
.header-phone:hover { background: var(--gold); color: #2a2107; }
.header-phone svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 46px; height: 46px; flex: none;
  background: var(--forest); border: 0; border-radius: 11px; color: var(--white); cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------------------------------------------------------------- hero -- */
.hero { position: relative; background: var(--forest-deep); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 38%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(15,38,23,.95) 0%, rgba(19,45,28,.88) 34%,
    rgba(22,48,31,.55) 58%, rgba(22,48,31,.12) 82%);
}
.hero-inner {
  position: relative;
  padding: clamp(4rem, 8vw, 7.5rem) 0 clamp(4rem, 7vw, 6.5rem);
  max-width: 620px;
}
.hero h1 { color: var(--white); margin-bottom: .45em; text-wrap: balance; }
.hero h1 em {
  font-style: normal; color: var(--gold-light);
  font-variation-settings: "SOFT" 40, "WONK" 1;
}
.hero-tag {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + .55vw, 1.5rem);
  font-weight: 600; font-style: italic;
  color: var(--gold-light); margin-bottom: .9rem;
}
.hero-lede { font-size: clamp(1.05rem, .98rem + .4vw, 1.24rem); color: #dfe8da; margin-bottom: 1.9rem; max-width: 33em; }
.hero .btn-row { margin-bottom: 2.2rem; }

.hero-points { display: flex; flex-wrap: wrap; gap: .55rem 1.6rem; list-style: none; margin: 0; padding: 0; }
.hero-points li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9rem; font-weight: 600; color: #cdddc7;
}
.hero-points svg { width: 17px; height: 17px; color: var(--gold-light); flex: none; }

/* ------------------------------------------------------------ trustbar -- */
.trustbar { background: var(--forest-deep); border-top: 1px solid rgba(255,255,255,.1); }
.trustbar-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px; background: rgba(255,255,255,.1);
}
.trustbar-item { background: var(--forest-deep); padding: 1.35rem 1.5rem; }
.trustbar-item dt { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); font-weight: 700; margin-bottom: .3rem; }
.trustbar-item dd { margin: 0; color: var(--white); font-weight: 600; font-size: .98rem; line-height: 1.4; }

/* --------------------------------------------------- care finder (sig) -- */
.finder {
  position: relative;
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  margin-top: -3.5rem;
}
.finder.finder--inline { margin-top: 2.5rem; margin-bottom: 2.5rem; }
/* roofline: echoes the house in the brand mark, used once on the page */
.finder::before {
  content: ""; position: absolute; left: 50%; top: -19px; transform: translateX(-50%);
  width: 60px; height: 20px; background: var(--white);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  border-top: 1px solid var(--cream-deep);
}
.finder::after {
  content: ""; position: absolute; left: 50%; top: -9px; transform: translateX(-50%);
  width: 26px; height: 9px; background: var(--gold);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.finder-head { text-align: center; max-width: 46ch; margin: 0 auto 1.9rem; }
.finder-head h2 { margin-bottom: .35em; }
.finder-head p { color: var(--ink-soft); }

.finder-step { margin-bottom: 1.6rem; }
.finder-step[hidden] { display: none; }
.finder-legend {
  display: block; font-weight: 700; font-size: 1.02rem;
  color: var(--forest); margin-bottom: .9rem;
}
.finder-legend span {
  display: inline-block; min-width: 1.6rem; height: 1.6rem; line-height: 1.6rem;
  text-align: center; background: var(--gold-pale); color: var(--gold);
  border-radius: 50%; font-size: .82rem; margin-right: .55rem;
}

.finder-options {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: .7rem;
}
.finder-opt {
  display: flex; flex-direction: column; gap: .2rem; text-align: left;
  padding: .95rem 1.1rem;
  background: var(--cream); border: 2px solid transparent; border-radius: 12px;
  font-family: inherit; font-size: .97rem; font-weight: 700; color: var(--ink);
  cursor: pointer;
  transition: border-color .18s var(--ease), background .18s var(--ease), transform .18s var(--ease);
}
.finder-opt small { font-weight: 500; font-size: .82rem; color: var(--ink-faint); }
.finder-opt:hover { border-color: var(--sage); transform: translateY(-2px); }
.finder-opt[aria-pressed="true"] {
  background: var(--forest); color: var(--white); border-color: var(--forest);
}
.finder-opt[aria-pressed="true"] small { color: var(--sage-pale); }

.finder-result {
  background: var(--sage-tint); border-radius: var(--radius);
  padding: 1.5rem 1.6rem; border-left: 4px solid var(--gold);
}
.finder-result[hidden] { display: none; }
.finder-result h3 { margin-bottom: .35em; }
.finder-result p { color: var(--ink-soft); margin-bottom: 1rem; }
.finder-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.finder-links a {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1rem; border-radius: 999px;
  background: var(--white); border: 1px solid var(--sage);
  font-size: .9rem; font-weight: 700; color: var(--forest); text-decoration: none;
}
.finder-links a:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }
.finder-reset {
  background: none; border: 0; font-family: inherit; font-size: .88rem; font-weight: 600;
  color: var(--ink-faint); cursor: pointer; text-decoration: underline;
  padding: .4rem 0; margin-top: .9rem;
}
.finder-reset:hover { color: var(--forest); }

/* --------------------------------------------------------- card grids -- */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sage-tint); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
a.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.2rem; margin-bottom: .4em; }
.card-body p { font-size: .95rem; color: var(--ink-soft); margin-bottom: 1rem; }
.card-more {
  margin-top: auto; font-size: .88rem; font-weight: 700; color: var(--gold);
  display: inline-flex; align-items: center; gap: .35rem;
}
a.card:hover .card-more { color: var(--forest); }
.card-more svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
a.card:hover .card-more svg { transform: translateX(3px); }

/* ------------------------------------------------------------- splits -- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3; object-fit: cover;
}

/* --------------------------------------------------------------- prose -- */
.prose h2 { margin-top: 2.4em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.9em; }
.prose > *:first-child { margin-top: 0; }
.prose ul { margin: 0 0 1.3em; padding: 0; list-style: none; }
.prose ul li {
  position: relative; padding-left: 1.85rem; margin-bottom: .6rem;
}
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 9px; height: 9px; border-radius: 2px;
  background: var(--gold); transform: rotate(45deg);
}
.prose ol { margin: 0 0 1.3em; padding-left: 1.3rem; }
.prose ol li { margin-bottom: .6rem; padding-left: .3rem; }

.checklist { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: .7rem; margin: 0 0 1.5em; padding: 0; list-style: none; }
.checklist li {
  display: flex; align-items: flex-start; gap: .7rem;
  background: var(--cream); border-radius: 11px; padding: .8rem 1rem;
  font-size: .95rem; font-weight: 600; color: var(--ink); line-height: 1.45;
}
.prose ul.checklist li::before, .checklist li::before { content: none; }
.checklist svg { width: 19px; height: 19px; color: var(--sage); flex: none; margin-top: .12rem; }
.section--forest .checklist li { background: rgba(255,255,255,.07); color: var(--white); }
.section--forest .checklist svg { color: var(--gold-light); }

/* --------------------------------------------------------- info blocks -- */
.note {
  background: var(--gold-pale); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.3rem 1.5rem; margin: 2rem 0;
}
.note h3 { font-size: 1.08rem; margin-bottom: .4em; color: var(--forest-deep); }
.note p { font-size: .96rem; color: #56471f; }
.note p:last-child { margin-bottom: 0; }

.program-card {
  background: var(--white); border: 1px solid var(--line);
  border-left: 4px solid var(--sage); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.6rem; margin-bottom: 1rem;
}
.program-card h3 { margin-top: 0; margin-bottom: .35em; font-size: 1.15rem; }
.program-card p { font-size: .96rem; color: var(--ink-soft); margin-bottom: 0; }
.program-card .tag {
  display: inline-block; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; color: var(--gold); margin-bottom: .5rem;
}

.plan-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin: 0 0 1.5em; padding: 0; list-style: none; }
.plan-chips li {
  padding: .55rem 1.1rem; border-radius: 999px; margin: 0;
  background: var(--white); border: 1px solid var(--sage);
  font-weight: 700; font-size: .93rem; color: var(--forest);
}
.prose ul.plan-chips li::before, .plan-chips li::before { content: none; }
.plan-chips--muted li { border-color: var(--line); color: var(--ink-faint); background: var(--cream); }

/* ------------------------------------------------------------ page top -- */
.page-hero { position: relative; background: var(--forest-deep); overflow: hidden; }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.page-hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(15,38,23,.95) 0%, rgba(19,45,28,.86) 45%, rgba(22,48,31,.42) 100%);
}
.page-hero-inner {
  position: relative; padding: clamp(2.75rem, 5.5vw, 4.75rem) 0 clamp(2.75rem, 5vw, 4.25rem);
  max-width: 680px;
}
.page-hero h1 { color: var(--white); margin-bottom: .35em; text-wrap: balance; }
.page-hero p { color: #dfe8da; font-size: clamp(1rem, .95rem + .3vw, 1.15rem); margin-bottom: 0; max-width: 40em; }

.crumbs { padding: .85rem 0; border-bottom: 1px solid var(--line); background: var(--cream); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; font-size: .84rem; }
.crumbs li { display: flex; align-items: center; gap: .4rem; color: var(--ink-faint); }
.crumbs li + li::before { content: "/"; color: var(--line); }
.crumbs a { color: var(--ink-soft); text-decoration: none; font-weight: 600; }
.crumbs a:hover { color: var(--forest); text-decoration: underline; }
.crumbs [aria-current] { color: var(--forest); font-weight: 600; }

/* ------------------------------------------------------------- sidebar -- */
.page-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); display: grid; gap: 1.25rem; }

.side-card {
  background: var(--forest); color: var(--sage-pale);
  border-radius: var(--radius-lg); padding: 1.6rem 1.7rem;
}
.side-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: .5em; }
.side-card p { font-size: .93rem; margin-bottom: 1.1rem; }
.side-phone {
  display: block; font-family: var(--font-display); font-size: 1.55rem; font-weight: 700;
  color: var(--gold-light); text-decoration: none; margin-bottom: 1rem; letter-spacing: -.01em;
}
.side-phone:hover { color: var(--white); }
.side-addr { font-size: .88rem; font-style: normal; color: #b9cdb4; line-height: 1.6; }

.side-nav {
  background: var(--cream); border-radius: var(--radius-lg); padding: 1.5rem 1.6rem;
}
.side-nav h3 { font-size: 1.02rem; margin-bottom: .8em; }
.side-nav ul { list-style: none; margin: 0; padding: 0; }
.side-nav li { margin-bottom: .1rem; }
.side-nav a {
  display: block; padding: .5rem .65rem; border-radius: 8px;
  font-size: .93rem; font-weight: 600; color: var(--ink-soft); text-decoration: none;
}
.side-nav a:hover { background: var(--white); color: var(--forest); }
.side-nav a[aria-current="page"] { background: var(--white); color: var(--forest); box-shadow: inset 3px 0 0 var(--gold); }

/* --------------------------------------------------------------- steps -- */
.prose ol.steps, .steps { counter-reset: step; display: grid; gap: 1.2rem;
  margin: 0 0 1.3em; padding: 0; list-style: none; }
.prose ol.steps li, .steps li {
  counter-increment: step; position: relative;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.7rem 1.5rem 4.6rem; margin-bottom: 0;
}
.prose ol.steps li::before, .steps li::before {
  content: counter(step); position: absolute; left: 1.5rem; top: 1.5rem;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--forest); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.steps h3 { margin-top: 0; margin-bottom: .35em; font-size: 1.15rem; }
.steps p:last-child, .steps ul:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------- accordion -- */
.faq-list { display: grid; gap: .75rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item[open] { border-color: var(--sage); box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--forest-deep);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--cream); }
.faq-item summary .plus {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--sage-tint); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; transition: transform .25s var(--ease), background .2s var(--ease);
}
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-answer { padding: 0 1.4rem 1.35rem; color: var(--ink-soft); font-size: .98rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------- CTA band -- */
.cta-band { position: relative; overflow: hidden; background: var(--forest-deep); }
.cta-band-media { position: absolute; inset: 0; }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.cta-band-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,38,23,.96) 0%, rgba(19,45,28,.9) 50%, rgba(22,48,31,.6) 100%);
}
.cta-band-inner { position: relative; padding: clamp(3rem, 6vw, 5rem) 0; max-width: 640px; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: #dfe8da; font-size: 1.1rem; margin-bottom: 1.8rem; }
.cta-phone {
  display: inline-flex; align-items: baseline; gap: .6rem;
  font-family: var(--font-display); font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.5rem);
  font-weight: 700; color: var(--gold-light); text-decoration: none; letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.cta-phone:hover { color: var(--white); }
.cta-phone span { font-family: var(--font-body); font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #b9cdb4; }

/* -------------------------------------------------------------- footer -- */
.site-footer { background: var(--forest-deep); color: #b9cdb4; padding: clamp(3rem, 5vw, 4.5rem) 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 2.5rem 2rem; padding-bottom: 3rem;
}
@media (min-width: 900px) {
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; }
}
.footer-brand img { height: 46px; width: auto; margin-bottom: 1rem; background: var(--white); border-radius: 8px; padding: .4rem .6rem; }
.footer-brand p { font-size: .93rem; max-width: 34ch; }
.footer-col h3 {
  font-family: var(--font-body); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: #cdddc7; text-decoration: none; font-size: .92rem; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-col address { font-style: normal; font-size: .92rem; line-height: 1.7; }
.footer-col address a { font-weight: 700; color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.13);
  padding: 1.75rem 0 2.25rem;
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; align-items: center;
}
.footer-disclaimer { font-size: .82rem; max-width: 68ch; color: #9db398; line-height: 1.6; }
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; font-size: .84rem; }
.footer-legal a { color: #cdddc7; text-decoration: none; }
.footer-legal a:hover { color: var(--white); text-decoration: underline; }

/* ------------------------------------------------------- contact page -- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.8rem;
}
.contact-card .icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--sage-tint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--forest);
}
.contact-card .icon svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 1.12rem; margin-bottom: .4em; }
.contact-card address, .contact-card p { font-style: normal; font-size: .96rem; color: var(--ink-soft); line-height: 1.65; }
.contact-card a { font-weight: 700; }

/* ------------------------------------------------------------ reveal -- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------- responsive -- */
@media (max-width: 1020px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

@media (max-width: 1240px) {
  :root { --header-h: 74px; }
  .nav-toggle { display: flex; }
  .brand img { height: 44px; }
  .brand-tag { display: none; }
  .header-cta .header-phone span { display: none; }

  /* backdrop-filter would make the header a containing block for the
     fixed drawer, collapsing it to the header's height */
  .site-header { backdrop-filter: none; background: var(--white); }

  .nav {
    position: fixed; inset: var(--header-h) 0 0; margin: 0;
    background: var(--white); padding: 1.25rem;
    overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-list { flex-direction: column; align-items: stretch; gap: .2rem; }
  .nav-list > li { border-bottom: 1px solid var(--line); }
  .nav-link { justify-content: space-between; padding: .95rem .5rem; font-size: 1.02rem; width: 100%; }
  .nav-link[aria-current="page"]::after { display: none; }
  .nav-link[aria-current="page"] { color: var(--gold); }
  .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-radius: 0; min-width: 0;
    padding: 0 0 .6rem .5rem; display: none; background: transparent;
  }
  .submenu.is-open { display: block; }
  /* the desktop two-column grid must not leak into the drawer */
  .submenu--wide { display: none; min-width: 0; grid-template-columns: none; }
  .submenu--wide.is-open { display: block; }
  .submenu--wide > li:nth-child(1) a,
  .submenu--wide > li:nth-child(2) a { background: transparent; font-weight: 600; }
  .submenu a { padding: .6rem .5rem; font-weight: 500; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .hero-media img { object-position: 68% 35%; }
  .finder { margin-top: -2rem; }
}

@media (max-width: 620px) {
  html { font-size: 17px; }
  .wrap, .wrap-narrow { width: min(100% - 1.75rem, var(--wrap)); }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .hero-media::after {
    background: linear-gradient(180deg, rgba(15,38,23,.92) 0%, rgba(19,45,28,.9) 55%, rgba(22,48,31,.85) 100%);
  }
  .steps li { padding: 3.9rem 1.3rem 1.4rem; }
  .prose ol.steps li::before, .steps li::before { top: 1.4rem; left: 1.3rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 430px) {
  .brand img { height: 38px; }
  .brand-name { font-size: 1.06rem; }
  .brand { gap: .5rem; }
  .header-inner { gap: .6rem; }
  .header-cta { gap: .4rem; }
  .header-phone { padding: .62rem .8rem; }
  .nav-toggle { width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .nav, .cta-band, .finder, .site-footer { display: none; }
  body { font-size: 12pt; color: #000; }
}
