﻿/* ============================================================
   ROYAL BOXEN WIEN — style.css  v3  PREMIUM EDITION
   Fonts: Playfair Display (headings) + Inter (body) — lokal in /fonts/
   ============================================================ */

@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --bg-primary:    #060606;
  --bg-secondary:  #0d0d0d;
  --bg-card:       #111111;
  --bg-elevated:   #181818;

  --gold:          #C9A14A;
  --gold-light:    #E6C873;
  --gold-dark:     #9A7B2E;
  --gold-pale:     rgba(201,161,74,.08);
  --gold-grad:     linear-gradient(135deg, #9A7B2E 0%, #C9A14A 45%, #E6C873 100%);
  --gold-grad-h:   linear-gradient(135deg, #E6C873 0%, #C9A14A 55%, #9A7B2E 100%);
  --gold-grad-v:   linear-gradient(180deg, #9A7B2E 0%, #C9A14A 50%, #E6C873 100%);

  --text-primary:  #FFFFFF;
  --text-secondary:#C0C0C0;
  --text-muted:    #666666;

  --border:        rgba(201,161,74,.14);
  --border-strong: rgba(201,161,74,.36);
  --border-glass:  rgba(201,161,74,.1);

  --shadow-sm:  0 4px 16px rgba(0,0,0,.5);
  --shadow-md:  0 12px 40px rgba(0,0,0,.6);
  --shadow-lg:  0 24px 72px rgba(0,0,0,.75);
  --shadow-gold: 0 0 60px rgba(201,161,74,.15), 0 0 120px rgba(201,161,74,.06);
  --shadow-gold-strong: 0 0 40px rgba(201,161,74,.35);

  --radius:    2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  --transition: .25s ease;
  --transition-slow: .55s ease;
  --container:  1280px;
  --header-h:   76px;

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Grain texture overlay ───────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .025;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* ── Skip Nav ────────────────────────────────────────────── */
.skip-nav {
  position: absolute; top: -100px; left: 1rem; z-index: 10000;
  padding: .75rem 1.5rem;
  background: var(--gold); color: #000;
  font-family: var(--font-body); font-weight: 600; font-size: .85rem;
  letter-spacing: .06em; text-transform: uppercase;
  transition: top var(--transition);
}
.skip-nav:focus { top: 1rem; }

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: 1.5rem;
}
@media (min-width: 768px)  { .container { padding-inline: 2.5rem; } }
@media (min-width: 1280px) { .container { padding-inline: 3rem; } }

/* ── Typography ──────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.8rem); }
h4 { font-size: clamp(1rem, 1.3vw, 1.2rem); }
p  { font-size: clamp(.92rem, 1.1vw, 1.05rem); line-height: 1.8; font-weight: 400; }

.text-gold       { color: var(--gold); }
.text-secondary  { color: var(--text-secondary); }
.text-center     { text-align: center; }

/* ── Section Label ───────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--gold-grad);
  flex-shrink: 0;
}
.section-head.centered .section-label::before { display: none; }

/* ── Gold Shimmer keyframes ──────────────────────────────── */
@keyframes shimmer-sweep {
  0%   { left: -60%; opacity: 0; }
  10%  { opacity: 1; }
  40%  { left: 120%; opacity: 1; }
  41%  { opacity: 0; }
  100% { left: 120%; opacity: 0; }
}
@keyframes gold-pulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.08); }
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}
@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.04); }
}
@keyframes title-reveal {
  0%   { opacity: 0; transform: translateY(30px) skewY(2deg); }
  100% { opacity: 1; transform: translateY(0) skewY(0); }
}
@keyframes border-glow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(201,161,74,.12); }
  50%       { box-shadow: 0 0 0 1px rgba(201,161,74,.35), 0 0 20px rgba(201,161,74,.08); }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 2.25rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  min-height: 50px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold-grad);
  color: #000;
  border: none;
  box-shadow: 0 4px 20px rgba(201,161,74,.25);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 35%;
  height: 200%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.3) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: shimmer-sweep 4.5s ease-in-out infinite;
  pointer-events: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--gold-grad-h);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201,161,74,.5);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,161,74,.45);
}
.btn-outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-grad);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-outline:hover, .btn-outline:focus-visible {
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(201,161,74,.3);
}
.btn-outline:hover::after,
.btn-outline:focus-visible::after { opacity: 1; }
.btn-outline span, .btn-outline svg { position: relative; z-index: 1; }
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,.12);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
  color: var(--text-primary);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; position: relative; z-index: 1; }
