:root {
  --bg: #071109;
  --bg-2: #0c1b10;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.125);
  --text: #f5fff6;
  --muted: #b8c9bd;
  --line: rgba(255, 255, 255, 0.14);
  --green: #b8ff2f;
  --green-2: #29e071;
  --yellow: #edff70;
  --dark: #061008;
  --shadow: 0 28px 95px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  overflow-x: hidden;

  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;

  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Hintergrund der gesamten Website */

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(184, 255, 47, 0.24),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 8%,
      rgba(41, 224, 113, 0.18),
      transparent 34%
    ),
    radial-gradient(
      circle at 50% 82%,
      rgba(237, 255, 112, 0.1),
      transparent 35%
    ),
    linear-gradient(180deg, #071109, #08100a 50%, #050805);
}

/* Leichter Körnungseffekt über der Seite */

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0;
}

/* =========================================================
   Navigation
   ========================================================= */

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 100;
  display: flex;
  width: min(1180px, calc(100% - 28px));
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 17, 9, 0.74);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--dark);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  font-size: 0.9rem;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
}

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

.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
  transition: 0.2s;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* =========================================================
   Hero-Bereich
   ========================================================= */

.hero {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 42px;
  padding-top: 148px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  max-width: 760px;
  font-size: clamp(3rem, 6.4vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.hero-text {
  max-width: 660px;
  margin: 28px 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  transition:
    transform 0.2s,
    background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--dark);
  background: var(--green);
  box-shadow: 0 18px 45px rgba(184, 255, 47, 0.22);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.hero-visual {
  display: flex;
  min-width: 0;
  justify-content: center;
}

.court-card {
  position: relative;
  display: flex;
  width: min(390px, 100%);
  aspect-ratio: 4 / 5;
  align-items: flex-end;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.045)
  );
  box-shadow: var(--shadow);
}

.court-card::before {
  position: absolute;
  inset: -40%;
  content: "";
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(184, 255, 47, 0.18),
    transparent 38%
  );
  animation: spin 13s linear infinite;
}

.court-mini {
  position: absolute;
  inset: 28px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  transform: perspective(700px) rotateX(12deg);
}

.court-mini span {
  position: absolute;
  background: rgba(255, 255, 255, 0.23);
}

.net {
  top: 50%;
  right: 0;
  left: 0;
  height: 3px;
}

.service-left {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
}

.service-right {
  top: 27%;
  right: 0;
  left: 0;
  height: 3px;
}

.baseline-top {
  right: 0;
  bottom: 27%;
  left: 0;
  height: 3px;
}

.baseline-bottom {
  display: none;
}

.ball {
  position: absolute;
  top: 64px;
  right: 58px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 32%,
    #fffca8 0 8%,
    var(--yellow) 9% 52%,
    var(--green) 53%
  );
  box-shadow: 0 0 80px rgba(184, 255, 47, 0.42);
  animation: float 4s ease-in-out infinite;
}

.ball::before,
.ball::after {
  position: absolute;
  inset: 16px;
  content: "";
  border-left: 4px solid rgba(6, 17, 11, 0.42);
  border-radius: 50%;
  transform: rotate(26deg);
}

.ball::after {
  transform: rotate(206deg);
}

