@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/jost-400.ttf") format("truetype");
}

@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/jost-500.ttf") format("truetype");
}

@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/jost-600.ttf") format("truetype");
}

@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/jost-700.ttf") format("truetype");
}

@font-face {
  font-family: "Jost";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/jost-italic-500.ttf") format("truetype");
}

:root {
  --ink: #14261c;
  --fairway: #1c3d2c;
  --moss: #3a6a4a;
  --dew: #eef3eb;
  --paper: #ffffff;
  --mint: #e7f2e2;
  --flag: #d85a22;
  --flag-hover: #bc4a18;
  --flag-ink: #fffdf9;
  --card: #ffffff;
  --muted: #4d6156;
  --line: #c9d6c8;
  --ring: #d85a22;
  --header: 4.5rem;
  --radius: 1.5rem;
  --shadow: 0 18px 50px rgba(20, 38, 28, 0.12);
  --font: Jost, ui-sans-serif, system-ui, sans-serif;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
a,
summary,
select,
input,
label {
  cursor: pointer;
}

button,
.btn {
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--flag);
  color: var(--flag-ink);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

h1,
h2,
h3 {
  text-wrap: balance;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 0.75rem;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.8rem);
  font-weight: 600;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

.kicker,
.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--moss);
  font-size: 0.85rem;
  font-weight: 500;
}

.eyebrow {
  color: #dce8dc;
}

.muted {
  color: var(--muted);
}

.placeholder-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.4rem 0 0;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-lede {
  color: var(--muted);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

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

.btn-primary {
  background: var(--flag);
  color: var(--flag-ink);
}

.btn-primary:hover {
  background: var(--flag-hover);
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-lg {
  min-height: 52px;
  padding-inline: 1.4rem;
}

.btn-block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.text-link {
  color: var(--fairway);
  font-weight: 600;
  text-underline-offset: 0.18em;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
}

.site-header.on-hero {
  background: transparent;
  backdrop-filter: none;
}

.site-header.on-hero .logo,
.site-header.on-hero .nav-desktop a {
  color: #f4f7f2;
}

.site-header.on-hero .nav-toggle span {
  background: #f4f7f2;
}

.header-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--fairway);
  margin-right: auto;
}

.logo-mark {
  color: var(--flag);
  display: grid;
}

.nav-desktop {
  margin-left: auto;
  display: none;
  gap: 1.4rem;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--fairway);
  font-size: 0.95rem;
  font-weight: 500;
}

.header-cta {
  display: none;
  margin-left: 0;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.mobile-nav {
  display: grid;
  gap: 0.4rem;
  padding: 0 1rem 1rem;
}

.mobile-nav a {
  text-decoration: none;
  padding: 0.7rem 0.2rem;
}

.mobile-nav[hidden] {
  display: none;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: start;
  color: #f4f7f2;
  overflow: hidden;
  padding-bottom: calc(3.85rem + env(safe-area-inset-bottom));
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 28%;
  animation: ken 28s ease-in-out alternate infinite;
}

@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 28, 20, 0.42) 0%, rgba(12, 28, 20, 0.38) 38%, rgba(12, 28, 20, 0.62) 100%),
    linear-gradient(90deg, rgba(12, 28, 20, 0.5) 0%, rgba(12, 28, 20, 0.06) 72%);
}