.btn span { position: relative; z-index: 1; }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── HEADER / NAV ─── ALWAYS BURGER ─────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6,6,6,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
  transition: filter var(--transition);
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 12px rgba(201,161,74,.5));
}
.nav-logo:focus-visible { outline: 2px solid var(--gold); }

/* Nav links: ALWAYS HIDDEN — burger on all breakpoints */
.nav-links { display: none !important; }

/* CTA: hidden on small screens, visible on tablet+ */
.nav-cta {
  display: none;
  padding: .65rem 1.5rem;
  font-size: .72rem;
  min-height: 42px;
  margin-left: auto;
}
@media (min-width: 640px) { .nav-cta { display: inline-flex; } }

/* Hamburger — ALWAYS SHOWN */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: .6rem;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle span:nth-child(2) {
  width: 16px;
  background: var(--gold);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); width: 24px; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav-toggle:focus-visible { outline: 2px solid var(--gold); }

/* ── Mobile / Full-Screen Nav ────────────────────────────── */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6,6,6,.98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 3rem;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.77,0,.175,1);
  overflow: hidden;
}
/* Ambient orb inside nav */
.nav-mobile::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,161,74,.06) 0%, transparent 65%);
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile ul { display: flex; flex-direction: column; gap: 0; width: 100%; }
.nav-mobile a {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 3.5vw, 1.65rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: rgba(255,255,255,.25);
  transition: color var(--transition), transform var(--transition);
  display: block;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(201,161,74,.08);
  width: 100%;
  position: relative;
}
.nav-mobile li:first-child a { border-top: 1px solid rgba(201,161,74,.08); }
.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--text-primary);
  transform: translateX(8px);
}
.nav-mobile a.active { color: var(--gold); }
.nav-mobile-index {
  display: none;
  position: absolute;
  top: 5rem;
  left: 3rem;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── HERO SECTION ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.08); /* room for parallax */
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(6,6,6,.8) 0%, rgba(6,6,6,.3) 50%, rgba(6,6,6,.1) 100%),
    linear-gradient(to top, rgba(6,6,6,.95) 0%, rgba(6,6,6,.4) 35%, rgba(6,6,6,.05) 70%);
  z-index: 1;
}
/* Bottom gold shimmer line on hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  opacity: .4;
  z-index: 3;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 4rem) 0 7rem;
  max-width: 820px;
}
/* Hero Logo Badge */
.hero-logo-badge {
  margin-bottom: 3rem;
  display: inline-block;
}
.hero-logo-badge img {
  height: 72px;
  width: auto;
  filter:
    drop-shadow(0 0 24px rgba(201,161,74,.5))
    drop-shadow(0 0 60px rgba(201,161,74,.2))
    drop-shadow(0 3px 10px rgba(0,0,0,.6));
  transition: filter .4s ease;
  animation: gold-pulse 4s ease-in-out infinite;
}
@media (min-width: 768px) { .hero-logo-badge img { height: 88px; } }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .85rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-grad);
  flex-shrink: 0;
}
.hero h1 {
  color: var(--text-primary);
  margin-bottom: 1.75rem;
  line-height: 1;
  letter-spacing: -.03em;
}
.hero h1 span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 2.75rem;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 3.5rem;
}
.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.hero-bullet::before {
  content: '';
  width: 3px; height: 3px;
  background: var(--gold);
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(201,161,74,.8);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.25);
  font-family: var(--font-body);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

/* ── SECTION BASE ────────────────────────────────────────── */
.section    { padding: 7rem 0; position: relative; overflow: hidden; }
.section-sm { padding: 4.5rem 0; position: relative; overflow: hidden; }
.section-lg { padding: 9rem 0; position: relative; overflow: hidden; }
.section-dark  { background: var(--bg-secondary); }
.section-card  { background: var(--bg-card); }

/* Ambient gold orbs per section */
.section:not(.section-dark)::before {
  content: '';
  position: absolute;
  left: -15%;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,161,74,.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.section-dark::before {
  content: '';
  position: absolute;
  right: -15%;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,161,74,.055) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.section > .container,
.section-sm > .container,
.section-lg > .container { position: relative; z-index: 1; }

.section-head { max-width: 700px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered .section-label { justify-content: center; }
.section-head h2 { margin-bottom: .85rem; }
.section-head p  { color: var(--text-secondary); }

/* Divider — animated gold */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold-grad);
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
}
.divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  animation: shimmer-sweep 3s ease-in-out infinite;
}
.divider.centered { margin-inline: auto; }

