:root {
  --ivory: #fbf7ef;
  --paper: #f2eadc;
  --paper-deep: #e8dcc8;
  --graphite: #252827;
  --graphite-soft: #343837;
  --ink: #2b2926;
  --muted: #655f56;
  --burgundy: #741f25;
  --burgundy-deep: #54151a;
  --terracotta: #a64b38;
  --olive: #777752;
  --olive-deep: #55563c;
  --gold: #b68a3f;
  --gold-light: #d8b874;
  --line: rgba(74, 57, 35, 0.18);
  --shadow-soft: 0 18px 48px rgba(54, 42, 27, 0.1);
  --shadow-deep: 0 28px 70px rgba(28, 30, 29, 0.22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: 3.3rem;
  line-height: 1.05;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--burgundy);
  transform: translateY(-160%);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 82px;
  padding: 0 4.5vw;
  color: #f8f1e6;
  background: rgba(37, 40, 39, 0.96);
  border-bottom: 1px solid rgba(216, 184, 116, 0.28);
  transition: min-height 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(30, 32, 31, 0.98);
  box-shadow: 0 10px 32px rgba(18, 20, 19, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: clamp(230px, 20vw, 290px);
}

.brand__logo {
  display: block;
  width: clamp(230px, 20vw, 290px);
}

.brand__logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.site-nav a {
  position: relative;
  padding: 0.55rem 0;
  color: rgba(255, 250, 243, 0.82);
  font-size: 0.85rem;
  font-weight: 650;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0.2rem;
  left: 50%;
  height: 1px;
  background: var(--gold-light);
  transition: right 180ms ease, left 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  right: 0;
  left: 0;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta {
  color: #fffaf3;
  background: var(--terracotta);
}

.header-cta img,
.button img,
.path-card__action img {
  filter: invert(1);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(216, 184, 116, 0.35);
  border-radius: 4px;
  background: transparent;
}

.menu-button img {
  margin: auto;
  filter: invert(1);
}

.hero {
  position: relative;
  min-height: 850px;
  padding-top: 82px;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero__scene {
  position: absolute;
  inset: 82px 0 0;
  display: block;
  overflow: hidden;
}

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

.hero__ai-note {
  position: absolute;
  top: 94px;
  right: 0.75rem;
  z-index: 4;
  margin: 0;
  padding: 0.24rem 0.4rem;
  color: rgba(43, 41, 38, 0.76);
  background: rgba(255, 251, 244, 0.66);
  border: 1px solid rgba(74, 57, 35, 0.12);
  font-size: 0.62rem;
  line-height: 1.2;
}

.hero__copy {
  position: absolute;
  top: 140px;
  left: 39.5%;
  z-index: 3;
  width: min(37vw, 555px);
}

.hero__domains,
.section-label,
.section-heading > p {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 560px;
  margin: 0 0 0.9rem;
  font-size: clamp(4.4rem, 5.2vw, 5.35rem);
  line-height: 0.96;
  text-wrap: balance;
}

.hero__lead {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 560;
}

.hero__trust {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  max-width: 530px;
  color: #4f4a43;
  font-size: 0.84rem;
}

.hero__trust img,
.transparency-band > img,
.contact-points img,
.separation-note img {
  flex: 0 0 auto;
  filter: invert(56%) sepia(41%) saturate(800%) hue-rotate(358deg) brightness(86%);
}

.hero__contact {
  margin-top: 1.25rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.button--primary {
  color: #fff;
  background: var(--burgundy);
  box-shadow: 0 12px 28px rgba(116, 31, 37, 0.2);
}

.button--primary:hover,
.button--pflege:hover {
  background: var(--burgundy-deep);
}

.button--ghost {
  color: var(--ink);
  border-color: rgba(43, 41, 38, 0.26);
  background: rgba(251, 247, 239, 0.68);
}

.button--gold {
  color: #211f1c;
  background: var(--gold-light);
}

.button--olive {
  color: #fff;
  background: var(--olive-deep);
}

.button--pflege {
  color: #fff;
  background: var(--burgundy);
}

.hero-paths {
  position: absolute;
  right: 4.5vw;
  bottom: 34px;
  left: 30.5%;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.path-card {
  --card-color: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-height: 250px;
  padding: 1.35rem 1.2rem 1.15rem;
  border: 1px solid rgba(182, 138, 63, 0.36);
  border-radius: 6px;
  background: rgba(255, 251, 244, 0.94);
  box-shadow: 0 16px 38px rgba(55, 39, 20, 0.14);
  text-align: center;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.path-card:hover {
  border-color: var(--card-color);
  box-shadow: 0 22px 55px rgba(54, 42, 27, 0.16);
}

.path-card > .path-card__emblem {
  width: 62px;
  height: 62px;
  filter: none;
  object-fit: contain;
}

.path-card > div {
  display: grid;
  gap: 0.4rem;
}

.path-card strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  text-transform: uppercase;
}

.path-card > div span {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.45;
}

.path-card__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  padding: 0.65rem 0.85rem;
  color: #fff;
  background: var(--card-color);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 750;
}

.path-card--pflege { --card-color: var(--burgundy); }
.path-card--vorsorge { --card-color: var(--olive); }
.path-card--dnd { --card-color: var(--graphite-soft); }

.transparency-band {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: min(980px, calc(100% - 48px));
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line);
  background: #faf5eb;
}

.transparency-band p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.section-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading--left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.brand-map {
  padding-top: 7rem;
  padding-bottom: 8rem;
}

.brand-map__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px minmax(0, 1fr);
  grid-template-areas:
    "pflege center vorsorge"
    "nurse center dnd";
  gap: 1.3rem 4rem;
  align-items: stretch;
}

.brand-map__grid::before,
.brand-map__grid::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: rgba(182, 138, 63, 0.48);
}

.brand-map__grid::before {
  top: 50%;
  right: 12%;
  left: 12%;
  height: 1px;
}

.brand-map__grid::after {
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 1px;
}

.map-domain {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 0.8rem;
  min-height: 190px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #faf5eb;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease;
}

.map-domain:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.map-domain > img {
  grid-row: 1 / 3;
  filter: invert(54%) sepia(30%) saturate(780%) hue-rotate(358deg) brightness(90%);
}

.map-domain > .map-domain__compass,
.brand-map__center > .brand-map__monogram {
  filter: none;
  object-fit: contain;
}

.map-domain > span {
  width: fit-content;
  padding: 0.2rem 0.42rem;
  color: #fff;
  background: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-domain h3 {
  grid-column: 1 / -1;
  margin: 0.4rem 0 0;
  font-size: 1.55rem;
  line-height: 1.05;
}

.map-domain p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.map-domain--pflege { grid-area: pflege; border-top: 4px solid var(--burgundy); }
.map-domain--vorsorge { grid-area: vorsorge; border-top: 4px solid var(--graphite); }
.map-domain--nursefinders { grid-area: nurse; border-top: 4px solid var(--olive); }
.map-domain--dnd { grid-area: dnd; border-top: 4px solid var(--gold); }

.map-domain--pflege > span { background: var(--burgundy); }
.map-domain--vorsorge > span { background: var(--graphite); }
.map-domain--nursefinders > span { background: var(--olive); }

.brand-map__center {
  grid-area: center;
  align-self: center;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 1.5rem;
  color: #fffaf3;
  background: var(--graphite);
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: var(--shadow-deep);
  text-align: center;
}

.brand-map__center img {
  filter: invert(69%) sepia(43%) saturate(600%) hue-rotate(358deg) brightness(93%);
}

.brand-map__center > .brand-map__monogram {
  width: 72px;
  height: auto;
}

.brand-map__center strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.brand-map__center span {
  color: var(--gold-light);
  font-size: 0.78rem;
  line-height: 1.45;
}

.pflege-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 34vw) minmax(0, 1fr);
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pflege-section__image {
  position: sticky;
  top: 68px;
  align-self: start;
  height: calc(100vh - 68px);
  min-height: 720px;
  overflow: hidden;
  background: var(--burgundy-deep);
}

.pflege-section__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(84, 21, 26, 0.12);
  pointer-events: none;
}

