/* ==========================================================================
   VAMOS Padel Club Leipzig — Luxury Edition (v2)
   Old-money heritage: deep racing green, ivory, muted gold.
   Cormorant Garamond + Jost + Tangerine. Static, dependency-free.
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }
:focus-visible { outline: 1.5px solid var(--gold); outline-offset: 3px; }

/* ---------- Tokens ---------- */
:root {
  --green-deepest: #0e271d;
  --green-deep:    #143426;   /* primary dark surface */
  --green:         #1c4232;   /* brand green */
  --green-soft:    #245241;
  --green-line:    #356152;
  --ink-green:     #16342a;   /* text on cream */

  --ivory:  #f7f2e7;
  --cream:  #efe7d4;
  --cream-2:#e3d9bf;
  --sand:   #d6cbac;

  --gold:      #c3a96d;
  --gold-deep: #a98c4d;
  --gold-soft: #dcc999;

  --cream-text:  #efe7d4;
  --muted:       rgba(239,231,212,0.60);
  --muted-2:     rgba(239,231,212,0.40);
  --muted-cream: rgba(22,52,42,0.62);
  --line:        rgba(239,231,212,0.15);
  --line-2:      rgba(239,231,212,0.26);
  --line-gold:   rgba(195,169,109,0.45);
  --line-cream:  rgba(22,52,42,0.14);

  --maxw: 1200px;
  --gutter: clamp(22px, 5vw, 70px);
  --radius: 4px;
  --radius-lg: 8px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --shadow: 0 40px 90px -50px rgba(0,0,0,.7);
  --shadow-sm: 0 16px 40px -24px rgba(0,0,0,.55);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-script:  'Tangerine', cursive;
  --ff-sans:    'Jost', system-ui, sans-serif;

  --court-fallback:
    radial-gradient(120% 90% at 80% 8%, rgba(195,169,109,.10), transparent 55%),
    linear-gradient(150deg, #1d4434 0%, #143426 55%, #0e271d 100%);

  --pinstripe: repeating-linear-gradient(90deg, rgba(239,231,212,.05) 0 1px, transparent 1px 13px);
}

/* ---------- Base ---------- */
body {
  font-family: var(--ff-sans);
  font-weight: 300;
  background: var(--green-deep);
  color: var(--cream-text);
  line-height: 1.7;
  font-size: 17px;
  letter-spacing: .01em;
  overflow-x: hidden;
}

/* ---------- Typography ---------- */
.display, h1, h2, h3 { font-family: var(--ff-display); font-weight: 500; line-height: 1.02; letter-spacing: .005em; }
.h-hero { font-family: var(--ff-display); font-weight: 500; line-height: .98; font-size: clamp(3.4rem, 9vw, 8rem); letter-spacing: .01em; }
.h-xxl  { font-family: var(--ff-display); font-weight: 500; line-height: 1.0; font-size: clamp(2.6rem, 6vw, 5rem); }
.h-xl   { font-family: var(--ff-display); font-weight: 500; line-height: 1.04; font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
.h-lg   { font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.h-md   { font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.4rem, 2.2vw, 1.8rem); }

.serif-caps { font-family: var(--ff-display); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.script { font-family: var(--ff-script); font-weight: 400; line-height: 1; }
.script-xl { font-family: var(--ff-script); font-size: clamp(2.6rem, 6vw, 5rem); color: var(--gold); line-height: .9; }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--cream-text); font-weight: 300; line-height: 1.75; opacity: .9; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }

.eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--ff-sans); font-size: .72rem; font-weight: 400; letter-spacing: .42em; text-transform: uppercase; color: var(--gold); }
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--line-gold); }
.eyebrow.center::after { content: ""; width: 30px; height: 1px; background: var(--line-gold); }
.eyebrow.solo::before { display: none; }

.ornament { display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--gold); }
.ornament::before, .ornament::after { content: ""; height: 1px; width: clamp(40px, 12vw, 120px); background: linear-gradient(90deg, transparent, var(--line-gold)); }
.ornament::after { background: linear-gradient(90deg, var(--line-gold), transparent); }
.ornament .diamond { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 900px; }
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section-tight { padding-block: clamp(48px, 7vw, 90px); }
.center { text-align: center; }
.section--green-deep { background: var(--green-deepest); }
.section--cream { background: var(--ivory); color: var(--ink-green); }
.section--cream .muted { color: var(--muted-cream); }
.section--cream .eyebrow { color: var(--gold-deep); }
.section--cream .lead { color: var(--ink-green); opacity: .82; }
.pinstripe { background-image: var(--pinstripe); }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head p { margin-top: 22px; }