/* ── SPLIT SECTION ───────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse .split-img { order: -1; }
}
@media (min-width: 1024px) { .split { gap: 6rem; } }

.split-img {
  position: relative;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .9s ease;
  display: block;
}
.split-img:hover img { transform: scale(1.04); }

/* Gold corner accents */
.split-img::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 48px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  z-index: 2;
  pointer-events: none;
  transition: width .4s ease, height .4s ease;
}
.split-img::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 48px; height: 48px;
  border-bottom: 1px solid rgba(201,161,74,.5);
  border-right: 1px solid rgba(201,161,74,.5);
  z-index: 2;
  pointer-events: none;
}
.split-img:hover::before { width: 72px; height: 72px; }

/* Subtle gradient overlay on images */
.split-img .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,161,74,.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.split-text h2 { margin-bottom: 1.1rem; }
.split-text p  { color: var(--text-secondary); margin-bottom: 1.75rem; }
.split-text .btn { margin-top: .5rem; }

/* ── GOLD CIRCLE BULLET ──────────────────────────────────── */
@keyframes gold-shimmer-circle {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── CHECK LIST ──────────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2.25rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: .97rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.6;
}
.check-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9A7B2E 0%, #E6C873 30%, #C9A14A 55%, #E6C873 75%, #9A7B2E 100%);
  background-size: 300% 300%;
  animation: gold-shimmer-circle 4s ease infinite;
  color: #000;
  font-size: 11px;
  font-weight: 900;
  font-family: var(--font-body);
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 10px rgba(201,161,74,.35);
}

/* Bullet list */
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: .97rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.bullet-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9A7B2E 0%, #E6C873 30%, #C9A14A 55%, #E6C873 75%, #9A7B2E 100%);
  background-size: 300% 300%;
  animation: gold-shimmer-circle 4s ease infinite;
  color: #000;
  font-size: 11px;
  font-weight: 900;
  font-family: var(--font-body);
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 10px rgba(201,161,74,.35);
}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  grid-auto-rows: 220px;
}
@media (min-width: 600px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 4px; grid-auto-rows: 260px; } }

.gallery-item {
  overflow: hidden;
  background: var(--bg-card);
  position: relative;
  cursor: pointer;
}
.gallery-item.tall  { grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,161,74,.02) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}
/* Bottom border glow on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
  z-index: 3;
}
.gallery-item:hover::after { transform: scaleX(1); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .5s ease;
  position: relative;
  z-index: 1;
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.05);
}
/* Image overlay on hover */
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 2;
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Placeholder */
.gallery-ph {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  background:
    radial-gradient(ellipse at center, rgba(201,161,74,.04) 0%, transparent 65%),
    linear-gradient(135deg, rgba(255,255,255,.015) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.015) 75%) 0 0 / 20px 20px;
}
.gallery-ph svg { width: 24px; height: 24px; opacity: .25; color: var(--gold); }
.gallery-ph span {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .2;
}

/* ── GALLERY CAROUSEL ────────────────────────────────────── */
.gallery-carousel {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.gallery-carousel-track {
  display: flex;
  gap: 4px;
  width: max-content;
  animation: galleryScroll 32s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .gallery-carousel-track { animation: none; }
}
@keyframes galleryScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.gallery-carousel .gallery-item {
  flex: 0 0 calc(25vw - 4px);
  max-width: 380px;
  min-width: 180px;
  height: 260px;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .gallery-carousel .gallery-item { height: 300px; } }
@media (max-width: 640px)  { .gallery-carousel .gallery-item { flex: 0 0 calc(50vw - 4px); height: 220px; } }
@media (max-width: 400px)  { .gallery-carousel .gallery-item { flex: 0 0 calc(75vw - 4px); height: 200px; } }

/* ── BENTO GRID ──────────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 600px)  { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bento-grid { grid-template-columns: repeat(4, 1fr); } }

.bento-card {
  position: relative;
  background: var(--bg-card);
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
/* Glass effect */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}
.bento-card:hover { background: var(--bg-elevated); }
.bento-card:hover::before { opacity: 1; }