.hero-content {
  position: relative;
  padding: calc(var(--header) + 0.7rem + 30px) 0 1.82rem;
  max-width: 38rem;
  margin-left: max(1rem, calc((100% - 1120px) / 2));
  margin-right: auto;
  animation: hero-in 900ms ease both;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.lede {
  font-size: 1.2rem;
  max-width: 28rem;
  color: #e4eee4;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 1rem;
}

.hero .btn-ghost {
  color: #f4f7f2;
}

@media (min-width: 900px) {
  .hero {
    padding-bottom: 4.25rem;
  }

  .hero-content {
    padding-top: calc(var(--header) + 0.96rem + 30px);
    padding-bottom: 2.1rem;
  }
}

.faces {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 32rem;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding: 0.6rem 1.1rem 0.6rem 0.6rem;
  border-radius: 1.4rem;
  background: rgba(12, 24, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.faces-stack {
  display: flex;
  flex: none;
}

.faces-stack img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f4f7f2;
  margin-left: -10px;
}

.faces-stack img:first-child {
  margin-left: 0;
}

.faces p {
  margin: 0;
  font-size: 0.92rem;
  color: #f4f7f2;
  line-height: 1.3;
  min-width: 0;
}

/* Voices */
.voices {
  margin-top: -1.8rem;
  position: relative;
  z-index: 2;
  padding-bottom: 2.5rem;
}

.voices-grid {
  display: grid;
  gap: 0.8rem;
}

.voice {
  margin: 0;
  background: var(--mint);
  border: 0;
  border-radius: 1.25rem;
  padding: 1.25rem 1.3rem 1.3rem;
}

.voice img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.voice blockquote {
  margin: 0 0 0.7rem;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  text-wrap: pretty;
}

.voice figcaption {
  color: var(--muted);
  font-size: 0.86rem;
}

@media (min-width: 860px) {
  .voices-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-row {
  display: flex;
  justify-content: center;
  margin: 1.6rem 0 0;
}

/* Optimizely zigzag */
.experience {
  background: var(--paper);
  color: var(--ink);
  padding: 1.2rem 0 3.5rem;
}

.experience-head {
  max-width: 40rem;
  margin: 0 auto 2.8rem;
  text-align: center;
}

.experience-head h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
}

.xp-row {
  display: grid;
  gap: 1.4rem;
  align-items: center;
  margin-bottom: 3.2rem;
}

.xp-copy {
  background: var(--mint);
  border-radius: 1.15rem;
  padding: 1.5rem 1.6rem 1.65rem;
  max-width: 28rem;
}

.xp-copy h3 {
  font-size: 1.45rem;
}

.xp-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.xp-art {
  display: flex;
  justify-content: center;
}

.xp-art img {
  width: min(320px, 100%);
  height: auto;
  animation: bob 4.4s ease-in-out infinite;
  transform-origin: center;
}

.xp-row.flip .xp-art img {
  animation-delay: 0.55s;
}

.xp-row:last-of-type .xp-art img {
  animation-delay: 1.1s;
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
}

@media (min-width: 860px) {
  .xp-row {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4.2rem;
  }

  .xp-row.flip .xp-copy {
    order: 2;
    margin-left: auto;
  }

  .xp-row:not(.flip) .xp-copy {
    margin-right: auto;
  }

  .xp-row.flip .xp-art {
    order: 1;
    justify-content: flex-start;
  }

  .xp-row:not(.flip) .xp-art {
    justify-content: flex-end;
  }
}

/* Bento */
.bento {
  padding: 1rem 0 2rem;
}

.bento-panel {
  background: var(--mint);
  border: 0;
  border-radius: 1.75rem;
  display: grid;
  overflow: hidden;
}

.bento-copy {
  padding: 1.5rem;
}

.check-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  padding-left: 1.6rem;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--moss);
}

.bento-cards {
  display: grid;
  gap: 0.7rem;
  background: transparent;
  padding: 1rem;
}

.mini-card {
  background: var(--card);
  border-radius: 1.1rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  min-height: 6.2rem;
}

.mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-card div {
  padding: 0.85rem 0.95rem;
  min-width: 0;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (min-width: 900px) {
  .bento-panel {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .bento-copy {
    padding: 2.4rem;
  }

  .bento-cards {
    grid-template-columns: 1fr 1fr;
    padding: 1.2rem;
  }

  .mini-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mini-card img {
    height: 8.5rem;
  }
}

/* Paths */
.paths {
  padding: 3.5rem 0;
}

.path-grid {
  display: grid;
  gap: 1rem;
}

.path-card {
  background: var(--mint);
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.path-photo {
  position: relative;
  height: 14rem;
}

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

.path-index {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  background: rgba(20, 38, 28, 0.82);
  color: #fff;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
  font-size: 0.8rem;
}

.path-card h3,
.path-card p {
  padding-inline: 1.15rem;
}

.path-card h3 {
  margin-top: 1.05rem;
}

.path-card p {
  color: var(--muted);
  padding-bottom: 1.2rem;
}

@media (min-width: 900px) {
  .path-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .path-photo {
    height: 16.5rem;
  }
}

/* Trainer */
.trainer {
  padding-bottom: 3rem;
}

.trainer-panel {
  display: grid;
  gap: 0;
  background: var(--mint);
  color: var(--ink);
  border-radius: 1.75rem;
  overflow: hidden;
}

.trainer-photo img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.trainer-copy {
  padding: 1.6rem;
}

.trainer-copy p {
  color: var(--muted);
}

.trainer-copy h2 {
  color: var(--ink);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.2rem;
}

.badges li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
}

@media (min-width: 860px) {
  .trainer-panel {
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
  }

  .trainer-photo img {
    height: 100%;
    min-height: 22rem;
  }

  .trainer-copy {
    padding: 2.4rem;
  }
}

/* Offer / form */
.offer {
  padding: 1rem 0 3.5rem;
}

.offer-grid {
  display: grid;
  gap: 1.5rem;
}

.include-list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.include-list li {
  padding-left: 1.4rem;
  position: relative;
}

.include-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--moss);
  font-weight: 700;
}

