/* AR Muay Thai Gym, Stans: Entwurf DomAI 17.09.2026
   Marke: Grün #00893E (dominanter Wert im Logo, gemessen), Schwarz, Weiss.
   Display: Big Shoulders Display (900). Text: Space Grotesk (ihre eigene Textschrift auf der Wix-Seite).
   Hartkantig: kein border-radius, nirgends. */

/* Schriften lokal (seit 23.09.2026): keine Anfrage an Google, schneller, sauberer Datenschutz.
   Beide Schriften unter SIL Open Font License, variable woff2 aus Google Fonts. */
@font-face { font-family: 'Big Shoulders Display'; font-style: normal; font-weight: 700 900; font-display: swap;
  src: url(/fonts/bigshoulders-latin.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Big Shoulders Display'; font-style: normal; font-weight: 700 900; font-display: swap;
  src: url(/fonts/bigshoulders-latin-ext.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(/fonts/spacegrotesk-latin.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(/fonts/spacegrotesk-latin-ext.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

:root {
  --green: #00893e;
  --green-deep: #006d31;
  --green-hi: #2fbf6c;
  --ink: #0b0c0b;
  --ink-2: #141715;
  --ink-3: #1d211e;
  --line-dark: rgba(255, 255, 255, .14);
  --paper: #f1f2ee;
  --paper-2: #e4e6e0;
  --white: #ffffff;
  --text: #0f1210;
  --text-2: #3c423e;
  --mute: #69706b;
  --line: rgba(15, 18, 16, .16);
  --on-dark: #f3f5f2;
  --on-dark-mute: rgba(243, 245, 242, .68);
  --wa: #25d366;
  --font-display: 'Big Shoulders Display', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --wrap: 1240px;
  --header-h: 72px;
  --sticky-h: 76px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; border-radius: 0 !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-h); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  color: var(--text); background: var(--paper); -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--green); color: #fff; }
:focus-visible { outline: 3px solid var(--green-hi); outline-offset: 3px; }

.wrap { width: min(var(--wrap), 100% - 56px); margin-inline: auto; }
@media (max-width: 640px) { .wrap { width: calc(100% - 32px); } }
.wrap > * { min-width: 0; }

/* ------------------------------------------------ Type */
.display { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; letter-spacing: .005em; line-height: .9; }
.h1 { font-size: clamp(52px, 7vw, 108px); }
.h2 { font-size: clamp(42px, 5.4vw, 78px); }
@media (max-width: 400px) { .h2 { font-size: clamp(32px, 10vw, 42px); } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px;
  font-weight: 700; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--green-deep);
}
.eyebrow::before { content: ""; width: 28px; height: 4px; background: var(--green); flex: none; }
.dark .eyebrow { color: #fff; }
.lead { font-size: clamp(17px, 1.45vw, 20px); line-height: 1.55; color: var(--text-2); max-width: 56ch; }
.dark .lead { color: var(--on-dark-mute); }
.h1 + .lead, .h2 + .lead { margin-top: 22px; }
.g { color: var(--green); }
.dark .g { color: var(--green-hi); }
.dark { background: var(--ink); color: var(--on-dark); }
.on-paper2 { background: var(--paper-2); }
.on-white { background: var(--white); }

/* ------------------------------------------------ Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 12px 24px; border: 2px solid transparent;
  font-family: var(--font-body); font-weight: 700; font-size: 15px; letter-spacing: .05em; text-transform: uppercase;
  line-height: 1.2; text-align: center; text-decoration: none; cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .18s var(--ease);
}
.btn svg { flex: none; }
.btn:active { transform: translateY(1px); }
.btn--green { background: var(--green); border-color: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-deep); border-color: var(--green-deep); }
.btn--ink { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--ink:hover { background: #000; }
.btn--line { background: transparent; border-color: rgba(15, 18, 16, .4); color: var(--text); }
.btn--line:hover { border-color: var(--text); }
.dark .btn--line, .hero .btn--line { border-color: rgba(255, 255, 255, .55); color: #fff; }
.dark .btn--line:hover, .hero .btn--line:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.btn--white { background: #fff; border-color: #fff; color: var(--ink); }
.btn--white:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--lg { min-height: 60px; padding: 14px 30px; font-size: 16px; }
.btn--full { width: 100%; }
.btn .wa-ic { color: var(--wa); display: inline-flex; }
@media (min-width: 961px) { .hide-desk { display: none !important; } }
.textlink { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; border-bottom: 2px solid var(--green); padding-bottom: 3px; }
.textlink svg { transition: transform .25s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* ------------------------------------------------ Header */
.header { position: sticky; top: 0; z-index: 60; background: var(--ink); color: #fff; border-bottom: 1px solid var(--line-dark); }
.header .wrap { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.brand img { width: 46px; height: 46px; }
.brand span { font-family: var(--font-display); font-weight: 900; font-size: 25px; text-transform: uppercase; letter-spacing: .02em; line-height: 1; white-space: nowrap; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; font-weight: 600; font-size: 14px; letter-spacing: .07em; text-transform: uppercase; color: rgba(255, 255, 255, .82); padding: 8px 0; position: relative; white-space: nowrap; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.tel-link { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 600; font-size: 14px; white-space: nowrap; }
.header .btn { min-height: 44px; padding: 8px 18px; font-size: 13px; white-space: nowrap; }
.burger { display: none; width: 46px; height: 46px; border: 1px solid var(--line-dark); background: transparent; cursor: pointer; position: relative; }
.burger span, .burger span::before, .burger span::after { content: ""; position: absolute; left: 11px; width: 22px; height: 2px; background: #fff; transition: transform .3s var(--ease), top .3s var(--ease), background .2s; }
.burger span { top: 22px; }
.burger span::before { top: -7px; left: 0; }
.burger span::after { top: 7px; left: 0; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
.nav .nav-cta { display: none; }
@media (max-width: 1180px) { .tel-link span { display: none; } .nav { gap: 20px; } }
@media (max-width: 960px) {
  :root { --header-h: 64px; }
  .burger { display: block; }
  .brand img { width: 40px; height: 40px; }
  .brand span { font-size: 22px; }
  .header .btn, .tel-link { display: none; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); border-bottom: 3px solid var(--green); padding: 6px 16px 18px;
    transform: translateY(-6px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .28s var(--ease), opacity .2s, visibility 0s .28s;
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; transition: transform .28s var(--ease), opacity .2s; }
  .nav a { font-size: 17px; padding: 15px 0; border-bottom: 1px solid var(--line-dark); color: #fff; }
  .nav a::after { display: none; }
  .nav .nav-cta { display: block; margin-top: 16px; border: 0; }
  .nav .nav-cta .btn { display: flex; width: 100%; }
}
@media (max-width: 360px) { .brand span { font-size: 19px; } }

/* ------------------------------------------------ Hero */
.hero { position: relative; overflow: hidden; background: var(--ink); color: #fff; isolation: isolate; }
.hero-bg { position: absolute; inset: 0 0 0 26%; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 38%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(11, 12, 11, .9) 14%, rgba(11, 12, 11, .45) 34%, rgba(11, 12, 11, 0) 56%),
    linear-gradient(0deg, rgba(11, 12, 11, .7) 0%, rgba(11, 12, 11, 0) 34%);
}
.hero .wrap { min-height: min(840px, calc(100svh - var(--header-h))); display: flex; align-items: center; }
.hero-copy { max-width: 620px; padding: 56px 0 60px; }
.hero .eyebrow { color: #fff; }
.hero .h1 { font-size: clamp(60px, 7.2vw, 112px); }
.hero .h1 .g { color: var(--green-hi); }
.hero .lead { color: rgba(255, 255, 255, .84); max-width: 44ch; text-shadow: 0 1px 14px rgba(0, 0, 0, .5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 26px; }
.rating { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; row-gap: 4px; text-decoration: none; font-size: 14px; font-weight: 500; color: #fff; }
.rating .gic { width: 32px; height: 32px; background: #fff; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.rating u { text-underline-offset: 3px; text-decoration-color: rgba(255, 255, 255, .5); }
.stars { display: inline-flex; gap: 1px; color: #fbbc04; }
.stars svg { width: 16px; height: 16px; }

@media (max-width: 960px) {
  .hero-bg { inset: 0; }
  .hero-bg img { object-position: 50% 20%; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(11, 12, 11, .2) 0%, rgba(11, 12, 11, .05) 26%, rgba(11, 12, 11, .55) 44%, rgba(11, 12, 11, .93) 60%, var(--ink) 100%); }
  .hero .wrap { align-items: flex-end; min-height: calc(100svh - var(--header-h)); }
  .hero-copy { padding: clamp(110px, 22vh, 260px) 0 calc(var(--sticky-h) + 16px); }
  .hero .h1 { font-size: clamp(50px, 14.5vw, 76px); }
  .hero .h1 + .lead { margin-top: 14px; }
  .hero .lead { font-size: 16px; line-height: 1.5; }
  .hero-actions { margin: 20px 0 14px; gap: 8px; display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { min-height: 52px; padding: 10px 12px; font-size: 14px; }
  .hero-actions .btn--green { grid-column: 1 / -1; min-height: 56px; font-size: 15px; }
  .rating { font-size: 13px; }
  .rating .gic { width: 28px; height: 28px; }
}

/* ------------------------------------------------ Facts band */
.facts { background: var(--green); color: #fff; }
.facts .wrap { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fact { padding: 30px 24px 30px 0; margin-right: 24px; border-right: 1px solid rgba(0, 0, 0, .22); }
.fact:last-child { border-right: 0; margin-right: 0; }
.fact b { display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(44px, 4.6vw, 68px); line-height: .9; text-transform: uppercase; }
.fact span { display: block; margin-top: 8px; font-size: 14px; font-weight: 500; line-height: 1.35; color: rgba(255, 255, 255, .9); }
@media (max-width: 860px) {
  .facts .wrap { grid-template-columns: 1fr 1fr; }
  .fact { padding: 22px 14px 22px 0; margin-right: 14px; }
  .fact:nth-child(2) { border-right: 0; margin-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid rgba(0, 0, 0, .22); }
  .fact b { font-size: clamp(28px, 9.4vw, 40px); white-space: nowrap; }
  .fact span { font-size: 13px; }
}

/* ------------------------------------------------ Sections */
.section { padding-block: clamp(72px, 9vw, 132px); }
.section-head { max-width: 780px; margin-bottom: clamp(36px, 4.4vw, 60px); }
.section-head--row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.section-head--row > div { max-width: 780px; }

/* Warum */
.why { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 6vw, 96px); align-items: start; }
.why-intro .chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 32px; }
.chips span { padding: 8px 12px; border: 1px solid var(--line); background: #fff; font-size: 14px; font-weight: 600; }
.chips span.k { background: var(--ink); color: #fff; border-color: var(--ink); }
.why-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 2px solid var(--ink); border-left: 1px solid var(--line); }
.why-item { padding: 26px 24px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); transition: background .2s; }
.why-item:hover { background: #fff; }
.why-item .n { font-family: var(--font-display); font-weight: 900; font-size: 20px; color: var(--green); display: block; margin-bottom: 26px; }
.why-item h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 2.3vw, 32px); line-height: .95; text-transform: uppercase; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .why-grid { grid-template-columns: minmax(0, 1fr); }
  .why-item { display: flex; align-items: baseline; gap: 16px; padding: 16px 14px 18px; }
  .why-item .n { margin-bottom: 0; flex: none; }
  .why-item h3 { font-size: 26px; }
}

/* Galerie */
.gallery { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-rows: clamp(110px, 11.5vw, 160px); gap: 8px; }
.tile { position: relative; margin: 0; overflow: hidden; background: var(--ink-3); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.tile:hover img { transform: scale(1.035); }
.tile figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 36px 16px 14px; font-size: 13px; font-weight: 500; line-height: 1.35; color: #fff; background: linear-gradient(0deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, 0)); }
.t-a { grid-column: span 4; grid-row: span 3; }
.t-b { grid-column: span 2; grid-row: span 3; }
.t-c { grid-column: span 3; grid-row: span 2; }
.t-d { grid-column: span 3; grid-row: span 2; }
.t-e { grid-column: span 2; grid-row: span 2; }
.t-f { grid-column: span 3; grid-row: span 2; }
.t-cta { grid-column: span 3; grid-row: span 2; background: var(--green); color: #fff; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(22px, 2.6vw, 36px); text-decoration: none; transition: background .2s; }
.t-cta:hover { background: var(--green-deep); }
.t-cta b { font-family: var(--font-display); font-weight: 900; font-size: clamp(38px, 4vw, 60px); line-height: .9; text-transform: uppercase; }
.t-cta span { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; letter-spacing: .07em; text-transform: uppercase; }
.pos-top img { object-position: 50% 18%; }
.pos-faces img { object-position: 50% 20%; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 46vw; gap: 6px; grid-auto-flow: row dense; }
  .t-a, .t-c, .t-cta { grid-column: span 2; grid-row: span 1; }
  .t-b, .t-d, .t-e, .t-f { grid-column: span 1; grid-row: span 1; }
  .t-a { grid-row: span 1; }
  .tile figcaption { font-size: 11.5px; padding: 26px 10px 9px; }
  .t-cta { min-height: 46vw; }
}

/* Coach */
.coach { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 96px); align-items: center; }
.coach-photo { position: relative; }
.coach-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 12%; }
.coach-photo .tag { position: absolute; left: 0; bottom: 0; background: var(--green); color: #fff; padding: 12px 18px; font-family: var(--font-display); font-weight: 900; font-size: 22px; text-transform: uppercase; letter-spacing: .02em; }
.creds { margin: 30px 0 30px; border-top: 2px solid var(--ink); }
.creds li { display: flex; align-items: center; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2.1vw, 28px); line-height: 1.05; text-transform: uppercase; }
.creds li::before { content: ""; width: 14px; height: 14px; background: var(--green); flex: none; }
.coach .lead { font-size: 17px; }
.coach .h2 { font-size: clamp(38px, 4.4vw, 64px); }
@media (max-width: 400px) { .coach .h2 { font-size: clamp(30px, 10vw, 38px); } }
.coach .src { font-size: 13px; color: var(--mute); margin-top: 12px; }
@media (max-width: 900px) { .coach { grid-template-columns: 1fr; } .coach-photo img { aspect-ratio: 4 / 4.4; } }

/* Über uns */
.about { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(36px, 6vw, 96px); align-items: start; }
.about .big { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(44px, 5.2vw, 80px); line-height: .9; }
.about p { color: var(--on-dark-mute); font-size: 17px; }
.about p.big { color: #fff; margin: 0; }
.about p b { color: #fff; font-weight: 600; }
.about .btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }

/* Start: drei Schritte */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 2px solid var(--ink); }
.step { padding: 30px 28px 32px 0; margin-right: 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.step:last-child { border-right: 0; margin-right: 0; }
.step .n { font-family: var(--font-display); font-weight: 900; font-size: 72px; line-height: .8; color: var(--green); }
.step h3 { font-family: var(--font-display); font-weight: 800; font-size: 32px; text-transform: uppercase; line-height: .95; }
.step p { color: var(--text-2); }
.step .row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 8px; }
.step .btn { min-height: 48px; font-size: 13px; padding: 10px 16px; }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
  .step { padding: 26px 0 28px; margin-right: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .step .n { font-size: 56px; }
}

/* Preise */
.prices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border: 1px solid var(--line-dark); }
.plan { padding: 30px 28px 32px; border-right: 1px solid var(--line-dark); display: flex; flex-direction: column; }
.plan:last-child { border-right: 0; }
.plan h3 { font-family: var(--font-display); font-weight: 900; font-size: clamp(34px, 3.2vw, 46px); text-transform: uppercase; line-height: .9; }
.plan .who { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-mute); margin-top: 8px; }
.plan ul { margin: 24px 0 22px; border-top: 1px solid var(--line-dark); }
.plan li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
.plan li span { font-size: 15px; color: var(--on-dark); }
.plan li b { font-family: var(--font-display); font-weight: 800; font-size: 30px; line-height: 1; white-space: nowrap; }
.plan .note { font-size: 14px; color: var(--on-dark-mute); margin-bottom: 0; }
.plan--trial { background: var(--green); border-color: var(--green); }
.plan--trial .who, .plan--trial p { color: rgba(255, 255, 255, .9); }
.plan--trial .big { font-family: var(--font-display); font-weight: 900; font-size: clamp(56px, 5.2vw, 80px); line-height: .85; text-transform: uppercase; margin: 22px 0 14px; }
.plan--trial .btn { margin-top: auto; }
.price-links { display: flex; flex-wrap: wrap; gap: 14px 32px; margin-top: 30px; }
.price-links .textlink { color: #fff; }
.price-src { font-size: 13px; color: var(--on-dark-mute); margin-top: 18px; }
@media (max-width: 980px) {
  .prices { grid-template-columns: 1fr; }
  .plan { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .plan--trial { order: -1; }
}
@media (max-width: 420px) { .plan { padding: 24px 18px 26px; } .plan li b { font-size: 26px; } .plan--trial .big { font-size: 54px; } }
@media (max-width: 360px) { .plan li { gap: 10px; } .plan li span { font-size: 14px; } .plan li b { font-size: 23px; } }

/* Google */
.google { background: var(--white); border-block: 1px solid var(--line); }
/* .google .wrap: seit 23.09.2026 Bewertungs-Abschnitt, siehe unten */
.google-score { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.google-score .num { font-family: var(--font-display); font-weight: 900; font-size: clamp(76px, 8vw, 112px); line-height: .8; }
.google-score .stars svg { width: 26px; height: 26px; }
.google-score .meta { display: flex; flex-direction: column; gap: 8px; }
.google-score .meta span { font-size: 15px; color: var(--text-2); display: inline-flex; align-items: center; gap: 8px; }
.google-score .meta .stars { color: #fbbc04; gap: 2px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(36px, 6vw, 96px); align-items: start; }
.faq-side { position: sticky; top: calc(var(--header-h) + 32px); }
.faq-side .btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.faq { border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; position: relative; padding: 22px 56px 22px 0; font-weight: 600; font-size: 18px; line-height: 1.35; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--ink); color: #fff; font-size: 22px; font-weight: 500; }
.faq details[open] summary::after { content: "\2212"; background: var(--green); }
.faq .a { padding: 0 0 24px; color: var(--text-2); max-width: 64ch; }
.faq .a ol { list-style: decimal; padding-left: 22px; margin: 0 0 10px; }
.faq .a li { margin-bottom: 4px; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } .faq-side { position: static; } .faq summary { font-size: 16.5px; padding-right: 50px; } }

/* Kontakt */
.contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 96px); align-items: start; }
.ways { display: grid; gap: 0; margin-top: 30px; border-top: 1px solid var(--line-dark); }
.way { display: flex; align-items: center; gap: 16px; padding: 16px 4px 16px 0; border-bottom: 1px solid var(--line-dark); text-decoration: none; color: #fff; transition: background .2s, padding .2s; }
.way:hover { background: rgba(255, 255, 255, .04); padding-left: 8px; }
.way .ic { width: 46px; height: 46px; flex: none; display: flex; align-items: center; justify-content: center; background: var(--ink-3); color: var(--green-hi); }
.way--main .ic { background: var(--green); color: #fff; }
.way--wa .ic { background: var(--wa); color: #fff; }
.way .txt { display: flex; flex-direction: column; min-width: 0; }
.way b { font-weight: 600; }
.way .txt span { font-size: 14px; color: var(--on-dark-mute); overflow-wrap: anywhere; }
.way .arrow { margin-left: auto; color: var(--on-dark-mute); flex: none; }
.form { background: var(--paper); color: var(--text); padding: clamp(24px, 3vw, 36px); border-top: 6px solid var(--green); }
.form h3 { font-family: var(--font-display); font-weight: 900; font-size: 38px; text-transform: uppercase; line-height: .95; margin-bottom: 8px; }
.form .hint { color: var(--mute); font-size: 14px; margin-bottom: 20px; }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid rgba(15, 18, 16, .3); background: #fff; color: var(--text); -webkit-appearance: none; appearance: none; }
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--text) 50%), linear-gradient(135deg, var(--text) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--green); outline-offset: 0; border-color: var(--ink); }
.form-status { display: none; margin: 12px 0 0; font-size: 14px; font-weight: 600; color: var(--green-deep); }
.form-status.show { display: block; }
.fine { font-size: 13px; color: var(--mute); margin-top: 12px; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

/* Footer */
.footer { background: #050605; color: var(--on-dark-mute); padding: 60px 0 40px; font-size: 14px; border-top: 4px solid var(--green); }
.footer .wrap { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; margin-bottom: 20px; }
.footer .nap { line-height: 1.75; }
.footer .nap b { color: #fff; }
.footer a { color: #fff; text-decoration: none; }
.footer a:hover { color: var(--green-hi); }
.footer h4 { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--green-hi); margin-bottom: 14px; }
.footer li { padding: 5px 0; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a { width: 42px; height: 42px; border: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: center; }
.social a:hover { border-color: var(--green); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 12px 24px; flex-wrap: wrap; border-top: 1px solid var(--line-dark); padding-top: 20px; font-size: 13px; }
.footer-bottom .draft-note a { text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 760px) { .footer .wrap { grid-template-columns: 1fr; gap: 30px; } }

/* Sticky mobile CTA */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 65; display: none; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: var(--ink); border-top: 1px solid var(--line-dark); }
.sticky-cta .btn { flex: 1; min-height: 56px; }
.sticky-cta .btn--line { flex: 0 0 56px; width: 56px; padding: 0; border-color: rgba(255, 255, 255, .45); color: #fff; }
@media (max-width: 960px) {
  .sticky-cta { display: flex; }
}

/* Reveal (nur mit JS versteckt) */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }


/* ------------------------------------------------ Rechtsseiten */
.legal { background: var(--paper); padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 120px); }
.legal .wrap { max-width: 820px; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; color: var(--mute); margin-bottom: 26px; }
.legal .back:hover { color: var(--text); }
.legal h1 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(44px, 6vw, 76px); line-height: .92; margin-bottom: clamp(28px, 4vw, 44px); }
.legal h1, .legal h2, .legal p, .legal li, .legal dd { hyphens: auto; -webkit-hyphens: auto; overflow-wrap: break-word; }
@media (max-width: 560px) { .legal h1 { font-size: clamp(29px, 9vw, 44px); } }
.legal h2 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(24px, 2.4vw, 30px); line-height: 1; margin: 42px 0 14px; padding-top: 22px; border-top: 1px solid var(--line); }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--text-2); font-size: 16px; line-height: 1.7; max-width: 70ch; }
.legal ul { list-style: disc; padding-left: 22px; margin: 0 0 1em; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.legal a:hover { color: var(--green-deep); }
.legal .lead-line { font-weight: 600; color: var(--text); }
.legal .facts-list { display: grid; grid-template-columns: max-content 1fr; gap: 10px 28px; margin: 0 0 8px; }
.legal .facts-list dt { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); padding-top: 3px; }
.legal .facts-list dd { margin: 0; color: var(--text); line-height: 1.6; }
@media (max-width: 560px) { .legal .facts-list { grid-template-columns: 1fr; gap: 2px; } .legal .facts-list dd { margin-bottom: 12px; } }
.legal .rule { display: grid; grid-template-columns: 38px 1fr; gap: 0 10px; margin-bottom: 16px; }
.legal .rule .no { font-family: var(--font-display); font-weight: 900; font-size: 22px; line-height: 1.2; color: var(--green); }
.legal .rule p { margin: 0; }
.legal .rule p + p { margin-top: 8px; }

/* ------------------------------------------------ 404 */
.notfound { background: var(--ink); color: #fff; min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; padding: 80px 0; }
.notfound .code { font-family: var(--font-display); font-weight: 900; font-size: clamp(110px, 20vw, 240px); line-height: .8; color: var(--green); }
.notfound h1 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(38px, 5vw, 64px); line-height: .95; margin: 18px 0 16px; }
.notfound p { color: var(--on-dark-mute); max-width: 46ch; font-size: 17px; }
.notfound .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.notfound .btn--line { border-color: rgba(255, 255, 255, .55); color: #fff; }
.notfound .btn--line:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }


/* ------------------------------------------------ Galerie-Ansicht (Klick auf ein Foto)
   Seit 24.09.2026 kein schwarzer Vollbild-Hintergrund mehr: das Foto wird als Karte grösser,
   die Seite bleibt abgedunkelt dahinter sichtbar (Wunsch Francesco). */
a.lb { display: block; width: 100%; height: 100%; cursor: zoom-in; }
.tile figcaption { pointer-events: none; }
html.lb-open, html.lb-open body { overflow: hidden; }
.lightbox { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center;
  background: rgba(11, 12, 11, .62); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); color: #fff;
  animation: lb-fade .2s ease-out; }
.lightbox[hidden] { display: none; }
.lightbox:focus { outline: none; }
.lb-stage { display: flex; align-items: center; justify-content: center; gap: clamp(10px, 1.6vw, 20px); width: 100%; height: 100%; padding: clamp(16px, 3vw, 40px); }
.lb-fig { position: relative; margin: 0; display: flex; flex-direction: column; max-width: min(1100px, calc(100vw - 180px));
  background: var(--ink); box-shadow: 0 24px 70px rgba(0, 0, 0, .45); animation: lb-grow .22s var(--ease); }
.lb-img { display: block; max-width: 100%; max-height: calc(100vh - 170px); max-height: calc(100dvh - 170px); width: auto; height: auto; object-fit: contain; }
.lb-cap { display: flex; align-items: baseline; gap: 16px; padding: 12px 16px 14px; border-top: 3px solid var(--green); }
.lb-count { flex: none; font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: .04em; color: var(--on-dark-mute); }
.lb-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.lb-text[hidden] { display: none; }
.lb-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(17px, 1.6vw, 21px); line-height: 1.1; text-transform: uppercase; letter-spacing: .01em; }
.lb-title:empty { display: none; }
.lb-desc { font-size: 14px; line-height: 1.5; color: var(--on-dark-mute); }
.lb-desc:empty { display: none; }
.lb-close { position: absolute; top: 10px; right: 10px; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  background: rgba(11, 12, 11, .78); color: #fff; border: 1px solid rgba(255, 255, 255, .25); cursor: pointer; transition: background .2s; }
.lb-nav { flex: none; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: var(--ink); color: #fff;
  border: 1px solid rgba(255, 255, 255, .22); cursor: pointer; transition: background .2s, border-color .2s; }
.lb-close:hover, .lb-nav:hover { background: var(--green); border-color: var(--green); }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lb-grow { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .lightbox, .lb-fig { animation: none; } }
@media (max-width: 760px) {
  .lb-stage { flex-wrap: wrap; align-content: center; padding: 14px 12px calc(14px + env(safe-area-inset-bottom)); gap: 10px; }
  .lb-fig { order: 1; flex: 0 0 100%; max-width: 100%; }
  .lb-img { max-height: calc(100vh - 230px); max-height: calc(100dvh - 230px); margin-inline: auto; }
  .lb-prev { order: 2; } .lb-next { order: 3; margin-left: auto; }
  .lb-prev, .lb-next { width: 56px; height: 56px; }
}

/* Kontaktformular: Status und Spamschutz */
.form-status.ok { color: var(--green-deep); }
.form-status.err { color: #b3261e; }
.form .fine a { text-decoration: underline; text-underline-offset: 2px; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form button[disabled] { opacity: .6; cursor: progress; }

/* Feste Leiste: nur sichtbar, wenn kein anderer Probetraining-Knopf im Bild ist (Script setzt .is-on) */
.sticky-cta { transition: transform .3s var(--ease), visibility 0s linear 0s; }
.js .sticky-cta:not(.is-on) { transform: translateY(110%); visibility: hidden; transition: transform .3s var(--ease), visibility 0s linear .3s; }
@media (prefers-reduced-motion: reduce) { .sticky-cta, .js .sticky-cta:not(.is-on) { transition: none; } }

/* ------------------------------------------------ Google-Bewertungen (seit 23.09.2026) */
.google .section-head--row { align-items: center; }
.reviews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.review { margin: 0; background: var(--paper); border-top: 4px solid var(--green); padding: 26px 24px 22px; display: flex; flex-direction: column; gap: 14px; }
.review .stars { color: #fbbc04; display: flex; gap: 2px; }
.review .stars svg { width: 18px; height: 18px; }
.r-text { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--text); }
.r-text p { margin: 0 0 .7em; }
.r-text p:last-child { margin-bottom: 0; }
.js .review:not(.open) .r-text { display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
.r-more { align-self: flex-start; background: none; border: 0; padding: 0; font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--green-deep); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.review figcaption { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; font-size: 14px; }
.review figcaption b { font-weight: 700; }
.review figcaption span { color: var(--mute); }
.review figcaption a { color: var(--mute); text-decoration: underline; text-underline-offset: 2px; }
.reviews-foot { margin-top: 28px; }
@media (max-width: 960px) { .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) {
  .reviews { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: 16px; gap: 10px; margin-inline: -16px; padding: 0 16px 6px; scrollbar-width: none; }
  .reviews::-webkit-scrollbar { display: none; }
  .review { flex: 0 0 86%; scroll-snap-align: start; }
}

/* Reihenfolge nach Conversion-Playbook (23.09.2026): "So startest du" jetzt dunkel, Galerie hell */
.dark .steps { border-top-color: rgba(255, 255, 255, .85); }
.dark .step { border-color: var(--line-dark); }
.dark .step p { color: var(--on-dark-mute); }
.dark .step h3 { color: #fff; }
.dark .step .n { color: var(--green-hi); }

/* ------------------------------------------------ Galerie-Seite /galerie (seit 24.09.2026) */
.gallery-all { display: flex; justify-content: center; margin-top: 28px; }
.galerie-page .back { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; color: var(--mute); margin-bottom: 26px; }
.galerie-page .back:hover { color: var(--text); }
.gal-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.gal-grid .tile { aspect-ratio: 1 / 1; }
.gal-cta { display: flex; margin-top: 8px; min-height: 220px; }
@media (max-width: 1100px) { .gal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 640px) { .gal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; } .gal-cta { min-height: 180px; } }

/* Formular: Bestätigung nach dem Senden (Wunsch André 24.09) */
.form-done { text-align: center; padding: clamp(24px, 5vw, 48px) 0 8px; animation: done-in .35s ease-out; }
.form-done[hidden] { display: none; }
.form-done .done-ic { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; background: var(--green); color: #fff; margin-bottom: 20px; }
.form-done h3 { margin-bottom: 12px; outline: none; }
.form-done p { color: var(--text); font-size: 17px; line-height: 1.5; max-width: 34ch; margin: 0 auto 28px; }
.form-done .btn--line { color: var(--text); border-color: rgba(15, 18, 16, .45); }
.form-done .btn--line:hover { border-color: var(--text); background: rgba(15, 18, 16, .05); }
.form-status.err { background: #fbeaea; border-left: 4px solid #b3261e; padding: 10px 12px; }
@keyframes done-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .form-done { animation: none; } }
