:root {
  color-scheme: light;
  --paper: #f6f6f1;
  --paper-strong: #ededdf;
  --surface: #fffefb;
  --ink: #17211f;
  --muted: #64716b;
  --line: #dcd8ca;
  --moss: #264d42;
  --moss-dark: #132b26;
  --sage: #b9c5a6;
  --rose: #bf777f;
  --blue: #243a52;
  --clay: #8a5b51;
  --shadow: 0 24px 70px rgba(23, 33, 31, 0.12);
  --header-height: 76px;
  --page-pad: 6vw;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(23, 33, 31, 0.04) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(180deg, var(--paper) 0%, #fbfaf6 44%, var(--paper) 100%);
  color: var(--ink);
  font-family:
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  letter-spacing: 0;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  flex: 0 0 auto;
}

button,
summary {
  font: inherit;
}

::selection {
  background: rgba(191, 119, 127, 0.24);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 99;
  padding: 0.7rem 1rem;
  transform: translateY(-140%);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem var(--page-pad);
  border-bottom: 1px solid transparent;
  background: rgba(246, 246, 241, 0.72);
  backdrop-filter: blur(18px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(220, 216, 202, 0.78);
  background: rgba(246, 246, 241, 0.92);
  box-shadow: 0 12px 40px rgba(23, 33, 31, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(38, 77, 66, 0.34);
  border-radius: 6px;
  background: var(--moss);
  color: var(--surface);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 2.55rem;
  padding: 0 0.9rem;
  border: 1px solid transparent;
  border-radius: 6px;
  color: rgba(23, 33, 31, 0.76);
  font-size: 0.92rem;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-color: rgba(38, 77, 66, 0.18);
  background: rgba(255, 254, 251, 0.62);
  color: var(--ink);
}

.site-nav .nav-cta {
  margin-left: 0.4rem;
  border-color: var(--moss);
  background: var(--moss);
  color: var(--surface);
}

.site-nav .nav-cta:hover {
  background: var(--moss-dark);
  color: var(--surface);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(38, 77, 66, 0.22);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  grid-area: 1 / 1;
  width: 1.15rem;
  height: 1px;
  background: currentColor;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 3rem) var(--page-pad) 3rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: var(--header-height) 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38, 77, 66, 0.32), transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 4.5rem;
}

.hero-copy {
  max-width: 730px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: 5rem;
}

h2 {
  max-width: 13ch;
  font-size: 3.65rem;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 620px;
  margin: 1.35rem 0 0;
  color: rgba(23, 33, 31, 0.76);
  font-size: 1.22rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.2rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.15;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.button.primary {
  border-color: var(--moss);
  background: var(--moss);
  color: var(--surface);
}

.button.primary:hover {
  border-color: var(--moss-dark);
  background: var(--moss-dark);
  transform: translateY(-2px);
}

.button.secondary {
  border-color: rgba(23, 33, 31, 0.18);
  background: rgba(255, 254, 251, 0.64);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: rgba(36, 58, 82, 0.32);
  background: var(--surface);
  transform: translateY(-2px);
}

.hero-facts {
  display: grid;
  max-width: 640px;
  margin: 2.6rem 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.hero-facts div {
  min-width: 0;
  padding: 1rem 1rem 1rem 0;
}

.hero-facts div + div {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.portrait-wrap {
  position: relative;
  min-height: 570px;
  isolation: isolate;
}

.portrait-wrap::before,
.portrait-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(38, 77, 66, 0.18);
}

.portrait-wrap::before {
  inset: 2.3rem -1.3rem -1.3rem 1.4rem;
  background: var(--sage);
}

.portrait-wrap::after {
  inset: -1.2rem 1.2rem 1.4rem -1.2rem;
  background: transparent;
}

.portrait-wrap img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: 55% 40%;
  border: 1px solid rgba(23, 33, 31, 0.13);
  border-radius: 8px;
  filter: saturate(0.98) contrast(1.02);
  box-shadow: var(--shadow);
}

.portrait-meta,
.portrait-caption {
  position: absolute;
  z-index: 2;
  display: flex;
  border: 1px solid rgba(23, 33, 31, 0.12);
  border-radius: 6px;
  background: rgba(255, 254, 251, 0.84);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.portrait-meta {
  top: 1rem;
  left: 1rem;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.5rem;
}

.portrait-meta span {
  padding: 0.38rem 0.55rem;
  border-radius: 5px;
  background: rgba(237, 237, 223, 0.78);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.portrait-caption {
  right: 1rem;
  bottom: 1rem;
  flex-direction: column;
  max-width: 15.5rem;
  padding: 0.85rem 0.95rem;
}

.portrait-caption span {
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portrait-caption strong {
  margin-top: 0.2rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.16;
}

.scroll-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: min(1180px, 100%);
  margin: 2rem auto 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.scroll-note span {
  width: 4.6rem;
  height: 1px;
  background: var(--moss);
}

.scroll-note p {
  margin: 0;
}

.section {
  padding: 7rem var(--page-pad);
}

.section-heading,
.process-header {
  width: min(1180px, 100%);
  margin: 0 auto 3.2rem;
}

.section-heading h2,
.process-header h2 {
  max-width: 12ch;
}

.care-layout {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 3.5rem;
  align-items: start;
}

.care-intro {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.care-intro p,
.process-header p,
.about-copy p,
.trust-copy p,
.contact-inner p {
  margin: 0;
  color: rgba(23, 33, 31, 0.74);
  font-size: 1.04rem;
}

.care-intro p {
  max-width: 33rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  color: var(--blue);
  font-weight: 800;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.text-link svg {
  transition: transform 180ms ease;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.care-card,
.credential-item,
.trust-item {
  border: 1px solid rgba(23, 33, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 254, 251, 0.68);
}

.care-card {
  min-height: 17.5rem;
  padding: 1.35rem;
}

.care-card span,
.credential-item span {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
}

.care-card p,
.credential-item p,
.trust-item p,
.faq-list p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.process {
  background: var(--surface);
}

.process-header {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2.5rem;
  align-items: end;
}

.process-header p {
  max-width: 40rem;
}

.process-track {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  min-height: 18rem;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
}

.step-line {
  position: relative;
  height: 6rem;
  margin-bottom: 1.2rem;
}

.step-line::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1px;
  background: var(--line);
}

.step-line span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.2rem;
  height: 2.2rem;
  transform: translateY(-50%);
  border: 1px solid var(--moss);
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent calc(50% - 1px), var(--moss) calc(50% - 1px), var(--moss) calc(50% + 1px), transparent calc(50% + 1px)),
    var(--surface);
}

.process-step h3 {
  max-width: 12rem;
}

.process-step p {
  max-width: 19rem;
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.about-band {
  padding: 7rem var(--page-pad);
  background: var(--moss-dark);
  color: rgba(255, 254, 251, 0.8);
}

.about-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 4rem;
  align-items: center;
}

.about-photo {
  position: relative;
  border-left: 1px solid rgba(255, 254, 251, 0.22);
  padding-left: 1.2rem;
}

.about-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 52% 38%;
  border-radius: 8px;
  border: 1px solid rgba(255, 254, 251, 0.18);
}

.about-copy .eyebrow,
.trust-copy .eyebrow,
.contact-inner .eyebrow {
  color: var(--sage);
}

.about-copy h2,
.trust-copy h2,
.contact-inner h2 {
  max-width: 14ch;
  color: var(--surface);
}

.about-copy p {
  max-width: 48rem;
  margin-top: 1.5rem;
  color: rgba(255, 254, 251, 0.72);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.about-points div {
  min-height: 8.75rem;
  padding: 1rem;
  border: 1px solid rgba(255, 254, 251, 0.16);
  border-radius: 8px;
  background: rgba(255, 254, 251, 0.05);
}

.about-points strong {
  display: block;
  color: var(--surface);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
}

.about-points span {
  display: block;
  margin-top: 0.7rem;
  color: rgba(255, 254, 251, 0.7);
  font-size: 0.9rem;
}

.credential-list {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.credential-item {
  min-height: 18rem;
  padding: 1.25rem;
  background: rgba(255, 254, 251, 0.74);
}

.trust-band {
  display: grid;
  padding: 7rem var(--page-pad);
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 4rem;
  align-items: start;
  background:
    linear-gradient(90deg, rgba(36, 58, 82, 0.08) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--blue);
  color: rgba(255, 254, 251, 0.78);
}

.trust-copy {
  max-width: 34rem;
  justify-self: end;
}

.trust-copy p {
  margin-top: 1.4rem;
  color: rgba(255, 254, 251, 0.72);
}

.trust-grid {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.trust-item {
  min-height: 12.5rem;
  padding: 1.2rem;
  border-color: rgba(255, 254, 251, 0.14);
  background: rgba(255, 254, 251, 0.06);
}

.trust-item h3 {
  color: var(--surface);
}

.trust-item p {
  color: rgba(255, 254, 251, 0.68);
}

.faq-list {
  display: grid;
  width: min(920px, 100%);
  margin: 0 auto;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid rgba(23, 33, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 254, 251, 0.74);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.1rem;
  padding: 1rem 1.15rem;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

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

.faq-list summary::after {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  flex: 0 0 auto;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-list p {
  max-width: 55rem;
  padding: 0 1.15rem 1.15rem;
}

.contact {
  padding: 7rem var(--page-pad);
  background:
    linear-gradient(120deg, rgba(191, 119, 127, 0.16), transparent 42%),
    var(--moss-dark);
}

.contact-inner {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  max-width: none;
}

.contact-inner p {
  max-width: 44rem;
  margin: 1.25rem auto 0;
  color: rgba(255, 254, 251, 0.72);
}

.contact-actions {
  justify-content: center;
}

.contact .button.secondary {
  border-color: rgba(255, 254, 251, 0.24);
  background: rgba(255, 254, 251, 0.08);
  color: var(--surface);
}

.contact .button.secondary:hover {
  background: rgba(255, 254, 251, 0.16);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem var(--page-pad);
  border-top: 1px solid rgba(255, 254, 251, 0.1);
  background: #0e211e;
  color: rgba(255, 254, 251, 0.7);
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer strong {
  color: var(--surface);
}

.site-footer a + a {
  margin-top: 0.25rem;
}

.site-footer a:hover {
  color: var(--surface);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(191, 119, 127, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-grid,
  .care-layout,
  .about-grid {
    gap: 2.5rem;
  }

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

@media (max-width: 900px) {
  :root {
    --page-pad: 1.25rem;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 1rem auto 1rem;
    display: grid;
    gap: 0.45rem;
    padding: 0.6rem;
    transform: translateY(-12px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 254, 251, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 2rem);
  }

  .hero-grid,
  .care-layout,
  .process-header,
  .about-grid,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    max-width: 10ch;
    font-size: 3.3rem;
  }

  h2 {
    max-width: 14ch;
    font-size: 2.45rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .portrait-wrap {
    min-height: auto;
  }

  .portrait-wrap img {
    height: 560px;
  }

  .care-intro {
    position: static;
  }

  .process-track,
  .about-points,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
  }

  .step-line {
    height: 3.6rem;
  }

  .trust-copy {
    max-width: none;
    justify-self: start;
  }

  .trust-grid {
    max-width: none;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 0.75rem;
  }

  .brand small {
    display: none;
  }

  h1 {
    max-width: 11ch;
    font-size: 2.68rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .section,
  .about-band,
  .trust-band,
  .contact {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-facts div {
    padding: 0.78rem 0.55rem 0.78rem 0;
  }

  .hero-facts div + div {
    padding-left: 0.55rem;
    border-left: 1px solid var(--line);
  }

  .hero-facts dt {
    font-size: 0.68rem;
  }

  .hero-facts dd {
    font-size: 0.86rem;
    overflow-wrap: anywhere;
  }

  .portrait-wrap::before,
  .portrait-wrap::after {
    display: none;
  }

  .portrait-wrap img {
    height: 430px;
  }

  .portrait-meta {
    right: 0.75rem;
    left: 0.75rem;
  }

  .portrait-caption {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: none;
  }

  .care-grid,
  .credential-list {
    grid-template-columns: 1fr;
  }

  .care-card,
  .credential-item,
  .trust-item {
    min-height: auto;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
