/* ----------------------------------------------------------------
   dgmdw.de — Stylesheet
   Farbschema in Anlehnung an das Cover: Gelb / Schwarz / Weiß.
---------------------------------------------------------------- */

:root {
  --yellow: #F5C518;
  --yellow-dark: #D9AC0E;
  --yellow-soft: #FFF2BA;
  --black: #0A0A0A;
  --black-soft: #1A1A1A;
  --white: #FFFFFF;
  --cream: #FFFDF4;
  --gray-100: #F4F1E6;
  --gray-300: #D8D3BF;
  --gray-600: #5C5A52;
  --gray-800: #2A2926;

  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.18);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --font-display: "Helvetica Neue", "Helvetica", "Arial Black", system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--yellow-dark); }

.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ---------- Site header ---------------------------------------- */

.site-header {
  background: var(--yellow);
  border-bottom: 6px solid var(--black);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--black);
}

.site-brand__cover {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.site-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.site-brand__line {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
}

.site-brand__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.site-brand__tag {
  font-size: 13px;
  margin-top: 2px;
  color: var(--gray-800);
}

.site-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.site-nav a:hover {
  background: var(--black);
  color: var(--yellow);
}

@media (max-width: 720px) {
  .site-header__inner { flex-direction: column; align-items: flex-start; }
  .site-brand__title { font-size: 18px; }
  .site-nav { width: 100%; flex-wrap: wrap; }
}

/* ---------- Main / generic blocks ------------------------------ */

.site-main { display: block; }

.section { padding: 64px 0; }
.section--tight { padding: 32px 0; }
.section--black { background: var(--black); color: var(--white); }
.section--yellow { background: var(--yellow); color: var(--black); }

.section h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

/* ---------- Hero (Rahmenseite) --------------------------------- */

.hero {
  background: var(--yellow);
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 72px 24px;
}

.hero__text { max-width: 560px; }

.hero__eyebrow {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  padding: 4px 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border-radius: 2px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero__title em {
  background: var(--black);
  color: var(--white);
  font-style: normal;
  padding: 0 12px;
  display: inline-block;
}

.hero__lede {
  font-size: 18px;
  margin: 24px 0 0;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  background: var(--black);
  color: var(--yellow);
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: transform 0.12s ease;
}
.hero__cta:hover { transform: translateY(-1px); color: var(--yellow); background: #000; }

.hero__cover { display: flex; flex-direction: column; align-items: flex-end; gap: 22px; }

.hero__cover img {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  background: transparent;
  filter:
    drop-shadow(0 12px 18px rgba(0, 0, 0, 0.22))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

.hero__subscribe {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero__subscribe-list { justify-content: center; }

.hero__subscribe-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.75;
}

.hero__subscribe-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.hero__subscribe-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--black);
  color: var(--yellow);
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.hero__subscribe-link svg { width: 20px; height: 20px; display: block; }

.hero__subscribe-link:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.hero__subscribe-link--applepodcasts:hover { background: #9933CC; }
.hero__subscribe-link--spotify:hover       { background: #1ED760; color: var(--black); }
.hero__subscribe-link--youtube:hover       { background: #FF0000; }
.hero__subscribe-link--castbox:hover       { background: #F55B23; }
.hero__subscribe-link--tunein:hover        { background: #14D8CC; color: var(--black); }
.hero__subscribe-link--podcastde:hover     { background: #FFA500; color: var(--black); }

@media (max-width: 820px) {
  .hero__cover { align-items: center; }
  .hero__subscribe { align-items: center; }
  .hero__subscribe-list { justify-content: center; }
}

@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
  .hero__cover img { max-width: 320px; margin: 0 auto; }
}

/* ---------- Folgen-Filter (Tab-Navigation) -------------------- */

.folge-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 32px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  width: max-content;
  max-width: 100%;
}

.folge-filter__item {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: var(--gray-800);
  border-radius: 999px;
  transition: background 0.12s ease, color 0.12s ease;
  white-space: nowrap;
}

.folge-filter__item:hover {
  color: var(--black);
  background: var(--yellow-soft);
}

.folge-filter__item.is-active {
  background: var(--black);
  color: var(--yellow);
}

.folge-filter__item.is-active:hover {
  background: var(--black);
  color: var(--yellow);
}

@media (max-width: 720px) {
  .folge-filter {
    width: 100%;
    border-radius: var(--radius-md);
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

/* ---------- Produkte (FORJN-Studio) --------------------------- */

.products {
  background: var(--yellow);
  color: var(--black);
  padding: 64px 0 72px;
}

.products__eyebrow {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.products__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}

.products__intro {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.6;
  max-width: 720px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--black);
  border: 2px solid var(--black);
  border-radius: var(--radius-md);
  padding: 22px;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 var(--white);
}

.product-card__tag {
  align-self: flex-start;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

.product-card__logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 100%;
  align-self: flex-start;
  margin: 4px 0 6px;
}

.product-card__logo--icon {
  height: 64px;
  width: 64px;
}

.product-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--white);
}

.product-card__desc {
  margin: 0;
  flex: 1 1 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.product-card__link {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-top: 4px;
  color: var(--yellow);
}

.product-card__link span { transition: transform 0.15s ease; display: inline-block; }
.product-card:hover .product-card__link span { transform: translateX(3px); }

.product-card--featured {
  margin-bottom: 28px;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
  position: relative;
}

.product-card--featured .product-card__tag {
  position: absolute;
  top: 18px;
  right: 22px;
}

.product-card--featured .product-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}

.product-card--featured .product-card__name {
  font-size: clamp(28px, 3.5vw, 36px);
}

.product-card--featured .product-card__desc {
  font-size: 17px;
  max-width: 720px;
}

.product-card--featured .product-card__link { font-size: 16px; }

.product-card--text {
  justify-content: flex-start;
}

@media (max-width: 640px) {
  .product-card--featured {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .product-card--featured .product-card__tag {
    position: static;
  }
}

@media (max-width: 720px) {
  .products { padding: 48px 0 56px; }
}

/* ---------- Booking CTA (Coach buchen) ------------------------ */

.booking-cta {
  background: var(--black);
  color: var(--white);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.booking-cta::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -40px;
  width: 8px;
  background: var(--yellow);
}

.booking-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.booking-cta__text {
  flex: 1 1 420px;
  max-width: 640px;
}

.booking-cta__eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.booking-cta__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3.8vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--white);
}

.booking-cta__lede {
  margin: 0;
  font-size: 17px;
  color: var(--gray-300);
  line-height: 1.55;
}

.booking-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  transition: transform 0.12s ease, background 0.12s ease;
  white-space: nowrap;
}

.booking-cta__button:hover {
  transform: translateY(-2px);
  background: #FFD83A;
  color: var(--black);
}

.booking-cta__button span { transition: transform 0.15s ease; }
.booking-cta__button:hover span { transform: translateX(3px); }

@media (max-width: 720px) {
  .booking-cta { padding: 44px 0; }
  .booking-cta__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .booking-cta__button { width: 100%; justify-content: center; }
}

/* ---------- Episode list (Übersichtsseite) --------------------- */

.episodes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.episode-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  color: var(--black);
}

.episode-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}

.episode-card__label {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 3px;
  align-self: flex-start;
}

.episode-card__cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  margin: 4px 0 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.episode-card:hover .episode-card__cover {
  transform: scale(1.02);
}

.episode-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
}

.episode-card__teaser {
  margin: 0;
  color: var(--gray-800);
  font-size: 15px;
}

.episode-card__meta {
  margin-top: auto;
  font-size: 13px;
  color: var(--gray-600);
  display: flex;
  gap: 12px;
}

/* ---------- Episode detail page -------------------------------- */

.episode-hero {
  background: var(--yellow);
  border-bottom: 6px solid var(--black);
  padding: 56px 0 48px;
}

.episode-hero__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}

