:root {
  --paper: #fffaf7;
  --paper-deep: #f8eee9;
  --ink: #2c2223;
  --muted: #725f62;
  --rose: #a9435c;
  --rose-dark: #7e2e45;
  --rose-soft: #f8dfe5;
  --gold: #b67b45;
  --line: rgba(88, 52, 60, 0.14);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(82, 42, 52, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(248, 223, 229, 0.72), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(239, 218, 194, 0.48), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--rose-dark);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--rose);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(169, 67, 92, 0.36);
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 247, 0.88);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: var(--content);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--rose-soft);
  color: var(--rose-dark);
  box-shadow: inset 0 0 0 1px rgba(169, 67, 92, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--rose-dark);
}

.container {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
}

.hero {
  min-height: 680px;
  padding: 96px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--rose-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: var(--rose);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.lead {
  max-width: 680px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid var(--rose-dark);
  border-radius: 999px;
  background: var(--rose-dark);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(126, 46, 69, 0.18);
}

.button:hover {
  background: var(--rose);
  color: var(--white);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  box-shadow: none;
}

.care-orbit {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  margin: auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(169, 67, 92, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.50);
  box-shadow: var(--shadow);
}

.care-orbit::before,
.care-orbit::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(169, 67, 92, 0.22);
  border-radius: 50%;
}

.care-orbit::before {
  inset: 12%;
}

.care-orbit::after {
  inset: 27%;
}

.heart {
  position: relative;
  z-index: 2;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 38px;
  background: linear-gradient(145deg, var(--rose-soft), #f4c8d3);
  color: var(--rose-dark);
  font-size: 3rem;
  transform: rotate(-4deg);
  box-shadow: 0 20px 38px rgba(126, 46, 69, 0.16);
}

.orbit-note {
  position: absolute;
  z-index: 3;
  max-width: 150px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.35;
  box-shadow: 0 8px 22px rgba(82, 42, 52, 0.08);
}

.orbit-note.one { top: 5%; right: 8%; }
.orbit-note.two { bottom: 12%; right: -2%; }
.orbit-note.three { bottom: 8%; left: 3%; }

.section {
  padding: 86px 0;
}

.section-soft {
  border-block: 1px solid var(--line);
  background: rgba(248, 238, 233, 0.52);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

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

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 35px rgba(82, 42, 52, 0.06);
}

.card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--rose-soft);
  color: var(--rose-dark);
  font-size: 1.25rem;
}

.card p,
.prose p,
.prose li {
  color: var(--muted);
}

.notice {
  padding: 24px 28px;
  border: 1px solid rgba(182, 123, 69, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 247, 231, 0.78);
}

.notice strong {
  color: var(--ink);
}

.page-head {
  padding: 80px 0 42px;
}

.page-head h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6vw, 4.7rem);
}

.updated {
  color: var(--muted);
  font-size: 0.9rem;
}

.prose-layout {
  padding: 12px 0 96px;
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 64px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.64);
}

.toc strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.prose section {
  padding-top: 18px;
  margin-bottom: 42px;
  scroll-margin-top: 20px;
}

.prose h2 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 1.65rem;
}

.prose h3 {
  margin-top: 26px;
}

.prose ul,
.prose ol {
  padding-left: 1.35rem;
}

.prose li + li {
  margin-top: 8px;
}

.steps {
  list-style: none;
  padding: 0 !important;
  counter-reset: support-step;
}

.steps li {
  position: relative;
  min-height: 48px;
  padding-left: 58px;
  counter-increment: support-step;
}

.steps li::before {
  content: counter(support-step);
  position: absolute;
  left: 0;
  top: -3px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--rose-dark);
  font-weight: 800;
}

.support-grid {
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.support-grid .card {
  min-height: 210px;
}

.contact-card {
  margin-bottom: 96px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
}

.contact-card h2,
.contact-card p {
  margin-bottom: 8px;
  color: var(--white);
}

.contact-card .button {
  flex: 0 0 auto;
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .button-row {
    justify-content: center;
  }

  .lead {
    margin-inline: auto;
  }

  .care-orbit {
    width: min(88vw, 420px);
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .prose-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 660px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 32px), var(--content));
  }

  .nav {
    min-height: 64px;
    padding: 0 16px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a:first-child {
    display: none;
  }

  .hero {
    padding: 58px 0 72px;
    gap: 50px;
  }

  .orbit-note {
    font-size: 0.7rem;
  }

  .section {
    padding: 68px 0;
  }

  .page-head {
    padding-top: 58px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