.bento-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.bento-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
}
.bento-card:hover .bento-img img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* Gold line animation top of image on hover */
.bento-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
  z-index: 2;
}
.bento-card:hover .bento-img::after { transform: scaleX(1); }

.bento-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: none;
  position: relative;
}
.bento-body h3 {
  font-size: 1.15rem;
  margin-bottom: .55rem;
  font-weight: 700;
}
.bento-body p {
  font-size: .88rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.bento-body .btn { align-self: flex-start; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 640px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); } }

.testimonial-card {
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: background var(--transition);
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(201,161,74,.5), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 3;
}
.testimonial-card:hover { background: var(--bg-elevated); }
.testimonial-card:hover::before { opacity: 1; }

/* Image fills top of card */
.testimonial-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.testimonial-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .6s ease;
}
.testimonial-card:hover .testimonial-img-wrap img { transform: scale(1.04); }

/* Content below image */
.testimonial-body {
  padding: 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.testimonial-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .2rem;
}
.testimonial-role {
  font-size: .68rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.testimonial-quote {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  font-weight: 400;
  flex: 1;
  position: relative;
}
.testimonials-cta { text-align: center; margin-top: 2.75rem; }

/* ── QUOTE SLIDER ────────────────────────────────────────── */
.quote-section {
  padding: 5rem 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: clip;
  text-align: center;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,161,74,.05) 0%, transparent 65%);
  pointer-events: none;
}
.quote-section .container { position: relative; z-index: 1; }
/* ── Quote Slider ────────────────────────────────────────── */
.quote-slider-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 900px;
  margin-inline: auto;
}
.quote-arrow {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(201,161,74,.06);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  padding: 0;
  user-select: none;
}
.quote-arrow:hover {
  background: rgba(201,161,74,.15);
  border-color: var(--gold);
  transform: scale(1.08);
}
.quote-arrow svg { width: 22px; height: 22px; stroke-width: 2; }
.quote-track-wrap {
  flex: 1;
  overflow: hidden;
  cursor: grab;
}
.quote-track-wrap.dragging { cursor: grabbing; }
.quote-track {
  display: flex;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.quote-slide {
  flex: 0 0 100%;
  padding: 0 .5rem;
}
.quote-slide blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.85;
  padding: 0;
  text-align: center;
}
.quote-slide blockquote::before {
  content: '\201C';
  display: block;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: .4rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .8;
}
.quote-dots {
  display: flex;
  justify-content: center;
  gap: .65rem;
  margin-top: 2rem;
}
.quote-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,161,74,.25);
  border: 1px solid rgba(201,161,74,.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.quote-dot.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(201,161,74,.6);
}
@media (max-width: 600px) {
  .quote-arrow { width: 40px; height: 40px; }
  .quote-arrow svg { width: 18px; height: 18px; }
}

/* ── VIDEO LIGHTBOX ──────────────────────────────────────── */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9900;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.video-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
/* Gold line top */
.video-lightbox::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  opacity: .5;
}
.video-lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 420px;
  animation: quoteIn .35s ease both;
}
.video-lightbox video {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  background: #000;
  border: 1px solid rgba(201,161,74,.25);
  box-shadow: 0 0 60px rgba(201,161,74,.12), 0 24px 80px rgba(0,0,0,.8);
}
.video-lightbox-info {
  margin-top: 1.1rem;
  text-align: center;
}
.video-lightbox-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .2rem;
}
.video-lightbox-role {
  font-size: .7rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.video-lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,161,74,.3);
  background: rgba(6,6,6,.7);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  font-size: 1.1rem;
  line-height: 1;
}
.video-lightbox-close:hover {
  border-color: var(--gold);
  color: var(--text-primary);
  background: rgba(201,161,74,.1);
}
.video-lightbox-close:focus-visible { outline: 2px solid var(--gold); }

/* ── TESTIMONIAL VIDEO PAGE ──────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.video-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-grad);
  z-index: 2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.video-card:hover::before { transform: scaleX(1); }

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}
.video-wrap video,
.video-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}
/* Play button overlay */
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,6,6,.35);
  transition: background var(--transition), opacity var(--transition);
  z-index: 2;
}
.video-play-btn:hover { background: rgba(6,6,6,.2); }
.video-play-btn svg {
  width: 64px; height: 64px;
  filter: drop-shadow(0 0 20px rgba(201,161,74,.7));
  transition: transform .3s ease;
}
.video-wrap:hover .video-play-btn svg { transform: scale(1.1); }
/* Hide play btn when playing */
.video-wrap.playing .video-play-btn { opacity: 0; pointer-events: none; }

