/* Padel Tennis Consulting — full width layout, content max 1080px centered */

:root {
  --color-bg: #f7f5f2;
  --color-bg-alt: #ece8e2;
  --color-dark: #121212;
  --color-text: #2a2826;
  --color-muted: #5c5854;
  --color-accent: #b85c38;
  --color-corp: #ec6608;
  --color-accent-soft: rgba(184, 92, 56, 0.12);
  --font: "Barlow", system-ui, sans-serif;
  --font-heading: "Barlow", system-ui, sans-serif;
  --wrap: 1240px;
  --space-section: 65px;
  --space-block: 1.25rem;
  /* Fließtext wie „Ich begleite Investoren…“ (nicht für h1–h6) */
  --font-body-size: 18pt;
  --font-body-weight: 500;
  --font-body-line-height: 1.55;
}

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

html {
  scroll-behavior: smooth;
  font-size: 120%; /* +20% к базовой типографике (rem) */
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--font-body-size);
  font-weight: var(--font-body-weight);
  line-height: var(--font-body-line-height);
  color: var(--color-text);
  background: var(--color-bg);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h2 {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Rechtstext-Seiten: durchgehend weißer Seitenhintergrund */
body.page-legal {
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.page-legal main {
  flex: 1 1 auto;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 2rem);
  padding-right: clamp(1.25rem, 4vw, 2rem);
}

.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: 10000;
  padding: 0.65rem 1rem;
  background: var(--color-corp);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 4px;
  transform: translateY(calc(-100% - 1.5rem));
  transition: transform 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Hero — full width, image background */
.hero {
  position: relative;
  height: 800px;
  min-height: 800px;
  display: block;
  padding: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-dark);
  /* Hero-Hintergrund: Padeltennis/img/bijan-headermotiv.jpg — bei Austausch ?v= erhöhen (Cache) */
  background-image: url("../img/bijan-headermotiv.jpg?v=1");
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.hero__overlay {
  display: none;
}

.hero__logo-wrap {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  pointer-events: none; /* purely decorative */
}

.hero__logo-inner {
  display: flex;
  justify-content: flex-end;
}

.hero__logo-link {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
  pointer-events: auto;
  cursor: pointer;
}

.hero__logo-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  border-radius: 4px;
}

.hero__logo {
  width: 300px;
  height: auto;
  display: block;
}

.hero__contact-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  z-index: 2;
  pointer-events: none;
}

.hero__contact-bar-inner {
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.hero__contact-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  color: #fff;
  text-align: right;
  pointer-events: auto;
}

.hero__contact-link {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.hero__contact-link:hover,
.hero__contact-link:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.85);
}

.hero__contact-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
  border-radius: 2px;
}

.hero__contact-phone-row {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  align-self: flex-end;
  padding: 0 0 0 0.85rem;
  border-radius: 999px;
  isolation: isolate;
}

.hero__contact-phone-row::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  width: calc(42px * 1.44);
  height: calc(42px * 1.44);
  border: none;
  border-radius: 999px;
  background: var(--color-corp);
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon links: orangene Pille wächst beim Hover nach rechts */
.hero__contact-phone-row--expand-right {
  justify-content: flex-start;
  align-self: auto;
  padding: 0.2rem 0.85rem 0.2rem 0;
  gap: 0.5rem;
  --hero-call-size: calc(42px * 1.44 * 0.6);
}

.hero__contact-phone-row--expand-right::before {
  left: 0;
  right: auto;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: var(--hero-call-size);
  height: var(--hero-call-size);
  border-radius: 999px;
}

