:root {
  --ink: #18202b;
  --muted: #5e6875;
  --cream: #f7f1e8;
  --soft-gold: #fbf7eb;
  --paper: #fffdfa;
  --sage: #6f8f84;
  --sage-dark: #365d56;
  --brand-blue: #123b66;
  --brand-blue-dark: #0b2f55;
  --gold: #8a621f;
  --gold-dark: #704b12;
  --line: #e5ded3;
  --shadow: 0 20px 60px rgba(24, 32, 43, 0.12);
}

/* Launch-ready staff, owner, employee resource, and form privacy components */
.staff-leadership-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin: 2.5rem 0 4rem;
}

.staff-owner-photo {
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.staff-owner-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.staff-owner-copy h2 { margin: 0.35rem 0 0.25rem; }
.staff-owner-copy > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.82); }
.staff-owner-title { color: #f1ca7a !important; font-weight: 800; margin-bottom: 1.5rem; }

.staff-community-photo {
  margin: 0 0 2rem;
  overflow: hidden;
  border-radius: 28px;
  background: #081f36;
}

.staff-community-photo img {
  display: block;
  width: 100%;
  height: clamp(180px, 32vw, 420px);
  object-fit: cover;
  object-position: center top;
}

.staff-community-photo figcaption { padding: 1rem 1.25rem; color: white; font-weight: 700; }

.staff-role-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.staff-role-card { padding: 1.5rem; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 20px; background: rgba(255, 255, 255, 0.08); }
.staff-role-card > span { color: #f1ca7a; font-weight: 900; }
.staff-role-card h3 { margin: 0.75rem 0 0.5rem; }
.staff-role-card p { color: rgba(255, 255, 255, 0.76); }

.owner-community-band { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; padding: 0 clamp(1.25rem, 5vw, 5rem) 5rem; background: var(--cream); }
.owner-community-band div { padding: 1.5rem; border-radius: 18px; background: white; text-align: center; box-shadow: 0 12px 30px rgba(18, 59, 102, 0.08); }
.owner-community-band strong, .owner-community-band span { display: block; }
.owner-community-band strong { color: var(--gold-dark); font-size: 1.6rem; margin-bottom: 0.4rem; }

.employee-resources-band { padding: clamp(4rem, 8vw, 7rem) 1.25rem; background: var(--cream); }
.employee-resources-card { max-width: 780px; margin: 0 auto; padding: clamp(2rem, 5vw, 4rem); border-radius: 28px; background: white; box-shadow: 0 24px 60px rgba(18, 59, 102, 0.12); }
.employee-resource-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
.employee-resource-note, .form-privacy { color: #536578; font-size: 0.86rem; line-height: 1.55; }
.referral-consent { display: flex; align-items: flex-start; gap: 0.65rem; margin: 1rem 0; font-size: 0.92rem; }
.referral-consent input { width: auto; margin-top: 0.2rem; }

@media (max-width: 820px) {
  .staff-leadership-grid,
  .staff-role-grid,
  .owner-community-band { grid-template-columns: 1fr; }
  .staff-owner-photo,
  .staff-owner-photo img { min-height: 380px; }
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
}

.skip-link:focus {
  top: 12px;
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 8px 20px;
  color: white;
  background: var(--brand-blue-dark);
  font-size: 14px;
}

.top-strip a {
  font-weight: 800;
  text-decoration: none;
}

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 253, 250, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 178px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--gold-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 850;
  text-decoration: none;
  border: 1px solid transparent;
  line-height: 1.1;
  cursor: pointer;
}

.nav-cta,
.button.primary {
  color: white;
  background: var(--gold);
}

.button.secondary {
  color: var(--brand-blue);
  background: #f3f8fb;
  border-color: #d6e6ee;
}

.button:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.blog-live-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0;
  border: 1px solid #d9e1e7;
  border-radius: 6px;
  color: var(--brand-blue);
  background: white;
  cursor: pointer;
}

.blog-live-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.blog-live-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.blog-live-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.blog-live-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.blog-live-header {
  position: relative;
  z-index: 12;
  background: white;
}

.blog-live-topbar {
  background: #1b4d7a;
  color: white;
  font-size: 14px;
}

.blog-live-topbar-inner {
  display: flex;
  width: min(100%, 1280px);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 16px;
}

.blog-live-contact,
.blog-live-social,
.blog-live-links {
  display: flex;
  align-items: center;
}

.blog-live-contact {
  flex-wrap: wrap;
  gap: 16px;
}

.blog-live-contact a,
.blog-live-social a,
.blog-live-links a {
  text-decoration: none;
}

.blog-live-contact a:first-of-type {
  font-weight: 800;
}

.blog-live-contact a:hover,
.blog-live-social a:hover,
.blog-live-links a:hover {
  color: #c5963a;
}

.blog-live-social {
  gap: 12px;
}

.blog-live-social svg {
  width: 20px;
  height: 20px;
}

.blog-live-nav {
  position: sticky;
  top: 0;
  display: flex;
  width: min(100%, 1280px);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 16px;
  background: white;
  box-shadow: 0 4px 14px rgba(24, 32, 43, 0.1);
}

.blog-live-brand img {
  width: auto;
  height: 56px;
}

.blog-live-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
}

.blog-live-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 12px 32px;
  color: white !important;
  background: #c5963a;
  font-weight: 800;
  transition: background 0.3s ease;
}

.blog-live-cta:hover {
  background: #d4a94e;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  background: #0d1d22;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 29, 34, 0.88), rgba(13, 29, 34, 0.6) 42%, rgba(13, 29, 34, 0.18));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 96px clamp(20px, 6vw, 86px) 260px;
  color: white;
}

.hero h1,
.inner-hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
}

.hero p,
.inner-hero p {
  max-width: 650px;
  font-size: 19px;
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.care-finder {
  position: absolute;
  left: clamp(20px, 6vw, 86px);
  right: clamp(20px, 6vw, 86px);
  bottom: 44px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 18px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.97);
  box-shadow: var(--shadow);
}

.care-finder h2 {
  margin: 0 6px 7px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.finder-grid,
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d7d0c8;
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: white;
  font: inherit;
}

textarea {
  resize: vertical;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.signal-strip div {
  padding: 24px clamp(18px, 4vw, 40px);
  background: var(--cream);
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  font-size: 20px;
}

.signal-strip span {
  margin-top: 5px;
  color: var(--muted);
}

.content-section {
  padding: 80px clamp(20px, 6vw, 86px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-copy h2,
.assessment-cta h2,
.lead-form h2,
.mini-form h2,
.contact-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-heading p,
.split-copy p,
.wide-copy,
.lead-form p,
.contact-card p,
.resource-grid p,
.staff-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-grid li,
.resource-grid article,
.staff-grid article,
.contact-card,
.lead-form,
.mini-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 34px rgba(24, 32, 43, 0.06);
}

.process-grid li {
  padding: 22px;
}

.process-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--brand-blue);
  font-weight: 900;
}

h3 {
  margin: 18px 0 8px;
  font-size: 21px;
}

.process-grid p,
.service-card p,
.review-card p {
  color: var(--muted);
  line-height: 1.6;
}

.how-band {
  position: relative;
  padding: 86px clamp(20px, 6vw, 86px);
  overflow: hidden;
  color: white;
  background:
    linear-gradient(120deg, rgba(11, 47, 85, 0.98), rgba(18, 59, 102, 0.93)),
    url("/assets/images/heritage-hero-inner.jpg") center / cover;
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.how-copy {
  max-width: 580px;
}

.how-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1.04;
  letter-spacing: 0;
}

.how-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.how-copy .button {
  margin-top: 14px;
}

.process-panel {
  padding: 30px 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 253, 250, 0.97);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.process-flow {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-flow::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 34px;
  bottom: 34px;
  width: 2px;
  background: #eadfca;
}

.process-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: auto;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.process-flow li:last-child {
  border-bottom: 0;
}

.process-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--gold);
  font-size: 16px;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(196, 152, 79, 0.32);
}

.process-flow h3 {
  margin: 3px 0 6px;
  color: var(--brand-blue);
}

.process-flow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.staff-grid article {
  padding: 24px;
}

.trust-band {
  padding: 92px clamp(20px, 6vw, 86px);
  background:
    linear-gradient(180deg, #fffdfa 0%, #f3f8fb 100%);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
  margin-bottom: 26px;
}

.trust-copy {
  max-width: 780px;
}

.trust-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.trust-copy p:not(.eyebrow) {
  max-width: 670px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.trust-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 28px;
}

.trust-stat {
  padding: 18px;
  border: 1px solid #d7e5ec;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(18, 59, 102, 0.08);
}

.trust-stat strong {
  display: block;
  color: var(--brand-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1;
}

.trust-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.trust-photo-card {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--brand-blue);
  box-shadow: var(--shadow);
}

.trust-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.trust-photo-card.owner-client-photo img {
  object-position: center top;
}

.trust-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 47, 85, 0) 45%, rgba(11, 47, 85, 0.78));
}