.pflege-section__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.pflege-section__content {
  width: min(760px, calc(100% - 64px));
  margin: 0;
  padding: 7rem 0 6rem 4.5rem;
}

.pflege-section__intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.pflege-section__intro p,
.pflege-section__intro strong {
  margin: 0;
}

.pflege-section__intro p {
  color: var(--muted);
}

.pflege-section__intro strong {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.45;
}

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

.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 0.85rem;
  align-content: start;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(116, 31, 37, 0.24);
}

.service-item img {
  grid-row: 1 / 3;
  filter: invert(54%) sepia(35%) saturate(780%) hue-rotate(358deg) brightness(88%);
}

.service-item h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.pflege-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 3.5rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.62);
}

.pflege-values span {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.pflege-values img {
  width: 24px;
  height: 24px;
  filter: invert(48%) sepia(35%) saturate(900%) hue-rotate(358deg) brightness(81%);
}

.section-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.section-cta p,
.section-cta span {
  margin: 0;
}

.section-cta p {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.section-cta span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section-cta .button {
  grid-column: 2;
  grid-row: 1 / 3;
}

.section-cta .text-link {
  grid-column: 1 / -1;
  margin-top: 0.8rem;
}

.text-link {
  position: relative;
  width: fit-content;
  padding-bottom: 0.15rem;
  color: var(--burgundy);
  font-size: 0.86rem;
  font-weight: 800;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(0.35);
}

.text-link--light {
  color: var(--gold-light);
}

.vorsorge-section {
  padding: 7rem 0;
  color: #f8f1e6;
  background: var(--graphite);
}

.vorsorge-section__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.vorsorge-section__media {
  display: grid;
  gap: 1rem;
}

.vorsorge-section__image {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 184, 116, 0.36);
  box-shadow: 0 22px 55px rgba(10, 12, 12, 0.32);
}

.vorsorge-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vorsorge-section__copy h2,
.dnd-section__copy h2 {
  color: #fffaf3;
}

.vorsorge-section__copy > p:not(.section-label),
.dnd-section__copy > p:not(.section-label) {
  max-width: 58ch;
  color: rgba(248, 241, 230, 0.72);
}

.separation-note {
  display: flex;
  gap: 0.6rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(216, 184, 116, 0.24);
  border-bottom: 1px solid rgba(216, 184, 116, 0.24);
  font-size: 0.86rem;
}

.vorsorge-section__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(216, 184, 116, 0.24);
  border: 1px solid rgba(216, 184, 116, 0.24);
}

