/* =========================================================
   STALLION GYM — Landing Page Rebuild
   Farben: Schwarz (#000, #2A2A2A, #444), Gold (#FFD700, #E2B610), Weiß
   ========================================================= */

:root {
  --black: #000000;
  --dark: #2A2A2A;
  --gray: #444444;
  --light: #F9FAFB;
  --white: #FFFFFF;
  --gold: #FFD700;
  --gold-dark: #E2B610;
  --shadow-sm: 0 1px 2px rgba(17,17,26,0.05);
  --shadow-md: 0 4px 16px rgba(17,17,26,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);
  --radius: 6px;
  --radius-lg: 10px;
  --max-w: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: 8px 14px;
  z-index: 9999;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ============== HEADER ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: var(--black);
  border-bottom: 1px solid rgba(255,215,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.logo {
  height: 44px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--white);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: color .15s ease;
}
.main-nav a:hover { color: var(--gold); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: space-around;
  padding: 8px 4px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
  text-align: center;
  line-height: 1.1;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  padding: 120px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://onecdn.io/media/0838dd9a-e650-40b3-a54e-ab3f5619787a/xlg2x');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eyebrow-pill {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: var(--radius);
  background: rgba(0,0,0,0.2);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(42px, 6.5vw, 84px);
  line-height: 1.05;
  margin: 0 0 28px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}
.hero-time {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  margin: -12px 0 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.hero-desc {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 720px;
  margin: 0 0 40px;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.accent { color: var(--gold); }
.nowrap { white-space: nowrap; }
.hero-cta {
  font-size: 17px;
  padding: 18px 38px;
}

/* ============== SECTIONS ============== */
.section {
  padding: 90px 0;
  background: var(--white);
}
.section-dark {
  background: var(--black);
  color: var(--white);
}
.section-form {
  background: var(--light);
}
.section-dark.section-form {
  background: var(--dark);
}
.section-form {
  padding-bottom: 140px;
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: -.3px;
  line-height: 1.1;
}
.section-head p {
  font-size: 17px;
  color: var(--gray);
  max-width: 680px;
  margin: 0 auto;
}
.section-dark .section-head p { color: #bdbdbd; }
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============== COURSES ============== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.cards-grid > .card { grid-column: span 2; }
.cards-grid > .card:nth-last-child(-n+2) { grid-column: span 3; }
.card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 14px 32px rgba(17,17,26,0.12);
}
.card-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f0f0f0;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.card:hover .card-media img { transform: scale(1.05); }
.card-body {
  padding: 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  color: var(--dark);
}
.card-age {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.card-body h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.3px;
}
.card-body p {
  margin: 0 0 16px;
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.55;
}
.card-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.card-body ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 7px;
  font-size: 13.5px;
  color: var(--dark);
}
.card-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding-top: 14px;
  border-top: 1px solid #ececec;
  transition: gap .2s ease, color .15s ease;
}
.card-link:hover {
  gap: 14px;
  color: var(--black);
}
.card-link span {
  transition: transform .2s ease;
}
.card-link:hover span {
  transform: translateX(3px);
}

/* ============== ZEITPLAN ============== */
.schedule-image {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.schedule-image img {
  width: 100%;
  height: auto;
}

/* ============== ATTRAKTIONEN ============== */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.attraction {
  position: relative;
  text-align: center;
  padding: 44px 28px 36px;
  background: var(--white);
  border: 2px solid #ececec;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.attraction:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.attraction-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,215,0,0.12);
  color: var(--gold-dark);
  border: 2px solid var(--gold);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .35s ease;
}
.attraction-icon svg {
  width: 36px;
  height: 36px;
}
.attraction:hover .attraction-icon {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
  transform: rotate(-6deg) scale(1.06);
}
.attraction h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.2px;
}
.attraction p {
  color: var(--gray);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* ============== FORMULAR ============== */
.signup-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 36px 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: box-shadow .6s ease;
}
.signup-form.is-highlight {
  animation: formPulse 1.6s ease-out;
}
@keyframes formPulse {
  0%   { box-shadow: var(--shadow-md), 0 0 0 0 rgba(255,215,0,0.0); }
  20%  { box-shadow: 0 18px 50px rgba(0,0,0,0.15), 0 0 0 6px rgba(255,215,0,0.45); }
  100% { box-shadow: var(--shadow-md), 0 0 0 0 rgba(255,215,0,0.0); }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: block;
  margin-bottom: 18px;
}
.field > span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark);
  font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,215,0,.25);
}
.phone-group {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
}
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin: 16px 0 0;
}
.form-note a { color: var(--gold-dark); text-decoration: underline; }

/* ============== GALLERY ============== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform .25s ease;
}
.gallery img:nth-child(1) {
  grid-row: 1 / span 2;
  aspect-ratio: auto;
}
.gallery img {
  cursor: zoom-in;
}
.gallery img:hover { transform: scale(1.02); }

/* ============== LIGHTBOX ============== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility 0s linear .25s;
  padding: 40px 80px;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .25s ease;
}
.lightbox-figure {
  position: relative;
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  width: auto;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity .2s ease;
}
.lightbox.is-open .lightbox-image {
  opacity: 1;
}
.lightbox-counter {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.lightbox-close {
  top: 24px;
  right: 24px;
  font-size: 30px;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  font-weight: 700;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.05);
}
body.lightbox-open {
  overflow: hidden;
}
.lightbox-image {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  touch-action: pan-y;
}

@media (max-width: 720px) {
  .lightbox { padding: 12px; }
  .lightbox-image { max-height: calc(100vh - 180px); }
  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  .lightbox-nav {
    width: 48px;
    height: 48px;
    font-size: 28px;
    top: auto;
    bottom: 24px;
    transform: none;
    background: rgba(0,0,0,0.7);
  }
  .lightbox-nav:hover { transform: none; }
  .lightbox-prev { left: 50%; margin-left: -60px; }
  .lightbox-next { right: 50%; margin-right: -60px; }
  .lightbox-counter {
    position: absolute;
    bottom: 84px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.55);
    padding: 4px 12px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
}

/* ============== STANDORT ============== */
.section-location { background: var(--white); }