.video-info {
  padding: 1.35rem 1.5rem;
  border-top: 1px solid var(--border);
}
.video-person-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .25rem;
}
.video-person-role {
  font-size: .72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── TRAINER SECTION ─────────────────────────────────────── */
.trainer-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  position: relative;
}
.trainer-images::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 60px; height: 60px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}
.trainer-images img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 2/3;
  display: block;
  transition: filter .5s ease;
}
.trainer-images img:hover { filter: brightness(1.05); }

.trainer-text h2 { margin-bottom: .75rem; }
.trainer-text h3 {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 2rem 0 .6rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.trainer-text h3::before {
  content: '';
  display: inline-block;
  width: 16px; height: 1px;
  background: var(--gold-grad);
}
.trainer-text p { color: var(--text-secondary); margin-bottom: 1rem; }

.trainer-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
/* Subtle gold background for stats */
.trainer-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,161,74,.04) 0%, transparent 65%);
  pointer-events: none;
}
.trainer-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .25rem;
  padding: 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  position: relative;
}
.trainer-stat-item:hover {
  background: rgba(201,161,74,.03);
}
.trainer-stat-item:nth-child(even) { border-right: none; }
.trainer-stat-item:nth-child(n+3) { border-bottom: none; }
.trainer-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.trainer-stat-label {
  font-size: .68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}

/* ── LOCATION ────────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media (min-width: 768px) { .location-grid { grid-template-columns: 2fr 1fr; } }
.location-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 320px;
  display: block;
  transition: filter .5s ease;
}
.location-img-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 160px;
  display: block;
  transition: filter .5s ease;
}
.location-img-main:hover img,
.location-img-side:hover img { filter: brightness(1.06); }
.location-text { margin-top: 2.75rem; }
.location-text p { color: var(--text-secondary); margin-bottom: 2rem; }
.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.location-detail {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: .04em;
}
.location-detail svg { color: var(--gold); flex-shrink: 0; }

/* ── FINAL CTA ───────────────────────────────────────────── */
.final-cta {
  position: relative;
  padding: 9rem 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 110%, rgba(201,161,74,.18) 0%, rgba(201,161,74,.05) 40%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201,161,74,.06) 0%, transparent 55%);
  pointer-events: none;
}
.final-cta-border { display: none; }
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.final-cta h2 span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.final-cta p {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 2.75rem;
}
.final-cta .btn { font-size: .82rem; padding: 1.1rem 3.25rem; }

/* Decorative gold line at top of CTA */
.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300px;
  background: radial-gradient(ellipse at 50% -20%, rgba(201,161,74,.06) 0%, transparent 60%);
  pointer-events: none;
}
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1rem;
}
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-social-links a:hover { color: var(--gold); }
.footer-social-links svg { color: var(--gold); flex-shrink: 0; }
.footer-partner {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.footer-partner-label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-partner-logos a {
  display: block;
  opacity: .65;
  transition: opacity var(--transition);
}
.footer-partner-logos a:hover { opacity: 1; }
.footer-partner-logos img {
  height: 38px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 3.5rem; } }

.footer-logo { height: 56px; width: auto; margin-bottom: 1.5rem; }
.footer-tagline {
  font-size: .88rem;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .85rem;
  color: var(--text-muted);
  transition: color var(--transition);
  margin-bottom: .65rem;
}
.footer-contact a:hover { color: var(--text-primary); }
.footer-contact svg { color: var(--gold); flex-shrink: 0; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul li { margin-bottom: .7rem; }
.footer-col ul a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.footer-col ul a:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}
.footer-col a:focus-visible { outline: 2px solid var(--gold); border-radius: 1px; }

/* Cookie settings button in footer */
.btn-cookie {
  background: transparent; border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .88rem;
  cursor: pointer; padding: 0;
  transition: color var(--transition);
  text-align: left;
}
.btn-cookie:hover { color: var(--text-primary); }
.btn-cookie:focus-visible { outline: 2px solid var(--gold); }

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copy  { font-size: .75rem; color: var(--text-muted); }
.footer-credit { font-size: .75rem; color: var(--text-muted); }
.footer-credit a {
  color: var(--gold); font-weight: 700;
  transition: color var(--transition);
}
.footer-credit a:hover { color: var(--gold-light); }