.vorsorge-section__points article {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  background: var(--graphite-soft);
}

.vorsorge-section__points strong {
  font-family: var(--serif);
  color: var(--gold-light);
  font-size: 1rem;
}

.vorsorge-section__points span {
  color: rgba(248, 241, 230, 0.7);
  font-size: 0.86rem;
}

.nursefinders-section {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 6rem;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.nursefinders-section__visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  color: #fff;
  background: var(--olive-deep);
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: var(--shadow-deep);
}

.nursefinders-section__visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(216, 184, 116, 0.5);
  border-radius: 50%;
}

.nursefinders-section__visual img {
  filter: invert(80%) sepia(31%) saturate(634%) hue-rotate(358deg) brightness(97%);
}

.nursefinders-section__visual span {
  position: absolute;
  bottom: 27%;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nursefinders-section__copy > p:not(.section-label) {
  max-width: 62ch;
  color: var(--muted);
}

.nursefinders-section__status {
  margin: 1.25rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--olive);
  font-size: 0.88rem;
}

.nursefinders-section__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.nursefinders-section__details article {
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
}

.nursefinders-section__details article + article {
  border-left: 1px solid var(--line);
}

.nursefinders-section__details strong {
  color: var(--olive-deep);
  font-family: var(--serif);
  font-size: 1rem;
}

.nursefinders-section__details span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.dnd-section {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.dnd-section__image {
  position: absolute;
  inset: 0;
  background: url("../img/dnd-tabletop-v1.webp") center / cover no-repeat;
  opacity: 1;
}

.dnd-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(37, 40, 39, 0.9) 0%, rgba(37, 40, 39, 0.72) 30%, rgba(37, 40, 39, 0.08) 62%, transparent 100%);
}

.dnd-section__copy {
  position: relative;
  z-index: 2;
  margin-left: max(6vw, 48px);
}

.dnd-section__copy > * {
  max-width: 650px;
}

.about-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.about-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-section__grid article {
  position: relative;
  padding: 2.2rem 1.5rem 2rem;
}

.about-section__grid article + article {
  border-left: 1px solid var(--line);
}

.about-section__grid article::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-bottom: 1.35rem;
  background: var(--gold);
}

.about-section__grid h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

.about-section__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.15fr);
  gap: 5rem;
  padding: 7rem max(6vw, 48px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.request-section__intro h2 {
  font-size: 3.6rem;
}

.request-section__intro > p:not(.section-label, .sensitive-note) {
  max-width: 55ch;
  color: var(--muted);
}

.contact-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.contact-points span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 750;
}

.sensitive-note {
  margin-top: 2rem;
  padding: 1rem;
  border-left: 3px solid var(--burgundy);
  color: var(--muted);
  background: rgba(251, 247, 239, 0.58);
  font-size: 0.8rem;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--burgundy);
  border-radius: 6px;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field > span {
  font-size: 0.82rem;
  font-weight: 800;
}

.field small {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(43, 41, 38, 0.22);
  border-radius: 3px;
  color: var(--ink);
  background: #fffdf8;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field--wide {
  grid-column: 1 / -1;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.77rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
}

.consent a {
  color: var(--burgundy);
  text-decoration: underline;
}

.bot-field {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 120px;
  padding: 1.5rem 4.5vw;
  color: rgba(255, 250, 243, 0.74);
  background: var(--graphite);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  width: clamp(230px, 22vw, 290px);
}

.site-footer__brand > img {
  display: block;
  width: 100%;
  height: auto;
  filter: none;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 1.3rem;
  font-size: 0.78rem;
}

.site-footer__legal {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
}