.trust-photo-card figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: white;
  background: rgba(11, 47, 85, 0.76);
  font-weight: 900;
}

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

.trust-feature-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 42px rgba(24, 32, 43, 0.08);
}

.trust-feature-card:first-child {
  color: white;
  border-color: rgba(18, 59, 102, 0.42);
  border-top-color: var(--gold);
  background:
    linear-gradient(145deg, var(--brand-blue), var(--brand-blue-dark));
}

.trust-feature-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--brand-blue);
  font-size: 13px;
  font-weight: 950;
}

.trust-feature-card:first-child span {
  color: var(--brand-blue);
  background: white;
}

.trust-feature-card h3 {
  margin: 28px 0 12px;
  color: var(--brand-blue);
  font-size: 23px;
  line-height: 1.18;
}

.trust-feature-card:first-child h3 {
  color: white;
}

.trust-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.trust-feature-card:first-child p,
.trust-feature-card:first-child small {
  color: rgba(255, 255, 255, 0.78);
}

.trust-feature-card small {
  display: block;
  margin-top: auto;
  padding-top: 20px;
  color: var(--gold-dark);
  font-weight: 950;
  text-transform: uppercase;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 84px clamp(20px, 6vw, 86px);
  background: var(--sage-dark);
  color: white;
}

.split-band p {
  color: rgba(255, 255, 255, 0.78);
}

.split-band img,
.split-band video {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nate-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: #d7e3ea;
  box-shadow: var(--shadow);
}

.nate-image-frame img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  border-radius: 0;
  box-shadow: none;
}

.video-band {
  background: #2b3240;
}

.video-band .split-copy {
  max-width: 650px;
}

.planning-cards {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.planning-cards article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.planning-cards span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--gold);
  font-size: 13px;
  font-weight: 950;
}

.planning-cards strong {
  display: block;
  grid-column: 2;
  color: white;
  font-size: 18px;
}

.planning-cards p {
  grid-column: 2;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.condition-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.condition-grid a {
  border: 1px solid #d8e5df;
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--sage-dark);
  background: #f2f7f4;
  font-weight: 800;
  text-decoration: none;
}

.care-needs-band {
  padding: 90px clamp(20px, 6vw, 86px);
  background: linear-gradient(180deg, #fffdfa 0%, #f4f8eb 100%);
}

.care-needs-footer {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.reviews-band {
  padding: 80px clamp(20px, 6vw, 86px);
  overflow: hidden;
  background: var(--paper);
}

.review-ticker {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 18px;
}

.review-ticker::before,
.review-ticker::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
}

.review-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(255, 253, 250, 0));
}

.review-ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(255, 253, 250, 0));
}

.review-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: review-scroll 46s linear infinite;
}

.review-track:hover {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .review-track,
  .service-review-track {
    animation: none;
    transform: none;
  }
}

.review-card {
  flex: 0 0 380px;
  min-height: 270px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fbf7f0;
  box-shadow: 0 12px 28px rgba(24, 32, 43, 0.07);
}

.stars {
  color: #e0a100;
  font-size: 18px;
}

.review-card p {
  min-height: 120px;
  font-style: italic;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-person span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--brand-blue);
  font-weight: 900;
}

.review-person strong,
.review-person small {
  display: block;
}

.review-person strong {
  color: var(--brand-blue);
}

.review-person small {
  color: var(--muted);
}

@keyframes review-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 12px));
  }
}

.faq-band {
  padding: 90px clamp(20px, 6vw, 86px);
  background: linear-gradient(180deg, #fffdfa, #f7f1e8);
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: 0;
}

.faq-intro p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.faq-helper-card {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid #d6e6ee;
  border-radius: 8px;
  background: #f3f8fb;
}

.faq-helper-card strong {
  display: block;
  color: var(--brand-blue);
  font-size: 18px;
}

.faq-helper-card p {
  margin: 8px 0 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(24, 32, 43, 0.06);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 32px;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 18px 22px;
  color: var(--ink);
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--brand-blue);
  font-size: 13px;
  font-weight: 950;
}

.faq-list summary::after {
  content: "+";
  grid-column: 3;
  justify-self: end;
  color: var(--gold-dark);
  font-size: 28px;
  line-height: 1;
}

.faq-list details[open] summary {
  color: var(--brand-blue);
  border-bottom: 1px solid var(--line);
  background: var(--soft-gold);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 18px 24px 22px 84px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.appointment-band {
  padding: 86px clamp(20px, 6vw, 86px);
  background:
    linear-gradient(180deg, #fffdfa 0%, #f4f8eb 100%);
}

.appointment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.appointment-copy h2,
.appointment-next-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

.appointment-copy > p:not(.eyebrow),
.appointment-next-band .section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.appointment-story-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid #dce8d2;
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 36px rgba(24, 32, 43, 0.08);
}

.appointment-story-card img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  object-position: center center;
}

.appointment-story-card div {
  padding: 20px 22px 20px 0;
}

.appointment-story-card strong {
  display: block;
  color: var(--brand-blue);
  font-size: 20px;
}

.appointment-story-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.appointment-form-card .lead-form {
  position: sticky;
  top: 120px;
  border-color: #d7e5ec;
  box-shadow: 0 24px 60px rgba(18, 59, 102, 0.11);
}

.appointment-next-band {
  padding: 86px clamp(20px, 6vw, 86px);
  background: var(--paper);
}

.appointment-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.appointment-next-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 36px rgba(24, 32, 43, 0.07);
}

.appointment-next-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--brand-blue);
  font-size: 13px;
  font-weight: 950;
}

.appointment-next-grid h3 {
  color: var(--brand-blue);
  line-height: 1.2;
}

.appointment-next-grid p,
.appointment-help-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.appointment-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.appointment-help-grid article {
  padding: 22px;
  border-radius: 8px;
  background: #f3f8fb;
}

.appointment-help-grid strong {
  color: var(--brand-blue);
  font-size: 18px;
}

.appointment-help-grid a {
  color: var(--gold-dark);
  font-weight: 950;
  text-decoration: none;
}

.inner-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: 72px clamp(20px, 6vw, 86px);
  background: var(--cream);
}

.inner-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.careers-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 42px;
  min-height: 520px;
  overflow: hidden;
  padding: 74px clamp(20px, 6vw, 86px);
  color: white;
  background:
    linear-gradient(120deg, rgba(18, 59, 102, 0.98), rgba(11, 47, 85, 0.98)),
    url("/assets/images/hero-careers-new.jpg") center / cover;
}

.career-hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 820px;
}

.breadcrumbs {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
  font-weight: 800;
}

.breadcrumbs a {
  color: white;
  text-decoration: none;
}

.breadcrumbs span {
  color: var(--gold);
}

.breadcrumbs span::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 18px;
  margin-right: 14px;
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.42);
}

.careers-hero h1 {
  margin: 0 0 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1.02;
}

.career-starter {
  max-width: 760px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.career-starter h2 {
  margin: 0 0 4px;
  font-size: 20px;
}

.career-starter p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.72);
}

.career-starter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.career-starter label {
  color: white;
}

.career-starter label span {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  border-radius: 50%;
  color: white;
  background: #2d8a65;
}

.career-starter select {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}

.career-starter select option {
  color: var(--ink);
}

.career-hero-image {
  position: absolute;
  right: clamp(22px, 4vw, 86px);
  top: 50%;
  width: clamp(380px, 28vw, 560px);
  height: clamp(380px, 28vw, 560px);
  overflow: hidden;
  border-radius: 50%;
  transform: translateY(-50%);
  border: 10px solid rgba(196, 152, 79, 0.24);
}

.career-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

body.modal-open {
  overflow: hidden;
}

.careers-benefits-band {
  padding: 92px clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 12% 14%, rgba(196, 152, 79, 0.12), transparent 30%),
    linear-gradient(180deg, var(--paper) 0%, #f7faef 100%);
}

.careers-benefits-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  margin-bottom: 38px;
}

.careers-benefits-intro h2,
.careers-purpose-band h2,
.career-modal-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.careers-benefits-intro p:last-child,
.careers-purpose-band p,
.career-modal-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.careers-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 18px;
}

.careers-benefit-grid article {
  min-height: 270px;
  padding: 24px;
  border: 1px solid #dce8d2;
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 38px rgba(24, 32, 43, 0.08);
}

.careers-benefit-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 950;
}

.careers-benefit-grid h3 {
  margin: 0 0 14px;
  color: var(--brand-blue);
  font-size: 22px;
  line-height: 1.15;
}

.careers-benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.careers-purpose-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 86px clamp(20px, 6vw, 86px);
  background: var(--paper);
}

.careers-purpose-band figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.careers-purpose-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.careers-purpose-band .button {
  margin-top: 22px;
}

.career-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
}

.career-modal[hidden] {
  display: none;
}

.career-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 21, 34, 0.72);
}

.career-modal-panel {
  position: relative;
  width: min(100%, 920px);
  max-height: min(88vh, 940px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 10% 0%, rgba(196, 152, 79, 0.14), transparent 26%),
    var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.career-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand-blue);
  background: white;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.career-modal-close:hover {
  color: white;
  background: var(--brand-blue);
}