.hero__contact-phone-row--expand-right .hero__contact-call {
  width: var(--hero-call-size);
  height: var(--hero-call-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
  flex-shrink: 0;
}

.hero__contact-phone-row--expand-right .hero__contact-call svg {
  width: calc(22px * 1.44 * 0.6);
  height: calc(22px * 1.44 * 0.6);
  display: block;
  flex-shrink: 0;
  margin: 0;
}

.hero__contact-phone-row--expand-right .hero__contact-phone {
  color: #000;
  text-decoration: none;
  border-bottom: none;
}

@media (hover: hover) {
  .hero__contact-phone-row:hover::before,
  .hero__contact-phone-row:focus-within::before {
    width: 100%;
  }

  .hero__contact-phone-row--expand-right:hover::before,
  .hero__contact-phone-row--expand-right:focus-within::before {
    width: 100%;
  }

  .hero__contact-phone-row--expand-right:hover .hero__contact-phone,
  .hero__contact-phone-row--expand-right:focus-within .hero__contact-phone {
    color: #fff;
    border-bottom: none;
    text-decoration: none;
  }
}

.hero__contact-phone {
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: none;
  border-bottom-color: transparent;
}

.hero__contact-phone:hover,
.hero__contact-phone:focus-visible {
  color: #fff;
  text-shadow: none;
  border-bottom-color: transparent;
}

.hero__contact-phone-row--expand-right:focus-within {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
  border-radius: 999px;
}

.hero__contact-call {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: calc(42px * 1.44);
  height: calc(42px * 1.44);
  border: none;
  background: transparent;
  color: #fff;
  text-decoration: none;
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

.hero__contact-call:hover,
.hero__contact-call:focus,
.hero__contact-call:active {
  border: none;
  box-shadow: none !important;
  background: transparent;
  color: #fff;
}

.hero__contact-call:focus-visible {
  outline: 2px solid #fff !important;
  outline-offset: 2px;
  border-radius: 50%;
}

.hero__contact-call svg {
  width: calc(22px * 1.44);
  height: calc(22px * 1.44);
}

.hero__contact-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.hero__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-corp);
  line-height: 0;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.hero__social-link:hover,
.hero__social-link:focus-visible {
  color: #fff;
  opacity: 0.95;
}

.hero__social-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Sections */
.section {
  padding: var(--space-section) 0;
}

/* Media sections have to control their height precisely:
   - outer section padding removed
   - vertical spacing provided inside the text block (40px) */
.section.section-media {
  padding: var(--space-section) 0;
}

.section-media__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.section-media__grid--3col {
  grid-template-columns: 0.95fr 1fr 1fr;
}

.section-media__text--merge {
  grid-column: 1 / span 2;
}

.section-media__text {
  padding: 40px;
}

/* CTA, Sport/Struktur, Tennis: mehr Luft nur auf Desktop (≥1200px) */
.section-media--spacious {
  --media-pad-scale: 1;
}

@media (min-width: 1200px) {
  .section-media--spacious {
    --media-pad-scale: 1.872;
  }
}

.section-media--spacious.section.section-media {
  padding: calc(var(--space-section) * var(--media-pad-scale)) 0;
}

.section-media--spacious .section-media__text {
  padding: calc(40px * var(--media-pad-scale));
}

@media (min-width: 1200px) {
  .section.section-media {
    padding: 0;
  }

  .section-media__text {
    padding: 45px 40px;
  }

  .section-media--spacious.section.section-media {
    padding: 0;
  }

  .section-media--spacious .section-media__text {
    padding: calc(45px * var(--media-pad-scale)) calc(40px * var(--media-pad-scale));
  }

  .section-media--spacious.section.section-media .section-media__image-wrap {
    margin-top: 0;
    margin-bottom: 0;
  }
}

/* Sektion 2 (grau): linker Rand wie .wrap, nicht am Viewport kleben */
.section-media--bggray .section-media__text--merge {
  padding-left: max(
    clamp(1.25rem, 4vw, 2rem),
    calc((100vw - var(--wrap)) / 2 + clamp(1.25rem, 4vw, 2rem))
  );
}

/* vertical rhythm: margin H2 задаётся глобально в .h2 */

.section-media__image-wrap {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
  position: relative;
  display: flex;
  align-self: stretch; /* make image fill the section height */
}

/* Desktop: Bild füllt Zeilenhöhe, ohne negatives Pull */
@media (min-width: 1200px) {
  .section.section-media .section-media__image-wrap {
    margin-top: 0;
    margin-bottom: 0;
    min-height: 0;
    max-height: 100%;
    align-self: stretch;
    overflow: hidden;
  }

  .section-media__grid {
    align-items: stretch;
  }
}

.section-media__image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the box without changing layout height */
}

/* Grauer Medienblock (#4a4a49): Hintergrund + helle Schrift (z. B. Tennis-Sektion) */
.section-media--bggray {
  background: #4a4a49;
  color: #fff;
}

.section-media--bggray .section__sub {
  color: #fff;
}

.section-media--bggray .label {
  color: #fff;
}

.section-media--bggray .list--bullets li {
  color: #fff;
}

.section-media--bggray p {
  color: #fff;
}

.section-media--bggray .section-media__focus-label {
  margin: 0 0 clamp(1rem, 2.5vw, 1.5rem);
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3.2vw, 28pt);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-media__tennis-label {
  margin: 0 0 clamp(1rem, 2.5vw, 1.5rem);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3.2vw, 28pt);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* Sektion 5: Athlete-Listen */
.section-athlete__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 1.75rem);
  align-items: stretch;
  margin-top: 1.5rem;
}