.grid { display: grid; gap: clamp(18px, 2.4vw, 32px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: center; }
.split.wide-left { grid-template-columns: 1.1fr .9fr; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-family: var(--ff-sans); font-weight: 400; font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; padding: 17px 34px; border-radius: var(--radius); border: 1px solid var(--gold); background: var(--gold); color: var(--green-deep); position: relative; overflow: hidden; transition: background .5s var(--ease), color .5s var(--ease), border-color .5s, transform .5s var(--ease), letter-spacing .5s var(--ease); }
.btn:hover { background: transparent; color: var(--gold); letter-spacing: .26em; }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 20px 42px; }
.btn svg { transition: transform .4s var(--ease); width: 15px; height: 15px; }
.btn:hover svg { transform: translateX(4px); }
.btn-line { background: transparent; color: var(--cream-text); border-color: var(--line-2); }
.btn-line:hover { background: var(--cream-text); color: var(--green-deep); border-color: var(--cream-text); }
.btn-ivory { background: var(--ivory); color: var(--green-deep); border-color: var(--ivory); }
.btn-ivory:hover { background: transparent; color: var(--ivory); border-color: var(--ivory); }
.section--cream .btn-line { color: var(--ink-green); border-color: var(--line-cream); }
.section--cream .btn-line:hover { background: var(--green); color: var(--ivory); border-color: var(--green); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }
.btn[disabled]:hover { background: var(--gold); color: var(--green-deep); letter-spacing: .22em; }

.text-link { display: inline-flex; align-items: center; gap: 9px; font-family: var(--ff-sans); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); padding-bottom: 4px; border-bottom: 1px solid var(--line-gold); transition: gap .35s var(--ease), border-color .35s, color .35s; }
.text-link svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.text-link:hover { gap: 14px; color: var(--gold-soft); }
.section--cream .text-link { color: var(--gold-deep); }

.chip { display: inline-flex; align-items: center; gap: 9px; padding: 8px 17px; border: 1px solid var(--line-gold); border-radius: 100px; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cream-text); }
.chip .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.section--cream .chip { color: var(--ink-green); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 22px 0; transition: background .6s var(--ease), padding .6s var(--ease), border-color .6s, backdrop-filter .6s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(14,39,29,0.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--line); padding: 12px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand .crest-mark { width: 50px; height: 50px; transition: width .6s var(--ease), height .6s var(--ease); }
.nav.scrolled .brand .crest-mark { width: 42px; height: 42px; }
.brand-word { font-family: var(--ff-display); font-weight: 600; font-size: 1.4rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-text); line-height: 1; }
.brand-sub { font-family: var(--ff-sans); font-size: .54rem; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.nav-links { display: flex; align-items: center; gap: clamp(10px, 1.6vw, 26px); }
.nav-links a { font-family: var(--ff-sans); font-size: .78rem; font-weight: 300; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-text); opacity: .8; padding: 8px 2px; position: relative; white-space: nowrap; transition: opacity .35s, color .35s; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform .4s var(--ease); }
.nav-links a:hover, .nav-links a[aria-current="page"] { opacity: 1; color: var(--gold); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-burger { display: none; width: 46px; height: 46px; border: 1px solid var(--line-2); border-radius: var(--radius); }
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--cream-text); margin: 5px auto; transition: transform .4s var(--ease), opacity .3s; }