[data-reveal] {
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

[data-reveal="up"] { transform: translateY(28px); }
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="zoom"] { transform: scale(0.92); }

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes compass-breathe {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  50% { transform: rotate(3deg) scale(1.03); }
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 1rem;
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .hero__copy {
    left: 36%;
    width: 42%;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero-paths {
    right: 2.5vw;
    left: 22%;
  }

  .pflege-section__content {
    padding-left: 3rem;
  }

  .brand-map__grid {
    gap: 1rem 2rem;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 0;
    padding: 2rem 24px;
    background: rgba(37, 40, 39, 0.99);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 250ms ease, opacity 180ms ease, visibility 250ms ease;
  }

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

  .site-nav a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(216, 184, 116, 0.18);
    font-family: var(--serif);
    font-size: 1.3rem;
  }

  .hero {
    min-height: 880px;
  }

  .hero__copy {
    top: 132px;
    left: 35%;
    width: 58%;
  }

  .hero-paths {
    right: 2.5vw;
    left: 8vw;
  }

  .path-card {
    min-height: 235px;
    padding-inline: 1rem;
  }

  .brand-map__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "center center"
      "pflege vorsorge"
      "nurse dnd";
  }

  .brand-map__center {
    width: 250px;
    margin: 0 auto 1rem;
  }

  .brand-map__grid::before,
  .brand-map__grid::after {
    display: none;
  }

  .pflege-section {
    grid-template-columns: 1fr;
  }

  .pflege-section__image {
    position: relative;
    top: auto;
    height: 460px;
    min-height: 0;
  }

  .pflege-section__content {
    width: min(var(--max), calc(100% - 48px));
    margin-inline: auto;
    padding: 5rem 0;
  }

  .vorsorge-section__inner,
  .nursefinders-section,
  .request-section {
    grid-template-columns: 1fr;
  }

  .nursefinders-section {
    gap: 3rem;
  }

  .nursefinders-section__visual {
    width: min(360px, 80vw);
    margin-inline: auto;
  }

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

  .about-section__grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .about-section__grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .request-section {
    gap: 3rem;
    padding-right: 24px;
    padding-left: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer nav {
    display: none;
  }
}

@media (max-width: 680px) {
  h2,
  .request-section__intro h2 {
    font-size: 2.35rem;
  }

  .section-shell {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    min-height: 72px;
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand__logo {
    width: 48px;
  }

  .site-nav {
    top: 72px;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    padding: 72px 16px 3rem;
  }

  .hero__scene {
    position: relative;
    inset: auto;
    order: 1;
    width: calc(100% + 32px);
    height: 330px;
    margin-left: -16px;
  }

  .hero__scene img {
    object-position: 29% center;
  }

  .hero__ai-note {
    top: 374px;
    right: 0.45rem;
    font-size: 0.58rem;
  }

  .hero__copy,
  .hero-paths {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .hero__copy {
    order: 2;
    text-align: center;
  }

  .hero__domains {
    margin-bottom: 0.55rem;
  }

  .hero h1 {
    font-size: 3.4rem;
    line-height: 0.98;
  }

  .hero__lead {
    font-size: 1.02rem;
  }

  .hero__trust {
    justify-content: center;
    margin-inline: auto;
    text-align: left;
  }

  .hero-paths {
    order: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .path-card {
    min-height: 190px;
    padding: 1.15rem;
  }

  .path-card > .path-card__emblem {
    width: 54px;
    height: 54px;
  }

  .path-card strong {
    font-size: 1.25rem;
  }

  .transparency-band {
    width: calc(100% - 32px);
    padding: 1rem;
  }

  .brand-map {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .brand-map__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "center"
      "pflege"
      "vorsorge"
      "nurse"
      "dnd";
  }

  .brand-map__center {
    width: min(250px, 80vw);
  }

  .pflege-section__image {
    height: 360px;
  }

  .pflege-section__content {
    width: calc(100% - 32px);
    padding: 4.5rem 0;
  }

  .pflege-section__intro,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .section-cta {
    grid-template-columns: 1fr;
  }

  .section-cta .button,
  .section-cta .text-link {
    grid-column: 1;
    grid-row: auto;
  }

  .vorsorge-section {
    padding: 5rem 0;
  }

  .vorsorge-section__inner {
    gap: 2.5rem;
  }

  .vorsorge-section__points,
  .nursefinders-section__details {
    grid-template-columns: 1fr;
  }

  .nursefinders-section__details article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .nursefinders-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .dnd-section {
    min-height: 620px;
  }

  .dnd-section__copy {
    margin-left: auto;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

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

  .about-section__grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .request-section {
    padding: 5rem 16px;
  }

  .request-form {
    grid-template-columns: 1fr;
    padding: 1.2rem;
  }

  .field--wide {
    grid-column: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: 0;
    padding: 2rem 16px;
  }

  .site-footer__legal {
    justify-content: flex-start;
  }

  .site-footer__brand {
    width: min(280px, 78vw);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