.section-athlete__block {
  background: transparent;
  padding: 1.25rem clamp(1rem, 3vw, 1.5rem) 1.35rem;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.section-athlete__block .label:first-child {
  margin-top: 0;
}

.section-athlete__block .list {
  flex: 1 1 auto;
}

.section-athlete__block--schwerpunkte {
  grid-column: 1 / -1;
  grid-row: 1;
}

/* Sections 4 & 6: schwarzer Hintergrund, weißer Text */
.section--black {
  background: #000;
  color: #dcdcdc;
  padding: var(--space-section) 0;
  /* 1,5× Fließtext gegenüber übriger Seite (var bezieht sich auf geerbten Wert von :root) */
  --font-body-size: calc(var(--font-body-size) * 1.5);
  font-size: var(--font-body-size);
}

.section--black .label,
.section--black .section__sub {
  color: rgba(255, 255, 255, 0.85);
}

.section--black .list--bullets li,
.section--black .list--bullets li::before {
  color: #fff;
}

.section--black .list--bullets li::before {
  color: var(--color-corp);
}

.section--black .section p,
.section--black p {
  color: #dcdcdc;
}

/* SECTION 4: zentrierte Triade (ODT) */
.triad--center {
  text-align: center;
  font-size: var(--font-body-size);
  font-weight: var(--font-body-weight);
  line-height: var(--font-body-line-height);
}

.triad--center p {
  margin: 0 0 0.75rem;
  color: #fff;
}

.triad__footer--center {
  text-align: center;
  color: var(--color-corp);
  max-width: none !important;
  margin-top: 1.5rem !important;
  font-size: var(--font-body-size);
  font-weight: var(--font-body-weight);
  line-height: var(--font-body-line-height);
}

/* SECTION 8: Video — 16:9 by width on tablet/mobile; 1000px desktop */
.section-video {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: none;
}

.section-video__inner {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .section-video__inner {
    height: 1000px;
    aspect-ratio: auto;
  }
}

.section-video__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.45);
  transition: opacity 0.25s ease;
}

.section-video--playing .section-video__inner {
  cursor: default;
}

.section-video--playing .section-video__inner::after {
  opacity: 0;
}

.section-video__media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.section-video--playing .section-video__media {
  pointer-events: auto;
}

.section-video__play-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.section-video__play-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.section-video__play-marker:hover,
.section-video__play-marker:focus-visible {
  opacity: 0.85;
}

.section-video__play-marker:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.section-video--playing .section-video__play-marker {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Vollbreite Foto zwischen Athlete und Perspektiven */
.section-bijan-photo {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: none;
  line-height: 0;
}

.section-bijan-photo__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 1200px) {
  .section-bijan-photo__image {
    aspect-ratio: auto;
    height: clamp(420px, 42vw, 720px);
  }
}

.section--cta.section-media--bggray {
  background: #4a4a49;
  border-top: none;
}

.section--cta.section-media--bggray .section__sub,
.section--cta.section-media--bggray p,
.section--cta.section-media--bggray .list--bullets li {
  color: #fff;
}

.section--cta.section-media--bggray .section-media__text {
  padding-left: max(
    clamp(1.25rem, 4vw, 2rem),
    calc((100vw - var(--wrap)) / 2 + clamp(1.25rem, 4vw, 2rem))
  );
}

@media (min-width: 1200px) {
  .section--cta .section-media__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.section--cta .section-media__image {
  filter: grayscale(100%);
}

.section-cta__image-contact {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(1rem, 3vw, 1.75rem);
  max-width: calc(100% - 1.5rem);
}

.section-cta__contact-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.section-cta__image-contact .hero__contact-phone-row--expand-right .hero__contact-phone {
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  text-decoration: none;
  border-bottom: none;
}

.section-cta__contact-sep {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  line-height: 1;
  user-select: none;
}

.section-cta__image-contact .hero__contact-link {
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  border-bottom: 2px solid transparent;
}

.section-cta__image-contact .hero__contact-link[href^="mailto:"] {
  font-weight: 400;
}

.section-cta__image-contact .hero__contact-link[href^="mailto:"]:hover,
.section-cta__image-contact .hero__contact-link[href^="mailto:"]:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.65);
}

.section-cta__image-contact .hero__contact-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.section--person {
  background: #fff;
  position: relative;
  z-index: 1;
}

.section-athlete {
  position: relative;
  z-index: 1;
  background: #fff;
}

.section-person__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(1.5rem, 4vw, 3rem);
  row-gap: 0;
  align-items: start;
}

.section-person__divider {
  grid-column: 1 / -1;
  height: 3px;
  background: var(--color-corp);
  margin: clamp(1.25rem, 3vw, 1.75rem) 0;
}

.section--person .section-person__lede {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  border: none;
  max-width: none;
  width: 100%;
}

.section-person__left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section-person__left .hero__title-tagline {
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

.section-person__lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0;
}

