:root {
  --navy: #11185f;
  --navy-soft: #263084;
  --lavender: #7d86c8;
  --lavender-light: #f1f4fb;
  --green: #28a745;
  --green-dark: #218838;
  --green-soft: #e9fbf4;
  --cta-green: var(--green);
  --cta-green-dark: var(--green-dark);
  --text: #24283a;
  --muted: #626979;
  --line: #dde3ee;
  --panel: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(17, 24, 95, 0.08);
  --content-width: 1180px;
  --page-pad: max(24px, calc((100vw - var(--content-width)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.page-shell {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.site-header {
  position: relative;
  display: grid;
  min-height: 108px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(26px, 3.4vw, 50px);
  align-items: center;
  padding: 0 max(30px, calc((100vw - 1240px) / 2));
  border-bottom: 0;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(20, 30, 80, 0.08);
}

.header-main,
.header-actions,
.desktop-nav,
.hero,
.hero-actions,
.hero-notes,
.emergency-note,
.intro,
.search-banner,
.info-split,
.footer-main {
  display: flex;
}

.header-main,
.header-actions,
.desktop-nav,
.hero-actions,
.hero-notes,
.emergency-note,
.search-banner {
  align-items: center;
}

.header-main {
  display: contents;
}

.brand {
  display: inline-flex;
  grid-column: 1;
  grid-row: 1;
  align-items: center;
  gap: clamp(4px, 0.45vw, 7px);
  color: #111111;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  display: block;
  height: auto;
  object-fit: contain;
}

.brand-logo-icon {
  width: clamp(44px, 3.65vw, 54px);
  max-height: 54px;
  flex: 0 0 auto;
}

.brand-wordmark {
  display: block;
  flex: 0 1 auto;
  min-width: 0;
  color: #111111;
  font-family: inherit;
  font-size: clamp(1.62rem, 2.18vw, 2.08rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1;
  transform: translateY(-1px);
}

.brand::before {
  display: none;
  content: none;
}

.brand::after {
  display: none;
  content: none;
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-end;
  gap: 12px;
}

.icon-button,
.menu-toggle {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.icon-button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.68;
  filter: saturate(0.65);
}

.back-button,
.header-divider {
  display: none;
}

.header-actions .icon-button:not([href^="https://suche.stresstherapie.de"]) {
  display: none;
}

.header-actions .icon-button[href^="https://suche.stresstherapie.de"] {
  display: inline-flex;
  width: auto;
  min-height: 42px;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(32, 201, 120, 0.48);
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(17, 24, 95, 0.04);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.header-actions .icon-button[href^="https://suche.stresstherapie.de"] img {
  display: none;
}

.header-actions .icon-button[href^="https://suche.stresstherapie.de"]::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 7px 7px 0 -5px currentColor;
  opacity: 0.72;
}

.header-actions .icon-button[href^="https://suche.stresstherapie.de"]::after {
  content: "Therapie-Suche";
}

.header-actions .icon-button[href^="https://suche.stresstherapie.de"]:hover {
  border-color: var(--green);
  background: #d8f8e9;
  color: var(--green-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 30;
  align-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 4px;
  background: var(--lavender);
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.desktop-nav {
  grid-column: 2;
  grid-row: 1;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  background: transparent;
}

.desktop-nav a {
  flex: 0 1 auto;
  min-width: 0;
  padding: 8px 0;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: #27305f;
  font-size: 0.94rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}

.desktop-nav a:hover,
.desktop-nav .active {
  border-bottom-color: var(--lavender);
  color: var(--navy);
  background: transparent;
}

.mobile-menu {
  display: flex;
  visibility: hidden;
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: min(88vw, 380px);
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  flex-direction: column;
  gap: 0;
  padding: 88px 24px 30px;
  border-right: 1px solid rgba(221, 227, 238, 0.9);
  background:
    radial-gradient(circle at 82% 10%, rgba(125, 134, 200, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 18px 0 50px rgba(17, 24, 95, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-110%);
  transition: transform 0.28s ease, opacity 0.2s ease, visibility 0.28s;
}

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

.mobile-menu a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(221, 227, 238, 0.88);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.mobile-menu a:hover {
  color: var(--navy);
}

.mobile-menu a[href="https://suche.stresstherapie.de/"] {
  margin: 2px 0 18px;
  padding: 16px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--cta-green);
  color: var(--white);
  text-align: center;
  box-shadow: 0 10px 22px rgba(32, 201, 120, 0.22);
}

.mobile-menu a[href="https://suche.stresstherapie.de/"] + a {
  border-top: 1px solid rgba(221, 227, 238, 0.88);
}

.section-pad {
  padding: 88px var(--page-pad);
}

@media (max-width: 1280px) and (min-width: 981px) {
  .site-header {
    min-height: 96px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 22px;
  }

  .brand::after {
    display: none;
  }

  .brand {
    gap: 5px;
  }

  .brand-logo-icon {
    width: clamp(40px, 3.8vw, 48px);
    max-height: 48px;
  }

  .brand-wordmark {
    font-size: clamp(1.42rem, 2vw, 1.78rem);
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 0.89rem;
  }

  .header-actions .icon-button[href^="https://suche.stresstherapie.de"] {
    padding-inline: 14px;
  }
}

@media (max-width: 980px) and (min-width: 801px) {
  .site-header {
    min-height: 78px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    gap: 10px;
  }

  .header-actions .icon-button[href^="https://suche.stresstherapie.de"] {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .article-hero::before,
  .article-hero::after {
    opacity: 0.34;
    transform: translateY(-50%) scale(0.82);
    transform-origin: right bottom;
  }

  .article-hero h1 {
    max-width: 680px;
    font-size: clamp(3.45rem, 8vw, 5.1rem);
  }
}

.hero {
  gap: 7%;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 18%, rgba(125, 134, 200, 0.14), transparent 28%),
    linear-gradient(145deg, #f7fbfd 0%, #ffffff 58%, #f4f7fb 100%);
}

.hero-copy {
  flex: 1.15;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lavender);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(3.15rem, 6vw, 5.6rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 span {
  color: #535866;
  font-weight: 650;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.06;
}

.hero h1 {
  font-size: clamp(3.15rem, 5vw, 4.75rem);
}

.hero h1 span {
  color: var(--green);
  font-weight: 800;
}

h3 {
  color: var(--navy);
}

.hero-text {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 102, 0.15);
}

.button-primary {
  background: var(--cta-green);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(32, 201, 120, 0.2);
}

.button-primary:hover {
  background: var(--cta-green-dark);
}

.button-secondary {
  border-color: var(--lavender);
  color: var(--navy);
}

.hero-notes {
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-notes span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--lavender);
}

.search-card {
  align-self: center;
  max-width: 390px;
  padding: 36px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--lavender);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.search-card-icon img {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
}

.search-card h2 {
  font-size: 2rem;
}

.search-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.97rem;
}

.card-link,
.text-link,
.pathway-card a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.card-link span,
.text-link span,
.pathway-card a span {
  color: var(--lavender);
}

.emergency-note {
  gap: 17px;
  padding: 18px var(--page-pad);
  border-top: 1px solid #e1d8d8;
  border-bottom: 1px solid #e1d8d8;
  background: #fff8f7;
  color: #4d3333;
}

.emergency-note p {
  margin: 1px 0 0;
  font-size: 0.91rem;
}

.emergency-note a {
  color: #971b1b;
  font-weight: 800;
}

.emergency-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 2px solid #c76868;
  border-radius: 50%;
  color: #a13232;
  font-weight: 900;
  place-items: center;
}

.intro,
.info-split {
  gap: 7%;
}

.intro {
  align-items: center;
  padding-bottom: 74px;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  flex: 1;
}

.intro-content {
  flex: 1.2;
  padding-top: 18px;
}

.intro-content p,
.info-split p,
.section-heading > p:last-child {
  color: var(--muted);
}

.lead {
  color: var(--navy) !important;
  font-size: 1.2rem;
  font-weight: 800;
}

.pathways {
  background: #f5f8fb;
}

.editorial-visual {
  padding-top: 74px;
  background: var(--white);
}

.editorial-image-link,
.search-image-cta {
  display: block;
  overflow: hidden;
  margin-top: 32px;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.editorial-image-link {
  width: min(88%, 980px);
}

.editorial-image-link:hover,
.search-image-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(0, 0, 102, 0.14);
}

.editorial-image-link img,
.search-image-cta img {
  display: block;
  width: 100%;
  height: auto;
}

.editorial-image-link img {
  height: clamp(420px, 40vw, 480px);
  object-fit: cover;
}

.compact {
  max-width: 700px;
}

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

.pathway-card {
  position: relative;
  padding: 30px 27px;
  border: 1px solid var(--line);
  border-top: 3px solid transparent;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 7px 22px rgba(0, 0, 102, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pathway-card:nth-child(1) {
  border-top-color: var(--lavender);
}

.pathway-card:nth-child(2) {
  border-top-color: var(--lavender);
}

.pathway-card:nth-child(3) {
  border-top-color: var(--navy-soft);
}

.pathway-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 0, 102, 0.1);
}

.card-number {
  color: var(--lavender);
  font-size: 2rem;
  font-weight: 800;
}

.pathway-card h3 {
  margin: 14px 0 8px;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.14;
}

.pathway-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.pathway-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.search-banner {
  justify-content: space-between;
  gap: 35px;
  padding: 54px var(--page-pad);
  background: linear-gradient(135deg, var(--navy) 0%, #17226f 64%, var(--green-dark) 100%);
  color: var(--white);
}

.search-banner h2 {
  margin-bottom: 10px;
  color: var(--white);
}

.search-banner p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: #d9d9ee;
}

.button-light {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--navy);
}

.campaign-section {
  background: var(--panel);
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.campaign-grid a {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 7px 20px rgba(0, 0, 102, 0.09);
  transition: transform 0.2s, box-shadow 0.2s;
}

.campaign-grid a:hover {
  transform: translateY(-5px);
  box-shadow: 0 13px 26px rgba(0, 0, 102, 0.16);
}

.campaign-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.info-section {
  background: var(--white);
}

.accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

details {
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

details[open] {
  border-color: var(--lavender);
  background: #fbfbff;
}

summary {
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.info-split {
  background: var(--lavender-light);
}

.info-split > div {
  flex: 1;
}

.guide-links {
  border-top: 2px solid var(--navy);
}

.guide-links a {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 19px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s, padding 0.2s;
}

.guide-links a:hover {
  padding-left: 16px;
  color: var(--navy);
}

.guide-links strong {
  color: var(--lavender);
}

.article-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 18%, rgba(125, 134, 200, 0.12), transparent 22%),
    radial-gradient(circle at 92% 18%, rgba(125, 134, 200, 0.18), transparent 28%),
    linear-gradient(145deg, #fbfbff 0%, #ffffff 66%);
}

.article-hero::before,
.article-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.article-hero::before {
  right: max(28px, calc((100vw - var(--content-width)) / 2));
  top: 50%;
  width: clamp(250px, 23vw, 350px);
  aspect-ratio: 420 / 300;
  background: url("px/calm-orientation.svg") center / contain no-repeat;
  opacity: 0.42;
  transform: translateY(-50%);
}

.article-hero-stress::before {
  background-image: url("px/stress-calm.svg");
}

.article-hero-versorgung::before {
  background-image: url("px/versorgung-path.svg");
}

.article-hero-absicherung::before {
  background-image: url("px/absicherung-shield.svg");
}

.article-hero::after {
  right: max(24px, calc((100vw - var(--content-width)) / 2 - 18px));
  top: 50%;
  width: clamp(280px, 28vw, 420px);
  height: clamp(150px, 15vw, 220px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(125, 134, 200, 0.12), transparent 68%);
  opacity: 0.7;
  transform: translateY(-50%);
}

.article-hero h1 {
  position: relative;
  max-width: 820px;
  margin-left: -0.04em;
  margin-bottom: 24px;
  font-size: clamp(3.75rem, 7.6vw, 6.15rem);
  letter-spacing: 0;
  line-height: 0.94;
  text-align: left;
  text-indent: 0;
  z-index: 1;
}

.article-hero h1 span {
  display: block;
  margin-left: 0;
  color: var(--navy);
  font-weight: 800;
  text-indent: 0;
}

.article-hero h1 span:first-child {
  color: var(--green);
  font-weight: 800;
}

.stacked-heading {
  display: grid;
  justify-items: start;
}

.stacked-heading span {
  display: block;
  margin: 0;
  padding: 0;
}

.article-hero h1 br {
  display: none;
}

.article-hero .eyebrow,
.article-hero .hero-text {
  position: relative;
  z-index: 1;
}

.article-hero .hero-text {
  max-width: 760px;
  color: #4f596f;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.5;
}

.article-body {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 55px;
  scroll-margin-top: 24px;
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 20px;
}

.article-nav {
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.article-nav a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.article-nav a:hover,
.article-nav .active {
  background: var(--white);
  color: var(--navy);
}

.article-content h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 800;
}

.article-content p {
  color: var(--muted);
}

.article-content a:not(.button) {
  color: var(--navy);
  font-weight: 800;
}

.text-section {
  padding: 19px 0 10px;
  border-top: 1px solid var(--line);
}

.text-section h3 {
  margin-bottom: 6px;
  font-size: 1.07rem;
  text-transform: uppercase;
}

.content-callout {
  margin: 27px 0;
  padding: 22px;
  border-left: 4px solid var(--lavender);
  background: var(--lavender-light);
}

.content-callout h3,
.content-callout p:last-child {
  margin-bottom: 0;
}

.content-callout .button {
  margin-top: 8px;
}

.stress-keywords {
  margin: 34px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(241, 244, 251, 0.96), rgba(255, 255, 255, 0.98)),
    var(--white);
  box-shadow: var(--shadow);
}

.stress-keywords-header {
  padding: 28px 30px 18px;
  border-bottom: 1px solid var(--line);
}

.stress-keywords-header h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.12;
}

.stress-keywords-header p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.keyword-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.keyword-item {
  min-height: 132px;
  padding: 22px 24px;
  background: var(--white);
}

.keyword-item strong,
.keyword-item p {
  display: block;
}

.keyword-item strong {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.05rem;
}

.keyword-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.emergency-callout {
  border-left-color: #c76868;
  background: #fff8f7;
}

.article-figure {
  margin: 28px 0;
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-figure figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.search-image-cta {
  margin-top: 32px;
  border-radius: 8px;
  box-shadow: none;
}

.site-footer {
  border-top: 3px solid var(--lavender);
  background: #f3f5f8;
}

.footer-main {
  gap: 22px;
  padding: 42px var(--page-pad) 36px;
}

.footer-brand {
  flex: 1.5;
}

.footer-col {
  flex: 1;
  padding-left: 22px;
  border-left: 1px solid rgba(153, 153, 204, 0.55);
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  color: #111111;
  text-decoration: none;
}

.footer-logo-link img {
  width: 31px;
  height: 31px;
}

.footer-brand p {
  margin: 16px 0;
  color: #111111;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
}

.provider-link {
  display: inline-block;
  padding: 7px 13px;
  border: 2px solid var(--green);
  border-radius: 8px;
  color: #111111;
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 9px;
  margin: 17px 0;
}

.social-button {
  display: grid;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  color: var(--white);
  place-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
}

.social-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-whatsapp {
  background: var(--green);
}

.social-mail {
  background: var(--lavender);
}

.social-phone {
  background: var(--navy);
}

.footer-col h3 {
  display: inline-block;
  margin-bottom: 13px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--lavender);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin: 4px 0;
  color: #555555;
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--navy);
}

.footer-contact-line {
  display: flex !important;
  align-items: center;
  gap: 7px;
}

.footer-contact-line svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--lavender);
  fill: currentColor;
}

.footer-bottom {
  padding: 12px var(--page-pad);
  border-top: 1px solid #d0d0d0;
  background: #e7ebf0;
  color: #777777;
  font-size: 0.78rem;
  text-align: center;
}

@media (max-width: 800px) {
  .site-header {
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    padding-inline: 5%;
  }

  .brand {
    min-width: 0;
  }

  .brand::before {
    display: none;
  }

  .brand::after {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .back-button,
  .header-divider {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    gap: 0;
  }

  .header-actions .icon-button {
    display: none;
  }

  .header-actions .icon-button[href^="https://suche.stresstherapie.de"] {
    display: none;
  }

  .icon-button,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu-toggle {
    display: grid;
  }

  .menu-toggle span {
    width: 30px;
    height: 3px;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .desktop-nav {
    display: none;
  }

  .article-hero::before,
  .article-hero::after {
    display: none;
  }

  .article-hero h1 {
    max-width: 100%;
    font-size: clamp(3.05rem, 10.5vw, 4.35rem);
  }

  .article-hero .hero-text {
    max-width: 100%;
  }

  .section-pad {
    padding: 62px 5%;
  }

  .hero,
  .intro,
  .info-split {
    flex-direction: column;
  }

  .intro {
    align-items: flex-start;
    padding-bottom: 58px;
  }

  .intro-content {
    padding-top: 0;
  }

  .hero {
    gap: 35px;
  }

  .search-card {
    max-width: none;
  }

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

  .campaign-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .search-banner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .article-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-aside {
    position: static;
  }

  .article-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-nav a {
    text-align: center;
  }

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

  .keyword-item {
    min-height: auto;
  }

  .editorial-image-link {
    width: 100%;
  }

  .editorial-image-link img {
    height: clamp(300px, 56vw, 380px);
  }

  .footer-main {
    flex-wrap: wrap;
    padding-inline: 5%;
  }

  .footer-brand {
    flex-basis: 100%;
    padding-bottom: 15px;
  }

  .footer-col {
    min-width: 175px;
  }
}

@media (max-width: 520px) {
  .page-shell {
    margin: 0;
    border-radius: 0;
  }

  .site-header {
    min-height: 70px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .brand::after {
    display: none;
  }

  .brand {
    gap: 4px;
  }

  .brand-logo-icon {
    width: clamp(34px, 9vw, 38px);
    max-height: 38px;
  }

  .brand-wordmark {
    max-width: none;
    overflow: visible;
    font-size: clamp(1.16rem, 5.65vw, 1.48rem);
    letter-spacing: -0.07em;
    white-space: nowrap;
  }

  .header-actions {
    gap: 0;
  }

  .icon-button:first-of-type {
    display: none;
  }

  .section-pad {
    padding: 52px 20px;
  }

  h1 {
    font-size: clamp(2.75rem, 12.5vw, 3.15rem);
    letter-spacing: 0;
  }

  .article-hero h1 {
    font-size: clamp(3rem, 15vw, 3.75rem);
    line-height: 0.94;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero-text {
    font-size: 1.04rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .search-card {
    padding: 27px 23px;
  }

  .search-card h2 {
    font-size: 1.75rem;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .stress-keywords-header {
    padding: 24px 20px 16px;
  }

  .keyword-item {
    padding: 20px;
  }

  .emergency-note {
    align-items: flex-start;
    padding: 17px 20px;
  }

  .search-banner {
    padding: 41px 20px;
  }

  .editorial-image-link {
    border-radius: 8px;
  }

  .editorial-image-link img {
    height: 260px;
  }

  .campaign-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .button-light {
    width: 100%;
  }

  .footer-main {
    flex-direction: column;
    padding: 30px 20px 22px;
  }

  .footer-col {
    width: 100%;
    padding: 14px 0 5px;
    border-top: 1px solid rgba(153, 153, 204, 0.45);
    border-left: 0;
  }
}