.episode-hero__cover {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.episode-hero__label {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  padding: 5px 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 16px;
}

.episode-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}

.episode-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14px;
  color: var(--black);
  opacity: 0.85;
}

.episode-hero__meta span::before { content: "·"; margin-right: 20px; opacity: 0.5; }
.episode-hero__meta span:first-child::before { content: ""; margin-right: 0; }

@media (max-width: 720px) {
  .episode-hero__inner { grid-template-columns: 1fr; }
  .episode-hero__cover { max-width: 220px; }
}

/* ---------- Audio player --------------------------------------- */

.player {
  background: var(--black);
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.player__label {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--yellow);
}

.player audio {
  flex: 1;
  width: 100%;
  height: 44px;
}

.player--empty {
  background: var(--black-soft);
  color: var(--gray-300);
  font-style: italic;
  font-size: 14px;
  justify-content: center;
}

@media (max-width: 720px) {
  .player { flex-direction: column; align-items: stretch; }
}

/* ---------- Episode body --------------------------------------- */

.episode-body {
  padding: 56px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 48px;
}

@media (max-width: 920px) {
  .episode-body { grid-template-columns: 1fr; }
}

.episode-content h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--black);
  display: inline-block;
}

.episode-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 28px 0 8px;
}

.episode-content p { margin: 0 0 16px; }
.episode-content ul,
.episode-content ol { padding-left: 22px; margin: 0 0 16px; }
.episode-content li { margin-bottom: 6px; }

.episode-content a {
  color: var(--black);
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  text-decoration: none;
}
.episode-content a:hover { background: var(--yellow); }

.transcript {
  margin-top: 48px;
  border-top: 3px solid var(--black);
  padding-top: 24px;
}

.transcript__toggle {
  background: var(--black);
  color: var(--yellow);
  border: none;
  padding: 12px 18px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.transcript__toggle:hover { background: var(--black-soft); }

.transcript__body {
  margin-top: 20px;
  padding: 24px;
  background: var(--gray-100);
  border-left: 6px solid var(--yellow);
  border-radius: var(--radius-sm);
}

.transcript[hidden-body] .transcript__body { display: none; }

/* ---------- Sidebar ------------------------------------------- */

.episode-aside {
  position: sticky;
  top: 24px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aside-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 20px;
}

.aside-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.aside-card ul { list-style: none; padding: 0; margin: 0; }
.aside-card li { padding: 6px 0; border-bottom: 1px dashed var(--gray-300); }
.aside-card li:last-child { border-bottom: none; }

/* ---------- Footer -------------------------------------------- */

/* ---------- Platform links (Abonnieren) ----------------------- */

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
}