.career-modal-intro {
  max-width: 680px;
  margin-bottom: 24px;
  padding-right: 46px;
}

.career-modal-intro h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.career-modal .career-form {
  box-shadow: 0 14px 34px rgba(24, 32, 43, 0.08);
}

.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.contact-page-band {
  padding: 84px clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 14% 18%, rgba(196, 152, 79, 0.12), transparent 30%),
    linear-gradient(180deg, var(--paper) 0%, var(--soft-gold) 100%);
}

.contact-page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.contact-intro-panel h2,
.contact-guidance-band h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-intro-panel > p:not(.eyebrow),
.contact-form-intro p:not(.eyebrow),
.contact-guidance-band .section-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-method-grid {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-method {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(24, 32, 43, 0.06);
  text-decoration: none;
}

.contact-method-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  grid-row: span 3;
  place-items: center;
  border-radius: 8px;
  color: var(--brand-blue);
  background: #eef5f2;
}

.contact-method-icon svg {
  width: 22px;
  height: 22px;
}

.contact-method strong,
.contact-guidance-grid h3 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.contact-method span:not(.contact-method-icon) {
  color: var(--brand-blue);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-method small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.contact-form-panel {
  display: grid;
  gap: 18px;
}

.contact-form-intro {
  padding: 24px 24px 0;
}

.contact-form-panel .lead-form {
  border-color: rgba(196, 152, 79, 0.32);
  box-shadow: 0 24px 60px rgba(24, 32, 43, 0.1);
}

.contact-form-panel .lead-form h2 {
  color: var(--brand-blue);
}

.contact-guidance-band {
  padding: 84px clamp(20px, 6vw, 86px);
  background: var(--paper);
}

.contact-guidance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-guidance-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 40px rgba(24, 32, 43, 0.06);
}

.contact-guidance-grid span {
  display: inline-flex;
  min-width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: white;
  background: var(--sage);
  font-weight: 900;
}

.contact-guidance-grid h3 {
  margin: 0;
}

.contact-guidance-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.staff-showcase-band {
  padding: 90px clamp(20px, 6vw, 86px);
  color: white;
  background:
    linear-gradient(145deg, rgba(11, 47, 85, 0.98), rgba(24, 32, 43, 0.98)),
    url("/assets/images/home-care-hero.jpg") center / cover;
}

.staff-showcase-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 42px;
}

.staff-showcase-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.staff-showcase-intro p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.72;
}

.staff-portrait-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(190px, 18vw, 280px);
  gap: 16px;
  min-width: 0;
}

.staff-member-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  isolation: isolate;
}

.staff-member-card.owner {
  grid-column: span 2;
  grid-row: span 2;
}

.staff-member-card.tall {
  grid-column: span 1;
  grid-row: span 2;
}

.staff-member-card.wide {
  grid-column: span 2;
  grid-row: span 1;
}

.staff-member-card.standard {
  grid-column: span 1;
  grid-row: span 1;
}

.staff-member-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(0.96) brightness(0.56);
  transform: scale(1.02);
  transition: filter 260ms ease, transform 260ms ease;
}

.staff-member-card.owner img {
  object-position: center top;
}

.staff-member-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 47, 85, 0) 38%, rgba(7, 30, 56, 0.94) 100%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.staff-member-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: clamp(16px, 2vw, 26px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 200ms ease, transform 240ms ease;
}

.staff-member-overlay h3 {
  margin: 0;
  color: white;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.1;
}

.staff-member-overlay p {
  margin: 0;
  color: #f2d18a;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.staff-member-card:hover img,
.staff-member-card:focus img,
.staff-member-card:focus-visible img {
  filter: grayscale(0) contrast(1) brightness(0.96);
  transform: scale(1.06);
}

.staff-member-card:hover::after,
.staff-member-card:focus::after,
.staff-member-card:focus-visible::after {
  opacity: 1;
}

.staff-member-card:hover .staff-member-overlay,
.staff-member-card:focus .staff-member-overlay,
.staff-member-card:focus-visible .staff-member-overlay {
  opacity: 1;
  transform: translateY(0);
}

.staff-member-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.staff-roster-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.staff-roster-panel h3 {
  margin: 0 0 22px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 33px;
  line-height: 1.08;
}

.staff-roster-list {
  display: grid;
  gap: 6px;
}

.staff-roster-row {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px 10px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.staff-roster-row > span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.staff-roster-row strong,
.staff-roster-row small {
  display: block;
}

.staff-roster-row strong {
  color: inherit;
  font-size: 19px;
}

.staff-roster-row small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.staff-roster-row:first-child,
.staff-roster-row:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.staff-roster-row:first-child > span,
.staff-roster-row:hover > span {
  background: var(--gold);
}

.staff-leadership-band,
.staff-directory-band {
  padding: 90px clamp(20px, 6vw, 86px);
}

.staff-leadership-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(36px, 8vw, 116px);
  align-items: center;
  background: #f5f8ef;
}

.staff-leadership-copy {
  max-width: 720px;
}

.staff-leadership-copy .eyebrow {
  margin-bottom: 14px;
}

.staff-leadership-title {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.staff-leadership-copy h2,
.staff-directory-intro h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1;
}

.staff-leadership-copy > p:not(.eyebrow):not(.staff-leadership-title),
.staff-directory-intro > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.staff-leadership-photo {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--brand-blue);
  box-shadow: var(--shadow);
}

.staff-leadership-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.staff-directory-band {
  background: var(--paper);
}

.staff-directory-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 7vw, 108px);
  align-items: end;
  margin-bottom: 64px;
}

.staff-directory-intro > p {
  max-width: 560px;
  margin: 0;
}

.staff-directory-groups {
  display: grid;
  gap: 58px;
}

.staff-team-group {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.staff-team-group h3 {
  margin: 0 0 22px;
  color: var(--brand-blue);
  font-size: 24px;
  line-height: 1.15;
}

.staff-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.staff-photo-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 4.75;
  overflow: hidden;
  border-radius: 8px;
  background: var(--brand-blue-dark);
}

.staff-photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(11, 47, 85, 0.02) 34%, rgba(11, 47, 85, 0.88) 100%);
}

.staff-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.staff-photo-card:hover img {
  transform: scale(1.04);
}

.staff-photo-card-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 24px;
}

.staff-photo-card-overlay h4 {
  margin: 0;
  color: white;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.1;
}

