:root {
  --blue-900: #004b7a;
  --blue-800: #005d8f;
  --teal-600: #00aeb6;
  --teal-500: #16c6c8;
  --teal-100: #dff7f8;
  --sky-50: #f3fbfc;
  --gray-900: #22313f;
  --gray-700: #4e5d67;
  --gray-200: #dbe7ea;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 75, 122, 0.14);
  --radius: 24px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--blue-900);
  color: var(--white);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 10px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 75, 122, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: block;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 75, 122, 0.14);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.05;
}

.brand-name {
  color: var(--blue-900);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-subline {
  margin-top: 4px;
  color: var(--gray-700);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--blue-900);
  font-size: 0.88rem;
}

.main-nav a,
.site-footer a {
  text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--teal-600);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta {
  padding: 12px 18px;
  background: var(--teal-600);
  color: var(--white);
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 174, 182, 0.24);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px clamp(20px, 4vw, 36px);
}

.hero {
  max-width: none;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 360px);
  align-items: center;
  gap: 42px;
  padding-left: max(clamp(20px, 4vw, 36px), calc((100vw - var(--max)) / 2 + 36px));
  padding-right: max(clamp(20px, 4vw, 36px), calc((100vw - var(--max)) / 2 + 36px));
  background:
    radial-gradient(circle at 80% 10%, rgba(22, 198, 200, 0.20), transparent 28%),
    radial-gradient(circle at 15% 88%, rgba(0, 93, 143, 0.16), transparent 30%),
    linear-gradient(135deg, var(--sky-50), #ffffff 48%, var(--teal-100));
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  border: 80px solid rgba(0, 174, 182, 0.10);
  right: -200px;
  bottom: -180px;
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-600);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  color: var(--blue-900);
  font-size: clamp(2.25rem, 4.8vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

h2 {
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

h3 {
  color: var(--blue-900);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.hero-text {
  max-width: 690px;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  color: var(--gray-700);
}

.hero-actions,
.contact-actions,
.riding-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  padding: 14px 22px;
}

.button.primary {
  background: var(--teal-600);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(0, 174, 182, 0.26);
}

.button.secondary {
  background: var(--white);
  color: var(--blue-900);
  border: 1px solid rgba(0, 75, 122, 0.18);
}

.hero-card,
.contact-card,
.info-box,
.riding-card,
.therapy-card,
.team-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 75, 122, 0.10);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-card {
  padding: 32px;
}

.hero-card a,
.contact-card a,
.riding-card a {
  color: var(--blue-900);
  font-weight: 800;
}

.intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.intro p:last-child {
  font-size: 1.12rem;
  color: var(--gray-700);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p {
  color: var(--gray-700);
}

.combined-services {
  max-width: none;
  background: linear-gradient(135deg, #ffffff, var(--sky-50));
  padding-left: max(clamp(20px, 4vw, 36px), calc((100vw - var(--max)) / 2 + 36px));
  padding-right: max(clamp(20px, 4vw, 36px), calc((100vw - var(--max)) / 2 + 36px));
}

.home-visit-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 174, 182, 0.14), rgba(0, 75, 122, 0.08));
  border: 1px solid rgba(0, 75, 122, 0.10);
}

.home-visit-box h3 {
  margin-bottom: 8px;
}

.home-visit-box p:last-child {
  margin-bottom: 0;
  color: var(--gray-700);
}

.therapy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.therapy-card {
  padding: 28px;
}

.therapy-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.therapy-card li {
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
  color: var(--gray-700);
}

.therapy-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--teal-600);
  font-weight: 900;
}

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

.highlight-card {
  display: grid;
  gap: 6px;
  padding: 28px;
  border-radius: var(--radius);
  text-decoration: none;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  color: var(--white);
  box-shadow: var(--shadow);
}

.highlight-card span,
.highlight-card small {
  color: rgba(255,255,255,0.78);
}

.highlight-card strong {
  font-size: 1.5rem;
}

.riding-section {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
  padding-left: max(clamp(20px, 4vw, 36px), calc((100vw - var(--max)) / 2 + 36px));
  padding-right: max(clamp(20px, 4vw, 36px), calc((100vw - var(--max)) / 2 + 36px));
  background:
    radial-gradient(circle at 20% 15%, rgba(0, 174, 182, 0.18), transparent 26%),
    linear-gradient(135deg, #ffffff, var(--sky-50));
}

.riding-content {
  max-width: 760px;
}

.riding-content p,
.riding-card p,
.info-box p,
.split-content p,
.contact p,
.team-card p,
.team-card small {
  color: var(--gray-700);
}

.lead {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--blue-900) !important;
  font-weight: 800;
}

.riding-card {
  padding: 30px;
  position: sticky;
  top: 110px;
}