.court-card p {
  position: relative;
  z-index: 2;
  font-size: clamp(1.65rem, 5vw, 2.1rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

/* =========================================================
   Gemeinsame Karten
   ========================================================= */

.stats article,
.course-card,
.price-card,
.training-panel,
.training-list,
.contact,
.booking-box,
.map-card,
.coach-photo,
.coach-copy {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--card);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

/* =========================================================
   Statistik
   ========================================================= */

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}

.stats article {
  min-width: 0;
  padding: 28px;
}

.stats strong {
  display: block;
  color: var(--green);
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.07em;
}

.stats span {
  color: var(--muted);
  font-weight: 800;
}

/* =========================================================
   Bereiche mit zwei Spalten
   ========================================================= */

.about,
.place,
.training,
.coach {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 20px;
}

.about {
  align-items: start;
  gap: 48px;
}

.about h2,
.section-head h2,
.training h2,
.contact h2,
.place h2,
.coach h2 {
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.065em;
  overflow-wrap: normal;
  hyphens: none;
}

.about > p,
.training-panel p,
.contact p,
.place-copy > p,
.coach-copy p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.place h2 {
  margin-bottom: 22px;
  line-height: 1.12;
}

.training-panel h2 {
  margin-bottom: 26px;
  line-height: 1.08;
}

.training-panel p:not(.eyebrow) {
  margin-top: 0;
}

.section-head {
  margin-bottom: 28px;
}

/* =========================================================
   Kurse und Preise
   ========================================================= */

.course-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.course-card,
.price-card {
  min-width: 0;
  min-height: 230px;
  padding: 28px;
  transition:
    transform 0.25s,
    background 0.25s;
}

.course-card:hover,
.price-card:hover {
  background: var(--card-strong);
  transform: translateY(-6px);
}

.course-card span {
  display: inline-block;
  margin-bottom: 22px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--dark);
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.course-card h3,
.price-card h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.course-card p,
.price-card p {
  color: var(--muted);
}

.price-card strong {
  display: block;
  margin: 18px 0;
  color: var(--green);
  font-size: 2.65rem;
  letter-spacing: -0.07em;
}

/* =========================================================
   Standort-Text und Reservierungsbox
   ========================================================= */

.place-copy,
.training-panel,
.training-list,
.coach-copy {
  padding: 34px;
}

.booking-box {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(
    145deg,
    rgba(184, 255, 47, 0.14),
    rgba(255, 255, 255, 0.06)
  );
}

.booking-box strong {
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.booking-box span {
  color: var(--muted);
}

.booking-box .btn {
  width: max-content;
  max-width: 100%;
}

/* =========================================================
   Standortkarte
   ========================================================= */

.map-card {
  display: grid;
  width: 100%;
  max-width: 500px;
  min-height: 0;
  grid-template-rows: auto auto;
  margin: 0 auto;
  overflow: hidden;
}

/*
 * Der Wrapper erzeugt einen gleichmäßigen Abstand zwischen
 * dem Bild und dem äußeren Kartenrahmen.
 */
.map-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  padding: 14px;
  border-radius: 20px 20px 0 0;
}

/*
 * Das Bild wird leicht vergrößert.
 * Dadurch verschwindet ein Teil des im Bild enthaltenen
 * schwarzen Randes und es wirkt besser ausgefüllt.
 */
.map-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
  object-position: 50% 52%;
  transform: scale(1.2);
  transform-origin: center;
}

.map-footer {
  display: grid;
  gap: 6px;
  padding: 22px 22px 22px;
  border-top: 0px solid rgba(255, 255, 255, 0.12);
  background: rgba(44, 36, 36, 0.06);
}

.map-footer strong {
  font-size: 1.25rem;
  line-height: 1.2;
}

.map-footer small {
  color: var(--muted);
  line-height: 1.45;
}

/* Alte grafische Kartenbestandteile, falls sie später benötigt werden */

.map-topbar {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.map-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.map-visual {
  position: relative;
  height: 345px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 26% 35%,
      rgba(184, 255, 47, 0.18),
      transparent 25%
    ),
    linear-gradient(135deg, #0e2a15, #071109);
}

.map-road {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.road-one {
  top: 160px;
  left: -120px;
  width: 620px;
  height: 44px;
  transform: rotate(-24deg);
}

.road-two {
  top: 90px;
  right: -170px;
  width: 520px;
  height: 36px;
  transform: rotate(38deg);
}

.map-court {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(280px, 70%);
  aspect-ratio: 1.72 / 1;
  border: 4px solid rgba(245, 255, 246, 0.72);
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(184, 255, 47, 0.26),
    rgba(41, 224, 113, 0.16)
  );
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
  transform: translate(-50%, -50%) rotate(-9deg);
}

.map-court span {
  position: absolute;
  background: rgba(245, 255, 246, 0.62);
}

.map-court span:nth-child(1) {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
}

.map-court span:nth-child(2) {
  top: 50%;
  right: 0;
  left: 0;
  height: 3px;
}

.map-court span:nth-child(3) {
  top: 0;
  bottom: 0;
  left: 25%;
  width: 2px;
}

.map-court span:nth-child(4) {
  top: 0;
  right: 25%;
  bottom: 0;
  width: 2px;
}

.map-pin {
  position: absolute;
  top: 42%;
  left: 50%;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50% 50% 50% 8px;
  color: var(--dark);
  background: var(--green);
  box-shadow: 0 12px 45px rgba(184, 255, 47, 0.36);
  font-weight: 1000;
  rotate: -45deg;
  transform: translate(-50%, -100%);
}

.map-pin span {
  rotate: 45deg;
}

/* =========================================================
   Trainingsbereich
   ========================================================= */

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

.training-list {
  display: grid;
  gap: 0;
}

.training-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
}