.price {
  font-size: 2.4rem;
  font-weight: 650;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  margin: 1rem 0 0.2rem;
}

.price-meta {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.offer-form-card {
  background: var(--mint);
  border: 0;
  border-radius: 1.75rem;
  padding: 1.4rem;
  scroll-margin-top: calc(var(--header) + 1rem);
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.field label {
  font-weight: 550;
  font-size: 0.92rem;
}

.field input,
.field select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.6rem 0.85rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.field.check label {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 400;
}

.field.check input {
  min-height: 1.15rem;
  width: 1.15rem;
  margin-top: 0.2rem;
  flex: none;
}

.form-error {
  color: #9b1c1c;
  font-size: 0.9rem;
}

.form-hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.form-success {
  background: var(--dew);
  border-radius: 1rem;
  padding: 1rem;
}

@media (min-width: 900px) {
  .offer-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
    gap: 3rem;
  }

  .offer-form-card {
    padding: 1.8rem;
  }
}

/* Proof */
.proof {
  padding-bottom: 3rem;
}

.proof-grid {
  display: grid;
  gap: 0.9rem;
}

.quote-card {
  margin: 0;
  background: var(--dew);
  border-radius: 1.25rem;
  padding: 1.2rem;
}

.quote-card blockquote {
  margin: 0 0 0.8rem;
  font-size: 1.02rem;
}

.quote-card figcaption {
  color: var(--muted);
  font-size: 0.88rem;
}

@media (min-width: 800px) {
  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* FAQ */
.faq {
  padding-bottom: 4rem;
}

.faq-list {
  display: grid;
  gap: 0.55rem;
}

details {
  background: var(--mint);
  border: 0;
  border-radius: 1rem;
  padding: 0.2rem 1rem 0.2rem;
}

summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

details p {
  color: var(--muted);
  padding-bottom: 0.8rem;
}

.faq-contact {
  margin-top: 1.2rem;
}

/* Close */
.close {
  position: relative;
  min-height: 28rem;
  display: grid;
  place-items: end start;
  color: #fff;
  overflow: hidden;
}

.close-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.close-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 38, 28, 0.1), rgba(20, 38, 28, 0.78));
}

.close-copy {
  position: relative;
  padding: 3.5rem 0;
}

.close-copy p {
  font-size: 1.15rem;
  color: #e4eee4;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #d7e3d8;
  padding: 3rem 0 calc(2rem + env(safe-area-inset-bottom));
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  font-weight: 650;
  color: #fff;
  font-size: 1.1rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 0.95rem;
}

.site-footer a {
  color: #fff;
}