@media (max-width: 960px) {
  .staff-leadership-band,
  .staff-directory-intro {
    grid-template-columns: 1fr;
  }

  .staff-leadership-photo,
  .staff-leadership-photo img {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .staff-leadership-band,
  .staff-directory-band {
    padding-block: 58px;
  }

  .staff-leadership-copy h2,
  .staff-directory-intro h2 {
    font-size: 40px;
  }

  .staff-leadership-copy > p:not(.eyebrow):not(.staff-leadership-title),
  .staff-directory-intro > p {
    font-size: 17px;
  }

  .staff-leadership-photo,
  .staff-leadership-photo img {
    min-height: 400px;
  }

  .staff-directory-intro {
    margin-bottom: 46px;
  }

  .staff-directory-groups {
    gap: 44px;
  }

  .staff-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .staff-photo-card-overlay {
    padding: 16px;
  }

  .staff-photo-card-overlay h4 {
    font-size: 17px;
  }
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
}

.about-proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.about-proof-band article {
  min-height: 132px;
  padding: 30px clamp(20px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.about-proof-band article:last-child {
  border-right: 0;
}

.about-proof-band strong,
.about-proof-band span {
  display: block;
}

.about-proof-band strong {
  color: var(--brand-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.about-proof-band span {
  margin-top: 9px;
  color: var(--muted);
  font-weight: 850;
}

.about-story-band,
.about-area-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  padding: 92px clamp(20px, 6vw, 86px);
  background: var(--paper);
}

.about-story-copy h2,
.about-mission-band h2,
.about-area-band h2,
.about-affiliations-band h2,
.about-cta-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.about-story-copy p:not(.eyebrow),
.about-mission-band p:not(.eyebrow),
.about-values-band p,
.about-area-band p,
.about-affiliations-band p,
.about-cta-band p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.about-photo-feature {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-photo-feature img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
}

.about-photo-feature figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  color: white;
  background: rgba(11, 47, 85, 0.84);
  font-weight: 900;
}

.about-mission-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 86px clamp(20px, 6vw, 86px);
  color: white;
  background:
    linear-gradient(125deg, rgba(11, 47, 85, 0.98), rgba(18, 59, 102, 0.94)),
    url("/assets/images/heritage-hero-inner.jpg") center / cover;
}

.about-mission-band article {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.about-mission-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.about-values-band,
.about-affiliations-band {
  padding: 90px clamp(20px, 6vw, 86px);
  background: linear-gradient(180deg, #fffdfa 0%, #f4f8eb 100%);
}

.about-values-band .section-heading {
  max-width: 860px;
}

.about-values-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: stretch;
  margin-top: 34px;
}

.about-values-column {
  display: grid;
  align-content: center;
  gap: 12px;
}

.about-value-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 116px;
  padding: 16px 18px;
  border: 1px solid #dce8d2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(24, 32, 43, 0.08);
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.about-value-item:hover {
  transform: translateY(-3px);
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  box-shadow: 0 22px 46px rgba(18, 59, 102, 0.22);
}

.about-value-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--brand-blue);
  background: rgba(196, 152, 79, 0.16);
  font-weight: 950;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease;
}

.about-value-icon svg {
  width: 22px;
  height: 22px;
}

.about-value-item h3 {
  margin: 0;
  color: var(--brand-blue);
  font-size: 21px;
  line-height: 1.18;
  transition: color 180ms ease;
}

.about-value-item p {
  margin: 7px 0 0;
  font-size: 15px;
  line-height: 1.55;
  transition: color 180ms ease;
}

.about-value-item:hover .about-value-icon {
  color: white;
  background: var(--gold);
}

.about-value-item:hover h3,
.about-value-item:hover p {
  color: white;
}

.about-values-feature {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dce8d2;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.about-values-feature img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  max-height: 760px;
  object-fit: cover;
  object-position: center center;
}

.about-values-feature figcaption {
  padding: 22px;
}

.about-values-feature figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-values-feature figcaption strong {
  display: block;
  color: var(--brand-blue);
  font-size: 22px;
  line-height: 1.15;
}

.about-values-feature figcaption p {
  margin: 12px 0 0;
}

.about-area-band {
  background: var(--paper);
}

.about-area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.about-area-list li {
  position: relative;
  padding-left: 26px;
  color: var(--sage-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.about-area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(196, 152, 79, 0.16);
}

.maricopa-map-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.maricopa-map {
  background: #0b223a;
}

.maricopa-map img {
  display: block;
  width: 100%;
  height: auto;
}

.maricopa-map-card figcaption {
  padding: 16px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.about-affiliations-band {
  background: var(--paper);
}

.about-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid #dce8d2;
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 38px rgba(24, 32, 43, 0.08);
}

.about-logo-grid figure {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 230px;
  margin: 0;
  padding: 30px;
}

.about-logo-grid figure + figure {
  border-left: 1px solid #dce8d2;
}

.about-logo-grid img {
  display: block;
  width: 100%;
  max-width: 270px;
  max-height: 92px;
  margin: 0 auto;
  object-fit: contain;
}

.about-logo-grid figcaption {
  display: grid;
  gap: 8px;
  text-align: center;
}

.about-logo-grid span {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.about-logo-grid strong {
  color: var(--brand-blue);
  font-size: 18px;
  line-height: 1.25;
}

.about-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 72px clamp(20px, 6vw, 86px);
  color: var(--ink);
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 20%, rgba(196, 152, 79, 0.15), transparent 28%),
    linear-gradient(180deg, var(--soft-gold) 0%, var(--paper) 100%);
}

.about-cta-band .eyebrow {
  color: var(--gold-dark);
}

.about-cta-band p {
  max-width: 680px;
  color: var(--muted);
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.services-overview-band {
  padding: 92px clamp(20px, 6vw, 86px);
  background: linear-gradient(180deg, #fffdfa 0%, #f4f8eb 100%);
}

.services-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 38px;
}

.services-intro-grid h2,
.service-fit-band h2,
.service-depth-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.services-intro-grid > p,
.service-fit-band p,
.service-depth-copy p,
.service-depth-panel p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.services-carousel-shell {
  position: relative;
}

.services-carousel-controls {
  position: absolute;
  top: -82px;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.services-carousel-button {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 59, 102, 0.16);
  border-radius: 999px;
  color: var(--brand-blue);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(24, 32, 43, 0.1);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.services-carousel-button:hover {
  color: white;
  background: var(--brand-blue);
  transform: translateY(-1px);
}

.services-hub-grid {
  display: flex;
  gap: 22px;
  margin-inline: calc(clamp(20px, 6vw, 86px) * -1);
  padding: 4px clamp(20px, 6vw, 86px) 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-padding-inline: clamp(20px, 6vw, 86px);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.services-hub-grid::-webkit-scrollbar {
  display: none;
}

.services-hub-card {
  position: relative;
  display: flex;
  flex: 0 0 clamp(285px, 29vw, 365px);
  min-height: 520px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #dce8d2;
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 44px rgba(24, 32, 43, 0.1);
  scroll-snap-align: start;
}

.services-hub-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid var(--gold);
  border-radius: inherit;
  pointer-events: none;
}

.services-hub-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.services-hub-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.services-hub-card span {
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.services-hub-card h3 {
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-size: 25px;
  line-height: 1.15;
}

.services-hub-card p {
  margin: 0;
  color: #31503d;
  font-size: 16px;
  line-height: 1.58;
}

.services-hub-card a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--gold-dark);
  font-weight: 950;
  text-decoration: none;
}

.service-fit-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  padding: 86px clamp(20px, 6vw, 86px);
  background: var(--paper);
}

.service-fit-band img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-fit-band .button {
  margin-top: 10px;
}

.service-depth-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  padding: 88px clamp(20px, 6vw, 86px);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(196, 152, 79, 0.16), transparent 28%),
    linear-gradient(180deg, var(--soft-gold) 0%, var(--paper) 100%);
}

.service-depth-copy p,
.service-depth-panel p {
  color: var(--muted);
}

.service-depth-panel {
  display: grid;
  gap: 14px;
}

.service-depth-panel article {
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 38px rgba(24, 32, 43, 0.07);
}

.service-depth-panel strong {
  display: block;
  color: var(--brand-blue);
  font-size: 20px;
}

.service-depth-panel p {
  margin: 8px 0 0;
}

.service-description-band {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  padding: 86px clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 10% 12%, rgba(111, 143, 132, 0.12), transparent 30%),
    linear-gradient(180deg, var(--paper) 0%, #f6faef 100%);
}

.service-description-copy,
.service-area-copy {
  min-width: 0;
}

.service-description-copy h2,
.service-area-copy h2,
.service-review-heading h2,
.service-cta-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.service-description-copy > p,
.service-area-copy > p,
.service-review-heading p:not(.eyebrow),
.service-cta-panel > p {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.service-description-note,
.service-description-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 38px rgba(24, 32, 43, 0.06);
}

.service-description-note {
  margin-top: 28px;
  padding: 24px;
  border-left: 5px solid var(--gold);
}

.service-description-note strong,
.service-description-panel h3 {
  color: var(--brand-blue);
}

.service-description-note strong,
.service-description-panel span {
  display: block;
  font-size: 20px;
  font-weight: 900;
}

.service-description-note p,
.service-description-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.service-description-panel {
  padding: 28px;
  border-top: 5px solid var(--gold);
}

.service-description-panel span {
  color: var(--gold-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.service-description-panel h3 {
  margin: 20px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1.08;
}

.service-area-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  padding: 88px clamp(20px, 6vw, 86px);
  background: var(--paper);
}

.service-area-city-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.service-area-city-list li {
  position: relative;
  padding-left: 26px;
  color: var(--sage-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.service-area-city-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(196, 152, 79, 0.16);
}

.service-review-band {
  padding: 66px clamp(20px, 6vw, 86px);
  overflow: hidden;
  background: var(--paper);
}

.service-review-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.68fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.service-review-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.service-review-ticker {
  position: relative;
  overflow: hidden;
  padding: 6px 0 14px;
}

.service-review-ticker::before,
.service-review-ticker::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 70px;
  pointer-events: none;
}

.service-review-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(255, 253, 250, 0));
}

.service-review-ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(255, 253, 250, 0));
}

.service-review-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: review-scroll 52s linear infinite;
}

.service-review-card {
  flex: 0 0 315px;
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 26px rgba(24, 32, 43, 0.07);
}

.service-review-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.service-review-card strong,
.service-review-card span {
  display: block;
}

.service-review-card strong {
  color: var(--brand-blue);
}

.service-review-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.service-values-band {
  padding: 86px clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 88% 12%, rgba(196, 152, 79, 0.14), transparent 28%),
    linear-gradient(180deg, var(--soft-gold) 0%, var(--paper) 100%);
}

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

.service-values-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 38px rgba(24, 32, 43, 0.07);
}

.service-values-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--brand-blue);
  font-size: 13px;
  font-weight: 950;
}

.service-values-grid h3 {
  color: var(--brand-blue);
  line-height: 1.18;
}

.service-values-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.service-cta-band {
  padding: 78px clamp(20px, 6vw, 86px);
  background: var(--paper);
}

.service-cta-panel {
  display: grid;
  justify-items: center;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 82px) clamp(22px, 6vw, 86px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(145deg, rgba(11, 47, 85, 0.98), rgba(24, 32, 43, 0.98)),
    url("/assets/images/heritage-hero-inner.jpg") center / cover;
  box-shadow: var(--shadow);
  text-align: center;
}