/* ── PAGE HERO (Unterseiten) ─────────────────────────────── */
.page-hero { background: var(--bg-secondary); }
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 6rem) 0 6rem;
  overflow: hidden;
  min-height: 52vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: #0d0d0d;
  z-index: 0;
  transform: scale(1.06); /* parallax room */
  will-change: transform;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(6,6,6,.85) 0%, rgba(6,6,6,.5) 55%, rgba(6,6,6,.15) 100%),
    linear-gradient(to top, rgba(6,6,6,.9) 0%, rgba(6,6,6,.3) 50%, transparent 80%);
  z-index: 1;
}
/* Gold shimmer bottom line on page-hero */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 10%, var(--gold) 40%, var(--gold-light) 50%, var(--gold) 60%, transparent 90%);
  z-index: 3;
  opacity: .5;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: .85rem; }
.page-hero h1 span.text-gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2.25rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-size: .72rem;
  font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.breadcrumb a { color: var(--gold); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: var(--text-muted); opacity: .4; }

/* ── CONTENT PAGE ────────────────────────────────────────── */
.content-page { padding: 4rem 0 6rem; }
.content-page h1 { font-size: clamp(2rem, 3.2vw, 3rem); }
.content-page h2 {
  font-size: 1.3rem; color: var(--gold);
  margin: 2.75rem 0 .85rem;
  font-weight: 700; letter-spacing: -.01em;
}
.content-page h3 {
  font-size: 1rem; color: var(--text-primary);
  margin: 2rem 0 .55rem; letter-spacing: .02em;
}
.content-page p { color: var(--text-secondary); margin-bottom: 1.1rem; }
.content-page a {
  color: var(--gold); text-decoration: underline;
  text-underline-offset: 3px; transition: color var(--transition);
}
.content-page a:hover { color: var(--gold-light); }
.content-page ul { margin-bottom: 1rem; padding-left: 1.25rem; }
.content-page ul li { color: var(--text-secondary); margin-bottom: .4rem; list-style: disc; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 1px; }
.faq-item {
  background: var(--bg-card);
  overflow: hidden;
  transition: background var(--transition);
  border: 1px solid var(--border);
  border-top: none;
  position: relative;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.faq-item:hover { background: var(--bg-elevated); }
.faq-item.open { background: var(--bg-elevated); }
.faq-item.open::before { opacity: 1; }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 1.75rem;
  text-align: left;
  font-family: var(--font-body); font-size: .9rem;
  font-weight: 600; letter-spacing: .03em;
  color: var(--text-primary); transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 18px; height: 18px;
  color: var(--gold); flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .45s ease, padding .45s ease;
}
.faq-item.open .faq-answer { max-height: 320px; }
.faq-answer p {
  padding: 0 1.75rem 1.5rem;
  font-size: .9rem; color: var(--text-secondary);
}
.faq-question:focus-visible { outline: 2px solid var(--gold); }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stats-grid > * {
  padding: 2.75rem 1.5rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--transition);
}
.stats-grid > *:hover { background: rgba(201,161,74,.03); }
.stats-grid > *:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label {
  font-family: var(--font-body); font-size: .68rem;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: .16em; font-weight: 600;
}

/* ── FEATURE HIGHLIGHT ───────────────────────────────────── */
.feature-row {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; padding: 3rem 0;
  border-bottom: 1px solid var(--border); align-items: center;
}
.feature-row:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .feature-row { grid-template-columns: 1fr 2fr; }
  .feature-row.alt { grid-template-columns: 2fr 1fr; }
  .feature-row.alt .feature-img { order: 2; }
}
.feature-img img { width: 100%; object-fit: cover; max-height: 360px; }
.feature-text h3 { color: var(--gold); margin-bottom: .85rem; font-size: 1.55rem; }
.feature-text p  { color: var(--text-secondary); margin-bottom: 1.35rem; }