.photo-credit {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #8aa392;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

/* Sticky mobile bar */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(20, 38, 28, 0.94);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sticky-bar .btn {
  flex: none;
}

@media (min-width: 900px) {
  .sticky-bar {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

/* Dialog */
.callback-dialog {
  border: 0;
  border-radius: 1.4rem;
  padding: 1.4rem;
  width: min(26rem, calc(100% - 2rem));
  box-shadow: var(--shadow);
  overscroll-behavior: contain;
}

.callback-dialog::backdrop {
  background: rgba(20, 38, 28, 0.45);
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

#nutzen,
#ablauf,
#paket,
#faq,
#trainer,
#stimmen,
#wege {
  scroll-margin-top: calc(var(--header) + 0.8rem);
}

.xp-illu svg {
  transform-box: fill-box;
  transform-origin: center;
}

.mini-card,
.path-card {
  transition: transform 220ms ease;
}

.mini-card:hover,
.path-card:hover {
  transform: translateY(-6px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .path-card,
  .path-card:hover,
  .mini-card,
  .xp-card,
  .xp-card:hover,
  .hero-photo,
  .hero-content,
  .xp-art img {
    transition: none;
    animation: none;
    transform: none;
  }
}

/* Wittelsbacher Golfclub membership campaign */
:root {
  --ink: #12251f;
  --fairway: #173e32;
  --moss: #2f6653;
  --dew: #edf3ef;
  --mint: #e8f0eb;
  --flag: #b88a36;
  --flag-hover: #9f7429;
  --flag-ink: #ffffff;
  --line: #c8d4cd;
  --ring: #d6b36a;
  --shadow: 0 24px 70px rgba(8, 28, 21, 0.15);
}

body {
  background: #fff;
}

.club-logo img {
  width: 44px;
  height: 44px;
  flex: none;
}

.site-header.on-hero .club-logo img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.site-header:not(.on-hero) .club-logo .logo-text {
  color: var(--ink);
}

.membership-hero {
  min-height: min(760px, 92vh);
  align-items: end;
  padding-bottom: 0;
}

.membership-hero .hero-photo {
  object-position: center 55%;
}

.membership-hero .hero-shade {
  background:
    linear-gradient(180deg, rgba(8, 22, 17, 0.24) 0%, rgba(8, 22, 17, 0.3) 35%, rgba(8, 22, 17, 0.78) 100%),
    linear-gradient(90deg, rgba(8, 22, 17, 0.62) 0%, rgba(8, 22, 17, 0.06) 78%);
}

.membership-hero .hero-content {
  width: min(1120px, calc(100% - 2rem));
  max-width: none;
  margin-inline: auto;
  padding: calc(var(--header) + 5rem) 0 4rem;
}

.membership-hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 5.6rem);
  letter-spacing: -0.045em;
}

.membership-hero .lede {
  max-width: 42rem;
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  line-height: 1.45;
}

.eyebrow,
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.78rem;
}

.hero-facts {
  display: grid;
  gap: 0;
  max-width: 54rem;
  list-style: none;
  padding: 0.8rem 0 0;
  margin: 1.8rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-facts li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  padding: 0.75rem 0;
}

.hero-fact-mark {
  padding-top: 0.15rem;
  color: var(--ring);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-facts strong,
.hero-facts small {
  display: block;
}

.hero-facts strong {
  color: #fff;
  font-size: 0.96rem;
  font-weight: 600;
}

.hero-facts small {
  margin-top: 0.15rem;
  color: #cbd8d0;
  font-size: 0.8rem;
  line-height: 1.35;
}

.trust-strip {
  color: #fff;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.trust-grid div {
  display: grid;
  gap: 0.15rem;
  padding: 1.25rem 0.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-grid div:nth-child(even) {
  border-right: 0;
}

.trust-grid strong {
  color: #fff;
  font-size: 1rem;
}

.trust-grid span {
  color: #aebfb6;
  font-size: 0.8rem;
}

.offer-intro {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.split-heading {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.split-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  max-width: 10ch;
}

.split-heading .section-lede {
  max-width: 38rem;
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card {
  position: relative;
  min-height: 17rem;
  padding: 1.6rem;
  border-radius: 1.5rem;
  background: var(--mint);
  overflow: hidden;
}

.benefit-number {
  display: block;
  margin-bottom: 4.5rem;
  color: var(--flag);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.benefit-card h3 {
  font-size: 1.55rem;
}

.benefit-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.fineprint {
  max-width: 50rem;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.circle-section {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(214, 179, 106, 0.16), transparent 28rem),
    var(--fairway);
}

.circle-head {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.circle-head h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.circle-intro {
  display: grid;
  justify-items: end;
  gap: 1.25rem;
}

.pcc-emblem {
  width: clamp(8.5rem, 15vw, 11.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.circle-intro p {
  max-width: 38rem;
  margin: 0;
  color: #d4e0d8;
  font-size: 1.08rem;
}

.faq-cta {
  margin-top: 2.2rem;
}

.club-grid {
  display: grid;
  gap: 1rem;
}

.club-card {
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #102920;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.club-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.club-card.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(5, 20, 14, 0.88) 100%);
}

.club-card > div:last-child {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}

.club-card span {
  color: var(--ring);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.club-card h3 {
  margin-top: 0.45rem;
  font-size: 1.6rem;
}

.club-card p {
  color: #cbd8d0;
  margin-bottom: 0;
}

.circle-name {
  background: linear-gradient(145deg, #193f33, #0f261e);
}

.circle-note {
  display: grid;
  gap: 0.3rem;
  margin-top: 1.2rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(214, 179, 106, 0.35);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.1);
}

.circle-note strong {
  color: var(--ring);
  font-size: 1.1rem;
}

.circle-note span {
  color: #d4e0d8;
}

.place-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.place-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.place-photo {
  position: relative;
  min-height: 30rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.place-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(12, 33, 25, 0.78);
  color: #fff;
  font-size: 0.8rem;
  backdrop-filter: blur(8px);
}

.place-copy > p:not(.kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.place-copy .check-list {
  margin-bottom: 1.5rem;
}

.moments {
  padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.moments-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.moments-head h2 {
  max-width: 14ch;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.slider-hint {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

.slider-hint span {
  color: var(--flag);
  font-size: 1.35rem;
  line-height: 1;
}

.moments-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(20rem, 54%);
  gap: 1rem;
  overflow-x: auto;
  padding: 0 0 1rem;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--flag) var(--mint);
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.moments-grid:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--flag) 55%, transparent);
  outline-offset: 0.35rem;
  border-radius: 1.5rem;
}

.moments-grid::-webkit-scrollbar {
  height: 0.5rem;
}

.moments-grid::-webkit-scrollbar-track {
  background: var(--mint);
  border-radius: 999px;
}

.moments-grid::-webkit-scrollbar-thumb {
  background: var(--flag);
  border-radius: 999px;
}

.moment-card {
  min-height: 28rem;
  position: relative;
  display: flex;
  align-items: flex-end;
  border-radius: 1.5rem;
  overflow: hidden;
  color: #fff;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.moment-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 22, 16, 0.88));
}

.moment-card div {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}

.moment-label {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: #e7cf9a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.moment-card h3 {
  font-size: 1.55rem;
}

.moment-card p {
  margin: 0;
  color: #d9e4dc;
}

.steps {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.step-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.step-list > li > span {
  color: var(--flag);
  font-size: 1.5rem;
  font-weight: 600;
}

.step-list h3 {
  font-size: 1.3rem;
}

.step-list p {
  color: var(--muted);
  margin: 0;
}

.lead-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  color: #fff;
  background: var(--ink);
}

.lead-section .offer-copy {
  position: sticky;
  top: calc(var(--header) + 2rem);
}

.lead-section .offer-copy > p:not(.eyebrow) {
  color: #cfdbd3;
  font-size: 1.08rem;
}

.lead-section .include-list li::before {
  color: var(--ring);
}

.lead-section .offer-form-card {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  gap: 0;
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.optional {
  color: var(--muted);
  font-weight: 400;
}

.direct-contact {
  display: grid;
  gap: 0.2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.direct-contact span {
  color: #aebfb6;
  font-size: 0.85rem;
}

.direct-contact a {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
}

.faq {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.membership-close {
  min-height: 36rem;
}

.membership-close .close-photo {
  object-position: center;
}

.membership-close .close-shade {
  background: linear-gradient(180deg, rgba(7, 24, 17, 0.15), rgba(7, 24, 17, 0.88));
}

.membership-close .close-copy {
  padding-bottom: 4.5rem;
}

.membership-close h2 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.footer-logo {
  width: 76px;
  height: 76px;
  margin-bottom: 1rem;
}

#angebot,
#club-circle,
#platz,
#ablauf,
#anfragen,
#faq {
  scroll-margin-top: calc(var(--header) + 0.8rem);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (min-width: 700px) {
  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 1rem;
  }

  .hero-facts li {
    min-height: 4.2rem;
    padding: 0 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-facts li:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-grid div:nth-child(even) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-grid div:last-child {
    border-right: 0;
  }

  .field-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
}

@media (min-width: 900px) {
  .split-heading {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
  }

  .circle-head {
    grid-template-columns: minmax(0, 1.25fr) minmax(15rem, 0.75fr);
    gap: 2.5rem;
  }

  .circle-head h2 {
    white-space: nowrap;
  }

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

  .place-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }

  .step-list li {
    grid-template-columns: 5rem 1fr;
    padding: 2rem 0;
  }
}

@media (max-width: 520px) {
  .logo-text {
    max-width: 10rem;
    line-height: 1.05;
  }

  .membership-hero {
    min-height: 760px;
  }

  .membership-hero .hero-content {
    padding-bottom: 3rem;
  }

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

  .hero-facts li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .faq-cta .btn {
    width: 100%;
  }

  .trust-grid div {
    min-height: 6.2rem;
  }

  .moments-head {
    display: block;
  }

  .slider-hint {
    margin-top: 1rem;
  }

  .moments-grid {
    grid-auto-columns: 92%;
  }

  .moment-card {
    min-height: 25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