.service-cta-panel .eyebrow {
  color: #f2d18a;
}

.service-cta-panel h2 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 62px);
}

.service-cta-panel > p {
  max-width: 860px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.service-cta-actions .button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.service-approach-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  padding: 88px clamp(20px, 6vw, 86px);
  background:
    linear-gradient(120deg, rgba(18, 59, 102, 0.96), rgba(54, 93, 86, 0.92)),
    url("/assets/images/home-care-hero.jpg") center / cover;
  color: white;
}

.service-approach-copy {
  max-width: 760px;
}

.service-approach-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.service-approach-copy > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.72;
}

.service-approach-callout {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.service-approach-callout strong {
  display: block;
  color: white;
  font-size: 20px;
}

.service-approach-callout p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.service-approach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-approach-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.service-approach-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: var(--gold);
  font-size: 13px;
  font-weight: 950;
}

.service-approach-grid h3 {
  margin: 26px 0 10px;
  color: var(--brand-blue);
  line-height: 1.18;
}

.service-approach-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.service-faq-band {
  background: linear-gradient(180deg, #fffdfa 0%, #f3f8fb 100%);
}

.blog-index-band {
  padding: 64px clamp(16px, 4vw, 32px);
  background: #faf6f0;
}

.blog-index-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.blog-index-header {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.blog-index-header h1 {
  margin: 0;
  color: #1b4d7a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.blog-index-header p {
  margin: 12px 0 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.65;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.blog-card {
  overflow: hidden;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card .content {
  padding: 20px;
}

.blog-card-category {
  margin-bottom: 10px;
  color: #c5963a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0 0 10px;
  color: #1b4d7a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.blog-card h3 a {
  display: block;
  color: inherit;
  overflow-wrap: anywhere;
  text-decoration: none;
  word-break: break-word;
}

.blog-card h3 a:hover {
  color: #c5963a;
}

.blog-card-date {
  margin: 0 0 8px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.4;
}

.blog-card p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.blog-read-more {
  display: inline-block;
  margin-top: 14px;
  color: #c5963a;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.blog-read-more:hover {
  color: #aa7e2a;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  text-align: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 8px 12px;
  color: #1b4d7a;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.blog-pagination .current {
  color: white;
  background: #1b4d7a;
}

.blog-pagination .next {
  padding-inline: 16px;
}

.blog-pagination .dots {
  color: #6b7280;
  background: transparent;
  box-shadow: none;
}

.blog-post-page {
  background: #faf6f0;
}

.blog-post-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.blog-post-hero {
  padding: 72px 0 46px;
  text-align: center;
}

.blog-back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: #1b4d7a;
  font-weight: 800;
  text-decoration: none;
}

.blog-back-link:hover {
  color: #c5963a;
}

.blog-post-hero .blog-card-category {
  margin-bottom: 16px;
}

.blog-post-hero h1 {
  width: min(900px, 100%);
  margin: 0 auto 16px;
  color: #1b4d7a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
}

.blog-post-hero time {
  color: #6b7280;
  font-size: 16px;
  font-weight: 700;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 34px;
  align-items: start;
  padding-bottom: 82px;
}

.blog-post-card {
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 38px rgba(24, 32, 43, 0.08);
}

.blog-post-featured {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.blog-post-content {
  padding: clamp(28px, 5vw, 56px);
  color: #374151;
  font-size: 18px;
  line-height: 1.75;
}

.blog-post-content > *:first-child {
  margin-top: 0;
}

.blog-post-content > *:last-child {
  margin-bottom: 0;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
  color: #1b4d7a;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.18;
}

.blog-post-content h2 {
  margin: 42px 0 14px;
  font-size: clamp(28px, 3vw, 38px);
}

.blog-post-content h3 {
  margin: 30px 0 10px;
  font-size: 24px;
}

.blog-post-content p,
.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 20px;
}

.blog-post-content ul,
.blog-post-content ol {
  padding-left: 26px;
}

.blog-post-content li + li {
  margin-top: 8px;
}

.blog-post-content a {
  color: #1b4d7a;
  font-weight: 800;
  text-decoration-color: rgba(197, 150, 58, 0.55);
  text-underline-offset: 3px;
}

.blog-post-content img {
  height: auto;
  margin: 28px 0;
  border-radius: 8px;
}

.blog-post-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 24px;
}

.blog-sidebar-card {
  padding: 24px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(24, 32, 43, 0.08);
}

.blog-sidebar-card span {
  display: block;
  margin-bottom: 10px;
  color: #c5963a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-sidebar-card h2 {
  margin: 0 0 12px;
  color: #1b4d7a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.12;
}

.blog-sidebar-card p {
  margin: 0 0 18px;
  color: #4b5563;
  line-height: 1.6;
}

.blog-sidebar-link {
  display: block;
  padding: 14px 0;
  color: #1b4d7a;
  text-decoration: none;
}

.blog-sidebar-link + .blog-sidebar-link {
  border-top: 1px solid #eadfca;
}

.blog-sidebar-link strong,
.blog-sidebar-link small {
  display: block;
}

.blog-sidebar-link strong {
  line-height: 1.35;
}

.blog-sidebar-link small {
  margin-top: 6px;
  color: #6b7280;
}

.blog-sidebar-link:hover strong {
  color: #c5963a;
}

.service-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div,
.resource-grid article {
  padding: 22px;
}

.service-card a,
.resource-grid a,
.footer-grid a {
  color: var(--brand-blue);
  font-weight: 900;
  text-decoration: none;
}

.resource-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-directory-card {
  display: grid;
  min-height: 330px;
  grid-template-rows: 104px minmax(0, 1fr) auto;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(24, 32, 43, 0.07);
}

.resource-logo-frame {
  display: grid;
  min-width: 0;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(11, 47, 85, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, white 0%, #f8fbf6 100%);
}

.resource-logo-frame.dark {
  border-color: rgba(11, 47, 85, 0.18);
  background: linear-gradient(135deg, #0b2f55 0%, #174a78 100%);
}

.resource-logo-frame img {
  width: 100%;
  max-width: 220px;
  max-height: 68px;
  object-fit: contain;
}

.resource-card-copy {
  min-width: 0;
}

.resource-card-copy span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.resource-card-copy h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.15;
}

.resource-card-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.resource-directory-link {
  justify-self: start;
  color: var(--brand-blue);
  font-weight: 950;
  text-decoration: none;
}

.service-detail-band,
.veteran-page-band,
.owner-story-band,
.staff-page-band,
.careers-application-band,
.referral-page-band,
.resources-page-band {
  padding: 86px clamp(20px, 6vw, 86px);
}

.service-detail-band,
.careers-application-band,
.resources-page-band {
  background:
    radial-gradient(circle at 10% 12%, rgba(111, 143, 132, 0.12), transparent 30%),
    linear-gradient(180deg, var(--paper) 0%, #f6faef 100%);
}

.veteran-page-band,
.owner-story-band,
.staff-page-band,
.referral-page-band {
  background: var(--paper);
}

.service-detail-layout,
.veteran-page-layout,
.owner-story-band,
.careers-application-band,
.referral-page-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.service-detail-copy,
.service-detail-form,
.veteran-page-copy,
.service-approach-copy,
.service-approach-grid {
  min-width: 0;
}

.service-detail-copy h2,
.veteran-page-copy h2,
.owner-story-copy h2,
.staff-page-band .section-heading h2,
.careers-application-copy h2,
.referral-page-copy h2,
.resources-page-band .section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.service-detail-copy > p,
.veteran-page-copy > p,
.owner-story-copy > p,
.staff-page-band .section-heading p,
.careers-application-copy > p,
.referral-page-copy > p,
.resources-page-band .section-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.service-detail-note,
.owner-proof-card,
.career-work-card,
.referral-context-card {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 38px rgba(24, 32, 43, 0.06);
}

.service-detail-note strong,
.owner-proof-card strong,
.career-work-card strong,
.referral-context-card strong {
  display: block;
  color: var(--brand-blue);
  font-size: 20px;
}

.service-detail-note p,
.owner-proof-card p,
.career-work-card p,
.referral-context-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-detail-form .lead-form,
.referral-form-card .lead-form {
  position: sticky;
  top: 120px;
  border-color: rgba(196, 152, 79, 0.32);
  box-shadow: 0 24px 60px rgba(18, 59, 102, 0.1);
}

.service-detail-form .lead-form h2,
.referral-form-card .lead-form h2 {
  color: var(--brand-blue);
}

.referral-hero {
  position: relative;
  min-height: 375px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: white;
  background: var(--brand-blue);
}

.referral-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.referral-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 77, 130, 0.72);
}

.referral-hero-content {
  position: relative;
  z-index: 1;
  padding: 76px 20px;
}

.referral-hero h1 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.referral-hero p {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
}

.referral-hero nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 800;
}

.referral-hero nav a {
  color: white;
  text-decoration: none;
}

.referral-page-band {
  display: block;
  padding: 92px 20px 86px;
  background: white;
}

.referral-page-intro {
  max-width: 920px;
  margin: 0 auto 34px;
  color: #273345;
  text-align: center;
  font-size: 20px;
  line-height: 1.45;
}

.referral-form-card {
  max-width: 864px;
  margin: 0 auto;
  padding: 54px 32px 32px;
  border-radius: 8px;
  background: #f7f2ec;
}

.referral-form {
  display: grid;
  gap: 18px;
}

.referral-form h2 {
  margin: 0;
  color: var(--brand-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.2;
}

.referral-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.referral-form-grid .full {
  grid-column: 1 / -1;
}

.referral-form input,
.referral-form textarea {
  width: 100%;
  border: 1px solid #cbd3df;
  border-radius: 3px;
  padding: 0 15px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.referral-form input {
  min-height: 50px;
}

.referral-form textarea {
  min-height: 122px;
  padding-top: 15px;
  resize: vertical;
}

.referral-form input::placeholder,
.referral-form textarea::placeholder {
  color: #8d99aa;
}

.referral-form button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 3px;
  background: var(--brand-blue);
  color: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.referral-form button:hover {
  background: var(--brand-blue-dark);
}

.service-detail-cards,
.veteran-guidance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-detail-cards article,
.veteran-guidance-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 38px rgba(24, 32, 43, 0.06);
}

.service-detail-cards span,
.veteran-guidance-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gold-dark);
  font-weight: 950;
  text-transform: uppercase;
}