.outdoor-section {
  background:
    radial-gradient(circle at 75% 20%, rgba(0, 75, 122, 0.12), transparent 28%),
    linear-gradient(135deg, var(--teal-100), #ffffff 62%);
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.team-card {
  padding: 18px;
}

.team-photo {
  min-height: 250px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0, 75, 122, 0.12), rgba(22, 198, 200, 0.22)),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.40) 0 10px, rgba(255,255,255,0.18) 10px 20px);
  color: var(--blue-900);
  font-weight: 900;
}

.team-card h3 {
  margin-bottom: 4px;
}

.team-card p {
  margin-bottom: 4px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: center;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  margin: 12px 0;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--teal-600);
  font-weight: 900;
}

.image-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 75, 122, 0.12), rgba(22, 198, 200, 0.22)),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.36) 0 10px, rgba(255,255,255,0.12) 10px 20px);
  border: 1px solid rgba(0, 75, 122, 0.10);
  color: var(--blue-900);
  font-weight: 900;
}

.patient-info {
  max-width: none;
  background: var(--sky-50);
  padding-left: max(clamp(20px, 4vw, 36px), calc((100vw - var(--max)) / 2 + 36px));
  padding-right: max(clamp(20px, 4vw, 36px), calc((100vw - var(--max)) / 2 + 36px));
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-box {
  padding: 28px;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  padding: 34px;
}

address {
  font-style: normal;
  margin-bottom: 18px;
  color: var(--gray-700);
}

.map-link {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 900;
  color: var(--teal-600) !important;
}

.legal-page {
  max-width: 900px;
  min-height: 60vh;
}

.legal-page h1 {
  margin-bottom: 32px;
}

.legal-embed {
  padding: 28px;
  border: 1px solid rgba(0, 75, 122, 0.10);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-page p,
.legal-page li {
  color: var(--gray-700);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 4vw, 48px);
  background: var(--blue-900);
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.mobile-actionbar {
  display: none;
}

@media (max-width: 1260px) {
  .main-nav {
    display: none;
  }

  .hero,
  .intro,
  .split,
  .contact,
  .riding-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .therapy-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .riding-card,
  .hero-card {
    position: static;
    max-width: 560px;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 70px;
  }

  .site-header {
    align-items: flex-start;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-subline {
    font-size: 0.7rem;
  }

  .header-cta {
    display: none;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero-actions,
  .contact-actions,
  .riding-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .therapy-grid,
  .highlight-grid,
  .team-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .home-visit-box {
    grid-template-columns: 1fr;
  }

  .team-photo,
  .image-placeholder {
    min-height: 260px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }

  .mobile-actionbar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 75, 122, 0.10);
    box-shadow: 0 18px 42px rgba(0, 75, 122, 0.22);
    backdrop-filter: blur(16px);
  }

  .mobile-actionbar a {
    display: grid;
    place-items: center;
    min-height: 46px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    background: var(--teal-600);
    color: var(--white);
  }

  .mobile-actionbar a:first-child {
    background: var(--blue-900);
  }
}

/* Verfügbarkeitshinweise */
.therapy-card-note p {
  color: var(--gray-700);
}

.availability-note {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 75, 122, 0.08);
  color: var(--blue-900) !important;
  font-weight: 800;
}

/* Verbesserte Startseiten-Darstellung: Kontaktbox bleibt sauber neben oder unter dem Einstiegstext */
.hero-card {
  max-width: 100%;
}

@media (min-width: 1261px) {
  .hero-content {
    min-width: 0;
  }

  .hero-card {
    justify-self: end;
  }
}

@media (max-width: 1260px) {
  .hero-card {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
  }
}

/* Hervorgehobene Therapiepunkte und Massagegutscheine */
.treatment-highlight {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0, 174, 182, 0.12);
  color: var(--blue-900);
  font-weight: 900;
}

.voucher-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(223,247,248,0.86));
}

.voucher-card .text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--teal-600);
  font-weight: 900;
  text-decoration: none;
}

.voucher-card .text-link:hover {
  text-decoration: underline;
}

/* Teamkarten mit Namen */
.team-card small {
  display: block;
}

@media (min-width: 1121px) and (max-width: 1380px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Visueller Anspruch-Bereich */
.claim-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.claim-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 36px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 44px);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 174, 182, 0.18), transparent 28%),
    linear-gradient(135deg, var(--blue-900), var(--blue-800));
  color: var(--white);
  box-shadow: var(--shadow);
}

.claim-card::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -150px;
  bottom: -170px;
  border-radius: 50%;
  border: 64px solid rgba(255, 255, 255, 0.08);
}

.claim-content,
.claim-points {
  position: relative;
  z-index: 1;
}

.claim-content .eyebrow {
  color: var(--teal-100);
}

.claim-content h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.claim-content p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.claim-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.claim-point {
  min-height: 190px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.claim-point span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--teal-100);
  font-weight: 900;
}

.claim-point strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.1rem;
}

.claim-point small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .claim-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .claim-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .claim-card {
    padding: 24px;
  }

  .claim-points {
    grid-template-columns: 1fr;
  }

  .claim-point {
    min-height: auto;
  }
}