.training-list div:last-child {
  border-bottom: 0;
}

.training-list span {
  flex: 0 0 auto;
  color: var(--green);
}

/* =========================================================
   Trainer
   ========================================================= */

.coach {
  align-items: center;
}

.coach-photo {
  display: grid;
  min-height: 500px;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  background: linear-gradient(
    145deg,
    rgba(184, 255, 47, 0.12),
    rgba(255, 255, 255, 0.055)
  );
}

.coach-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.photo-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 430px;
  place-items: end start;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 70% 24%,
      rgba(184, 255, 47, 0.34),
      transparent 22%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.03)
    );
}

.photo-placeholder span {
  color: rgba(245, 255, 246, 0.92);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 1000;
  line-height: 0.82;
  letter-spacing: -0.09em;
}

.coach-copy h3 {
  margin: 18px 0 8px;
  color: var(--green);
  font-size: 1.4rem;
}

/* =========================================================
   Kontakt und Social Media
   ========================================================= */

.contact {
  padding: 76px 30px 54px;
  text-align: center;
}

.contact h2 {
  margin: 0 auto 18px;
}

.contact p {
  max-width: 680px;
  margin: 0 auto 28px;
}

.contact-actions {
  justify-content: center;
  margin-bottom: 0;
}

.social-section {
  display: grid;
  width: min(560px, 100%);
  justify-items: center;
  gap: 18px;
  margin: 44px auto 0;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.social-kicker {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 0;
}

.socials a {
  color: var(--muted);
  font-weight: 900;
}

.socials a.social-link {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  color: rgba(245, 255, 246, 0.86);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.045)
  );
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
}

.socials a.social-link svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials a.social-facebook svg,
.socials a.social-tiktok svg,
.socials a.social-youtube svg {
  fill: currentColor;
  stroke: none;
}

