:root {
  --ink: #064a50;
  --ink-soft: #405455;
  --teal: #16a6ac;
  --teal-dark: #07585e;
  --gold: #c69a3a;
  --cream: #f5f0e7;
  --mist: #e7f2f1;
  --ivory: #fbf8f2;
  --sage: #8d9470;
  --white: #ffffff;
  --border: rgba(17, 39, 40, 0.15);
  --shadow: 0 22px 55px rgba(16, 47, 49, 0.13);
  --shell: min(1160px, calc(100% - 40px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 1.15rem; }
h1, h2, h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(3.1rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.1rem, 4vw, 4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(17, 39, 40, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { flex: 0 0 auto; }
.brand img { width: 168px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 34px); }
.primary-nav a, .primary-nav summary {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-nav a:hover, .primary-nav a:focus-visible, .primary-nav summary:hover, .primary-nav summary:focus-visible { color: var(--teal-dark); }
.nav-group { position: relative; }
.nav-group summary { cursor: pointer; list-style: none; }
.nav-group summary::-webkit-details-marker { display: none; }
.nav-group summary::after { margin-left: 7px; color: var(--gold); content: "⌄"; }
.nav-dropdown { position: absolute; top: calc(100% + 20px); left: -22px; display: grid; width: min(390px, 80vw); padding: 14px; border: 1px solid var(--border); background: var(--white); box-shadow: var(--shadow); }
.nav-dropdown a { padding: 10px 12px; border-bottom: 1px solid var(--border); font-size: .75rem; line-height: 1.4; }
.nav-dropdown a:last-child { border-bottom: 0; }
.primary-nav .header-contact {
  padding: 11px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}
.primary-nav .header-contact:hover, .primary-nav .header-contact:focus-visible { color: var(--white); background: var(--teal-dark); }
.nav-toggle { display: none; }

.home-hero, .page-hero { position: relative; isolation: isolate; color: var(--white); background: var(--ink); }
.home-hero { min-height: min(780px, calc(100svh - 86px)); display: grid; align-items: end; }
.home-hero-media, .page-hero-media, .home-hero-overlay, .page-hero-overlay { position: absolute; inset: 0; }
.home-hero-media img, .page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.home-hero-media img { object-position: center 58%; }
.home-hero-overlay { background: linear-gradient(90deg, rgba(8, 28, 29, 0.9) 0%, rgba(8, 28, 29, 0.6) 50%, rgba(8, 28, 29, 0.18) 100%); }
.home-hero-content { position: relative; z-index: 1; padding-block: clamp(100px, 15vw, 165px) 90px; }
.home-hero-content h1 { max-width: 820px; }
.home-hero-content > p:not(.eyebrow) { max-width: 650px; margin: 25px 0 34px; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.page-hero { min-height: 580px; display: grid; align-items: end; }
.page-hero-overlay { background: linear-gradient(90deg, rgba(8, 28, 29, 0.91) 0%, rgba(8, 28, 29, 0.55) 58%, rgba(8, 28, 29, 0.2) 100%); }
.page-hero-content { position: relative; z-index: 1; padding-block: 130px 75px; }
.page-hero-content h1 { max-width: 920px; font-size: clamp(3rem, 6vw, 5.7rem); }
.page-hero-content > p:not(.eyebrow) { max-width: 700px; margin: 22px 0 0; font-size: clamp(1.05rem, 2vw, 1.28rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before { width: 36px; height: 1px; content: ""; background: currentColor; }
.eyebrow-light { color: #7ee0e3; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: #7ee0e3; }
.button-primary { color: var(--white); background: var(--teal); }
.button-primary:hover, .button-primary:focus-visible { background: var(--gold); }
.button-gold { color: var(--white); background: var(--gold); }
.button-gold:hover, .button-gold:focus-visible { color: var(--ink); background: var(--white); }
.button-secondary { color: inherit; border-color: currentColor; background: transparent; }
.button-secondary:hover, .button-secondary:focus-visible { color: var(--white); border-color: var(--teal-dark); background: var(--teal-dark); }
.home-hero .button-secondary, .page-hero .button-secondary, .contact-strip .button-secondary { color: var(--white); border-color: rgba(255,255,255,.8); }

.section { padding-block: clamp(74px, 10vw, 126px); }
.section-tint { background: var(--cream); }
.section-aqua { background: var(--mist); }
.two-column { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr); gap: clamp(44px, 9vw, 130px); }
.align-center { align-items: center; }
.two-column h2 { max-width: 600px; }
.prose { color: var(--ink-soft); font-size: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }
.intro-section { border-bottom: 1px solid var(--border); }
.section-heading { max-width: 780px; margin-bottom: 50px; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.1fr 0.7fr; gap: 70px; align-items: end; }
.split-heading > p { margin: 0; color: var(--ink-soft); }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 48px; }
.feature-grid-six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card { min-height: 300px; padding: clamp(27px, 4vw, 42px); background: var(--white); box-shadow: 0 14px 32px rgba(17,39,40,.06); }
.feature-card h3 { margin: 24px 0 16px; }
.feature-card p { color: var(--ink-soft); font-size: 0.97rem; }
.feature-number { color: var(--gold); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; }
.line-icon { display: inline-grid; flex: 0 0 auto; width: 48px; height: 48px; border: 1.5px solid var(--gold); border-radius: 50%; place-items: center; color: var(--gold); font-family: Avenir, "Avenir Next", sans-serif; font-size: 1.3rem; font-weight: 500; line-height: 1; }
.feature-card-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.solution-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.solution-card {
  grid-column: span 2;
  min-height: 245px;
  padding: 30px;
  color: var(--ink);
  border: 1px solid var(--border);
  background: var(--white);
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}
.solution-card:nth-child(4) { grid-column: 2 / span 2; }
.solution-card:hover, .solution-card:focus-visible { transform: translateY(-5px); border-color: var(--teal); box-shadow: var(--shadow); }
.solution-card > span { color: var(--gold); font-size: 0.76rem; font-weight: 800; }
.solution-card h3 { margin: 24px 0 44px; }
.solution-card strong { color: var(--teal-dark); font-size: 0.85rem; }

.gallery-section { color: var(--white); background: var(--ink); }
.gallery-section h2 { max-width: 720px; margin-bottom: 45px; }
.photo-grid { display: grid; grid-template-columns: 1.35fr 0.65fr; grid-template-rows: 245px 245px; gap: 16px; }
.photo-grid figure { margin: 0; overflow: hidden; }
.photo-grid .photo-large { grid-row: span 2; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms ease; }
.photo-grid figure:hover img { transform: scale(1.03); }

.amenities-layout { align-items: start; }
.amenities-layout > div > p:last-child { max-width: 520px; margin-top: 24px; color: var(--ink-soft); }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px 26px; padding: 0; margin: 4px 0 0; list-style: none; }
.check-grid li { position: relative; padding: 13px 0 13px 28px; border-bottom: 1px solid var(--border); }
.check-grid li::before { position: absolute; left: 0; color: var(--teal-dark); font-weight: 900; content: "✓"; }

.media-split { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(45px, 8vw, 100px); align-items: center; }
.media-split-reverse { grid-template-columns: 0.92fr 1.08fr; }
.media-split > img:not(.object-contain) { width: 100%; height: min(600px, 65vw); object-fit: cover; box-shadow: var(--shadow); }
.media-split h2 { margin-bottom: 28px; }
.media-split p { color: var(--ink-soft); }
.media-split .button-row { margin-top: 30px; }
.object-contain { object-fit: contain; }
.pet-illustration { width: min(280px, 55%); margin: auto; filter: drop-shadow(0 18px 20px rgba(17,39,40,.13)); }

.contact-strip { padding-block: 78px; color: var(--white); background: var(--teal-dark); }
.contact-strip-inner { display: grid; grid-template-columns: 1fr auto; gap: 45px; align-items: center; }
.contact-strip h2 { max-width: 760px; font-size: clamp(2rem, 3vw, 3.3rem); }
.contact-strip p:last-child { max-width: 720px; margin-top: 16px; color: rgba(255,255,255,.78); }

.faq-layout { display: grid; grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr); gap: clamp(55px, 10vw, 130px); align-items: start; }
.faq-layout aside { position: sticky; top: 125px; }
.faq-layout aside > p:not(.eyebrow) { color: var(--ink-soft); margin-top: 22px; }
.faq-layout aside .button-row { margin-top: 27px; }
.faq-list > h2 { margin: 5px 0 24px; font-size: clamp(1.7rem, 2.5vw, 2.5rem); }
.faq-list > h2:not(:first-child) { margin-top: 55px; }
.faq-list details { border-top: 1px solid var(--border); }
.faq-list details:last-child { border-bottom: 1px solid var(--border); }
.faq-list summary { position: relative; padding: 22px 46px 22px 0; cursor: pointer; font-weight: 750; line-height: 1.4; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 4px; top: 19px; color: var(--teal-dark); font-size: 1.6rem; font-weight: 400; content: "+"; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 740px; padding: 0 48px 22px 0; color: var(--ink-soft); }
.faq-answer { max-width: 780px; padding: 0 48px 22px 0; color: var(--ink-soft); }
.faq-answer p { padding: 0 !important; }
.faq-list details a { color: var(--teal-dark); }

.contact-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(45px, 9vw, 120px); align-items: start; }
.contact-layout > div:first-child > p:not(.eyebrow) { margin-top: 23px; color: var(--ink-soft); }
.contact-cards { display: grid; gap: 14px; }
.contact-card { display: grid; grid-template-columns: 100px 1fr; gap: 7px 20px; padding: 25px 28px; border: 1px solid var(--border); color: var(--ink); text-decoration: none; }
a.contact-card:hover, a.contact-card:focus-visible { border-color: var(--teal); box-shadow: 0 12px 30px rgba(17,39,40,.08); }
.contact-card span { grid-row: span 2; color: var(--teal-dark); font-size: 0.74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-card strong { font-size: 1.08rem; line-height: 1.5; }
.contact-card small { color: var(--ink-soft); }
.centered-action { display: flex; justify-content: center; margin-top: 42px; }
.social-panel { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.contact-information { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-information > div { padding: 30px; border: 1px solid rgba(6,74,80,.15); background: rgba(255,255,255,.72); }
.contact-information .eyebrow { display: flex; width: 100%; margin-bottom: 18px; }
.contact-information a { display: block; color: var(--ink); font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; text-decoration: none; }
.notice-panel { max-width: 980px; padding: clamp(34px, 6vw, 70px); border-left: 5px solid var(--gold); background: var(--white); box-shadow: var(--shadow); }
.notice-panel h2 { max-width: 800px; margin-bottom: 24px; }
.notice-panel p { max-width: 860px; color: var(--ink-soft); }

.trust-intro { padding-block: 34px; color: var(--white); background: var(--teal-dark); }
.trust-intro-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 55px; align-items: center; }
.trust-intro h2 { font-size: clamp(1.65rem, 3vw, 2.65rem); }
.trust-intro p { margin: 0; color: rgba(255,255,255,.82); }
.service-choices > .shell > h2 { max-width: 760px; margin-bottom: 50px; }
.service-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-choice { display: grid; grid-template-rows: 320px 1fr; background: var(--white); box-shadow: var(--shadow); }
.service-choice-image { overflow: hidden; }
.service-choice-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-choice:hover .service-choice-image img { transform: scale(1.025); }
.service-choice-copy { padding: clamp(28px, 5vw, 50px); background: var(--white); }
.service-choice-copy > span { color: var(--gold); font-size: .8rem; font-weight: 800; letter-spacing: .15em; }
.service-choice-copy h3 { margin: 18px 0; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.service-choice-copy p { color: var(--ink-soft); }
.service-choice-copy .button { margin-top: 15px; }
.compact-choices .service-choice-copy { box-shadow: var(--shadow); }
.next-chapter { text-align: center; background: var(--cream); }
.centered-copy { max-width: 850px; }
.centered-copy .eyebrow { justify-content: center; }
.centered-copy > p:not(.eyebrow) { max-width: 760px; margin: 25px auto; color: var(--ink-soft); }
.centered-copy .button-row { justify-content: center; margin-top: 28px; }
.centered-copy small { display: block; max-width: 680px; margin: 22px auto 0; color: var(--ink-soft); }
.benefits { padding-block: 36px; color: var(--ink); background: var(--white); border-block: 1px solid var(--border); }
.benefit-row { display: grid; grid-template-columns: repeat(5, 1fr); }
.benefit { display: grid; place-items: center; gap: 9px; min-height: 105px; padding: 15px 20px; text-align: center; border-right: 1px solid var(--border); }
.benefit:last-child { border-right: 0; }
.benefit span { display: grid; place-items: center; width: 38px; height: 38px; color: var(--white); border-radius: 50%; background: var(--gold); font-weight: 800; }
.benefit strong { font-size: .82rem; letter-spacing: .035em; }
.section-lede { max-width: 800px; color: var(--ink-soft); font-size: 1.08rem; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 45px; }
.audience-grid article { padding: 28px; border-top: 4px solid var(--teal); background: var(--white); box-shadow: 0 12px 30px rgba(6,74,80,.07); }
.audience-grid h3 { margin-bottom: 12px; font-size: 1.5rem; }
.audience-grid p { color: var(--ink-soft); font-size: .95rem; }
.audience-icon { margin-bottom: 22px; }
.legal-note { margin-top: 32px; padding: 20px 24px; border-left: 4px solid var(--gold); background: var(--cream); }
.guest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 0; margin-top: 42px; list-style: none; }
.guest-grid li { position: relative; padding: 25px 20px 25px 48px; border: 1px solid var(--border); background: var(--white); font-weight: 700; }
.guest-grid li::before { position: absolute; left: 20px; color: var(--teal); content: "✓"; }
.footer-description { padding-block: 26px; border-top: 1px solid rgba(255,255,255,.14); }
.footer-description p { max-width: 1000px; margin: 0; font-size: .84rem; }
.footer-subheading { margin-top: 26px; }
.editorial-band, .veteran-feature { color: var(--white); background: var(--teal-dark); }
.editorial-band-grid, .veteran-feature-grid { display: grid; grid-template-columns: 1.12fr .88fr; min-height: 620px; }
.editorial-band-image, .veteran-feature-grid > img { min-height: 100%; }
.editorial-band-image img, .veteran-feature-grid > img { width: 100%; height: 100%; object-fit: cover; }
.editorial-band-copy, .veteran-feature-grid > div { display: flex; flex-direction: column; justify-content: center; padding: clamp(45px, 7vw, 90px); }
.editorial-band-copy h2, .veteran-feature-grid h2 { margin-bottom: 24px; font-size: clamp(2.3rem, 4.5vw, 4.6rem); }
.editorial-band-copy p:not(.eyebrow), .veteran-feature-grid p:not(.eyebrow) { color: rgba(255,255,255,.8); }
.editorial-band-copy .button, .veteran-feature-grid .button-row { margin-top: 24px; }
.veteran-feature { background: #173f42; }
.veteran-feature-grid { grid-template-columns: 1.1fr .9fr; }
.transition-support { background: linear-gradient(135deg, #f7f4ec 0%, #eef7f5 100%); }
.transition-support-heading { display: grid; grid-template-columns: .7fr 1.3fr; gap: 26px 70px; align-items: end; margin-bottom: 45px; }
.transition-support-heading .eyebrow { grid-column: 1 / -1; }
.transition-support-heading p:not(.eyebrow) { max-width: 560px; color: var(--ink-soft); }
.transition-support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.transition-support-card { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: clamp(30px, 4vw, 48px); border: 1px solid rgba(6,74,80,.12); background: rgba(255,255,255,.84); box-shadow: 0 22px 55px rgba(17,39,40,.08); }
.transition-support-card h3 { margin: 14px 0 18px; font-size: clamp(1.55rem, 2.7vw, 2.35rem); }
.transition-support-card p:last-child { color: var(--ink-soft); }
.transition-support-icon { display: grid; width: 54px; height: 54px; border-radius: 50%; place-items: center; color: var(--white); background: var(--teal-dark); font-size: 1.45rem; box-shadow: inset 0 0 0 5px rgba(255,255,255,.12); }
.transition-support .legal-note { margin-top: 28px; }
.belief-section { text-align: center; background: var(--white); }
.belief-section > .shell > h2 { max-width: 760px; margin: 0 auto 50px; }
.belief-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-block: 1px solid var(--border); }
.belief-grid article { padding: 34px 20px; border-right: 1px solid var(--border); }
.belief-grid article:last-child { border-right: 0; }
.belief-grid .line-icon { margin-bottom: 18px; }
.belief-grid h3 { margin-bottom: 10px; font-size: 1.45rem; }
.belief-grid p { color: var(--ink-soft); font-size: .88rem; line-height: 1.55; }
.site-partners { background: var(--cream); text-align: center; }
.site-partners h2 { max-width: 850px; margin: 0 auto 45px; }
.partner-icon-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.partner-icon-grid > div { display: grid; min-height: 145px; padding: 20px 12px; border: 1px solid rgba(6,74,80,.12); place-items: center; align-content: center; gap: 13px; background: rgba(255,255,255,.72); }
.partner-icon-grid > div:nth-child(7) { grid-column: 2; }
.partner-icon-grid strong { font-size: .82rem; line-height: 1.35; }
.faq-solution-guide { padding-block: clamp(58px, 8vw, 90px); text-align: center; background: var(--mist); }
.faq-solution-guide h2 { margin-bottom: 42px; }
.faq-solution-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: center; text-align: left; }
.faq-solution-grid > a { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; padding: 30px; border: 1px solid rgba(6,74,80,.13); background: rgba(255,255,255,.72); text-decoration: none; }
.faq-solution-grid > a:hover, .faq-solution-grid > a:focus-visible { border-color: var(--gold); background: var(--white); }
.faq-solution-grid h3 { margin-bottom: 8px; }
.faq-solution-grid p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.faq-guide-divider { display: grid; width: 52px; height: 52px; border: 1px solid var(--gold); border-radius: 50%; place-items: center; color: var(--gold); }
.process-section { background: var(--ivory); }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 48px; border-block: 1px solid var(--border); }
.process-list > div { padding: clamp(28px, 4vw, 48px); border-right: 1px solid var(--border); }
.process-list > div:last-child { border-right: 0; }
.process-list span { color: var(--gold); font-size: .8rem; font-weight: 800; letter-spacing: .16em; }
.process-list h3 { margin: 18px 0 12px; }
.process-list p { color: var(--ink-soft); font-size: .95rem; }
.room-options-band { padding-block: 0; background: var(--white); }
.room-options-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.room-options-grid > img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.room-options-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(45px, 7vw, 90px); }
.room-options-copy h2 { margin-bottom: 24px; }
.room-options-copy p { color: var(--ink-soft); }

/* Private Home Care draft */
.hc-masthead { color: var(--white); background: #083f43; }
.hc-masthead-inner { display: flex; min-height: 74px; align-items: center; justify-content: space-between; gap: 24px; }
.hc-masthead strong { font-family: "Iowan Old Style", Georgia, serif; font-size: 1.35rem; font-weight: 500; }
.hc-masthead nav { display: flex; align-items: center; gap: 26px; }
.hc-masthead nav a { color: rgba(255,255,255,.78); font-size: .77rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.hc-masthead nav a:hover, .hc-masthead nav a:focus-visible { color: var(--white); }
.hc-masthead .button { padding: 12px 18px; }
.hc-hero { overflow: hidden; background: #f7f3ea; }
.hc-hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 670px; }
.hc-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 7vw, 100px) clamp(38px, 6vw, 80px) clamp(60px, 7vw, 100px) 0; }
.hc-hero-copy h1 { max-width: 660px; font-size: clamp(3.4rem, 6.5vw, 6rem); }
.hc-hero-copy > p:not(.eyebrow) { max-width: 610px; margin: 26px 0 32px; color: var(--ink-soft); font-size: 1.13rem; }
.hc-hero-image { margin-right: calc((100vw - 100%) / -2); }
.hc-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hc-values { padding-block: 26px; border-block: 1px solid var(--border); background: var(--white); }
.hc-values > .shell { display: grid; grid-template-columns: repeat(4, 1fr); }
.hc-values > .shell > div { display: flex; min-height: 86px; align-items: center; justify-content: center; gap: 15px; border-right: 1px solid var(--border); }
.hc-values > .shell > div:last-child { border-right: 0; }
.hc-approach { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 125px); align-items: start; }
.hc-approach > div:last-child > p { color: var(--ink-soft); font-size: 1.05rem; }
.hc-approach-note { display: flex; margin-top: 30px; padding: 22px; align-items: center; gap: 18px; border: 1px solid rgba(6,74,80,.12); background: var(--cream); }
.hc-life .split-heading { margin-bottom: 46px; }
.hc-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.hc-gallery figure { margin: 0; background: var(--white); box-shadow: 0 16px 38px rgba(17,39,40,.08); }
.hc-gallery img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.hc-gallery figcaption { display: grid; grid-template-columns: auto 1fr; gap: 7px 18px; padding: 28px; align-items: center; }
.hc-gallery figcaption .line-icon { grid-row: span 2; }
.hc-gallery figcaption strong { font-family: "Iowan Old Style", Georgia, serif; font-size: 1.45rem; font-weight: 500; }
.hc-gallery figcaption p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.hc-services { background: var(--ivory); }
.hc-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.hc-service-grid article { min-height: 330px; padding: 34px; border: 1px solid rgba(6,74,80,.12); background: var(--white); }
.hc-service-grid article > div { display: flex; align-items: center; justify-content: space-between; }
.hc-service-grid article > div > span:last-child { color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .14em; }
.hc-service-grid h3 { margin: 28px 0 16px; }
.hc-service-grid p { color: var(--ink-soft); font-size: .94rem; }
.hc-audience-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; margin-top: 46px; }
.hc-audience-grid article { padding: 28px 22px; text-align: center; border: 1px solid rgba(6,74,80,.12); background: rgba(255,255,255,.72); }
.hc-audience-grid .line-icon { margin-bottom: 20px; }
.hc-audience-grid h3 { margin-bottom: 12px; font-size: 1.35rem; }
.hc-audience-grid p { color: var(--ink-soft); font-size: .86rem; }
.hc-partners { padding-block: clamp(75px, 9vw, 115px); color: var(--white); background: #083f43; }
.hc-partners-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.hc-partners h2 { margin-bottom: 24px; }
.hc-partners p:not(.eyebrow) { color: rgba(255,255,255,.76); }
.hc-partner-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hc-partner-list > div { display: flex; min-height: 86px; padding: 17px; align-items: center; gap: 15px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05); }
.hc-partner-list .line-icon { width: 42px; height: 42px; }
.hc-partner-list strong { font-size: .9rem; }
.hc-promise { text-align: center; }
.hc-promise > .shell > h2, .hc-promise > .shell > .section-lede { margin-inline: auto; }
.hc-promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.hc-promise-grid article { position: relative; min-height: 300px; padding: 38px; border-top: 4px solid var(--gold); background: var(--cream); }
.hc-promise-grid small { position: absolute; top: 24px; right: 28px; color: var(--gold); font-weight: 800; letter-spacing: .12em; }
.hc-promise-grid h3 { margin: 25px 0 15px; }
.hc-promise-grid p { color: var(--ink-soft); }
.hc-final-cta { padding-block: 70px; color: var(--white); background: linear-gradient(120deg, rgba(8,63,67,.98), rgba(15,107,112,.92)); }
.hc-final-cta > .shell { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.hc-final-cta h2 { margin-bottom: 12px; }
.hc-final-cta p:not(.eyebrow) { max-width: 700px; margin: 0; color: rgba(255,255,255,.78); }
.hc-final-cta > .shell > .line-icon { width: 62px; height: 62px; }

.site-footer { padding-top: 78px; color: rgba(255,255,255,.78); background: #0b2021; }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr .75fr; gap: 55px; padding-bottom: 65px; }
.footer-logo { width: 175px; height: auto; margin-bottom: 20px; }
.footer-grid h2 { margin-bottom: 20px; color: var(--white); font-family: inherit; font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid a { display: block; margin-bottom: 9px; color: rgba(255,255,255,.8); text-decoration: none; }
.footer-grid a:hover, .footer-grid a:focus-visible { color: #7ee0e3; }
.footer-grid p { max-width: 310px; font-size: .93rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.14); font-size: .78rem; }
.footer-bottom p { margin: 0; }

:focus-visible { outline: 3px solid #f4bd43; outline-offset: 4px; }

@media (max-width: 920px) {
  :root { --shell: min(100% - 32px, 760px); }
  .nav-toggle { display: grid; place-content: center; gap: 5px; width: 46px; height: 46px; padding: 0; border: 0; border-radius: 50%; color: var(--white); background: var(--ink); }
  .nav-toggle > span:not(.sr-only) { display: block; width: 19px; height: 2px; background: currentColor; }
  .primary-nav { position: fixed; inset: 87px 0 auto; display: none; align-items: stretch; gap: 0; height: calc(100svh - 87px); padding: 35px 20px; background: var(--white); }
  .primary-nav.is-open { display: flex; flex-direction: column; }
  .primary-nav a { padding: 16px; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .nav-group summary { padding: 16px; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .nav-dropdown { position: static; width: 100%; padding: 0 0 0 15px; border: 0; box-shadow: none; }
  .nav-dropdown a { font-size: .84rem; }
  .primary-nav .header-contact { margin-top: 15px; text-align: center; }
  .home-hero { min-height: 680px; }
  .home-hero-overlay, .page-hero-overlay { background: linear-gradient(0deg, rgba(8,28,29,.93) 0%, rgba(8,28,29,.52) 70%, rgba(8,28,29,.25) 100%); }
  .two-column, .split-heading, .media-split, .media-split-reverse, .contact-layout, .faq-layout { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .solution-card, .solution-card:nth-child(4) { grid-column: auto; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 330px 220px; }
  .photo-grid .photo-large { grid-column: span 2; grid-row: auto; }
  .media-split > img:not(.object-contain) { height: min(540px, 100vw); }
  .media-split-reverse > img { order: -1; }
  .contact-strip-inner { grid-template-columns: 1fr; }
  .faq-layout aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-intro-inner, .service-choice-grid { grid-template-columns: 1fr; }
  .benefit-row { grid-template-columns: repeat(2, 1fr); }
  .benefit { border-bottom: 1px solid var(--border); }
  .benefit:last-child { grid-column: 1 / -1; }
  .audience-grid, .guest-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-information { grid-template-columns: 1fr; }
  .editorial-band-grid, .veteran-feature-grid, .room-options-grid, .transition-support-heading, .transition-support-grid { grid-template-columns: 1fr; }
  .transition-support-heading .eyebrow { grid-column: auto; }
  .editorial-band-image, .veteran-feature-grid > img, .room-options-grid > img { min-height: 420px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list > div { border-right: 0; border-bottom: 1px solid var(--border); }
  .process-list > div:last-child { border-bottom: 0; }
  .belief-grid { grid-template-columns: repeat(2, 1fr); }
  .belief-grid article { border-bottom: 1px solid var(--border); }
  .belief-grid article:nth-child(2n) { border-right: 0; }
  .belief-grid article:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .partner-icon-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-icon-grid > div:nth-child(7) { grid-column: auto; }
  .partner-icon-grid > div:last-child { grid-column: auto; }
  .faq-solution-grid { grid-template-columns: 1fr; }
  .faq-guide-divider { display: none; }
  .hc-masthead nav { display: none; }
  .hc-hero-grid, .hc-approach, .hc-partners-grid { grid-template-columns: 1fr; }
  .hc-hero-copy { padding: 70px 0 55px; }
  .hc-hero-image { height: 520px; margin: 0; }
  .hc-values > .shell { grid-template-columns: 1fr 1fr; }
  .hc-values > .shell > div:nth-child(2) { border-right: 0; }
  .hc-values > .shell > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .hc-gallery { grid-template-columns: 1fr; }
  .hc-service-grid { grid-template-columns: 1fr 1fr; }
  .hc-audience-grid { grid-template-columns: 1fr 1fr; }
  .hc-promise-grid { grid-template-columns: 1fr; }
  .hc-promise-grid article { min-height: 0; }
  .hc-final-cta > .shell { grid-template-columns: auto 1fr; }
  .hc-final-cta .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .header-inner { min-height: 76px; }
  .brand img { width: 142px; }
  .primary-nav { inset: 77px 0 auto; height: calc(100svh - 77px); }
  .home-hero { min-height: 650px; }
  .home-hero-content { padding-block: 110px 62px; }
  .home-hero-content h1, .page-hero-content h1 { font-size: clamp(2.75rem, 14vw, 4.2rem); }
  .page-hero { min-height: 520px; }
  .page-hero-content { padding-block: 110px 55px; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 210px; }
  .photo-grid { display: block; }
  .photo-grid figure { height: 260px; margin-bottom: 13px; }
  .check-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-card span { grid-row: auto; }
  .social-panel { align-items: stretch; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .benefit-row, .audience-grid, .guest-grid { grid-template-columns: 1fr; }
  .benefit, .benefit:last-child { grid-column: auto; border-right: 0; }
  .service-choice { grid-template-rows: 240px 1fr; }
  .belief-grid, .partner-icon-grid, .hc-values > .shell, .hc-service-grid, .hc-audience-grid, .hc-partner-list { grid-template-columns: 1fr; }
  .belief-grid article, .belief-grid article:nth-child(2n), .belief-grid article:last-child { grid-column: auto; border-right: 0; }
  .partner-icon-grid > div { min-height: 115px; }
  .faq-solution-grid > a { grid-template-columns: 1fr; text-align: center; }
  .faq-solution-grid .line-icon { margin-inline: auto; }
  .hc-masthead-inner strong { font-size: 1.12rem; }
  .hc-masthead .button { width: auto; }
  .hc-hero-image { height: 360px; }
  .hc-values > .shell > div { border-right: 0; border-bottom: 1px solid var(--border); }
  .hc-values > .shell > div:last-child { border-bottom: 0; }
  .hc-gallery figcaption { grid-template-columns: 1fr; }
  .hc-gallery figcaption .line-icon { grid-row: auto; }
  .hc-final-cta > .shell { grid-template-columns: 1fr; text-align: center; }
  .hc-final-cta > .shell > .line-icon { margin-inline: auto; }
  .hc-final-cta .button { grid-column: auto; justify-self: stretch; }
}

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