.mobile-menu { position: fixed; inset: 0; z-index: 99; background: var(--green-deepest); background-image: var(--pinstripe); padding: 120px var(--gutter) 50px; display: flex; flex-direction: column; transform: translateY(-100%); transition: transform .7s var(--ease-out); visibility: hidden; overflow-y: auto; }
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a.m-link { font-family: var(--ff-display); font-size: clamp(2rem, 8vw, 3rem); color: var(--cream-text); padding: 13px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; opacity: 0; transform: translateY(20px); }
.mobile-menu.open a.m-link { animation: mIn .6s var(--ease-out) forwards; }
.mobile-menu a.m-link span { font-family: var(--ff-sans); font-size: .72rem; letter-spacing: .2em; color: var(--gold); }
@keyframes mIn { to { opacity: 1; transform: none; } }
.mobile-menu .m-foot { margin-top: auto; padding-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.menu-open { overflow: hidden; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; text-align: center; padding-top: 130px; padding-bottom: 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; background: var(--green-deep); background-image: var(--pinstripe); }
.hero-photo { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; opacity: .62; filter: saturate(.92) brightness(.64) contrast(1.04); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(ellipse 86% 78% at 50% 40%, rgba(9,22,16,.24), rgba(9,22,16,.72)); }
.hero-inner { width: 100%; max-width: 1000px; margin-inline: auto; }
.hero .crest-hero { width: clamp(120px, 16vw, 188px); height: auto; margin: 0 auto clamp(24px,4vw,40px); }
.hero h1 { color: var(--ivory); }
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ln > span { display: block; transform: translateY(108%); }
.hero .hero-sub { margin: clamp(20px,3vw,30px) auto 0; max-width: 56ch; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: clamp(28px,4vw,42px); }
.hero-rule { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 30px; color: var(--gold); font-family: var(--ff-sans); font-size: .72rem; letter-spacing: .34em; text-transform: uppercase; }
.hero-rule span { white-space: nowrap; }
.hero-rule .ln { width: clamp(20px,5vw,60px); height: 1px; background: var(--line-gold); }
.scroll-cue { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--muted); font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; }
.scroll-cue .bar { width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee { border-block: 1px solid var(--line); background: var(--green-deepest); overflow: hidden; padding: 18px 0; }
.marquee-track { display: flex; white-space: nowrap; width: max-content; animation: marquee 46s linear infinite; }
.marquee-track span { font-family: var(--ff-display); font-style: italic; font-size: clamp(1.2rem,1.8vw,1.6rem); color: var(--cream-text); padding: 0 30px; display: inline-flex; align-items: center; gap: 30px; }
.marquee-track span::after { content: "✦"; color: var(--gold); font-size: .6em; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(30px,4vw,56px) clamp(16px,2vw,32px); text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--ff-display); font-size: clamp(2.8rem,5vw,4.6rem); line-height: 1; color: var(--ivory); }
.stat .num .suffix { color: var(--gold); }
.stat .lbl { margin-top: 14px; font-family: var(--ff-sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.section--cream .stat { border-color: var(--line-cream); }
.section--cream .stat .num { color: var(--green); }
.section--cream .stat .lbl { color: var(--muted-cream); }

/* ==========================================================================
   CARDS
   ========================================================================== */
.card { background: var(--green); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px,3vw,42px); position: relative; transition: transform .6s var(--ease), border-color .6s, box-shadow .6s; }
.card:hover { transform: translateY(-5px); border-color: var(--line-gold); box-shadow: var(--shadow); }
.card .ico { width: 52px; height: 52px; display: grid; place-items: center; color: var(--gold); border: 1px solid var(--line-gold); border-radius: 50%; margin-bottom: 24px; }
.card .ico svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 12px; color: var(--ivory); }
.card p { color: var(--muted); font-weight: 300; }
.section--cream .card { background: var(--cream); border-color: var(--line-cream); color: var(--ink-green); }
.section--cream .card h3 { color: var(--green); }
.section--cream .card p { color: var(--muted-cream); }
.section--cream .card .ico { color: var(--gold-deep); border-color: var(--line-gold); }

.feature { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(28px,3vw,42px); color: var(--ivory); border: 1px solid var(--line); transition: transform .7s var(--ease); }
.feature .fbg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transition: transform 1.2s var(--ease); }
.feature::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(175deg, rgba(14,39,29,.15) 30%, rgba(14,39,29,.6) 62%, rgba(14,39,29,.94)); }
.feature > * { position: relative; z-index: 2; }
.feature:hover { transform: translateY(-5px); }
.feature:hover .fbg { transform: scale(1.05); }
.feature .tag { align-self: flex-start; margin-bottom: auto; }
.feature h3 { font-size: clamp(1.6rem,2.6vw,2.3rem); margin-bottom: 10px; }
.feature p { color: rgba(247,242,231,.84); font-weight: 300; max-width: 44ch; }
.feature .meta-row { display: flex; gap: 20px; margin-top: 18px; font-family: var(--ff-sans); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); }