.platform-link__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.platform-link__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.platform-link__label { line-height: 1.3; }

/* Footer-Variante: monochrom, gelb on hover */

.site-footer__links--platforms li { padding: 5px 0; }

.site-footer__links--platforms .platform-link {
  color: var(--white);
  transition: color 0.15s ease;
}

.site-footer__links--platforms .platform-link:hover { color: var(--yellow); }

/* Sidebar-Variante: Brand-Farben auf hellem Untergrund */

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

.platform-list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--gray-300);
}
.platform-list li:last-child { border-bottom: none; }

.platform-list .platform-link {
  color: var(--black);
  font-weight: 600;
  transition: transform 0.12s ease;
}

.platform-list .platform-link:hover {
  transform: translateX(2px);
}

.platform-list .platform-link__icon { width: 22px; height: 22px; }

.platform-list .platform-link--applepodcasts .platform-link__icon { color: #9933CC; }
.platform-list .platform-link--spotify       .platform-link__icon { color: #1ED760; }
.platform-list .platform-link--youtube       .platform-link__icon { color: #FF0000; }
.platform-list .platform-link--castbox       .platform-link__icon { color: #F55B23; }
.platform-list .platform-link--tunein        .platform-link__icon { color: #14D8CC; }
.platform-list .platform-link--podcastde     .platform-link__icon { color: #FFA500; }

/* ---------- Werben (Werbepartner-Seite) ----------------------- */

.werben__lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--black);
  margin: 0 0 28px;
}

.werben__cta {
  background: var(--yellow);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 24px 0 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.werben__cta p {
  margin: 0;
  flex: 1 1 280px;
  color: var(--black);
}

.werben__cta-button {
  display: inline-flex;
  align-items: center;
  background: var(--black);
  color: var(--yellow) !important;
  padding: 14px 22px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: transform 0.12s ease, background 0.12s ease;
}

.werben__cta-button:hover {
  transform: translateY(-1px);
  background: #000;
  color: var(--yellow) !important;
}

.werben__cta-button--secondary { background: var(--black); }

.werben__closing {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 3px solid var(--black);
}

.werben__closing p { margin: 0 0 14px; font-weight: 600; }

.werben__pills {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.werben__pills li {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 14px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
}

.werben__pill-note {
  color: var(--gray-600);
  font-weight: 400;
  font-size: 12px;
}

/* ---------- Legal pages (Impressum, Datenschutz) -------------- */

.legal-hero {
  background: var(--yellow);
  border-bottom: 6px solid var(--black);
  padding: 56px 0 40px;
}

.legal-hero__eyebrow {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  padding: 4px 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 14px;
}

.legal-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
}

.legal {
  max-width: 820px;
  padding-top: 48px;
  padding-bottom: 80px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
}

.legal h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.25;
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--black);
  color: var(--black);
}

.legal h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin: 28px 0 8px;
  color: var(--black);
}

.legal p { margin: 0 0 14px; }

.legal a {
  color: var(--black);
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  text-decoration: none;
  word-break: break-word;
}
.legal a:hover { background: var(--yellow); }

.legal ul,
.legal ol { padding-left: 22px; margin: 0 0 16px; }
.legal li { margin-bottom: 6px; }

.legal-meta {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 8px 24px;
  margin: 0 0 32px;
  padding: 24px;
  background: var(--white);
  border-left: 6px solid var(--yellow);
  border-radius: var(--radius-sm);
}

.legal-meta dt {
  font-weight: 700;
  color: var(--black);
}

.legal-meta dd {
  margin: 0;
  color: var(--gray-800);
}

.legal-defs li {
  margin-bottom: 12px;
  list-style: none;
}

.legal-defs {
  padding-left: 0;
}

.legal-credit {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed var(--gray-300);
  font-size: 14px;
  color: var(--gray-600);
}

@media (max-width: 640px) {
  .legal-meta { grid-template-columns: 1fr; }
  .legal-meta dt { margin-top: 8px; }
}

.site-footer { background: var(--black); color: var(--white); margin-top: 0; }

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 56px 24px;
}

.site-footer__col h2,
.site-footer__col h3 {
  font-family: var(--font-display);
  font-weight: 900;
  margin: 0 0 12px;
  color: var(--yellow);
}

.site-footer__title { font-size: 22px; }
.site-footer__col h3 { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }

.site-footer__links { list-style: none; padding: 0; margin: 0; }
.site-footer__links li { padding: 4px 0; }
.site-footer__links a { color: var(--white); }
.site-footer__links a:hover { color: var(--yellow); }

.site-footer__bar {
  background: #000;
  font-size: 13px;
  padding: 16px 0;
  border-top: 1px solid #2a2a2a;
}
.site-footer__bar a { color: var(--yellow); }

@media (max-width: 720px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 24px; }
}