/* ── 404 ─────────────────────────────────────────────────── */
.error-page {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  position: relative; overflow: hidden;
}
.error-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201,161,74,.07) 0%, transparent 60%);
  pointer-events: none;
}
.error-num {
  font-family: var(--font-head);
  font-size: clamp(7rem, 18vw, 12rem);
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .25rem;
  opacity: .12;
}
.error-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; margin-top: -3.5rem; position: relative; }
.error-sub { color: var(--text-secondary); max-width: 420px; margin-inline: auto; margin-bottom: 2.75rem; }
.error-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── COOKIE CONSENT ──────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(17,17,17,.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1rem;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--container); margin-inline: auto;
  display: flex; flex-wrap: wrap;
  align-items: flex-start; justify-content: space-between; gap: 1rem;
}
.cookie-text { flex: 1 1 220px; }
.cookie-text h3 {
  font-family: var(--font-head); font-size: 1.1rem;
  font-weight: 700; margin-bottom: .35rem;
}
.cookie-text p  { font-size: .82rem; color: var(--text-muted); }
.cookie-text a  { color: var(--gold); text-underline-offset: 3px; text-decoration: underline; }
.cookie-actions {
  display: flex; flex-wrap: wrap; gap: .5rem;
  align-items: center; flex-shrink: 0;
}
.cookie-actions .btn { min-height: 40px; padding: .5rem 1.1rem; font-size: .76rem; }

@media (max-width: 599px) {
  #cookie-banner { padding: 1rem; }
  .cookie-inner { flex-direction: column; gap: .85rem; }
  .cookie-text { flex: none; width: 100%; }
  .cookie-actions { width: 100%; flex-direction: column; }
  .cookie-actions .btn { width: 100%; justify-content: center; }
}

#cookie-modal {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
#cookie-modal.open { opacity: 1; pointer-events: all; }
.cookie-modal-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  padding: 2rem;
  max-width: 540px; width: 100%;
  max-height: 90dvh; overflow-y: auto;
  position: relative;
}
@media (max-width: 479px) {
  .cookie-modal-box { padding: 1.4rem 1.1rem; }
  .cookie-modal-box h2 { font-size: 1.4rem; }
}
.cookie-modal-box::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.cookie-modal-box h2 { font-size: 1.9rem; margin-bottom: .6rem; font-weight: 700; }
.cookie-modal-box > p { font-size: .88rem; color: var(--text-muted); margin-bottom: 2.25rem; }
.cookie-category {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.cookie-category:last-of-type { border-bottom: none; margin-bottom: 2rem; }
.cookie-cat-info h4 {
  font-family: var(--font-body); font-size: .85rem;
  font-weight: 600; margin-bottom: .25rem;
  text-transform: uppercase; letter-spacing: .06em;
}
.cookie-cat-info p { font-size: .8rem; color: var(--text-muted); }
.toggle-wrap { position: relative; flex-shrink: 0; }
.toggle-wrap input { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle-label {
  display: block; width: 46px; height: 26px;
  background: var(--text-muted); border-radius: 13px;
  cursor: pointer; position: relative; transition: background var(--transition);
}
.toggle-label::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; background: #fff;
  border-radius: 50%; transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.toggle-wrap input:checked + .toggle-label { background: var(--gold); }
.toggle-wrap input:checked + .toggle-label::after { transform: translateX(20px); }
.toggle-wrap input:disabled + .toggle-label { opacity: .35; cursor: not-allowed; }
.toggle-wrap input:focus-visible + .toggle-label { outline: 2px solid var(--gold); outline-offset: 2px; }
.cookie-modal-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* ── FORM ────────────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1.35rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.35rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label {
  font-family: var(--font-body); font-size: .68rem;
  font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-muted);
}
.form-group label .req { color: var(--gold); margin-left: .15em; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding: .9rem 1.1rem;
  color: var(--text-primary);
  font-size: .95rem; font-weight: 400;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  width: 100%; border-radius: 0; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--border);
  border-bottom-color: var(--gold);
  background: rgba(255,255,255,.05);
  box-shadow: 0 4px 20px rgba(201,161,74,.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-check, .form-consent {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .86rem; color: var(--text-muted); line-height: 1.65;
}
.form-check input[type="checkbox"],
.form-consent input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: .2rem; accent-color: var(--gold); cursor: pointer;
}
.form-check a, .form-consent a {
  color: var(--gold); text-decoration: underline; text-underline-offset: 2px;
}
.form-submit-wrap { display: flex; align-items: center; flex-wrap: wrap; gap: 1.35rem; }
#form-feedback {
  font-size: .88rem; padding: .6rem 1.1rem; display: none; border-left: 2px solid;
}
#form-feedback.success {
  display: block; border-color: #4ade80;
  background: rgba(74,222,128,.08); color: #4ade80;
}
#form-feedback.error {
  display: block; border-color: var(--gold);
  background: rgba(201,161,74,.08); color: var(--gold-light);
}
.recaptcha-wrap { transform: scale(.9); transform-origin: left top; }