.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--green-soft); border: 1px solid var(--line-gold); }
.media-frame.wide { aspect-ratio: 16/11; }
.media-frame .mf-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.media-frame .mf-badge { position: absolute; bottom: 22px; left: 22px; z-index: 2; }
.frame-inset { position: absolute; inset: 12px; border: 1px solid var(--line-gold); z-index: 3; pointer-events: none; }

/* ==========================================================================
   COURT CARDS
   ========================================================================== */
.court-card { background: var(--green); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .6s var(--ease), box-shadow .6s, border-color .6s; }
.court-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.court-card .cc-media { position: relative; aspect-ratio: 16/11; background-size: cover; background-position: center; overflow: hidden; }
.court-card .cc-media .cc-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.1s var(--ease); }
.court-card:hover .cc-media .cc-img { transform: scale(1.06); }
.court-card .cc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(14,39,29,.75)); }
.court-card .cc-flag { position: absolute; top: 16px; left: 16px; z-index: 2; }
.court-card .cc-body { padding: 26px 28px 30px; }
.court-card .cc-body h3 { color: var(--ivory); margin-bottom: 4px; }
.court-card .cc-feats { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 22px; }
.court-card .cc-feats li { font-family: var(--ff-sans); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 6px 12px; border: 1px solid var(--line); border-radius: 100px; }
.court-card .cc-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 18px; }
.court-card .cc-price b { font-family: var(--ff-display); font-size: 1.7rem; color: var(--gold); }
.court-card .cc-price small { color: var(--muted); font-size: .78rem; }

/* ==========================================================================
   STEPS
   ========================================================================== */
.steps { counter-reset: step; }
.step { display: flex; gap: 26px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: none; }
.step .s-num { counter-increment: step; font-family: var(--ff-display); font-size: 2rem; color: var(--gold); min-width: 52px; line-height: 1; }
.step .s-num::before { content: counter(step, decimal-leading-zero); }
.step h4 { font-family: var(--ff-display); font-size: 1.4rem; color: var(--ivory); margin-bottom: 6px; }
.step p { color: var(--muted); font-weight: 300; }
.section--cream .step { border-color: var(--line-cream); }
.section--cream .step h4 { color: var(--green); }
.section--cream .step p { color: var(--muted-cream); }
.section--cream .step .s-num { color: var(--gold-deep); }

/* ==========================================================================
   PRICING
   ========================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2vw,28px); align-items: stretch; }
.price-card { background: var(--green); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(30px,3vw,46px); display: flex; flex-direction: column; position: relative; transition: transform .6s var(--ease), box-shadow .6s, border-color .6s; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--gold); }
.price-card .pc-flag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--green-deep); padding: 5px 16px; font-family: var(--ff-sans); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; border-radius: 100px; }
.price-card h3 { color: var(--ivory); }
.price-card .pc-desc { color: var(--muted); font-size: .92rem; margin-top: 8px; min-height: 42px; }
.price-card .pc-price { margin: 24px 0 6px; display: flex; align-items: baseline; gap: 8px; }
.price-card .pc-price b { font-family: var(--ff-display); font-size: 3.4rem; line-height: 1; color: var(--ivory); }
.price-card.featured .pc-price b { color: var(--gold); }
.price-card .pc-price span { color: var(--muted); font-size: .88rem; }
.price-card .pc-list { margin: 26px 0 30px; display: flex; flex-direction: column; gap: 14px; }
.price-card .pc-list li { display: flex; gap: 12px; font-size: .94rem; font-weight: 300; color: var(--cream-text); }
.price-card .pc-list li svg { flex-shrink: 0; color: var(--gold); margin-top: 4px; width: 15px; height: 15px; }
.price-card .btn { margin-top: auto; }
.price-note { text-align: center; color: var(--muted-2); font-size: .9rem; margin-top: 30px; font-style: italic; font-family: var(--ff-display); }
.section--cream .price-note { color: var(--muted-cream); }

.price-rows { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px clamp(20px,2.4vw,32px); border-bottom: 1px solid var(--line); transition: background .35s; }
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: rgba(239,231,212,.03); }
.price-row .pr-l h4 { font-family: var(--ff-display); font-size: 1.25rem; color: var(--ivory); }
.price-row .pr-l p { color: var(--muted); font-size: .84rem; }
.price-row .pr-r { font-family: var(--ff-display); font-size: 1.6rem; color: var(--gold); white-space: nowrap; }
.price-row .pr-r small { font-family: var(--ff-sans); color: var(--muted); font-size: .68rem; letter-spacing: .08em; }
.section--cream .price-rows { border-color: var(--line-cream); }
.section--cream .price-row { border-color: var(--line-cream); }
.section--cream .price-row .pr-l h4 { color: var(--green); }
.section--cream .price-row .pr-l p { color: var(--muted-cream); }
.section--cream .price-row .pr-r { color: var(--gold-deep); }

/* ==========================================================================
   BOOKING TOOL
   ========================================================================== */
