@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/montserrat-400.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/montserrat-600.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/montserrat-700.woff2") format("woff2");
}
@font-face {
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/urbanist-400.woff2") format("woff2");
}
@font-face {
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/urbanist-700.woff2") format("woff2");
}

:root {
  --bg: #0d0d0d;
  --bg-elevated: #171717;
  --bg-card: #1a1a1a;
  --border: #2a2a28;
  --text: #eeeeec;
  --text-muted: #b5b3ad;
  --text-dim: #7c7b74;
  --mint: #4ade80;
  --mint-bright: #86efac;
  --mint-glow: rgba(134, 239, 172, 0.35);
  --amber: #f76b15;
  --amber-bright: #ff9a4d;
  --max-width: 1160px;
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-cut: 4px 18px 4px 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Urbanist", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}

.display {
  font-family: "Urbanist", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

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

a {
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* signature texture: crossing fascia-fiber mesh (own mark, not HG's diagonal hatch) */
.texture {
  position: relative;
}

.texture::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170' viewBox='0 0 170 170'%3E%3Cg fill='none' stroke='%2386efac' stroke-width='1.3'%3E%3Cg stroke-opacity='0.065' transform='rotate(32 85 85)'%3E%3Cpath d='M-40 30 Q 5 5 50 30 T 140 30 T 230 30'/%3E%3Cpath d='M-40 85 Q 5 60 50 85 T 140 85 T 230 85'/%3E%3Cpath d='M-40 140 Q 5 115 50 140 T 140 140 T 230 140'/%3E%3C/g%3E%3Cg stroke-opacity='0.05' transform='rotate(-32 85 85)'%3E%3Cpath d='M-40 30 Q 5 5 50 30 T 140 30 T 230 30'/%3E%3Cpath d='M-40 85 Q 5 60 50 85 T 140 85 T 230 85'/%3E%3Cpath d='M-40 140 Q 5 115 50 140 T 140 140 T 230 140'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mint-bright);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-bright);
  box-shadow: 0 0 12px var(--mint-glow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.1rem;
  border-radius: var(--radius-cut);
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 2px solid var(--mint-bright);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--mint-bright);
  color: #0d0d0d;
}

.btn-primary:hover {
  background: var(--mint);
  box-shadow: 0 8px 30px var(--mint-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--mint-bright);
  color: var(--mint-bright);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.nav-brand {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
}

.nav-brand span {
  color: var(--mint-bright);
}

.nav a.btn {
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
}

/* Hero */
.hero-video-section {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  color: var(--text);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(15%) brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(74, 222, 128, 0.05), transparent 55%),
    linear-gradient(180deg, rgba(13, 13, 13, 0.55) 0%, rgba(13, 13, 13, 0.88) 65%, #0d0d0d 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

/* corner brackets: our own "hands-on precision" mark, replaces HG's full-bleed edge treatment */
.hero-video-section::before,
.hero-video-section::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 64px;
  height: 64px;
  pointer-events: none;
  opacity: 0.55;
}

.hero-video-section::before {
  top: 2rem;
  left: 1.5rem;
  border-top: 2px solid var(--mint-bright);
  border-left: 2px solid var(--mint-bright);
}

.hero-video-section::after {
  bottom: 2rem;
  right: 1.5rem;
  border-bottom: 2px solid var(--mint-bright);
  border-right: 2px solid var(--mint-bright);
}

@media (max-width: 800px) {
  .hero-video-section::before,
  .hero-video-section::after {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-bg {
    display: none;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mint-bright);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-bright);
  box-shadow: 0 0 12px var(--mint-glow);
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  color: var(--text);
  margin: 0.9rem 0 1.1rem;
  letter-spacing: -0.02em;
}

.hero h2.display {
  font-size: clamp(1.3rem, 2.8vw, 1.75rem);
  color: var(--mint-bright);
  font-weight: 700;
  margin: 0 0 1rem;
  padding-bottom: 0.85rem;
  position: relative;
}

.hero h2.display::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: var(--mint-bright);
  border-radius: 2px;
}

.hero p {
  font-size: 1.08rem;
  max-width: 52ch;
  color: var(--text-muted);
}

.hero-tagline {
  font-family: "Urbanist", sans-serif;
  color: var(--mint-bright);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 2rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin: 1.6rem 0 1.2rem;
  font-size: 1.08rem;
  color: var(--text-muted);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.photo-strip img {
  border-radius: var(--radius-m);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  filter: saturate(92%) contrast(1.04);
  transition: filter 0.25s ease;
}

.photo-strip img:hover {
  filter: saturate(100%) contrast(1);
}

/* Was dich erwartet */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 3rem;
}

.section-eyebrow {
  text-align: center;
  display: block;
  margin-bottom: 0.75rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--mint-bright);
  border-radius: var(--radius-m);
  padding: 2.2rem 1.8rem 2.2rem 1.6rem;
  text-align: left;
  transition: border-left-color 0.2s ease, transform 0.2s ease;
}

.feature:hover {
  border-left-color: var(--amber-bright);
  transform: translateY(-3px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-cut);
  background: rgba(74, 222, 128, 0.12);
  color: var(--mint-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.3rem;
  font-size: 1.6rem;
}

.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.feature p {
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 2.5rem 0;
}

.coach-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.25rem;
  flex-wrap: nowrap;
}

/* fixed, equal-width slot for both logos so the row stays symmetric
   around the center photo — the wider "Certified Coach" logo simply
   fills more of its slot than the narrower "Coach" logo does */
.coach-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 156px;
  height: 84px;
}

.trust-logo {
  height: 44px;
  width: auto;
  max-width: none;
  opacity: 0.85;
}

.coach {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
}

@media (max-width: 800px) {
  .coach-row {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    gap: 1.5rem;
    margin: 0 -1.5rem;
    padding: 0.25rem 1.5rem 0.75rem;
    scrollbar-width: none;
  }

  .coach-row::-webkit-scrollbar {
    display: none;
  }

  .coach-row > * {
    scroll-snap-align: center;
  }

  .coach-logo-box {
    width: 120px;
  }
}

/* fixed-height slot so photos/logos of different sizes still share one
   center line, and the names below always start at the same offset */
.coach-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 94px;
}