.service-detail-cards p,
.veteran-guidance-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.owner-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.owner-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}

.owner-photo-card figcaption {
  padding: 18px 20px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.staff-page-band .section-heading,
.resources-page-band .section-heading {
  max-width: 860px;
}

.careers-application-band .career-form,
.referral-form-card {
  min-width: 0;
}

.lead-form,
.mini-form,
.contact-card,
.resource-grid article,
.staff-grid article {
  padding: 24px;
}

.mini-form {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mini-form .lead-form {
  position: sticky;
  top: 120px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid .full {
  grid-column: 1 / -1;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.form-note {
  min-height: 22px;
  color: var(--sage-dark);
  font-weight: 800;
}

.career-form [aria-invalid="true"] {
  border-color: #b44747;
  outline: 2px solid rgba(180, 71, 71, 0.18);
}

.career-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.career-form fieldset {
  min-width: 0;
  border: 0;
  padding: 0;
  margin: 20px 0;
}

.career-form legend {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
}

.career-progress {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 900;
}

.career-progress div {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9e3db;
}

.career-progress i {
  display: block;
  height: 100%;
  width: 25%;
  background: var(--gold);
}

.career-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.assessment-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 52px clamp(20px, 6vw, 86px);
  color: white;
  background: var(--brand-blue);
}

.assessment-cta .eyebrow {
  color: #f2d18a;
}

.framed-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  background: var(--brand-blue);
  border-top: 0;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(260px, 1fr) minmax(300px, 1.18fr);
  gap: clamp(42px, 10vw, 150px);
  align-items: start;
  padding: 38px clamp(20px, 4vw, 58px) 34px;
}

.footer-grid p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.footer-grid h3 {
  margin: 0 0 17px;
  color: #f1ca7a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.footer-grid p {
  max-width: 360px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.footer-grid a {
  display: block;
  margin: 0 0 12px;
  color: white;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #f2d18a;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact p,
.footer-contact > a:not(.footer-consultation) {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 0;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.86);
}

.footer-contact > a:not(.footer-consultation) {
  margin: 0;
  font-weight: 700;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 8px 0 10px;
}

.footer-social a,
.footer-social span {
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.footer-social svg {
  width: 25px;
  height: 25px;
}

.footer-consultation {
  width: min(100%, 320px);
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  border-radius: 4px;
  padding: 10px 18px;
  color: white !important;
  background: var(--gold);
  font-weight: 750 !important;
  text-align: center;
}

.footer-consultation:hover {
  background: var(--gold-dark);
}

.footer-bottom {
  padding: 14px clamp(20px, 4vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1120px) {
  .blog-live-nav {
    align-items: flex-start;
  }

  .blog-live-brand img {
    height: 50px;
  }

  .blog-live-links {
    gap: 14px;
  }

  .blog-live-cta {
    padding-inline: 22px;
  }

  .blog-post-layout {
    grid-template-columns: 1fr;
  }

  .blog-post-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .care-finder,
  .finder-grid,
  .process-grid,
  .trust-feature-grid,
  .trust-stat-row,
  .service-grid,
  .blog-card-grid,
  .resource-grid,
  .resource-directory-grid,
  .faq-shell,
  .footer-grid,
  .signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .care-finder {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -160px 20px 32px;
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-bottom: 220px;
  }

  .how-layout {
    grid-template-columns: 1fr;
  }

  .trust-layout {
    grid-template-columns: 1fr;
  }

  .about-proof-band,
  .about-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-values-showcase {
    grid-template-columns: 1fr;
  }

  .about-values-feature {
    width: 100%;
    margin-inline: 0;
  }

  .about-values-feature img {
    min-height: 460px;
    max-height: 560px;
  }

  .about-story-band,
  .about-area-band,
  .about-mission-band,
  .about-cta-band,
  .staff-showcase-intro,
  .staff-showcase-layout,
  .service-description-band,
  .service-area-band,
  .service-review-heading,
  .services-intro-grid,
  .services-hub-grid,
  .service-fit-band,
  .service-depth-band,
  .service-approach-band,
  .appointment-layout,
  .appointment-next-grid,
  .appointment-help-grid,
  .contact-page-shell,
  .service-detail-layout,
  .veteran-page-layout,
  .owner-story-band,
  .careers-benefits-intro,
  .careers-purpose-band,
  .careers-application-band,
  .referral-page-band {
    grid-template-columns: 1fr;
  }

  .service-detail-cards,
  .veteran-guidance-grid,
  .service-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .appointment-form-card .lead-form {
    position: static;
  }

  .service-detail-form .lead-form,
  .referral-form-card .lead-form {
    position: static;
  }

  .how-copy {
    max-width: 760px;
  }

  .careers-hero {
    grid-template-columns: minmax(0, 1fr);
    padding-right: 28%;
  }

  .career-starter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .career-starter .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .blog-live-topbar-inner {
    align-items: flex-start;
  }

  .blog-live-nav {
    position: relative;
    display: flex;
    align-items: center;
    padding-block: 10px;
  }

  .blog-live-social {
    display: none;
  }

  .blog-live-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .blog-live-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 16px 18px;
    border-top: 1px solid var(--line);
    background: white;
    box-shadow: 0 16px 28px rgba(24, 32, 43, 0.16);
  }

  .blog-live-links.is-open {
    display: flex;
  }

  .blog-live-links > a:not(.blog-live-cta) {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #edf0f2;
  }

  .blog-live-cta {
    width: 100%;
    margin-top: 12px;
    min-height: 46px;
    padding: 10px 18px;
  }

  .top-strip {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 16px 20px 22px;
    background: white;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding: 76px 20px 190px;
  }

  .hero h1,
  .inner-hero h1 {
    font-size: 44px;
  }

  .care-finder,
  .finder-grid,
  .process-grid,
  .trust-feature-grid,
  .trust-stat-row,
  .service-grid,
  .blog-card-grid,
  .resource-grid,
  .resource-directory-grid,
  .faq-shell,
  .footer-grid,
  .signal-strip,
  .form-grid,
  .inner-hero,
  .two-column,
  .contact-grid,
  .contact-guidance-grid,
  .service-description-band,
  .service-area-band,
  .service-review-heading,
  .service-approach-grid,
  .service-detail-cards,
  .veteran-guidance-grid,
  .service-values-grid,
  .careers-benefit-grid,
  .split-band {
    grid-template-columns: 1fr;
  }

  .how-band,
  .trust-band,
  .care-needs-band,
  .about-story-band,
  .about-mission-band,
  .about-values-band,
  .about-area-band,
  .about-affiliations-band,
  .about-cta-band,
  .staff-showcase-band,
  .service-description-band,
  .service-area-band,
  .service-review-band,
  .service-values-band,
  .service-cta-band,
  .services-overview-band,
  .service-fit-band,
  .service-depth-band,
  .service-approach-band,
  .appointment-band,
  .appointment-next-band,
  .contact-page-band,
  .contact-guidance-band,
  .service-detail-band,
  .veteran-page-band,
  .owner-story-band,
  .staff-page-band,
  .careers-benefits-band,
  .careers-purpose-band,
  .careers-application-band,
  .referral-page-band,
  .resources-page-band,
  .faq-band {
    padding-block: 58px;
  }

  .faq-intro {
    position: static;
  }

  .faq-intro h2 {
    font-size: 42px;
  }

  .trust-copy h2 {
    font-size: 44px;
  }

  .appointment-copy h2,
  .appointment-next-band h2 {
    font-size: 44px;
  }

  .services-hub-card img {
    height: 230px;
  }

  .how-copy h2 {
    font-size: 44px;
  }

  .process-panel {
    padding: 20px;
  }

  .about-proof-band {
    grid-template-columns: 1fr;
  }

  .about-proof-band article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-proof-band article:last-child {
    border-bottom: 0;
  }

  .about-logo-grid {
    grid-template-columns: 1fr;
  }

  .about-logo-grid figure + figure {
    border-top: 1px solid #dce8d2;
    border-left: 0;
  }

  .about-cta-actions {
    justify-content: flex-start;
  }

  .process-flow::before {
    left: 25px;
  }

  .process-flow li {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
    padding: 16px 0;
  }

  .process-number {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }

  .review-card {
    flex-basis: min(310px, calc(100vw - 64px));
  }

  .service-review-card {
    flex-basis: 286px;
  }

  .staff-portrait-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .staff-member-card.owner {
    grid-column: span 2;
    grid-row: span 2;
  }

  .staff-member-card.tall {
    grid-column: span 1;
    grid-row: span 2;
  }

  .staff-member-card.wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .staff-member-card.standard {
    grid-column: span 1;
    grid-row: span 1;
  }

  .careers-hero {
    min-height: auto;
    padding: 44px 20px 72px;
  }

  .career-hero-image {
    position: relative;
    right: auto;
    top: auto;
    order: 0;
    width: min(320px, 82vw);
    height: min(320px, 82vw);
    margin: 0 auto 20px;
    transform: none;
  }

  .careers-hero h1 {
    font-size: 44px;
  }

  .career-starter-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    padding-top: 40px;
  }

  .assessment-cta {
    display: grid;
  }
}

@media (max-width: 520px) {
  .blog-live-contact {
    gap: 6px 12px;
  }

  .blog-live-contact span {
    width: 100%;
  }

  .blog-live-brand img {
    height: 46px;
  }

  .blog-live-links {
    width: 100%;
    font-size: 15px;
  }

  .blog-live-links a {
    min-width: 0;
  }

  .blog-live-cta {
    justify-self: stretch;
  }

  .brand img {
    width: 146px;
  }

  .blog-index-band {
    padding: 48px 16px;
  }

  .blog-index-header {
    margin-bottom: 36px;
  }

  .blog-index-header h1 {
    font-size: 38px;
  }

  .blog-index-header p {
    font-size: 15px;
  }

  .blog-pagination {
    justify-content: flex-start;
  }

  .blog-card h3 {
    font-size: 17px;
  }

  .blog-post-hero {
    padding: 52px 0 32px;
  }

  .blog-post-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-post-content {
    font-size: 16px;
  }

  .hero h1,
  .inner-hero h1,
  .referral-hero h1,
  .how-copy h2 {
    font-size: 38px;
  }

  .content-section,
  .reviews-band,
  .trust-band,
  .care-needs-band,
  .careers-benefits-band,
  .careers-purpose-band,
  .about-story-band,
  .about-mission-band,
  .about-values-band,
  .about-area-band,
  .about-affiliations-band,
  .about-cta-band,
  .staff-showcase-band,
  .service-description-band,
  .service-area-band,
  .service-review-band,
  .service-values-band,
  .service-cta-band,
  .services-overview-band,
  .service-fit-band,
  .service-depth-band,
  .service-approach-band,
  .appointment-band,
  .appointment-next-band,
  .contact-page-band,
  .contact-guidance-band,
  .faq-band,
  .how-band,
  .split-band {
    padding-block: 56px;
  }

  .faq-intro h2 {
    font-size: 36px;
  }

  .trust-copy h2 {
    font-size: 38px;
  }

  .careers-benefits-intro h2,
  .careers-purpose-band h2,
  .career-modal-intro h2 {
    font-size: 38px;
    line-height: 1.05;
  }

  .careers-benefit-grid article,
  .career-form {
    padding: 20px;
  }

  .career-modal {
    align-items: start;
    padding: 12px;
  }

  .career-modal-panel {
    max-height: calc(100vh - 24px);
    padding: 20px;
  }

  .career-modal-intro {
    padding-right: 36px;
  }

  .career-actions .button {
    width: 100%;
  }

  .referral-hero {
    min-height: 330px;
  }

  .referral-page-band {
    padding: 56px 16px;
  }

  .referral-page-intro {
    font-size: 18px;
  }

  .referral-form-card {
    padding: 34px 18px 22px;
  }

  .referral-form-grid {
    grid-template-columns: 1fr;
  }

  .about-story-copy h2,
  .about-mission-band h2,
  .about-area-band h2,
  .about-affiliations-band h2,
  .about-cta-band h2,
  .staff-showcase-intro h2 {
    font-size: 38px;
  }

  .about-mission-band article,
  .about-value-item,
  .about-values-feature figcaption,
  .about-logo-grid figure {
    padding: 22px;
  }

  .about-values-showcase {
    gap: 22px;
  }

  .about-values-feature {
    order: -1;
  }

  .about-values-feature img {
    min-height: 300px;
    max-height: 360px;
  }

  .appointment-copy h2,
  .appointment-next-band h2 {
    font-size: 38px;
  }

  .assessment-cta h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .contact-intro-panel h2,
  .contact-guidance-band h2 {
    font-size: 38px;
    line-height: 1.05;
  }

  .service-detail-copy h2,
  .veteran-page-copy h2,
  .owner-story-copy h2,
  .staff-page-band .section-heading h2,
  .careers-application-copy h2,
  .referral-page-copy h2,
  .resources-page-band .section-heading h2 {
    font-size: 38px;
    line-height: 1.05;
  }

  .services-intro-grid h2,
  .service-fit-band h2,
  .service-depth-copy h2,
  .service-approach-copy h2,
  .service-description-copy h2,
  .service-area-copy h2,
  .service-cta-panel h2 {
    font-size: 38px;
  }

  .service-description-panel h3,
  .service-review-heading h2 {
    font-size: 30px;
  }

  .services-hub-card div {
    padding: 22px;
  }

  .services-carousel-controls {
    position: static;
    justify-content: flex-end;
    margin: -18px 0 18px;
  }

  .services-hub-card {
    flex-basis: min(82vw, 330px);
    min-height: 500px;
  }

  .services-hub-card img {
    height: 220px;
  }

  .about-area-list,
  .service-area-city-list {
    grid-template-columns: 1fr;
  }

  .lead-form h2,
  .appointment-form-card .lead-form h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .appointment-story-card {
    grid-template-columns: 1fr;
  }

  .staff-portrait-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
    gap: 10px;
  }

  .staff-member-card.owner {
    grid-column: span 2;
    grid-row: span 2;
  }

  .staff-member-card.tall,
  .staff-member-card.standard {
    grid-column: span 1;
    grid-row: span 1;
  }

  .staff-member-card.wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .staff-member-overlay h3 {
    font-size: 18px;
  }

  .staff-roster-panel {
    padding: 22px;
  }

  .contact-method {
    grid-template-columns: 1fr;
  }

  .contact-method-icon {
    grid-row: auto;
  }

  .appointment-story-card img {
    min-height: 230px;
    max-height: 280px;
  }

  .appointment-story-card div {
    padding: 22px;
  }

  .trust-stat {
    padding: 16px;
  }

  .trust-feature-card {
    min-height: auto;
    padding: 20px;
  }

  .trust-feature-card h3 {
    margin-top: 22px;
  }

  .faq-list summary {
    grid-template-columns: 40px minmax(0, 1fr) 24px;
    min-height: 68px;
    padding: 16px;
    font-size: 17px;
  }

  .faq-list summary span {
    width: 34px;
    height: 34px;
  }

  .faq-list details p {
    padding: 16px 18px 20px;
  }

  .button,
  .nav-cta {
    width: 100%;
  }
}

/* ============================================================
   FAMILY WALL HOME HERO (namespaced .home-hero / .care-finder-band;
   does not touch .hero / .inner-hero / .care-finder used by inner pages)
   RESOLUTION BUDGET: max display width = native px / 2.
   Primary 860px source -> 430px cap. Inset 720px source -> 300px cap.
   ============================================================ */
.home-hero { background: var(--cream); border-bottom: 1px solid var(--line); }
.home-hero-inner { max-width: 1200px; margin: 0 auto; padding: clamp(48px, 6vw, 76px) 32px clamp(56px, 7vw, 92px); display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: clamp(40px, 5vw, 72px); align-items: center; }
.home-eyebrow-rule { width: 28px; height: 3px; background: var(--gold); margin-bottom: 14px; }
.home-eyebrow { font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 13px; font-weight: 700; line-height: 1.4; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); margin: 0 0 18px; }
.home-h1 { font-family: Georgia, "Times New Roman", serif; font-weight: 700; font-size: clamp(42px, 4.6vw, 62px); line-height: 1.05; color: var(--brand-blue-dark); margin: 0 0 22px; }
.home-h1 em { font-style: italic; }
.home-sub { font-size: 18.5px; line-height: 1.65; color: var(--ink); max-width: 52ch; margin: 0 0 30px; }
.home-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.home-cta-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--gold-dark); color: #fff; font-size: 16.5px; font-weight: 600; line-height: 1; padding: 17px 26px; border-radius: 8px; text-decoration: none; }
.home-cta-primary:hover { background: #5d3e0e; }
.home-cta-secondary { display: inline-flex; align-items: center; border: 2px solid var(--brand-blue); color: var(--brand-blue); font-size: 16px; font-weight: 600; line-height: 1; padding: 15px 24px; border-radius: 8px; text-decoration: none; background: transparent; }
.home-cta-secondary:hover { background: rgba(18, 59, 102, 0.07); }
.home-microline { font-size: 14px; line-height: 1.55; color: rgba(24, 32, 43, 0.7); margin: 0 0 6px; }
.home-steps-link { font-size: 14px; font-weight: 500; color: var(--brand-blue); text-decoration: underline; text-underline-offset: 3px; }
.home-proof { margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; align-items: center; }
.proof-item { display: flex; align-items: center; gap: 11px; padding: 0 22px; border-left: 1px solid var(--line); text-decoration: none; }
.proof-item:first-child { padding-left: 0; border-left: none; }
.proof-chip { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex: none; }
.proof-glyph { flex: none; color: var(--gold-dark); }
.proof-text { display: flex; flex-direction: column; gap: 2px; }
.proof-text strong { font-size: 13.5px; font-weight: 600; line-height: 1.3; color: var(--ink); }
.proof-text span { font-size: 12.5px; line-height: 1.3; color: rgba(24, 32, 43, 0.62); }
.proof-link:hover .proof-text strong { color: var(--gold-dark); }
.proof-num { font-family: Georgia, serif; font-size: 19px; color: var(--brand-blue-dark); }
.proof-num-label { font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 12.5px; font-weight: 400; color: var(--ink); }
.proof-num-sub b { font-family: Georgia, serif; font-weight: 700; color: var(--brand-blue-dark); }
.home-hero-wall { position: relative; display: flex; flex-direction: column; align-items: flex-end; }
.wall-label { font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 10.5px; font-weight: 600; line-height: 1; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(24, 32, 43, 0.55); margin: 0 6px 14px 0; }
.wall-frame { background: var(--paper); border: 1px solid var(--line); border-radius: 2px; padding: 10px; margin: 0; box-shadow: 0 1px 2px rgba(24, 32, 43, 0.08), 0 28px 56px -28px rgba(11, 47, 85, 0.28); }
.wall-frame img { display: block; max-width: 100%; height: auto; }
.wall-frame figcaption { font-family: Georgia, serif; font-style: italic; font-size: 13px; line-height: 1.5; color: rgba(24, 32, 43, 0.65); padding: 9px 4px 3px; max-width: 40ch; }
.wall-frame-primary { width: min(430px, 100%); }
.wall-frame-primary img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 12%; }
.wall-frame-inset { position: absolute; width: 300px; left: -18px; bottom: -46px; transform: rotate(-2deg); animation: wall-inset-settle 480ms cubic-bezier(0.22, 1, 0.36, 1) 140ms backwards; }
.wall-frame-inset img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
@keyframes wall-inset-settle { from { opacity: 0; transform: rotate(-3.5deg) translateY(10px); } to { opacity: 1; transform: rotate(-2deg) translateY(0); } }
@media (min-width: 761px) { .wall-frame-primary figcaption { text-align: right; margin-left: auto; max-width: 26ch; padding-right: 6px; } }
@media (hover: hover) {
  .wall-frame { transition: transform 200ms ease-out, box-shadow 200ms ease-out; }
  .wall-frame:hover { transform: translateY(-2px); box-shadow: 0 2px 3px rgba(24, 32, 43, 0.1), 0 34px 60px -28px rgba(11, 47, 85, 0.34); }
  .wall-frame-inset:hover { transform: rotate(-2deg) translateY(-2px); }
}
.care-finder-band { background: var(--brand-blue-dark); padding: 30px 0; }
.care-finder-band-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; min-height: 96px; display: grid; grid-template-columns: 215px 1fr 1fr 1fr auto; gap: 22px; align-items: end; }
.finder-intro { align-self: center; }
.finder-intro h2 { font-family: Georgia, serif; font-style: italic; font-weight: 400; font-size: 22px; line-height: 1.2; color: var(--cream); margin: 0 0 5px; }
.finder-intro p { font-size: 12.5px; line-height: 1.4; color: rgba(247, 241, 232, 0.7); margin: 0; }
.band-field { display: flex; flex-direction: column; gap: 7px; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 11px; font-weight: 600; line-height: 1; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247, 241, 232, 0.8); }
.band-field select { height: 54px; background-color: var(--paper); border: 1px solid var(--line); border-radius: 8px; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 16px; line-height: 1.2; color: var(--ink); padding: 0 40px 0 14px; appearance: none; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="9" viewBox="0 0 14 9" fill="none"><path d="M1 1l6 6 6-6" stroke="%23123b66" stroke-width="2" stroke-linecap="round"/></svg>'); background-repeat: no-repeat; background-position: right 14px center; }
.band-field select:focus { outline: 3px solid var(--gold); outline-offset: 1px; }
.band-submit { height: 54px; background: var(--gold); color: #fff; border: none; border-radius: 8px; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 16px; font-weight: 600; line-height: 1; padding: 0 28px; cursor: pointer; }
.band-submit:hover { background: var(--gold-dark); }
.sticky-call-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; grid-template-columns: 1fr 1fr; background: var(--brand-blue-dark); padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); gap: 10px; box-shadow: 0 -6px 24px rgba(11, 47, 85, 0.3); }
.sticky-call-bar.visible { display: grid; }
.sticky-call-bar a { display: flex; align-items: center; justify-content: center; min-height: 44px; border-radius: 8px; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 15px; font-weight: 600; text-decoration: none; }
.sticky-call-bar .sticky-call { background: var(--gold); color: #fff; }
.sticky-call-bar .sticky-assess { border: 1.5px solid rgba(247, 241, 232, 0.7); color: var(--cream); }
@media (min-width: 761px) { .sticky-call-bar { display: none !important; } }
@media (max-width: 1080px) { .wall-frame-inset { display: none; } .home-hero-inner { gap: 40px; } }
@media (max-width: 900px) { .care-finder-band-inner { grid-template-columns: 1fr 1fr; } .finder-intro { grid-column: 1 / -1; } .band-submit { grid-column: 1 / -1; } }
@media (max-width: 760px) {
  .home-hero-inner { grid-template-columns: minmax(0, 1fr); padding: 44px 20px 56px; gap: 36px; }
  .home-hero-copy, .home-hero-wall { min-width: 0; }
  .home-h1 { font-size: clamp(33px, 9.4vw, 42px); }
  .home-sub { font-size: 17px; }
  .home-cta-row { flex-direction: column; }
  .home-cta-primary, .home-cta-secondary { justify-content: center; min-height: 56px; }
  .home-proof { flex-wrap: wrap; gap: 14px 0; }
  .proof-item { border-left: none; padding: 0 14px 0 0; }
  .home-hero-wall { align-items: stretch; }
  .wall-frame-primary { width: 100%; }
  .wall-frame-primary img { aspect-ratio: 4 / 3; object-position: 50% 22%; }
  .care-finder-band-inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .wall-frame, .wall-frame-inset { animation: none !important; transition: none !important; }
  .wall-frame:hover, .wall-frame-inset:hover { transform: none; }
  .wall-frame-inset { transform: rotate(-2deg); }
  .sticky-call-bar { transition: none !important; }
}

/* ==== Mobile QA pass fixes (2026-07-13) ==== */
h1, h2 { text-wrap: balance; }
.nw { white-space: nowrap; }
/* marquee edge fades were ghosting card text at phone widths */
@media (max-width: 760px) {
  .review-ticker::before, .review-ticker::after,
  .service-review-ticker::before, .service-review-ticker::after { width: 16px; }
}
/* trust band photo caption: below the photo on small screens instead of overlaying it */
@media (max-width: 400px) {
  .trust-photo-card figcaption { position: static; margin: 0; border: none; border-radius: 0 0 8px 8px; }
}
/* service description aside bullet list (replaces duplicated approach copy) */
.service-panel-points { margin: 12px 0 0; padding: 0 0 0 18px; display: grid; gap: 8px; }
.service-panel-points li { font-size: 15px; line-height: 1.5; }
/* referral form: visible labels, on-system controls */
.referral-form-grid label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink); }
.referral-consent { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; }
.referral-consent input[type="checkbox"] { width: 20px; height: 20px; flex: none; margin-top: 2px; accent-color: var(--gold); }
.referral-form button[type="submit"] { background: var(--gold); color: #fff; border: none; border-radius: 8px; min-height: 52px; padding: 0 28px; font-size: 16px; font-weight: 600; cursor: pointer; }
.referral-form button[type="submit"]:hover { background: var(--gold-dark); }
/* empty required selects read as placeholders, not chosen values */
form select:required:invalid { color: rgba(24, 32, 43, 0.55); }