.booking { background: var(--green-deep); border: 1px solid var(--line-gold); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.booking-grid { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(0,1fr); }
.booking-main { padding: clamp(26px,3.4vw,48px); border-right: 1px solid var(--line); }
.booking-side { padding: clamp(26px,3.4vw,48px); background: var(--green-deepest); display: flex; flex-direction: column; }
.bk-step { margin-bottom: 36px; }
.bk-step:last-child { margin-bottom: 0; }
.bk-step-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.bk-step-head .n { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); display: grid; place-items: center; font-family: var(--ff-display); font-size: 1rem; flex-shrink: 0; }
.bk-step-head h4 { font-family: var(--ff-display); font-size: 1.3rem; color: var(--ivory); }
.seg { display: flex; gap: 12px; flex-wrap: wrap; }
.seg-opt { flex: 1; min-width: 140px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--green); transition: border-color .4s, background .4s, transform .4s; text-align: left; }
.seg-opt:hover { border-color: var(--line-gold); transform: translateY(-2px); }
.seg-opt.active { border-color: var(--gold); background: rgba(195,169,109,.08); }
.seg-opt .so-t { font-family: var(--ff-display); font-size: 1.15rem; color: var(--ivory); display: flex; align-items: center; gap: 8px; }
.seg-opt .so-d { font-size: .76rem; letter-spacing: .04em; color: var(--muted); margin-top: 4px; text-transform: uppercase; }
.seg-opt .so-t .tick { width: 16px; height: 16px; border-radius: 50%; border: 1px solid var(--line-2); margin-left: auto; display: grid; place-items: center; transition: all .3s; }
.seg-opt.active .so-t .tick { background: var(--gold); border-color: var(--gold); }
.seg-opt.active .so-t .tick::after { content: ""; width: 4px; height: 8px; border: solid var(--green-deep); border-width: 0 2px 2px 0; transform: rotate(45deg) translateY(-1px); }
.court-pick { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.court-chip { padding: 16px 8px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--green); text-align: center; transition: all .35s; position: relative; }
.court-chip:hover:not(:disabled) { border-color: var(--line-gold); transform: translateY(-2px); }
.court-chip.active { border-color: var(--gold); background: rgba(195,169,109,.1); }
.court-chip .cn { font-family: var(--ff-display); font-size: 1.4rem; color: var(--ivory); }
.court-chip.active .cn { color: var(--gold); }
.court-chip .ct { font-family: var(--ff-sans); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.court-chip:disabled { opacity: .3; cursor: not-allowed; }
.court-chip:disabled::after { content: "belegt"; position: absolute; inset: 0; display: grid; place-items: center; font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-text); background: rgba(14,39,29,.6); border-radius: var(--radius); }
.filter-row { display: flex; gap: 8px; margin-bottom: 16px; }
.filter-row .f-btn { font-family: var(--ff-sans); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; padding: 8px 16px; border: 1px solid var(--line); border-radius: 100px; color: var(--muted); transition: all .35s; }
.filter-row .f-btn.active { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }
.date-scroll { display: flex; gap: 9px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; }
.date-cell { flex-shrink: 0; width: 66px; padding: 13px 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--green); text-align: center; transition: all .35s; }
.date-cell:hover { border-color: var(--line-gold); }
.date-cell.active { border-color: var(--gold); background: rgba(195,169,109,.1); }
.date-cell .dc-dow { font-family: var(--ff-sans); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.date-cell .dc-day { font-family: var(--ff-display); font-size: 1.5rem; color: var(--ivory); margin-top: 2px; }
.date-cell.active .dc-day { color: var(--gold); }
.date-cell .dc-mon { font-family: var(--ff-sans); font-size: .6rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(76px,1fr)); gap: 9px; }
.time-cell { padding: 13px 6px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--green); text-align: center; font-family: var(--ff-sans); font-size: .88rem; color: var(--cream-text); transition: all .35s; }
.time-cell:hover:not(:disabled) { border-color: var(--line-gold); transform: translateY(-2px); }
.time-cell.active { border-color: var(--gold); background: var(--gold); color: var(--green-deep); }
.time-cell:disabled { opacity: .28; cursor: not-allowed; text-decoration: line-through; }
.stepper { display: inline-flex; align-items: center; gap: 4px; border: 1px solid var(--line); border-radius: 100px; padding: 5px; }
.stepper button { width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: var(--cream-text); font-size: 1.3rem; display: grid; place-items: center; transition: background .3s, transform .2s; }
.stepper button:hover { background: var(--green-soft); }
.stepper button:active { transform: scale(.92); }
.stepper .val { min-width: 64px; text-align: center; font-family: var(--ff-display); font-size: 1.6rem; color: var(--ivory); }
.player-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.player-row .pr-hint { color: var(--muted); font-size: .84rem; font-weight: 300; }
.bk-sum-title { font-family: var(--ff-sans); font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.sum-line { display: flex; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.sum-line .sl-k { color: var(--muted); font-weight: 300; }
.sum-line .sl-v { font-weight: 400; text-align: right; color: var(--ivory); }
.sum-line .sl-v.empty { color: var(--muted-2); font-style: italic; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; margin: 24px 0; }
.sum-total .st-k { font-family: var(--ff-sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.sum-total .st-v { font-family: var(--ff-display); font-size: 3rem; color: var(--gold); line-height: 1; }
.sum-total .st-v small { font-family: var(--ff-sans); font-size: .8rem; color: var(--muted); }
.sum-perp { text-align: right; color: var(--muted); font-size: .85rem; margin-top: -14px; margin-bottom: 20px; font-style: italic; font-family: var(--ff-display); }
.bk-trust { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.bk-trust li { display: flex; gap: 11px; font-size: .82rem; font-weight: 300; color: var(--muted); align-items: center; }
.bk-trust li svg { color: var(--gold); flex-shrink: 0; width: 16px; height: 16px; }
.modal-back { position: fixed; inset: 0; z-index: 200; background: rgba(14,39,29,.85); backdrop-filter: blur(8px); display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .4s; }
.modal-back.open { opacity: 1; visibility: visible; }
.modal { background: var(--green-deep); border: 1px solid var(--line-gold); border-radius: var(--radius-lg); padding: clamp(30px,4vw,52px); max-width: 500px; width: 100%; text-align: center; transform: translateY(16px); transition: transform .5s var(--ease); }
.modal-back.open .modal { transform: none; }
.modal .m-check { width: 72px; height: 72px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); display: grid; place-items: center; margin: 0 auto 24px; }
.modal h3 { font-size: 1.9rem; color: var(--ivory); margin-bottom: 12px; }
.modal p { color: var(--muted); margin-bottom: 26px; font-weight: 300; }
.modal .m-recap { background: var(--green-deepest); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; text-align: left; margin-bottom: 28px; }
.modal .m-recap .sum-line:last-child { border-bottom: none; }

/* ==========================================================================
   RULES
   ========================================================================== */
.rule-card { background: var(--cream); border: 1px solid var(--line-cream); border-radius: var(--radius-lg); padding: clamp(26px,3vw,40px); height: 100%; }
.rule-card .rc-num { font-family: var(--ff-script); font-size: 3.6rem; color: var(--gold-deep); line-height: .6; }
.rule-card h3 { font-family: var(--ff-display); color: var(--green); margin: 14px 0 14px; }
.rule-card p { color: var(--muted-cream); font-weight: 300; }
.rule-card ul.rc-list { margin-top: 16px; display: flex; flex-direction: column; gap: 11px; }
.rule-card ul.rc-list li { display: flex; gap: 12px; color: var(--ink-green); font-weight: 300; font-size: .95rem; line-height: 1.55; }
.rule-card ul.rc-list li::before { content: "✦"; color: var(--gold-deep); font-size: .7em; margin-top: 6px; flex-shrink: 0; }
.diagram { background: var(--green-deep); border: 1px solid var(--line-gold); border-radius: var(--radius-lg); padding: clamp(22px,3vw,38px); }
.diagram svg { width: 100%; height: auto; display: block; }
.diagram .dg-cap { margin-top: 18px; text-align: center; font-family: var(--ff-display); font-style: italic; font-size: 1.1rem; color: var(--muted); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 200px; gap: 14px; }
.g-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; background: var(--green-soft); }
.g-item .g-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.1s var(--ease); }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(14,39,29,.6)); opacity: 0; transition: opacity .4s; }
.g-item:hover .g-img { transform: scale(1.06); }
.g-item:hover::after { opacity: 1; }
.g-item .g-cap { position: absolute; bottom: 16px; left: 18px; z-index: 2; font-family: var(--ff-display); font-style: italic; font-size: 1.05rem; color: var(--ivory); opacity: 0; transform: translateY(8px); transition: all .4s; }
.g-item:hover .g-cap { opacity: 1; transform: none; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ==========================================================================
   TEAM
   ========================================================================== */
.team-card { text-align: center; }
.team-card .tc-img { aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; background: var(--green-soft); position: relative; margin-bottom: 20px; border: 1px solid var(--line-gold); }
.team-card .tc-img .ti { position: absolute; inset: 0; background-size: cover; background-position: center top; transition: transform .8s var(--ease); }
.team-card:hover .tc-img .ti { transform: scale(1.04); }
.team-card h4 { font-family: var(--ff-display); font-size: 1.4rem; color: var(--ivory); }
.team-card .tc-role { font-family: var(--ff-sans); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.team-card p { color: var(--muted); font-weight: 300; font-size: .9rem; margin-top: 12px; }

/* ==========================================================================
   QUOTES
   ========================================================================== */
.quote-card { background: var(--green); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(30px,3vw,44px); display: flex; flex-direction: column; height: 100%; }
.quote-card .q-mark { font-family: var(--ff-display); font-size: 4rem; color: var(--gold); line-height: .6; height: 30px; }
.quote-card blockquote { font-family: var(--ff-display); font-size: 1.3rem; line-height: 1.45; color: var(--ivory); margin-bottom: 24px; font-weight: 400; }
.quote-card .qc-who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.quote-card .qc-av { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-gold); color: var(--gold); display: grid; place-items: center; font-family: var(--ff-display); font-size: 1.1rem; }
.quote-card .qc-name { font-weight: 400; font-size: .95rem; color: var(--cream-text); }
.quote-card .qc-meta { color: var(--muted); font-size: .8rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 0; text-align: left; font-family: var(--ff-display); font-size: clamp(1.2rem,1.8vw,1.5rem); color: var(--ivory); transition: color .35s; }
.faq-q:hover { color: var(--gold); }
.faq-q .fi { width: 30px; flex-shrink: 0; position: relative; height: 30px; }
.faq-q .fi::before, .faq-q .fi::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--gold); }
.faq-q .fi::before { width: 16px; height: 1px; }
.faq-q .fi::after { width: 1px; height: 16px; transition: transform .4s var(--ease); }
.faq-item.open .faq-q .fi::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a-inner { padding: 0 0 30px; color: var(--muted); font-weight: 300; max-width: 70ch; line-height: 1.7; }
.section--cream .faq-item { border-color: var(--line-cream); }
.section--cream .faq-q { color: var(--green); }
.section--cream .faq-a-inner { color: var(--muted-cream); }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(56px,8vw,120px) var(--gutter); text-align: center; border: 1px solid var(--line-gold); background: var(--green-deepest); background-image: var(--pinstripe); }
.cta-band .cta-frame { position: absolute; inset: 16px; border: 1px solid var(--line-gold); pointer-events: none; }
.cta-band > * { position: relative; z-index: 2; }
.cta-band .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--green-deepest); border-top: 1px solid var(--line-gold); padding-top: clamp(60px,7vw,100px); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: clamp(30px,4vw,60px); padding-bottom: clamp(44px,5vw,68px); border-bottom: 1px solid var(--line); }
.footer .f-brand .crest-mark { width: 70px; height: 70px; margin-bottom: 20px; }
.footer .f-claim { color: var(--muted); font-weight: 300; max-width: 34ch; }
.footer h5 { font-family: var(--ff-sans); font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer .f-col a, .footer .f-col p { display: block; color: var(--cream-text); font-weight: 300; font-size: .92rem; padding: 6px 0; opacity: .82; transition: opacity .3s, color .3s; }
.footer .f-col a:hover { color: var(--gold); opacity: 1; }
.footer .f-contact p { color: var(--muted); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 28px 0 36px; color: var(--muted-2); font-size: .8rem; font-weight: 300; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ==========================================================================
   PAGE HERO
   ========================================================================== */
.page-hero { position: relative; padding-top: clamp(160px,18vw,230px); padding-bottom: clamp(50px,6vw,84px); overflow: hidden; text-align: center; background: var(--green-deep); background-image: var(--pinstripe); }
.page-hero .ph-photo { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; opacity: .44; filter: saturate(.85) brightness(.56) contrast(1.04); }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(ellipse 92% 84% at 50% 34%, rgba(9,22,16,.22), rgba(9,22,16,.74)); }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .crumbs { display: flex; gap: 10px; align-items: center; justify-content: center; color: var(--muted); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 24px; }
.page-hero .crumbs a:hover { color: var(--gold); }
.page-hero h1 { color: var(--ivory); margin-bottom: 20px; }
.page-hero .lead { max-width: 58ch; margin-inline: auto; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--ff-sans); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea { background: var(--green); border: 1px solid var(--line); border-radius: var(--radius); padding: 15px 17px; color: var(--cream-text); font-size: .96rem; font-weight: 300; transition: border-color .3s; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.field textarea { resize: vertical; min-height: 130px; }
.section--cream .field label { color: var(--muted-cream); }
.section--cream .field input, .section--cream .field select, .section--cream .field textarea { background: var(--ivory); border-color: var(--line-cream); color: var(--ink-green); }

/* ==========================================================================
   REVEAL
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-34px); }
[data-reveal="right"] { transform: translateX(34px); }
[data-reveal="scale"] { transform: scale(.96); }
[data-reveal].in { transform: none; }
[data-delay="1"]{transition-delay:.1s}[data-delay="2"]{transition-delay:.2s}[data-delay="3"]{transition-delay:.3s}[data-delay="4"]{transition-delay:.4s}[data-delay="5"]{transition-delay:.5s}[data-delay="6"]{transition-delay:.6s}

.curtain { position: fixed; inset: 0; z-index: 300; background: var(--green-deepest); display: grid; place-items: center; transition: opacity .7s var(--ease), visibility .7s; }
.curtain.done { opacity: 0; visibility: hidden; }
.curtain .crest-mark { width: 110px; height: 110px; animation: breathe 2.4s var(--ease) infinite; }
@keyframes breathe { 0%,100%{ opacity:.6; transform: scale(.98);} 50%{ opacity:1; transform: scale(1);} }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking-main { border-right: none; border-bottom: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-cta .btn { display: none; }
  .split { grid-template-columns: 1fr; }
  .cols-3, .cols-4 { grid-template-columns: repeat(2,1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2){ border-right: none; }
  .stat:nth-child(1),.stat:nth-child(2){ border-bottom: 1px solid var(--line); }
  .gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .court-pick { grid-template-columns: repeat(2,1fr); }
  .stat { border-right: none !important; border-bottom: 1px solid var(--line); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .g-tall { grid-row: span 1; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero h1 .ln > span { transform: none !important; }
}

/* image layers: real graded brand photos as defaults; inline background-image overrides per element */
.feature .fbg, .media-frame .mf-img, .court-card .cc-media .cc-img,
.g-item .g-img, .team-card .tc-img .ti { background-color: var(--green-soft); background-size: cover; background-position: center; }
.feature .fbg { background-image: url(../images/court-green.jpg); }
.media-frame .mf-img { background-image: linear-gradient(rgba(14,39,29,.1), rgba(14,39,29,.34)), url(../images/court-glass.jpg); }
.court-card .cc-media .cc-img { background-image: url(../images/court-glass.jpg); }
.g-item .g-img { background-image: url(../images/court-green.jpg); }
.team-card .tc-img .ti { background-image: linear-gradient(rgba(14,39,29,.16), rgba(14,39,29,.32)), url(../images/player.jpg); background-position: center top; }
.hero-photo, .page-hero .ph-photo { background-color: var(--green-deep); }