/* Contact info list */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4.5rem; align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }
.contact-info-list {
  list-style: none; padding: 0; margin: 2.5rem 0 0;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.contact-info-item {
  display: flex; align-items: center; gap: 1rem;
  font-size: .92rem; color: var(--text-secondary); font-weight: 500;
}
.contact-info-item svg { flex-shrink: 0; color: var(--gold); }
.contact-info-item a {
  color: var(--text-secondary); text-decoration: none;
  transition: color var(--transition);
}
.contact-info-item a:hover { color: var(--text-primary); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: calc(var(--stagger, 0) * 0.1s);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: calc(var(--stagger, 0) * 0.1s);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: calc(var(--stagger, 0) * 0.1s);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.fade-scale {
  opacity: 0;
  transform: scale(.95);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: calc(var(--stagger, 0) * 0.1s);
}
.fade-scale.visible { opacity: 1; transform: scale(1); }

/* ── UTILITIES ───────────────────────────────────────────── */
.mt-1 { margin-top: .5rem; }  .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 1rem; } .mb-4 { margin-bottom: 2.5rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .section    { padding: 5rem 0; }
  .section-lg { padding: 6rem 0; }
  .final-cta  { padding: 6rem 0; }
  .split      { gap: 2.5rem; }
  .stats-grid > * {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stats-grid > *:last-child { border-bottom: none; }
  .trainer-stat-item:nth-child(even) { border-right: 1px solid var(--border); }
  .nav-mobile { padding: 4rem 2rem; }
  .nav-mobile a { font-size: clamp(1rem, 5vw, 1.5rem); }
}

@media (max-width: 599px) {
  /* ── Buttons: nie seitwärts raus ── */
  .btn { max-width: 100%; }

  /* Hero: Buttons stapeln, zentriert */
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn { justify-content: center; }

  /* Page-Hero (Unterseiten): Button voll breit */
  .page-hero .container .btn {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  /* Split-Sections: Button voll breit */
  .split-text .btn {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  /* Final CTA: Button voll breit, padding reduzieren */
  .final-cta .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-inline: 1.5rem;
  }

  /* Bento-Cards */
  .bento-body .btn {
    align-self: stretch;
    justify-content: center;
  }

  /* FAQ / Kontakt / sonstige alleinstehende Buttons */
  .section .container > .btn,
  .section-dark .container > .btn {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 479px) {
  .hero-logo-badge img { height: 56px; }

  /* Page-Hero padding kompakter */
  .page-hero { padding: calc(var(--header-h) + 3.5rem) 0 3.5rem; }

  /* Sections etwas kompakter */
  .section    { padding: 4rem 0; }
  .section-lg { padding: 5rem 0; }
  .final-cta  { padding: 5rem 0; }

  /* Trainer-Stats: 1 Spalte */
  .trainer-stats { grid-template-columns: 1fr; }
  .trainer-stat-item { border-right: none; }

  /* Gallery: 1 Spalte auf sehr kleinen Screens */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}


/* ── TEXT TESTIMONIALS ───────────────────────────────────── */
.text-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .text-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
.text-tcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background var(--transition);
}
.text-tcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-grad);
  opacity: 0;
  transition: opacity var(--transition);
}
.text-tcard:hover { background: var(--bg-elevated); }
.text-tcard:hover::before { opacity: 1; }
.text-tcard-quote {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 3.5rem;
  line-height: .8;
  opacity: .4;
  margin-bottom: .5rem;
  user-select: none;
}
.text-tcard-text {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.25rem;
}
.text-tcard-name {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  padding-top: .9rem;
}

/* ── PAGE LOADER ─────────────────────────────────────────── */
@keyframes pl-logo-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.4s ease;
}
#page-loader.pl-done {
  opacity: 0;
  pointer-events: none;
}
#page-loader img {
  width: 90px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(72%) sepia(51%) saturate(420%) hue-rotate(5deg) brightness(95%) contrast(90%);
  animation: pl-logo-in 0.6s ease forwards;
}
@media (prefers-reduced-motion: reduce) {
  #page-loader img { animation: none; opacity: 1; }
  #page-loader { transition-duration: .01ms; }
}