.section-person__roles.hero__title-tagline {
  color: var(--color-dark);
}

.section-person__name.hero__title-tagline,
.section-person__brand.hero__title-tagline {
  color: var(--color-corp);
}

.section-person__right .list {
  margin: 0;
}

.section-person__network {
  margin-top: clamp(1rem, 2.5vw, 1.5rem);
}

.section-person__network-line {
  border: 0;
  height: 2px;
  margin: clamp(1rem, 2.5vw, 1.5rem) 0 clamp(0.85rem, 2vw, 1rem);
  background: #d5d5d5;
}

.section-person__network-role {
  margin: 0 0 clamp(0.85rem, 2vw, 1rem);
  max-width: none;
  font-weight: 400;
  line-height: 1.45;
}

.section-person__network-logo {
  display: block;
  width: min(247px, 72%);
  max-width: 100%;
  height: auto;
}

.section p {
  margin: 0 0 var(--space-block);
  max-width: 65ch;
  font-weight: 400;
}

.section p:last-child {
  margin-bottom: 0;
}

/* Lede / .copytext: gleicher Fließtext wie body */
.lede,
.copytext {
  color: var(--color-dark);
}

.h2 {
  margin: 0 0 15px;
  font-size: 30px;
  font-weight: 700;
  line-height: 50pt;
  color: var(--color-dark);
}

/* Оранжевый фон на inline-фрагментах: при переносе строки Abstand über padding, alle Ecken radius */
.h2--accent {
  background: none;
  color: var(--color-dark);
  line-height: 1.65;
  margin: 0 0 45px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  max-width: 100%;
}

