.profile-page {
  --profile-house: #171615;
  --profile-house-soft: #1d1b19;
  --profile-image-ground: #141210;
  --profile-cream: var(--ad-cream);
  --profile-cream-soft: var(--ad-cream-soft);
  --profile-cream-muted: var(--ad-cream-muted);
  --profile-gold: #a88b53;
  --profile-gold-light: #c7ad76;
  --profile-gold-line: rgba(186, 153, 91, 0.3);
  --profile-gold-faint: rgba(186, 153, 91, 0.18);
  --profile-story-paper: #c8c1b5;
  --profile-story-ink: #37342f;
  --profile-story-heading: #26221e;
  --profile-story-gold: #6f592f;
  --profile-story-line: rgba(111, 89, 47, 0.25);
  --profile-serif: "Cormorant Garamond", Georgia, serif;
  --profile-reading: "Newsreader", Georgia, serif;
  --profile-modern: "Avenir Next", "Helvetica Neue", Arial, sans-serif;

  min-width: 0;
  margin: 0;
  color: var(--profile-cream-soft);
  background:
    radial-gradient(circle at 50% -8rem, rgba(116, 91, 60, 0.12), transparent 38rem),
    linear-gradient(180deg, #171613 0%, #11110f 56%, #0b0b0a 100%);
  font-family: var(--profile-reading);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.profile-page main {
  min-width: 0;
  overflow: clip;
}

.profile-page :where(h1, h2, h3, p, figure, blockquote, ul) {
  margin: 0;
}

.profile-page :where(h1, h2, h3) {
  font-family: var(--profile-serif);
  font-weight: 400;
}

.profile-page a {
  color: inherit;
  text-decoration: none;
}

.profile-page :where(a, button):focus-visible {
  outline: 1px solid var(--profile-gold-light);
  outline-offset: 5px;
  box-shadow: 0 0 0 3px rgba(199, 173, 118, 0.12);
}

.profile-page [hidden] {
  display: none !important;
}

/* Die gemeinsame Kopfzeile bleibt Teil des dunklen Hauses. */
.profile-page .site-header {
  width: min(calc(100% - 8vw), 1320px);
  min-height: 126px;
  margin-inline: auto;
  color: var(--profile-cream-soft);
  background: transparent;
  border-bottom-color: var(--profile-gold-faint);
}

.profile-page .site-header::after {
  background: var(--profile-gold);
}

.profile-page .wordmark__eyebrow {
  color: rgba(216, 196, 163, .62);
  font-weight: 300;
}

.profile-page .wordmark__name {
  color: #c3a970;
}

.profile-page .main-nav a {
  color: var(--profile-cream);
}

.profile-page .main-nav a::after {
  background: var(--profile-gold);
}

.profile-page .main-nav .is-current {
  color: var(--profile-gold-light);
}

.profile-page .menu-toggle {
  color: var(--profile-cream);
}

.profile-page .profile-article {
  min-width: 0;
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

/*
 * Auftakt: Das Hochformat bleibt ein eigenes Bildfeld. Der Text steht in einer
 * zweiten Rasterspalte und kann deshalb auch in schmalen Mac-Fenstern niemals
 * über das Porträt laufen.
 */
.profile-page .profile-hero {
  display: grid;
  grid-template-columns: minmax(270px, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: clamp(3.25rem, 7vw, 8rem);
  width: min(calc(100% - 8vw), 1280px);
  margin-inline: auto;
  padding: clamp(3.5rem, 6.5vw, 7rem) 0 clamp(5rem, 8vw, 8.5rem);
  border-bottom: 1px solid var(--profile-gold-faint);
}

.profile-page .profile-tableau {
  position: relative;
  isolation: isolate;
  justify-self: end;
  width: min(100%, 440px);
  aspect-ratio: 2 / 3;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 25%, rgba(66, 45, 34, 0.28), transparent 45%),
    var(--profile-image-ground);
  border: 0;
  border-radius: 0;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.34);
}

.profile-page .profile-tableau::before {
  display: none;
  content: none;
}

.profile-page .profile-tableau::after {
  position: absolute;
  z-index: 2;
  inset: clamp(8px, 1vw, 13px);
  content: "";
  pointer-events: none;
  border: 1px solid rgba(199, 173, 118, 0.3);
}

.profile-page .profile-tableau :where(picture, img),
.profile-page .profile-tableau__image {
  display: block;
  width: 100%;
  height: 100%;
}

.profile-page .profile-tableau__image,
.profile-page .profile-tableau img {
  object-fit: contain;
  object-position: center;
  background: var(--profile-image-ground);
}

.profile-page .profile-intro {
  display: block;
  min-width: 0;
  width: auto;
  margin: 0;
  padding: 0;
  color: var(--profile-cream-soft);
  border: 0;
}

.profile-page .profile-intro__kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
  color: var(--profile-gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.profile-page .profile-intro__kicker::before {
  width: 22px;
  height: 1px;
  content: "";
  flex: 0 0 auto;
  background: currentColor;
}

.profile-page .profile-intro__name,
.profile-page .profile-intro h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--ad-cream);
  font-family: var(--profile-serif);
  font-size: clamp(3.15rem, 4.4vw, 5.25rem);
  font-weight: 400;
  hyphens: none;
  letter-spacing: -0.045em;
  line-height: 0.92;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.profile-page .profile-intro__role {
  margin-top: clamp(1.65rem, 2.8vw, 2.5rem);
  color: var(--profile-gold-light);
  font-family: var(--profile-serif);
  font-size: clamp(.95rem, 1.25vw, 1.12rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: .115em;
  line-height: 1.32;
  text-transform: uppercase;
  text-wrap: balance;
}

.profile-page .profile-intro__essence {
  max-width: 39rem;
  margin-top: 1.4rem;
  padding-top: 1.35rem;
  color: var(--profile-cream-soft);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.62;
  border-top: 1px solid var(--profile-gold-line);
  text-wrap: pretty;
}

.profile-page .profile-intro__essence + .profile-intro__essence {
  margin-top: .85rem;
  padding-top: 0;
  border-top: 0;
}

/* Zitat und Verbindungen bilden auf allen Profilen einen stillen Nachklang. */
.profile-page .profile-quote {
  position: relative;
  width: min(58rem, calc(100% - 14vw));
  margin: clamp(1rem, 1.55vw, 1.35rem) auto 0;
  padding: clamp(.7rem, 1.25vw, 1rem) clamp(1rem, 4vw, 3rem) clamp(1.65rem, 2.5vw, 2.1rem);
  color: var(--profile-cream);
  text-align: center;
  background: transparent;
  border: 0;
}

/* Verbindungen stehen unter dem Zitat und lesen sich nicht wie eine Navigation.
 * Die Zeile bleibt anklickbar, liest sich aber nicht wie eine Navigation. */
.profile-page .profile-hero-links {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 4vw, 4.25rem);
  align-items: start;
  width: min(58rem, calc(100% - 14vw));
  margin: 0 auto;
  padding: clamp(1.8rem, 2.7vw, 2.2rem) 1rem clamp(2rem, 3vw, 2.5rem);
  text-align: center;
  border-bottom: 1px solid var(--profile-gold-line);
}

.profile-page .profile-hero-links[data-groups="1"] {
  grid-template-columns: minmax(0, 1fr);
  max-width: 34rem;
}

/* Wo die Papiererzählung unmittelbar folgt, schafft ein dunkler Zwischenraum
 * Distanz zur feinen Abschlusslinie der Verweise. */
.profile-page .profile-quote + .profile-story {
  margin-top: clamp(2.8rem, 4.5vw, 3.6rem);
}

/* Nach dem oberen Lebensregister beginnt die Papiererzählung ohne den früheren
 * leeren Zwischenblock. Der Abstand entsteht kontrolliert im Register selbst. */
.profile-page .profile-connections--top + .profile-quote + .profile-story {
  margin-top: 0;
}

.profile-page .profile-hero {
  border-bottom: 0;
  padding-bottom: clamp(3.2rem, 4.75vw, 4.4rem);
}

.profile-page .profile-quote::after {
  position: absolute;
  bottom: clamp(.62rem, 1vw, .82rem);
  left: 50%;
  width: clamp(5.5rem, 10vw, 7.5rem);
  height: 1px;
  content: "";
  background: var(--profile-gold-line);
  transform: translateX(-50%);
}

.profile-page .profile-hero-links__group {
  display: grid;
  justify-items: center;
  min-width: 0;
}

.profile-page .profile-hero-links__group-title {
  margin: 0 0 .62rem;
  color: var(--profile-gold);
  font-family: var(--profile-reading);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
}

.profile-page .profile-hero-links__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .35rem .9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-page .profile-hero-links__item {
  display: inline-flex;
  align-items: baseline;
  margin: 0;
  padding: 0;
}

.profile-page .profile-hero-links__item + .profile-hero-links__item::before {
  margin-right: .9rem;
  color: var(--profile-gold);
  content: "·";
}

.profile-page .profile-hero-links__link {
  color: var(--profile-cream-soft);
  font-family: var(--profile-reading);
  font-size: clamp(.95rem, 1.1vw, 1.02rem);
  font-weight: 400;
  line-height: 1.35;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.profile-page .profile-hero-links__link:hover,
.profile-page .profile-hero-links__link:focus-visible {
  color: var(--profile-gold-light);
  border-bottom-color: var(--profile-gold);
}

.profile-page .profile-hero-links__item--geschichte .profile-hero-links__link {
  color: var(--profile-cream);
  font-family: var(--profile-serif);
  font-size: clamp(1.08rem, 1.35vw, 1.23rem);
  font-style: italic;
}

.profile-page .profile-quote::before {
  display: none;
}

.profile-page .profile-quote blockquote {
  margin: 0;
}

.profile-page .profile-quote__text,
.profile-page .profile-quote blockquote > p,
.profile-page .profile-quote blockquote {
  color: var(--profile-cream-soft);
  font-family: var(--profile-serif);
  font-size: clamp(1.22rem, 1.5vw, 1.42rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.22;
  text-wrap: balance;
}

.profile-page .profile-quote--standalone {
  padding-bottom: clamp(2.7rem, 3.8vw, 3.4rem);
  border-bottom: 1px solid var(--profile-gold-line);
}

.profile-page .profile-quote__author,
.profile-page .profile-quote figcaption {
  margin-top: .78rem;
  color: var(--profile-cream-muted);
  font-family: var(--profile-reading);
  font-size: 13px;
  letter-spacing: 0.055em;
  line-height: 1.45;
}

/* Ein eigenständiges Szenenbild darf die Geschichte öffnen, bleibt aber ohne
 * schweren Außenrahmen oder Textüberlagerung. */
.profile-page .profile-story-illustration {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: clamp(5rem, 8vw, 8rem) 0 0;
  padding: 0;
  overflow: visible;
  background: #0b0a09;
  border: 0;
  box-shadow: none;
}

.profile-page .profile-story-illustration::before {
  position: absolute;
  z-index: 3;
  right: clamp(1.5rem, 5vw, 6rem);
  bottom: -1px;
  left: clamp(1.5rem, 5vw, 6rem);
  height: 1px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(168, 139, 83, 0.34) 20%, rgba(195, 169, 112, 0.88) 50%, rgba(168, 139, 83, 0.34) 80%, transparent);
  box-shadow: 0 1px 8px rgba(168, 139, 83, 0.18);
}

.profile-page .profile-story-illustration::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -4.6rem;
  left: 0;
  height: 4.65rem;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(52, 39, 25, 0.46), rgba(145, 115, 63, 0.22) 34%, rgba(230, 220, 199, 0) 100%);
}

.profile-page .profile-story-illustration img {
  display: block;
  width: 100%;
  height: auto;
}

.profile-page .profile-story-illustration + .profile-story {
  padding-top: clamp(4.8rem, 7vw, 7rem);
}

.profile-page .profile-story-illustration figcaption {
  padding: 0.85rem 1.1rem 0.9rem;
  color: var(--profile-gold);
  font-family: var(--profile-reading);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  border-top: 1px solid var(--profile-gold-faint);
}

/*
 * Die Erzählung liegt wie beim Silberwalzer auf einem warmen Papierband. Die
 * Lesespalte bleibt schmal; Schatten und Clipping ziehen nur den Grund bis an
 * beide Fensterränder, ohne daraus eine gerahmte Karte zu machen.
 */
.profile-page .profile-story {
  width: min(69ch, calc(100% - 14vw));
  margin-inline: auto;
  padding: clamp(6rem, 10vw, 10rem) 0 clamp(5.5rem, 9vw, 9rem);
  color: var(--profile-story-ink);
  background: var(--profile-story-paper);
  border: 0;
  box-shadow: 0 0 0 100vmax var(--profile-story-paper);
  clip-path: inset(0 -100vmax);
}

@media (min-width: 901px) {
  .profile-page .profile-story {
    width: min(830px, calc(100% - 12vw));
    padding-right: clamp(3.5rem, 5vw, 4.75rem);
    padding-left: clamp(3.5rem, 5vw, 4.75rem);
    box-shadow: 0 34px 76px -54px rgba(0, 0, 0, .88);
    clip-path: none;
  }
}

.profile-page .profile-story__title,
.profile-page .profile-story > h2 {
  max-width: 17ch;
  margin: 0 0 clamp(2.8rem, 4.5vw, 4rem);
  color: var(--profile-story-heading);
  font-family: var(--profile-serif);
  font-size: clamp(3.15rem, 4.2vw, 4.6rem);
  font-weight: 400;
  hyphens: none;
  letter-spacing: -0.04em;
  line-height: 0.96;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.profile-page .profile-story__section {
  min-width: 0;
}

.profile-page .profile-story__section + .profile-story__section {
  position: relative;
  margin-top: clamp(4.5rem, 7vw, 6.5rem);
  padding-top: clamp(4rem, 6vw, 5.5rem);
  border-top: 1px solid var(--profile-story-line);
}

.profile-page .profile-story__section + .profile-story__section::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: clamp(54px, 8vw, 84px);
  height: 1px;
  content: "";
  background: var(--profile-story-gold);
}

.profile-page .profile-story__heading,
.profile-page .profile-story h3 {
  max-width: 24ch;
  margin: 0 0 2rem;
  color: var(--profile-story-heading);
  font-family: var(--profile-serif);
  font-size: clamp(1.75rem, 2.35vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-wrap: balance;
}

.profile-page .profile-story__paragraph,
.profile-page .profile-story p {
  margin: 0;
  color: var(--profile-story-ink);
  font-family: var(--profile-reading);
  font-size: clamp(1.25rem, 1.3vw, 1.3rem);
  font-weight: 400;
  hyphens: auto;
  -webkit-hyphenate-limit-lines: 2;
  hyphenate-limit-lines: 2;
  line-height: 1.76;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.profile-page .profile-story__paragraph + .profile-story__paragraph,
.profile-page .profile-story p + p {
  margin-top: 1.55rem;
}

.profile-page .profile-story > .section-kicker {
  margin: 0 0 1.35rem;
  color: var(--profile-story-gold);
  font-family: var(--profile-reading);
  font-size: 0.7rem;
  font-weight: 500;
  hyphens: none;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.profile-page .profile-story > .section-kicker + [data-profile-target="story"] {
  margin-top: 0;
}

/* Geschichtsfiguren, verwandte Wollwesen und Begegnungen erscheinen als leises Register. */
.profile-page .profile-connections__group,
.profile-page .profile-connections-group,
.profile-page .profile-relations {
  width: min(69ch, calc(100% - 14vw));
  margin-inline: auto;
}

.profile-page .profile-connections {
  display: block;
  width: min(69ch, calc(100% - 14vw));
  margin-inline: auto;
  padding: clamp(2.25rem, 4vw, 3.4rem) 0;
  color: var(--profile-cream-soft);
  background: transparent;
  border-top: 1px solid var(--profile-gold-faint);
  border-bottom: 0;
}

.profile-page .profile-connections__group + .profile-connections__group {
  margin-top: clamp(1.5rem, 2.5vw, 2.6rem);
}

.profile-page .profile-connections + .profile-connections {
  margin-top: 0;
}

.profile-page .profile-connections__title,
.profile-page .profile-connections h2 {
  margin: 0 0 1.35rem;
  color: var(--profile-cream-muted);
  font-family: var(--profile-modern);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.profile-page .profile-connections__list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
}

.profile-page .profile-connections__item,
.profile-page .profile-connections__list > * {
  display: grid;
  grid-template-columns: minmax(12rem, 0.72fr) minmax(0, 1.28fr);
  gap: 0.55rem 1.5rem;
  align-items: baseline;
  min-width: 0;
  padding: 1.05rem 0;
  color: transparent;
  font-size: 0;
  border: 0;
  border-bottom: 1px solid rgba(186, 153, 91, 0.13);
}

.profile-page .profile-connections__name,
.profile-page .profile-connections__link {
  min-width: 0;
  color: var(--profile-cream);
  font-family: var(--profile-serif);
  font-size: clamp(1.23rem, 1.75vw, 1.52rem);
  font-weight: 400;
  line-height: 1.15;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.profile-page .profile-connections__role,
.profile-page .profile-connections__with {
  color: var(--profile-cream-muted);
  font-family: var(--profile-reading);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.5;
  text-transform: none;
}

.profile-page a.profile-connections__link {
  width: fit-content;
  max-width: 100%;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.profile-page a.profile-connections__link:hover,
.profile-page a.profile-connections__link:focus-visible {
  color: var(--profile-gold-light);
  border-bottom-color: var(--profile-gold);
}

/* Der Nachklang bleibt ein ruhiger dunkler Abschluss, nicht ein eigener Kasten. */
.profile-page .profile-afterword {
  width: min(69ch, calc(100% - 14vw));
  margin: 0 auto;
  padding: clamp(4.5rem, 7vw, 6.5rem) 0 0;
  color: var(--profile-cream-soft);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--profile-gold-faint);
}

.profile-page .profile-afterword .section-kicker {
  margin: 0 0 1.2rem;
  color: var(--profile-gold);
  font-family: var(--profile-reading);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.profile-page .profile-afterword > p:last-child {
  max-width: 43rem;
  margin: 0;
  color: var(--profile-cream-soft);
  font-family: var(--profile-serif);
  font-size: clamp(1.3rem, 1.75vw, 1.62rem);
  font-weight: 400;
  line-height: 1.5;
  text-wrap: pretty;
}

.profile-page .site-footer {
  color: var(--profile-cream-muted);
  background: #121110;
  border-top-color: var(--profile-gold-line);
}

.profile-page .wordmark--footer .wordmark__name,
.profile-page .site-footer > a:last-child {
  color: var(--profile-cream);
}

/* Das Wortzeichen unten links bleibt das eigentliche Wollwesen-Logo. */
.profile-page .wordmark--footer .wordmark__name {
  color: #c3a970;
  font-family: "Italianno", "Cormorant Garamond", Georgia, serif;
  font-size: 2.75rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: .72;
}

.profile-page .wordmark--footer .wordmark__eyebrow {
  color: rgba(216, 196, 163, .62);
}

/* Schmale Mac-Fenster bleiben zweispaltig, aber mit deutlich kleinerer Schrift. */
@media (min-width: 821px) and (max-width: 1100px) {
  .profile-page {
    font-size: 17px;
  }

  .profile-page .site-header,
  .profile-page .profile-hero {
    width: min(calc(100% - 10vw), 1280px);
  }

  .profile-page .profile-hero {
    grid-template-columns: minmax(235px, 0.78fr) minmax(300px, 1.22fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }

  .profile-page .profile-tableau {
    width: min(100%, 370px);
  }

  .profile-page .profile-intro__name,
  .profile-page .profile-intro h1 {
    font-size: clamp(3.2rem, 5.4vw, 4.8rem);
  }
}

/* Tablet und sehr schmale Fenster: Bild und Text folgen einander im Dokumentfluss. */
@media (max-width: 820px) {
  .profile-page .site-header {
    width: min(calc(100% - 12vw), 1320px);
    min-height: 108px;
  }

  .profile-page .profile-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(2.8rem, 7vw, 4.5rem);
    width: min(calc(100% - 12vw), 720px);
    padding-top: clamp(2.8rem, 7vw, 4.5rem);
  }

  .profile-page .profile-tableau {
    justify-self: center;
    width: min(100%, 430px);
  }

  .profile-page .profile-intro {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .profile-page .profile-intro__name,
  .profile-page .profile-intro h1 {
    max-width: 13ch;
  }
}

@media (max-width: 720px) {
  .profile-page {
    --profile-house: #171615;
    --profile-house-soft: #1d1b19;
    --profile-image-ground: #141210;

    background:
      radial-gradient(circle at 50% -8rem, rgba(116, 91, 60, 0.12), transparent 38rem),
      linear-gradient(180deg, #171613 0%, #11110f 56%, #0b0b0a 100%);
  }

  .profile-page .menu-toggle {
    color: var(--profile-cream);
  }

  .profile-page .main-nav {
    color: var(--profile-cream-soft);
    background: #171615;
    border-bottom-color: var(--profile-gold-line);
  }

  .profile-page .profile-story-illustration {
    background: #151311;
  }

  .profile-page .site-footer {
    background: #121110;
  }

  .profile-page .wordmark--footer .wordmark__eyebrow {
    color: rgba(216, 196, 163, .68);
  }

  .profile-page .wordmark--footer .wordmark__name {
    color: #9f8a61;
  }
}

@media (max-width: 600px) {
  .profile-page {
    font-size: 16px;
  }

  .profile-page .site-header {
    width: calc(100% - 36px);
    min-height: 96px;
  }

  .profile-page .wordmark__name {
    font-size: 2rem;
  }

  .profile-page .profile-article {
    padding-bottom: 5.5rem;
  }

  .profile-page .profile-hero {
    width: calc(100% - 36px);
    gap: 2.6rem;
    padding: 2.4rem 0 4.6rem;
  }

  .profile-page .profile-tableau {
    width: min(100%, 350px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
  }

  .profile-page .profile-tableau::after {
    inset: 8px;
  }

  .profile-page .profile-intro__name,
  .profile-page .profile-intro h1 {
    max-width: 12ch;
    font-size: clamp(2.25rem, 9.5vw, 3rem);
    line-height: 0.92;
  }

  .profile-page[data-profile="josephine"] .profile-intro__name,
  .profile-page[data-profile="donald-ashcombe"] .profile-intro__name,
  .profile-page[data-profile="charlotte-von-altenburg"] .profile-intro__name,
  .profile-page[data-profile="pauline-von-langenau"] .profile-intro__name,
  .profile-page[data-profile="elodie-von-winterfeld"] .profile-intro__name,
  .profile-page[data-profile="benedikt-von-lamberg"] .profile-intro__name,
  .profile-page[data-profile="florentine-von-salis"] .profile-intro__name,
  .profile-page[data-profile="camilla-von-hohenrain"] .profile-intro__name,
  .profile-page[data-profile="baerlinde-von-bielefehlt"] .profile-intro__name,
  .profile-page[data-profile="theodor-von-frauenstein"] .profile-intro__name,
  .profile-page[data-profile="hildegard-delius"] .profile-intro__name,
  .profile-page[data-profile="fraeulein-von-buddenbrock"] .profile-intro__name {
    max-width: none;
    font-size: clamp(2.25rem, 9.5vw, 3rem);
    letter-spacing: -0.05em;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .profile-page[data-profile="baerlinde-von-bielefehlt"] .profile-intro__name {
    font-size: clamp(1.8rem, 7.7vw, 2.15rem);
  }

  .profile-page[data-profile="fraeulein-von-buddenbrock"] .profile-intro__name {
    font-size: clamp(1.75rem, 7.4vw, 2.25rem);
  }

  .profile-page[data-profile="fraeulein-von-altendorff"] .profile-intro__name {
    max-width: none;
    font-size: clamp(1.85rem, 8vw, 2.25rem);
    letter-spacing: -0.045em;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .profile-page[data-profile="konstantin-marbach"] .profile-intro__name {
    max-width: none;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .profile-page[data-profile="leander-loewenstein"] .profile-intro__name {
    max-width: none;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .profile-page[data-profile="leonore-von-rabenfels"] .profile-intro__name {
    max-width: none;
  }

  .profile-page[data-profile="leonore-von-rabenfels"] .profile-intro__name-line {
    display: block;
  }

  .profile-page[data-profile="charlotte-von-altenburg"] .profile-intro__name-line {
    display: block;
  }

  .profile-page[data-profile="florentine-von-salis"] .profile-intro__name > span {
    display: inline;
  }

  .profile-page[data-profile="florentine-von-salis"] .profile-story__title {
    max-width: none;
    white-space: nowrap;
  }

  .profile-page[data-profile="baerlinde-von-bielefehlt"] .profile-story__title {
    max-width: none;
    white-space: nowrap;
  }

  .profile-page[data-profile="hildegard-delius"] .profile-story__title {
    max-width: none;
    white-space: nowrap;
  }

  .profile-page[data-profile="fraeulein-von-buddenbrock"] .profile-story__title {
    max-width: none;
    white-space: nowrap;
  }

  .profile-page[data-profile="fraeulein-von-altendorff"] .profile-story__title {
    max-width: none;
    white-space: nowrap;
  }

  .profile-page[data-profile="konstantin-marbach"] .profile-story__title {
    max-width: none;
    font-size: clamp(1.72rem, 7.2vw, 2.1rem);
    white-space: nowrap;
  }

  .profile-page[data-profile="leonore-von-rabenfels"] .profile-story__title {
    max-width: none;
    font-size: clamp(1.68rem, 7vw, 2.1rem);
    white-space: nowrap;
  }

  .profile-page .profile-intro > .section-kicker {
    margin-bottom: 3rem;
  }

  .profile-page .profile-intro__role {
    margin-top: .85rem;
    font-size: clamp(.88rem, 4vw, 1rem);
    letter-spacing: .1em;
  }

  .profile-page .profile-intro__essence {
    margin-top: 1.15rem;
    padding-top: 1.1rem;
    font-size: 1rem;
    line-height: 1.58;
  }

  .profile-page .profile-quote {
    width: calc(100% - 38px);
    margin-top: 4.3rem;
    padding: 2.8rem 0.75rem;
  }

  .profile-page .profile-quote__text,
  .profile-page .profile-quote blockquote > p,
  .profile-page .profile-quote blockquote {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    line-height: 1.2;
  }

  .profile-page .profile-quote__text,
  .profile-page .profile-quote blockquote > p,
  .profile-page .profile-quote blockquote {
    font-size: clamp(1.12rem, 4.5vw, 1.3rem);
    line-height: 1.23;
  }

  .profile-page .profile-quote {
    margin-top: 1rem;
    padding: .7rem .75rem 1.7rem;
  }

  .profile-page .profile-quote--standalone {
    padding-bottom: 2.7rem;
  }

  .profile-page .profile-hero {
    padding-bottom: 3.25rem;
  }

  .profile-page .profile-hero-links {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.45rem;
    width: calc(100% - 38px);
    padding: 1.7rem .75rem 2rem;
  }

  .profile-page .profile-story-illustration {
    width: 100%;
    margin-top: 4.2rem;
    box-shadow: none;
  }

  .profile-page .profile-story-illustration + .profile-story {
    padding-top: 4.5rem;
  }

  .profile-page .profile-story {
    width: calc(100% - 38px);
    padding: 5.2rem 0 5rem;
  }

  .profile-page .profile-story__title,
  .profile-page .profile-story > h2 {
    max-width: 14ch;
    margin-bottom: 3.25rem;
    font-size: clamp(2rem, 8vw, 2.5rem);
    line-height: 0.96;
  }

  .profile-page[data-profile="graf-ferdinand"] .profile-story__title {
    margin-bottom: 1.4rem;
  }

  .profile-page .profile-story__heading,
  .profile-page .profile-story h3 {
    margin-bottom: 1.6rem;
    font-size: clamp(1.65rem, 7vw, 2.05rem);
    line-height: 1.04;
  }

  .profile-page .profile-story__paragraph,
  .profile-page .profile-story p {
    font-size: 1.25rem;
    line-height: 1.72;
  }

  .profile-page .profile-story__section + .profile-story__section {
    margin-top: 3.8rem;
    padding-top: 3.5rem;
  }

  .profile-page .profile-connections-group,
  .profile-page .profile-relations,
  .profile-page .profile-connections,
  .profile-page .profile-afterword {
    width: calc(100% - 38px);
  }

  .profile-page .profile-connections {
    padding: 2rem 0;
  }

  .profile-page .profile-connections__item,
  .profile-page .profile-connections__list > * {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
    padding: 1rem 0;
  }

  .profile-page .profile-connections__name,
  .profile-page .profile-connections__link {
    font-size: 1.3rem;
  }

  .profile-page .site-footer {
    padding-right: 19px;
    padding-left: 19px;
  }
}

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

  .profile-page *,
  .profile-page *::before,
  .profile-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
