
:root {
  --burgundy: #7d2030;
  --header-left: #875f69;
  --header-mid: #7b5660;
  --header-right: #8d6972;
  --text: #15202b;
  --blue: #174d82;
  --green: #316d2c;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.52;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  background: linear-gradient(90deg, var(--header-left), var(--header-mid) 52%, var(--header-right));
  color: #fff;
  text-align: center;
  padding: 24px 20px 20px;
}

.brand-title,
.brand-name,
h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.brand-title {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.brand-name {
  margin-top: 7px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.brand-subtitle {
  margin-top: 6px;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
}

.main-nav {
  display: grid;
  grid-template-columns: .72fr 1.62fr 1.35fr 1.1fr 1.35fr;
  min-height: 72px;
  background: #fbfaf8;
  border-bottom: 1px solid #e2ded9;
}

.main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  color: #122030;
  text-decoration: none;
  text-align: center;
  font-size: 1.04rem;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a.active { color: var(--burgundy); }

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 18%;
  right: 18%;
  height: 3px;
  background: var(--burgundy);
}

.hero-image img {
  display: block;
  width: 100%;
  height: min(53vw, 660px);
  object-fit: cover;
  object-position: center 18%;
}

.intro {
  background: linear-gradient(180deg, #fcfaf8, #f8f4f0);
  padding: 28px 0 20px;
}

.content-wrap {
  width: min(1380px, calc(100% - 116px));
  margin: 0 auto;
}

.intro h1,
.appointment-title,
.attitude h2 { color: var(--burgundy); }

.intro h1 {
  margin: 0 0 18px;
  font-size: 2.15rem;
}

.intro p {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.appointment-title {
  margin: 28px 0 18px;
  text-align: center;
  font-size: 2.05rem;
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.appointment-card {
  border-radius: 12px;
  padding: 22px 34px 20px;
  text-align: center;
}

.appointment-card.statutory {
  color: var(--blue);
  background: linear-gradient(135deg, #eaf0f7, #f4f5f7);
}

.appointment-card.private {
  color: var(--green);
  background: linear-gradient(135deg, #eef2e8, #f4f5ef);
}

.person-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 4px;
}

.person-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.appointment-card h3 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.small-rule {
  width: 40px;
  height: 2px;
  margin: 10px auto 14px;
  background: currentColor;
  opacity: .62;
}

.appointment-card p {
  max-width: 430px;
  margin: 0 auto 18px;
  color: #171717;
  font-size: 1rem;
}

.button {
  display: inline-block;
  min-width: 220px;
  border-radius: 7px;
  padding: 10px 24px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
}

.button.blue { background: linear-gradient(#1e5b97, #104a7c); }
.button.green { background: linear-gradient(#4c8142, #2e6b2b); }

.attitude {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 350px;
  background: #f8f5f1;
}

.attitude-inner { padding: 28px 46px 22px 74px; }

.attitude h2 {
  margin: 0;
  font-size: 2rem;
}

.heading-rule {
  width: 38px;
  height: 2px;
  background: var(--burgundy);
  margin: 8px 0 16px;
}

.attitude p {
  margin: 0 0 16px;
  font-size: 1.02rem;
}

.script-line {
  margin-top: 16px !important;
  color: var(--burgundy);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.7rem !important;
  font-style: italic;
}

.attitude-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center 48%;
}

.site-footer {
  background: linear-gradient(90deg, #7c5963, #825b65, #7d5962);
  color: #fff;
  padding: 16px 24px 13px;
  text-align: center;
}

.footer-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 1rem;
}

.site-footer a { color: #fff; }
.footer-link { display: inline-block; margin-top: 5px; }

@media (max-width: 950px) {
  .main-nav { grid-template-columns: 1fr; }
  .main-nav a {
    min-height: 48px;
    border-bottom: 1px solid #ece8e4;
  }
  .main-nav a.active::after { left: 40%; right: 40%; }
  .appointment-grid,
  .attitude { grid-template-columns: 1fr; }
  .attitude-inner { padding: 32px; }
  .hero-image img { height: 50vh; }
}

@media (max-width: 620px) {
  .content-wrap { width: calc(100% - 34px); }
  .site-header { padding: 18px 16px 16px; }
  .brand-title { font-size: 2rem; }
  .appointment-card { padding: 22px 18px; }
  .button { width: 100%; min-width: 0; }
  .footer-contact {
    flex-direction: column;
    gap: 7px;
  }
  .sep { display: none; }
}


/* ===== Seite 2: Über mich & Behandlungsangebot ===== */
.about-page {
  background: linear-gradient(180deg, #fbf8f5 0%, #faf7f3 100%);
}

.about-hero {
  width: 100%;
  background: #f5f1ed;
  overflow: hidden;
}

.about-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.about-main {
  padding: 34px 0 24px;
}

.about-grid {
  width: min(1400px, calc(100% - 100px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr .92fr;
  gap: 28px 42px;
  align-items: start;
}

.about-grid h1,
.about-grid h2,
.expect-card h2 {
  margin: 0;
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.12;
}

.about-grid h1 {
  font-size: 2.15rem;
}

.about-grid h2,
.expect-card h2 {
  font-size: 1.95rem;
}

.card-plain,
.support-card,
.therapy-card {
  padding: 6px 4px 4px;
}

.about-grid p {
  margin: 0 0 15px;
  font-size: 1rem;
  line-height: 1.58;
}

.expect-card {
  background: rgba(255,255,255,.48);
  border-radius: 18px;
  padding: 26px 30px 20px;
  box-shadow: 0 8px 24px rgba(72, 43, 35, .03);
}

.expect-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(125, 32, 48, .24);
}

.expect-item:last-child {
  border-bottom: 0;
}

.expect-icon {
  width: 44px;
  height: 44px;
  border: 1.8px solid #7c8451;
  color: #6f7d42;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  line-height: 1;
}

.expect-item strong {
  display: block;
  margin-bottom: 3px;
  color: #1a1a1a;
  font-size: 1rem;
}

.expect-item p {
  margin: 0;
  font-size: .96rem;
  line-height: 1.42;
}

.support-card,
.therapy-card {
  border-radius: 14px;
}

.diagnosis-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}

.diagnosis-columns ul {
  margin: 0;
  padding-left: 1.15rem;
}

.diagnosis-columns li {
  margin: 4px 0;
  line-height: 1.4;
}

.diagnosis-columns li::marker {
  color: var(--burgundy);
}

.values-strip {
  width: min(1450px, calc(100% - 60px));
  margin: 8px auto 0;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,.42);
  border-radius: 14px;
}

.value-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid rgba(125,32,48,.25);
}

.value-item:last-child {
  border-right: 0;
}

.value-icon {
  color: #5f6f35;
  font-size: 2rem;
  text-align: center;
}

.value-item strong {
  display: block;
  color: var(--burgundy);
  font-size: .95rem;
  margin-bottom: 3px;
}

.value-item span {
  display: block;
  font-size: .82rem;
  line-height: 1.35;
}

@media (max-width: 1050px) {
  .about-grid {
    grid-template-columns: 1fr;
    width: min(900px, calc(100% - 42px));
  }

  .values-strip {
    grid-template-columns: 1fr 1fr;
  }

  .value-item {
    border-right: 0;
    border-bottom: 1px solid rgba(125,32,48,.18);
    padding: 14px 10px;
  }

  .value-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .about-main {
    padding-top: 24px;
  }

  .about-grid {
    width: calc(100% - 30px);
    gap: 24px;
  }

  .expect-card {
    padding: 22px 18px 16px;
  }

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

  .values-strip {
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    padding: 8px 10px;
  }

  .value-item,
  .value-item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(125,32,48,.18);
  }

  .value-item:last-child {
    border-bottom: 0;
  }
}


.expect-svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Präzisere, semantisch passende Icons auf Seite 2 */
.value-icon {
  width: 44px;
  height: 44px;
  border: 1.8px solid #7c8451;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #5f6f35;
}

.value-svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== Seite 3: Für gesetzlich Versicherte ===== */
.statutory-page {
  background: linear-gradient(180deg, #fbf8f5 0%, #faf7f3 100%);
}

.statutory-hero {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 690px;
  background: #faf7f4;
}

.statutory-hero-copy {
  padding: 48px 56px 42px 70px;
  align-self: center;
}

.statutory-kicker {
  margin-bottom: 16px;
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.statutory-hero h1 {
  margin: 0;
  color: var(--burgundy);
  font-size: clamp(2.45rem, 3.45vw, 3.75rem);
  line-height: 1.08;
}

.statutory-rule {
  width: 48px;
  height: 3px;
  margin: 24px 0 28px;
}

.statutory-hero-copy p {
  max-width: 650px;
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.62;
}

.statutory-hero-image {
  min-height: 690px;
  overflow: hidden;
}

.statutory-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: 52% center;
}

.statutory-details {
  width: min(1450px, calc(100% - 80px));
  margin: 42px auto 28px;
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 42px;
  align-items: stretch;
}

.statutory-room-image {
  min-height: 920px;
  overflow: hidden;
  border-radius: 10px;
}

.statutory-room-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 920px;
  object-fit: cover;
  object-position: center 38%;
}

.statutory-steps {
  display: flex;
  flex-direction: column;
}

.statutory-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 15px;
  padding: 2px 0 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(125, 32, 48, .22);
}

.statutory-step-last {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.statutory-step-icon {
  width: 50px;
  height: 50px;
  border: 2px solid var(--burgundy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--burgundy);
}

.statutory-step-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.statutory-step h2 {
  margin: 0 0 9px;
  color: var(--burgundy);
  font-size: 1.75rem;
  line-height: 1.15;
}

.statutory-step p {
  margin: 0 0 18px;
  font-size: .98rem;
  line-height: 1.58;
}

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

.statutory-step .step-lead {
  margin-bottom: 18px;
}

@media (max-width: 1050px) {
  .statutory-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-bottom: 34px;
  }

  .statutory-hero-copy {
    width: min(900px, calc(100% - 42px));
    margin: 0 auto;
    padding: 40px 0 34px;
  }

  .statutory-hero-copy p {
    max-width: none;
  }

  /* Auf mittleren Fensterbreiten bleibt auch das Pendel ein klar begrenztes
     Bildmodul statt sich über die gesamte Browserbreite zu ziehen. */
  .statutory-hero-image {
    width: min(900px, calc(100% - 42px));
    min-height: 0;
    height: clamp(320px, 52vw, 520px);
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
  }

  .statutory-hero-image img {
    min-height: 0;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .statutory-details {
    width: min(900px, calc(100% - 42px));
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Die Einzelschritte werden im Tablet-Layout zu eigenständigen Grid-Elementen.
     So steht zwischen den beiden großen Fotos zunächst Inhalt statt Foto auf Foto. */
  .statutory-steps {
    display: contents;
  }

  .statutory-step {
    margin-bottom: 0;
  }

  .statutory-step:nth-child(1) { order: 1; }
  .statutory-room-image { order: 2; }
  .statutory-step:nth-child(2) { order: 3; }
  .statutory-step:nth-child(3) { order: 4; }

  .statutory-room-image {
    min-height: 0;
    height: clamp(430px, 76vw, 720px);
    border-radius: 10px;
  }

  .statutory-room-image img {
    min-height: 0;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
  }
}

@media (max-width: 620px) {
  .statutory-hero-copy {
    padding: 30px 20px 26px;
  }

  .statutory-kicker {
    font-size: 1.08rem;
  }

  .statutory-hero h1 {
    font-size: 2.25rem;
  }

  .statutory-details {
    width: calc(100% - 26px);
    margin-top: 26px;
    gap: 28px;
  }

  .statutory-step {
    grid-template-columns: 48px 1fr;
    gap: 11px;
  }

  .statutory-step-icon {
    width: 43px;
    height: 43px;
  }

  .statutory-step-icon svg {
    width: 27px;
    height: 27px;
  }

  .statutory-step h2 {
    font-size: 1.45rem;
  }
}

/* ===== Seite 4: Privatsprechstunde ===== */
.private-page {
  background: linear-gradient(180deg, #fbf8f5 0%, #faf7f3 100%);
}

.private-layout {
  width: min(1450px, calc(100% - 100px));
  margin: 0 auto;
  padding: 44px 0 30px;
  display: grid;
  grid-template-columns: 1fr .98fr;
  gap: 52px;
  align-items: start;
}

.private-kicker {
  margin-bottom: 17px;
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.private-copy > h1 {
  margin: 0;
  color: var(--burgundy);
  font-size: clamp(2.45rem, 3.35vw, 3.7rem);
  line-height: 1.08;
}

.private-rule {
  width: 48px;
  height: 3px;
  margin: 23px 0 28px;
}

.private-copy > p {
  margin: 0 0 27px;
  font-size: 1rem;
  line-height: 1.62;
}

.private-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(125, 32, 48, .22);
}

.private-step-icon {
  width: 50px;
  height: 50px;
  border: 2px solid var(--burgundy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--burgundy);
}

.private-step-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.private-step h2,
.fees-card h2 {
  margin: 0;
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.private-step h2 {
  margin-bottom: 9px;
  font-size: 1.75rem;
  line-height: 1.15;
}

.private-step p {
  margin: 0 0 18px;
  font-size: .98rem;
  line-height: 1.58;
}

.private-step p:last-child { margin-bottom: 0; }
.private-step .step-lead { margin-bottom: 18px; }

.private-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.private-photo {
  height: 820px;
  border-radius: 13px;
  overflow: hidden;
}

.private-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.fees-card {
  padding: 22px 26px 26px;
  background: rgba(255,255,255,.36);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(72,43,35,.025);
}

.fees-card h2 {
  margin-bottom: 13px;
  font-size: 2rem;
  line-height: 1.08;
}

.fees-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  line-height: 1.25;
}

.fees-card th,
.fees-card td {
  border: 1px solid rgba(125,32,48,.17);
  padding: 9px 11px;
  vertical-align: middle;
  text-align: left;
}

.fees-card th {
  color: var(--burgundy);
  font-weight: 700;
}

.fees-card th:last-child,
.fees-card td:last-child {
  width: 28%;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
}

.fees-notes {
  margin-top: 13px;
  font-size: .84rem;
  line-height: 1.38;
}

.fees-notes strong { color: var(--burgundy); }
.fees-notes ul { margin: 4px 0 0; padding-left: 1.1rem; }
.fees-notes li { margin: 3px 0; }

@media (max-width: 1050px) {
  .private-layout {
    width: min(900px, calc(100% - 42px));
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .private-copy { display: contents; }
  .private-side { display: contents; }

  .private-kicker { grid-row: 1; margin-bottom: -10px; }
  .private-copy > h1 { grid-row: 2; }
  .private-rule { grid-row: 3; margin-top: -8px; margin-bottom: -5px; }
  .private-copy > p:nth-of-type(1) { grid-row: 4; }
  .private-copy > p:nth-of-type(2) { grid-row: 5; }
  .private-photo { grid-row: 6; height: clamp(480px, 88vw, 760px); }
  .private-step:nth-of-type(1) { grid-row: 7; }
  .fees-card { grid-row: 8; }
  .private-step:nth-of-type(2) { grid-row: 9; }

  .private-step { margin-top: 0; }
}

@media (max-width: 620px) {
  .private-layout {
    width: calc(100% - 26px);
    padding-top: 30px;
    gap: 25px;
  }

  .private-kicker { font-size: 1.08rem; }
  .private-copy > h1 { font-size: 2.25rem; }

  .private-step {
    grid-template-columns: 48px 1fr;
    gap: 11px;
  }

  .private-step-icon {
    width: 43px;
    height: 43px;
  }

  .private-step-icon svg {
    width: 27px;
    height: 27px;
  }

  .private-step h2 { font-size: 1.45rem; }
  .private-photo { height: 115vw; max-height: 680px; }
  .fees-card { padding: 18px 14px 20px; }
  .fees-card h2 { font-size: 1.65rem; }
  .fees-card table { font-size: .77rem; }
  .fees-card th, .fees-card td { padding: 7px 6px; }
}


/* Seite 5: Impressum & Datenschutz */
.legal-page{background:var(--paper,#f7f3ef);padding:42px 0 0}.legal-wrap{width:min(1120px,calc(100% - 70px));margin:0 auto}.legal-wrap>h1{color:var(--burgundy);font-family:Georgia,"Times New Roman",serif;font-size:2.55rem;font-weight:500;margin:0}.legal-wrap>.heading-rule{margin:12px 0 30px}.legal-columns{display:grid;grid-template-columns:1fr 1fr;gap:54px;align-items:start}.legal-card{min-width:0}.legal-card h2{font-family:Georgia,"Times New Roman",serif;color:var(--burgundy);font-size:1.65rem;font-weight:500;margin:0 0 18px}.legal-card h3{font-family:Georgia,"Times New Roman",serif;color:var(--burgundy);font-size:1.15rem;font-weight:600;line-height:1.25;margin:24px 0 8px}.legal-card p{font-size:.88rem;line-height:1.48;margin:0 0 12px;overflow-wrap:anywhere}.legal-card a{color:var(--burgundy);text-decoration:underline;text-underline-offset:2px}.legal-page .values-strip{margin-top:42px}@media(max-width:900px){.legal-wrap{width:min(760px,calc(100% - 42px))}.legal-columns{grid-template-columns:1fr;gap:22px}.legal-card p{font-size:.94rem}.legal-page{padding-top:32px}}@media(max-width:620px){.legal-wrap{width:calc(100% - 26px)}.legal-wrap>h1{font-size:2.05rem}.legal-card h2{font-size:1.5rem}.legal-card h3{font-size:1.08rem}}


/* ===== Abschließende Responsive-Optimierung: Desktop / Tablet / Smartphone ===== */
.nav-toggle {
  display: none;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-bottom: 1px solid #e2ded9;
  background: #fbfaf8;
  color: #122030;
  font: 600 1rem Arial, Helvetica, sans-serif;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-icon { position: relative; }
.nav-toggle-icon::before { position: absolute; top: -7px; left: 0; }
.nav-toggle-icon::after { position: absolute; top: 7px; left: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after { top: 0; transform: rotate(-45deg); }

img { max-width: 100%; }
a { overflow-wrap: anywhere; }

@media (max-width: 950px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    grid-template-columns: 1fr;
    min-height: 0;
    box-shadow: 0 8px 18px rgba(35,25,22,.06);
  }
  .main-nav.is-open { display: grid; }
  .main-nav a { min-height: 50px; padding: 11px 18px; }
  .main-nav a.active::after { left: 32%; right: 32%; height: 2px; }

  .site-header { padding-top: 20px; padding-bottom: 18px; }
  .brand-title { font-size: clamp(2rem, 5vw, 2.8rem); }
  .brand-name { font-size: clamp(1.3rem, 3.3vw, 1.8rem); }
  .brand-subtitle { font-size: 1rem; }
}

@media (max-width: 620px) {
  body { line-height: 1.48; }
  .site-header { padding: 15px 12px 14px; }
  .brand-title { font-size: clamp(1.7rem, 8.2vw, 2.05rem); }
  .brand-name { margin-top: 5px; font-size: clamp(1.12rem, 5.6vw, 1.42rem); }
  .brand-subtitle { margin-top: 3px; font-size: .91rem; }
  .nav-toggle { min-height: 50px; }

  .hero-image img { height: 54vw; min-height: 230px; max-height: 360px; }
  .intro { padding-top: 23px; }
  .intro h1 { font-size: 1.8rem; }
  .intro p { font-size: .96rem; }
  .appointment-title { font-size: 1.75rem; }
  .attitude-inner { padding: 26px 18px; }
  .attitude h2 { font-size: 1.72rem; }
  .attitude-photo img { min-height: 280px; max-height: 430px; }

  .values-strip { margin-top: 18px; }
  .value-item { grid-template-columns: 44px 1fr; padding: 12px 5px; }
  .value-item strong { font-size: .9rem; }
  .value-item span { font-size: .8rem; }

  .fees-card { overflow: hidden; }
  .fees-card table { table-layout: fixed; }
  .fees-card th:first-child, .fees-card td:first-child { width: 72%; }
  .fees-card th:last-child, .fees-card td:last-child { width: 28%; }
  .fees-card td, .fees-card th { overflow-wrap: break-word; hyphens: auto; }

  .site-footer { padding: 14px 14px 12px; }
  .footer-contact { font-size: .91rem; }
}

@media (max-width: 390px) {
  .brand-title { font-size: 1.62rem; }
  .brand-name { font-size: 1.08rem; }
  .brand-subtitle { font-size: .84rem; }
  .private-copy > h1, .statutory-hero h1 { font-size: 2rem; }
  .fees-card table { font-size: .71rem; }
  .fees-card th, .fees-card td { padding: 6px 4px; }
}


/* Dezenter Datenschutz-/Technikhinweis (kein Tracking-Consent-Banner) */
.privacy-notice[hidden] { display: none !important; }
.privacy-notice {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  padding: 12px 18px;
  background: rgba(250, 247, 242, .98);
  border-top: 2px solid #7b2435;
  box-shadow: 0 -6px 24px rgba(0,0,0,.10);
}
.privacy-notice__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.privacy-notice p { margin: 0; font-size: .9rem; line-height: 1.45; }
.privacy-notice a { color: #7b2435; text-decoration: underline; text-underline-offset: 2px; }
.privacy-notice__button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 10px 20px;
  background: #7b2435;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.privacy-notice__button:hover, .privacy-notice__button:focus-visible { filter: brightness(.92); }
@media (max-width: 700px) {
  .privacy-notice { padding: 12px 14px; }
  .privacy-notice__inner { align-items: stretch; flex-direction: column; gap: 10px; }
  .privacy-notice p { font-size: .84rem; }
  .privacy-notice__button { width: 100%; }
}