.h2-accent__inner {
  display: inline;
  padding: 3px calc(5pt + 1ch) 9px;
  border-radius: 7px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.35;
  vertical-align: baseline;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.h2-accent__inner {
  background: var(--color-corp);
  color: #fff;
}

@media (min-width: 1200px) {
  .h2.h2--accent {
    line-height: 1.98;
  }

  .h2--accent .h2-accent__inner {
    padding-bottom: 11px;
  }
}

.section__sub {
  margin: 0 0 1rem;
  font-size: var(--font-body-size);
  font-weight: var(--font-body-weight);
  line-height: var(--font-body-line-height);
  color: var(--color-muted);
}

@media (min-width: 900px) and (max-width: 1199px) {
  .section.section-media {
    overflow: hidden;
  }

  .section-media--spacious {
    --media-pad-scale: 1;
  }

  .section-media__grid,
  .section-media__grid--3col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-media__text--merge {
    grid-column: auto;
  }

  .section.section-media--left .section-media__text {
    order: 1;
  }

  .section.section-media--left .section-media__image-wrap {
    order: 2;
  }

  .section.section-media .section-media__image-wrap,
  .section-media--spacious.section.section-media .section-media__image-wrap {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 0;
  }

  .section-media--spacious.section.section-media,
  .section.section-media.section-media--bggray,
  .section.section-media.section-media--left {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.section-media .section-media__text,
  .section-media--spacious .section-media__text {
    padding-top: 40px;
    padding-bottom: 1.25rem;
  }

  .section.section-media + .section--person,
  .section.section-media.section-media--left + .section-athlete {
    padding-top: 40px;
  }

  /* Tablet: CTA-Kontakt = Header-Kontakt */
  .hero-text--intro .hero-text__contact-strip,
  .section-cta__image-contact {
    --contact-link-font: calc(1.75rem * 0.6);
    --contact-phone-font: calc(1.75rem * 0.6 * 1.1);
  }
}

/* Text block under the header image */
.hero-text {
  background: #fff;
  color: var(--color-dark);
  padding: 40px 0;
}

.hero-text--intro {
  --intro-height-scale: 1.2;
  padding: 0 0 calc(40px * 1.3 * var(--intro-height-scale));
  color: #000;
}

.hero-text--intro .hero-text__contact-strip {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: calc(0.75rem * var(--intro-height-scale)) 0;
  margin-top: 0;
}

.hero-text--intro .hero-text__contact-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}

.hero-text--intro .hero-text__strip-logo-link {
  flex-shrink: 0;
  line-height: 0;
  margin-left: auto;
}

.hero-text--intro .hero-text__strip-logo-link .hero__logo {
  width: min(220px, 38vw);
  height: auto;
  display: block;
}

.hero-text--intro .hero-text__contact-strip .hero__contact-col {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem 1.25rem;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  text-align: left;
  color: #000;
}

.hero-text--intro .hero-text__main {
  padding-top: calc(80px * var(--intro-height-scale));
  min-width: 0;
}

.hero-text--intro .hero__title {
  font-size: calc(60pt * 0.7 * 1.3);
  line-height: calc(67.2pt * 0.7 * 1.3);
  color: #000;
}

.hero-text--intro .hero__title-tagline {
  font-size: clamp(1.25rem, 3.2vw, 28pt);
}

.hero-text--intro .hero__title-main,
.hero-text--intro .hero__title-brand,
.hero-text--intro .hero__title-tagline {
  color: #000;
}

/* Intro + CTA: gemeinsame Kontakt-Typo (Desktop: clamp, ≤1199px: fest wie Header) */
.hero-text--intro .hero-text__contact-strip,
.section-cta__image-contact {
  --contact-link-font: calc(clamp(1.2rem, 2.4vw, 1.75rem) * 0.6);
  --contact-phone-font: calc(clamp(1.2rem, 2.4vw, 1.75rem) * 0.6 * 1.1);
}

.hero-text--intro .hero-text__contact-strip .hero__contact-link,
.section-cta__image-contact .hero__contact-link {
  font-size: var(--contact-link-font);
}

.hero-text--intro .hero-text__contact-strip .hero__contact-link {
  color: #000;
}

.hero-text--intro .hero-text__contact-strip .hero__contact-phone-row--expand-right .hero__contact-phone,
.section-cta__image-contact .hero__contact-phone-row--expand-right .hero__contact-phone {
  font-size: var(--contact-phone-font);
  text-decoration: none;
  border-bottom: none;
}

.hero-text--intro .hero-text__contact-strip .hero__contact-link[href^="mailto:"] {
  font-weight: 400;
}

.hero-text--intro .hero-text__contact-sep {
  color: rgba(0, 0, 0, 0.45);
  font-weight: 500;
  line-height: 1;
  user-select: none;
}

.hero-text--intro .hero-text__contact-strip .hero__contact-link:hover {
  color: #000;
  border-bottom-color: rgba(0, 0, 0, 0.65);
  outline: none;
}

.hero-text--intro .hero-text__contact-strip .hero__contact-link:focus-visible {
  color: #000;
  border-bottom-color: rgba(0, 0, 0, 0.65);
  outline: 2px solid var(--color-corp);
  outline-offset: 3px;
}

.hero-text--intro .hero-text__contact-strip .hero__contact-link[href^="mailto:"]:hover,
.hero-text--intro .hero-text__contact-strip .hero__contact-link[href^="mailto:"]:focus-visible {
  border-bottom-color: rgba(0, 0, 0, 0.65);
}

.hero-text--intro .hero__contact-phone-row--expand-right:focus-within {
  outline: 2px solid var(--color-corp);
  outline-offset: 3px;
}

.hero-text--intro .h2--accent {
  margin-bottom: 0;
}

/* Rechtstexte: nur Kontakt-Streife wie Startseite, ohne Intro-H1 */
.hero-text--intro.hero-text--legal-header {
  padding-bottom: 0;
}

.hero-text--legal-header .hero-text__contact-strip-inner {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1.25rem;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  max-width: 100%;
  min-height: 44px;
  padding: 0.3rem 1rem 0.3rem 0.3rem;
  border-radius: 999px;
  border: 2px solid var(--color-corp);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.8rem, 1.85vw, 1.05rem);
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.legal-back-link__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.legal-back-link__icon {
  display: block;
}

.legal-back-link__text {
  min-width: 0;
  text-align: left;
}

.legal-back-link:hover,
.legal-back-link:focus-visible {
  border-color: var(--color-corp);
  background: var(--color-corp);
  color: #fff;
}

.legal-back-link:focus-visible {
  outline: 2px solid var(--color-corp);
  outline-offset: 3px;
}

@media (min-width: 1200px) {
  .hero-text--intro {
    padding-bottom: calc(40px * 1.3 * 1.5 * 1.2 * var(--intro-height-scale));
  }

  .hero-text--intro.hero-text--legal-header {
    padding-bottom: 0;
  }
}

.hero-text p {
  font-weight: 400;
}

.hero__title {
  margin: 0 0 1.25rem;
  font-weight: 700;
  font-size: 60pt;
  line-height: 67.2pt;
  letter-spacing: -0.01em;
}

.hero__title-main {
  display: block;
}

.hero__title-brand {
  white-space: nowrap;
}

.hero__title-tagline {
  display: block;
  margin-top: 0.35em;
  color: var(--color-corp);
  font-size: clamp(1.25rem, 3.2vw, 28pt);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hero__title-tagline.section-media__tennis-label {
  margin-top: 0;
  color: var(--color-dark);
}

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

  html {
    font-size: 100%;
  }

  .wrap {
    padding-left: max(clamp(1.25rem, 4vw, 2rem), env(safe-area-inset-left, 0px));
    padding-right: max(clamp(1.25rem, 4vw, 2rem), env(safe-area-inset-right, 0px));
  }

  /* Global 45px unter .h2--accent wirkt mobil zu groß / unruhig */
  .h2--accent {
    margin: 0 0 1.25rem;
  }

  .section-media--spacious {
    --media-pad-scale: 1;
  }

  .section-media--spacious.section.section-media,
  .section.section-media.section-media--bggray,
  .section.section-media.section-media--left {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.section-media + .section--person,
  .section.section-media.section-media--left + .section-athlete {
    padding-top: 40px;
  }

  .section-person__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-text--intro .hero-text__main {
    padding-top: calc(2.5rem * var(--intro-height-scale, 1.2));
  }

  .hero {
    padding: 0;
    height: calc(clamp(300px, 58vw, 600px) * 1.2);
    min-height: calc(clamp(300px, 58vw, 600px) * 1.2);
  }

  .hero__logo-wrap {
    top: clamp(1.5rem, 5vw, 50px);
  }

  .hero__logo {
    width: min(210px, 50.4vw);
  }

  .hero__contact-bar {
    bottom: 0;
    background: transparent;
    border-top: none;
  }

  .hero__contact-bar-inner {
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem 0.75rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .hero__contact-col {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.4rem 0.65rem;
    text-align: left;
  }

  .hero__contact-bar .hero__contact-phone-row {
    align-self: auto;
    justify-content: flex-start;
    padding: 0.55rem 0.85rem;
  }

  .hero__contact-bar .hero__contact-phone-row::before {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: none;
  }

  .hero__contact-bar .hero__contact-call {
    display: none;
  }

  .hero__contact-bar .hero__contact-link {
    font-size: clamp(0.95rem, 3.6vw, 1.2rem);
  }

  .hero__contact-bar .hero__contact-phone {
    font-size: clamp(1.14rem, 4.32vw, 1.44rem);
  }

  .hero__contact-social {
    margin-top: 0;
    margin-left: auto;
  }

  .hero__title {
    font-size: clamp(1.9rem, 6.5vw, 60pt);
    line-height: 1.12;
  }

  .h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .section-media__image-wrap {
    min-height: clamp(200px, 42vw, 320px);
  }

  .section-media__grid,
  .section-media__grid--3col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section.section-media {
    overflow: hidden;
  }

  .section.section-media--left .section-media__grid {
    gap: 0;
  }

  .section.section-media--left .section-media__text {
    order: 1;
  }

  .section.section-media--left .section-media__image-wrap {
    order: 2;
  }

  .section.section-media .section-media__image-wrap,
  .section-media--spacious.section.section-media .section-media__image-wrap {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 0;
  }

  .section.section-media .section-media__text,
  .section-media--spacious .section-media__text {
    padding-top: 40px;
    padding-bottom: 1.25rem;
    padding-left: max(clamp(1.25rem, 4vw, 2rem), env(safe-area-inset-left, 0px));
    padding-right: max(clamp(1.25rem, 4vw, 2rem), env(safe-area-inset-right, 0px));
  }

  .section-media--bggray .section-media__text--merge {
    padding-left: max(
      clamp(1.25rem, 4vw, 2rem),
      calc((100vw - var(--wrap)) / 2 + clamp(1.25rem, 4vw, 2rem))
    );
  }

  .section--triad .triad--center p {
    font-size: 18px;
  }

  .section-media__text--merge {
    grid-column: auto;
  }

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

  .section-athlete__block--schwerpunkte {
    grid-column: auto;
    grid-row: auto;
  }

  .section-media__image-wrap {
    /* height is driven by the grid row / section content, not by a fixed value */
  }
}

.label {
  margin: 1.5rem 0 0.65rem;
  font-size: var(--font-body-size);
  font-weight: var(--font-body-weight);
  line-height: var(--font-body-line-height);
  letter-spacing: normal;
  text-transform: none;
  color: var(--color-text);
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list--bullets li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.list--bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-corp);
  font-weight: 700;
}

.list--dense li {
  margin-bottom: 0.4rem;
}

.list--cta li::before {
  color: var(--color-corp);
}

.triad {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: var(--font-body-size);
  font-weight: var(--font-body-weight);
  line-height: var(--font-body-line-height);
}

.triad li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.triad li:last-of-type {
  margin-bottom: 0;
  padding-bottom: 1rem;
  border-bottom: none;
}

.triad__footer {
  margin: 1.5rem 0 0 !important;
  font-size: var(--font-body-size);
  font-weight: var(--font-body-weight);
  line-height: var(--font-body-line-height);
  color: var(--color-accent);
  max-width: 40ch !important;
}

/* Triad (schwarz): zentriert, 65ch via .section p */
.section--triad .triad--center {
  text-align: center;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.section--triad .triad--center p {
  font-size: 35pt;
  line-height: 1.25;
  margin-left: auto;
  margin-right: auto;
}

.section--triad .triad__footer--center {
  text-align: center;
  max-width: 65ch !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 1.5rem !important;
  color: var(--color-corp) !important;
}

.section--cta .h2 {
  color: var(--color-dark);
}

/* Footer */
.footer {
  background: var(--color-corp);
  color: #fff;
  padding: 3rem 0 0;
}

/* Innere Seiten: nur grauer Unterfooter, kein orangener Hauptblock */
.footer--subonly {
  background: transparent;
  padding: 0;
  color: inherit;
}

.footer--subonly .footer__subbar {
  margin-top: 0;
}

/* Footer-Inhalt ca. 30 % breiter als Standard-.wrap */
.footer .wrap {
  max-width: calc(var(--wrap) * 1.3);
}

.footer .footer__subbar-inner--logo-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.footer__subbar-legal-start {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  flex: 0 1 auto;
  min-width: 0;
}

.footer__subbar-end {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem 1.25rem;
  margin-left: auto;
  flex: 0 1 auto;
  min-width: 0;
}

.footer__subbar-contact-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

.footer__subbar-social {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer__subbar-social .footer__social-link {
  width: 2.25rem;
  height: 2.25rem;
}

.footer__subbar-social .footer__social-link svg {
  width: 1.35rem;
  height: 1.35rem;
}

.footer__subbar-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.2rem 0.2rem 0.2rem 0.85rem;
  border-radius: 999px;
  background: var(--color-corp);
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.2;
  border: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer__subbar-phone-btn:hover,
.footer__subbar-phone-btn:focus-visible {
  color: #fff;
  opacity: 0.92;
  transform: translateY(-1px);
  border-bottom: none;
}

.footer__subbar-phone-btn:focus-visible {
  outline: 2px solid var(--color-corp);
  outline-offset: 3px;
}

.footer__subbar-phone-btn__text {
  padding-right: 0.5rem;
}

.footer__subbar-phone-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.footer__subbar-phone-btn__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.footer__subbar-sep {
  color: #fff;
  font-weight: 500;
  line-height: 1;
  user-select: none;
}

.footer__subbar {
  margin-top: 2.25rem;
  background: #333333;
}

.footer__subbar-inner {
  min-height: 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  column-gap: 1.5rem;
  row-gap: 1rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.footer__subbar-col {
  min-width: 0;
}

.footer__subbar-col--legal {
  justify-self: end;
}

.footer__subbar-logo-link {
  display: inline-flex;
  line-height: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.footer__subbar-logo-link:focus-visible {
  outline: 2px solid var(--color-corp);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer__subbar-logo {
  width: clamp(110px, 20vw, 200px);
  height: auto;
  display: block;
}

.footer__subbar-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.footer__legal.footer__legal--subbar {
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  text-align: right;
}

.footer__subbar-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.25;
  border-bottom: none;
  transition: text-decoration-color 0.2s ease, text-decoration-thickness 0.2s ease;
}

.footer__subbar-link:hover,
.footer__subbar-link:focus-visible {
  color: #fff;
  text-decoration-thickness: 2px;
}

.footer__subbar-link[aria-current="page"] {
  text-decoration-thickness: 2px;
}

.footer__subbar-link:focus-visible,
.footer__social-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: calc(0.85rem * 1.3);
}

.footer__social-link {
  color: var(--color-corp);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(44px * 1.3);
  height: calc(44px * 1.3);
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer__social-link svg {
  width: calc(29px * 1.3);
  height: calc(29px * 1.3);
}

.footer__social-link:hover,
.footer__social-link:focus-visible {
  transform: translateY(-1px);
  opacity: 0.9;
}

.footer__social--inactive {
  display: none;
}

.footer__subbar-sep:has(+ .footer__social--inactive) {
  display: none;
}

@media (max-width: 899px) {
  .footer__subbar-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 0.75rem;
    padding-bottom: 0.85rem;
  }

  .footer .footer__subbar-inner--logo-row {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }

  .footer__subbar-col--legal {
    justify-self: end;
  }

  .footer__social {
    justify-content: flex-start;
  }

  .section--triad .triad--center p {
    font-size: 24px;
  }
}

/* Tablet + Mobil: Intro-Kontaktstreife — Logo oben rechts, Kontakte links nebeneinander */
@media (max-width: 1199px) {
  .hero-text--intro .hero__title {
    font-size: clamp(calc(1.33rem * 1.3 * 1.2), calc(4.55vw * 1.3 * 1.2), calc(60pt * 0.7 * 1.3 * 1.2));
    line-height: 1.12;
  }

  .hero-text--intro .hero-text__contact-strip-inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.65rem 1rem;
  }

  .hero-text--legal-header .hero-text__contact-strip-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-text--intro .hero-text__strip-logo-link {
    order: -1;
    width: auto;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
  }

  .hero-text--intro .hero-text__strip-logo-link .hero__logo {
    width: min(calc(180px * 0.7 * 1.1), calc(48vw * 0.7 * 1.1));
  }

  .hero-text--intro .hero-text__contact-strip .hero__contact-col {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 0.5rem 0.75rem;
    text-align: left;
  }

  .hero-text--intro .hero-text__contact-strip .hero__contact-call {
    display: inline-flex;
  }

  /* Mobil + Tablet: Kontakt Intro = CTA (Header-Maximum) */
  .hero-text--intro .hero-text__contact-strip,
  .section-cta__image-contact {
    --contact-link-font: calc(1.75rem * 0.6);
    --contact-phone-font: calc(1.75rem * 0.6 * 1.1);
  }
}

/* Tablet + Mobil: vertikaler Abstand Sections 2, 5, 7; Balken-Überschriften bei Umbruch */
@media (max-width: 1199px) {
  .footer__subbar-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer .footer__subbar-inner--logo-row {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    text-align: center;
  }

  .footer__subbar-legal-start {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    width: 100%;
    gap: 0.85rem 1.25rem;
  }

  .footer__subbar-end {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    width: 100%;
    gap: 0.85rem;
  }

  .footer__subbar-contact-row {
    justify-content: center;
    width: 100%;
  }

  .footer__subbar-sep {
    display: none;
  }

  /*
   * Eine Zeile Text → eine Pille (inline + clone pro Textzeile).
   * inline-block erzeugt auf iOS/Safari bei Umbruch eine dicke zusammengeklebte Pille.
   */
  .h2--accent .h2-accent__inner {
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding-inline: calc(5pt + 1ch);
    padding-block: 3px 9px;
    vertical-align: baseline;
    line-height: 1.35;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .h2.h2--accent {
    line-height: 1.75;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    max-width: 100%;
  }

  /* Gestapelte Medien-Sektionen (Tablet): kompaktes Padding, Bilder randlos */
  .section-media--spacious {
    --media-pad-scale: 1;
  }

  .section-media--spacious.section.section-media,
  .section.section-media.section-media--bggray,
  .section.section-media.section-media--left {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.section-media .section-media__text,
  .section-media--spacious .section-media__text {
    padding-top: 40px;
    padding-bottom: 1.25rem;
  }

  .section.section-media .section-media__image-wrap {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .section-media__grid,
  .section-media__grid--3col {
    gap: 0;
  }

  .section.section-media + .section--person,
  .section.section-media.section-media--left + .section-athlete {
    padding-top: 40px;
  }
}

/* Scroll-Reveal: nur Einblendung (Opacity), ohne Verschiebung */
.reveal {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transition: none;
  }
}

/* Rechtstext-Seiten (z. B. Datenschutzerklärung): gleicher Fließtext wie auf der Startseite */
.legal-page__title {
  margin: 0 0 1.35rem;
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 40pt);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--color-dark);
}

.legal-page__body {
  max-width: 65ch;
}

.legal-page__body p {
  margin: 0 0 var(--space-block);
  font-weight: 400;
}

.legal-page__body p:last-child {
  margin-bottom: 0;
}

.legal-page__heading {
  margin: 1.35rem 0 0.75rem;
  font-weight: 700;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  line-height: 1.3;
  color: var(--color-dark);
}

.legal-page__body .legal-page__heading:first-child {
  margin-top: 0;
}

.legal-page__subheading {
  margin: 1.1rem 0 0.55rem;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.35;
  color: var(--color-dark);
}

.legal-page__subsubsection {
  margin: 0.85rem 0 0.45rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-dark);
}

.legal-page__body ul {
  margin: 0 0 var(--space-block);
  padding-left: 1.35rem;
}

.legal-page__body ul li {
  margin-bottom: 0.45rem;
}

.legal-page__body ul li:last-child {
  margin-bottom: 0;
}

.legal-page__link {
  color: var(--color-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-page__link:hover,
.legal-page__link:focus-visible {
  color: var(--color-dark);
  text-decoration-thickness: 2px;
}

.legal-page__link:focus-visible {
  outline: 2px solid var(--color-dark);
  outline-offset: 3px;
}

.legal-page__placeholder {
  color: var(--color-muted);
  font-style: italic;
}