.socials a.social-link:hover {
  color: var(--dark);
  background: var(--green);
  box-shadow: 0 20px 55px rgba(184, 255, 47, 0.26);
  transform: translateY(-4px) scale(1.04);
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

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

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

/* =========================================================
   Impressum und Datenschutz
   ========================================================= */

.legal-page {
  min-height: 100svh;
  padding: 130px 16px 70px;
}

.legal-card {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.legal-card h2 {
  margin: 28px 0 8px;
  font-size: 1.35rem;
}

.legal-card p,
.legal-card li {
  margin-bottom: 10px;
  color: var(--muted);
}

.legal-card ul {
  padding-left: 20px;
}

.legal-card .btn {
  margin-top: 24px;
}

/* =========================================================
   Einblendanimationen
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(18px) rotate(10deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   Kleinere Laptops und Tablets im Querformat
   ========================================================= */

@media (max-width: 1050px) {
  .nav a {
    padding: 10px;
    font-size: 0.84rem;
  }

  .hero {
    gap: 32px;
  }

  .section {
    width: min(100% - 28px, 1180px);
  }

  /*
   * Am kleineren Laptop wird das Bild noch etwas stärker
   * vergrößert, damit der Bildrand gleichmäßiger wirkt.
   */
  .map-image {
    object-position: 50% 52%;
    transform: scale(1.2);
  }
}

/* =========================================================
   Tablet und Handy
   ========================================================= */

@media (max-width: 850px) {
  .site-header {
    top: 10px;
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(7, 17, 9, 0.96);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px 18px;
  }

  .hero,
  .about,
  .place,
  .training,
  .coach {
    grid-template-columns: 1fr;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-top: 118px;
    text-align: center;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  .hero-copy h1 {
    order: 3;
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.45rem, 13vw, 4.25rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-align: center;
    word-break: normal;
    overflow-wrap: normal;
  }

  .hero-copy .hero-text {
    order: 5;
    width: 100%;
    max-width: 34rem;
    margin: 0 auto;
    font-size: 1.04rem;
    line-height: 1.65;
    text-align: center;
  }

  .hero-visual {
    order: 2;
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
  }

  .hero-visual .court-card {
    width: min(280px, 100%);
    margin: 0 auto;
  }

  .hero-actions {
    order: 4;
    display: flex;
    width: 100%;
    max-width: 420px;
    flex-direction: column;
    margin: 0 auto;
  }

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

  .stats,
  .course-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .about {
    gap: 24px;
  }

  .coach-photo {
    min-height: 360px;
  }

  .photo-placeholder {
    min-height: 310px;
  }

  .footer {
    flex-direction: column;
  }

  .hero h1,
  .section h2 {
    letter-spacing: -0.06em;
  }

  .about h2,
  .section-head h2,
  .training h2,
  .contact h2,
  .place h2,
  .coach h2 {
    line-height: 1.1;
    letter-spacing: -0.052em;
  }

  .place h2,
  .training-panel h2 {
    line-height: 1.15;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .booking-box .btn {
    width: 100%;
  }

  .social-section {
    margin-top: 38px;
    padding-top: 30px;
  }

  /* =======================================================
     Mobile Standortkarte
     ======================================================= */

  .map-card {
    display: block;
    width: 100%;
    max-width: 390px;
    height: 300px;
    min-height: 0;
    margin: 0 auto;
    border-radius: 28px;
  }

  /*
   * Auf mobilen Geräten wird der gleiche Innenabstand
   * auf allen vier Seiten verwendet.
   */
  .map-image-wrap {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    padding: 10px;
    border-radius: inherit;
  }

  /*
   * Das Bild wird stärker vergrößert und nach oben geschoben.
   * Dadurch rücken Standort-Pin und ASKÖ-Beschriftung
   * näher in die Mitte der sichtbaren Fläche.
   */
  .map-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: 50% 58%;
    transform: scale(1.17) translateY(-2%);
    transform-origin: center;
  }

  .map-footer {
    display: none;
  }
}


/* =========================================================
   Kleine Smartphones
   ========================================================= */

@media (max-width: 480px) {
  .section {
    width: min(100% - 22px, 1180px);
    padding: 62px 0;
  }

  .brand {
    font-size: 0.95rem;
  }

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

  .hero {
    gap: 26px;
    padding-top: 112px;
  }

  /*
   * Kleinere Überschrift auf dem Handy.
   * Die maximale Breite hält den Text kompakt und mittig.
   */
  .hero-copy h1 {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    font-size: clamp(2.15rem, 10.5vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

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

  .hero-visual .court-card {
    width: min(240px, 100%);
    aspect-ratio: 4 / 4.65;
  }

  .court-card {
    padding: 24px;
  }

  .ball {
    top: 52px;
    right: 42px;
    width: 82px;
    height: 82px;
  }

  .stats article,
  .course-card,
  .price-card,
  .place-copy,
  .training-panel,
  .training-list,
  .coach-copy,
  .contact {
    padding: 24px;
    border-radius: 24px;
  }

  .price-card strong {
    font-size: 2.25rem;
  }

  .legal-page {
    padding-top: 104px;
  }

  .legal-card {
    border-radius: 24px;
  }

  .about h2,
  .section-head h2,
  .training h2,
  .contact h2,
  .place h2,
  .coach h2 {
    font-size: clamp(2.15rem, 11vw, 3.35rem);
    line-height: 1.14;
    letter-spacing: -0.045em;
  }

  .place h2 {
    margin-bottom: 18px;
  }

  .training-panel h2 {
    margin-bottom: 22px;
  }

  .contact {
    padding: 54px 22px 42px;
  }

  .socials {
    gap: 13px;
  }

  .socials a.social-link {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  /* =======================================================
     Standortkarte auf kleinen Smartphones
     ======================================================= */

  .map-card {
    width: 100%;
    max-width: 320px;
    height: 235px;
    border-radius: 24px;
  }

  .map-image-wrap {
    padding: 9px;
  }

  /*
   * Das Bild bleibt gezoomt und der Standortbereich
   * wird leicht nach oben verschoben.
   */
  .map-image {
    border-radius: 17px;
    object-position: 50% 58%;
    transform: scale(1.23) translateY(-2%);
  }

  /* =======================================================
     Schmalere Hero-Buttons auf dem Handy
     ======================================================= */

  .hero-actions {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 330px;
    min-height: 50px;
    padding: 0 18px;
    font-size: 1rem;
  }
}