.location-map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  background: #fafafa;
}
.location-map-frame .map-stage {
  position: relative;
  width: 100%;
  height: 520px;
  background: #fafafa;
}
.location-map-frame .leaflet-container {
  background: #fafafa;
  font-family: inherit;
}
.location-map-frame .leaflet-control-attribution {
  background: rgba(255,255,255,0.85);
  font-size: 10px;
  color: #777;
}
.location-map-frame .leaflet-control-zoom a {
  background: #fff;
  color: #222;
  border: 1px solid #ddd;
}
.location-map-frame .leaflet-control-zoom a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Logo-Marker */
.logo-marker {
  position: relative;
  width: 64px;
  height: 80px;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.30));
}
.logo-marker .badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #000;
  border: 3px solid var(--gold);
  display: block;
  overflow: hidden;
}
.logo-marker .badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logo-marker::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 16px solid var(--gold);
}

/* Floating Info Card */
.location-map-frame .floating-card {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 360px;
  background: var(--white);
  padding: 36px 32px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  border-top: 4px solid var(--gold);
  z-index: 500;
}
.location-map-frame .floating-card .brand {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}
.location-map-frame .floating-card .city {
  font-size: 30px;
  font-weight: 900;
  margin: 4px 0 18px;
  color: var(--black);
}
.location-map-frame .floating-card .address {
  color: var(--gray);
  margin: 0 0 14px;
  line-height: 1.5;
}
.location-map-frame .floating-card .contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  color: var(--dark);
  font-size: 15px;
}
.location-map-frame .floating-card .contact-row svg {
  width: 18px; height: 18px;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.location-map-frame .floating-card .contact-row a:hover { color: var(--gold-dark); }
.location-map-frame .floating-card .btn { width: 100%; margin-top: 18px; }

/* ============== LEGAL PAGES ============== */
.legal-section {
  padding: 64px 0 96px;
}
.legal-container h1 {
  margin: 0 0 32px;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
}
.legal-container h2 {
  margin: 32px 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}
.legal-container p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
}
.legal-container a {
  color: var(--dark);
  text-decoration: underline;
}

/* ============== FOOTER ============== */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 56px 0 72px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-logo {
  height: 140px;
  width: auto;
}
.copyright {
  color: #aaa;
  font-size: 14px;
  margin: 0;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
}
.footer-links a {
  color: var(--white);
  font-size: 14px;
  transition: color .15s ease;
}
.footer-links a:hover { color: var(--gold); }

/* ============== COOKIE BANNER ============== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  color: var(--dark);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  padding: 24px;
  z-index: 9999;
  border: 1px solid #eee;
}
.cookie-inner h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.cookie-inner p {
  font-size: 13px;
  color: var(--gray);
  margin: 0 0 10px;
  line-height: 1.5;
}
.cookie-inner a {
  color: var(--gold-dark);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.cookie-buttons .btn {
  padding: 10px 16px;
  font-size: 13px;
}
.cookie-buttons .btn-ghost { color: var(--dark); border-color: #ccc; }
.cookie-buttons .btn-ghost:hover { border-color: var(--gold); color: var(--gold-dark); }

/* ============== RESPONSIVE ============== */
@media (max-width: 960px) {
  .hero { min-height: 70vh; padding: 80px 0; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid > .card,
  .cards-grid > .card:nth-last-child(-n+2) { grid-column: span 1; }
  .attractions-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .location-map-frame .map-stage { height: 340px; }
  .location-map-frame .floating-card {
    position: static;
    transform: none;
    width: auto;
    margin: 0;
    padding: 28px 26px 30px;
    border-radius: 0;
    box-shadow: none;
  }
  .location-map-frame .floating-card .city {
    font-size: 28px;
    margin-bottom: 14px;
  }
  .section { padding: 64px 0; }
}

@media (max-width: 720px) {
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 18px 24px;
  }
  .main-nav.open ul {
    flex-direction: column;
    gap: 14px;
  }
  .cards-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .location-map-frame .map-stage { height: 280px; }
  .location-map-frame .floating-card { padding: 22px 20px 26px; }
  .location-map-frame .floating-card .city { font-size: 24px; }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 12px;
  }
  .gallery img {
    aspect-ratio: 1/1;
    grid-row: auto;
  }
  .gallery img:nth-child(1) {
    grid-column: 1 / -1;
    aspect-ratio: 16/10;
  }
  .signup-form { padding: 24px; }
}

/* =========================================================
   COOKIE BANNER (kosmetisch)
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  background: var(--dark);
  color: var(--white);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  margin: 0;
  flex: 1 1 320px;
  font-size: 14px;
  line-height: 1.5;
}
.cookie-banner-text a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-banner-text a:hover { color: var(--gold-dark); }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  padding: 10px 18px;
  font-size: 14px;
}
.cookie-banner .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.cookie-banner .btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: transparent;
}
@media (max-width: 640px) {
  .cookie-banner { padding: 16px; }
  .cookie-banner-inner { gap: 14px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner .cookie-btn { flex: 1; }
}