.coach-photo {
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--mint-bright);
  flex-shrink: 0;
}

.coach--lead .coach-photo {
  width: 94px;
  height: 94px;
}

.coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coach-name {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

/* Statement */
.statement {
  padding: 6rem 0;
  text-align: center;
  background: var(--bg);
}

.statement .container {
  max-width: 760px;
}

.statement p.lede {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
}

.statement p.big {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  line-height: 1.25;
}

.statement p.big .hl {
  color: var(--mint-bright);
}

.statement p.support {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
}

.statement p.support-strong {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  color: var(--mint-bright);
}

.statement .btn {
  margin-top: 2rem;
}

/* Contact embed */
.contact-embed {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 3rem 1.5rem;
}

.contact-embed iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
  border-radius: var(--radius-s);
}

.contact-hint {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Testimonials */
.swipe-hint {
  display: none;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: -1.5rem 0 1.75rem;
}

/* horizontally scrollable on every screen size, so extra testimonials
   never leave an orphan card stranded in its own row */
.testimonials {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 0.5rem;
}

.testimonial-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--mint-bright);
  border-radius: var(--radius-m);
  padding: 2rem 2rem 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-card blockquote::before {
  content: "\201C";
  position: absolute;
  left: -0.35rem;
  top: -0.7rem;
  font-size: 2.6rem;
  font-style: normal;
  color: var(--mint-bright);
  line-height: 1;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-style: normal;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.15);
  color: var(--mint-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-role {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
}

@media (max-width: 800px) {
  .swipe-hint {
    display: flex;
  }

  .testimonials {
    scroll-snap-type: x mandatory;
    margin: 0 -1.5rem;
    padding: 0.25rem 1.5rem 0.75rem;
    scrollbar-width: none;
  }

  .testimonials::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}

/* FAQ */
.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.3rem 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--mint-bright);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin: 1rem 0 0;
  color: var(--text-muted);
}

/* Info bar */
.info-bar {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(74, 222, 128, 0.1), transparent 65%),
    var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.info-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 3rem;
  padding: 2.75rem 1.5rem;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0.01em;
}

.info-bar .info-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.info-bar .icon {
  color: var(--mint-bright);
  font-size: 1.5rem;
}

/* Booking */
.booking {
  position: relative;
  text-align: center;
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(74, 222, 128, 0.14), transparent 60%),
    var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.booking .container {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.booking h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.booking p {
  color: var(--text-muted);
  max-width: 50ch;
  margin: 0 auto 2.2rem;
}

/* Footer */
footer {
  background: #000;
  color: var(--text-dim);
  padding: 3rem 0;
  font-size: 0.9rem;
}

footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

footer .footer-links a {
  text-decoration: none;
  margin-right: 1.5rem;
}

footer .footer-links a:hover {
  color: var(--mint-bright);
}

footer img.footer-logo {
  height: 44px;
  width: auto;
}

/* Legal pages (Datenschutz) */
.legal {
  max-width: 70ch;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.legal h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.legal h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  color: var(--mint-bright);
}

.legal p {
  color: var(--text-muted);
}

.legal a {
  color: var(--mint-bright);
}

@media (max-width: 800px) {
  .hero-video-section {
    min-height: auto;
    padding: 4rem 0 3rem;
  }

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

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

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