/* FC Meilen Fussball Camp — White background + black cards/header/footer
   Theme: Black / White / Yellow (#f2b823)
*/

:root{
  --yellow:#f2b823;

  /* Light page */
  --page:#ffffff;
  --page2:#f6f7fb;
  --text:#0a0a0a;
  --muted:rgba(10,10,10,.70);
  --muted2:rgba(10,10,10,.55);

  /* Dark surfaces */
  --black:#050505;
  --black2:#0b0b0b;
  --card:#0b0b0b;            /* cards are black */
  --card2:#0f0f0f;
  --stroke:rgba(255,255,255,.14);   /* borders on dark cards */
  --strokeLight:rgba(10,10,10,.12); /* borders on light surfaces */

  --shadow: 0 18px 60px rgba(0,0,0,.18);
  --shadowDark: 0 22px 70px rgba(0,0,0,.55);

  --radius:22px;
  --radius2:30px;
  --container:1180px;

  --glow: 0 0 0.75rem rgba(242,184,35,.35), 0 0 2.5rem rgba(242,184,35,.18);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  background:
    /* glow overlays */
    radial-gradient(1200px 720px at 85% 0%, rgba(242,184,35,.12), transparent 55%),
    radial-gradient(900px 520px at 10% 22%, rgba(10,10,10,.06), transparent 60%),

    /* background image */
    url("/assets/ball.jpg"),

    /* fallback base */
    linear-gradient(180deg, var(--page), var(--page2));

  background-size:
    auto,
    auto,
    cover,
    auto;

  background-position:
    center,
    center,
    center,
    center;

  background-repeat:
    no-repeat,
    no-repeat,
    no-repeat,
    no-repeat;

  background-attachment:
    scroll,
    scroll,
    fixed,
    scroll;

  color:var(--text);
  overflow-x:hidden;
}

/* subtle noise, works on light background */
.bg-noise:before{
  content:"";
  position:fixed;
  inset:-20%;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='190' height='190'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='190' height='190' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  pointer-events:none;
  mix-blend-mode:multiply;
  opacity:.12;
  transform:rotate(4deg);
  z-index:-1;
}

body.page{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main{
  flex: 1 0 auto;   /* takes remaining space */
}

/* footer should not grow */
.site-footer, footer{
  flex-shrink: 0;
}


img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--container), calc(100% - 32px)); margin:0 auto; }

.muted{ color:var(--muted); }
.tiny-muted{ color:var(--muted2); font-size:.92rem; margin-top:18px; }
.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; }

/* Header (black) */
.site-header{
  position:sticky; top:0; z-index:50;
  background: linear-gradient(180deg, rgba(5,5,5,.96), rgba(5,5,5,.88));
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}

/* Yellow top bar */
.topbar{
  background: var(--yellow);
  color: #111;
  border-bottom: 1px solid rgba(10,10,10,.12);
}

.topbar-wrap{
  height: 44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.topbar-email{
  display:flex;
  align-items:center;
  gap: 10px;

  color:#111;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.2px;

  max-width: 70%;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

.topbar-email i{ opacity:.9; }

.topbar-cta{
  display:inline-flex;
  align-items:center;
  gap: 10px;

  height: 34px;
  padding: 0 12px;
  border-radius: 999px;

  background: rgba(5,5,5,.92);
  color: #fff;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;

  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.topbar-cta:hover{ box-shadow: 0 10px 24px rgba(0,0,0,.22), var(--glow); }

/* Mobile tweaks */
@media (max-width: 520px){
  .topbar-wrap{ height: 40px; }
  .topbar-email span{ display: none; }

  /* keep it tidy on tiny screens */
  .topbar-cta{
    padding: 0 10px;
    gap: 8px;
    height: 32px;
  }
  .topbar-cta i{ display:none; } /* optional */
}

.nav-wrap{ display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0; }

/* Language switcher */
.lang{
  position:relative;
  margin-left:14px;

  /* defaults (dark UI). If your header is light, override these on .site-header */
  --langBg: rgba(11,11,11,.86);
  --langBg2: rgba(15,15,15,.92);
  --langStroke: var(--stroke);
  --langText: rgba(255,255,255,.92);
  --langMuted: rgba(255,255,255,.70);
}

.lang-btn{
  height:44px;
  min-width:86px;
  padding:0 12px;
  border-radius:14px;

  display:flex;
  align-items:center;
  gap:10px;

  background: var(--langBg);
  border:1px solid var(--langStroke);
  box-shadow: var(--shadowDark);
  color: var(--langText);

  cursor:pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.lang-btn:hover{ box-shadow: var(--shadowDark), var(--glow); }
.lang-btn:focus-visible{
  outline:none;
  box-shadow: var(--shadowDark), 0 0 0 3px rgba(242,184,35,.35);
}

.lang-globe{ opacity:.9; }
.lang-code{
  font-weight:800;
  letter-spacing:.6px;
}
.lang-chevron{
  margin-left:auto;
  opacity:.85;
  transition: transform .16s ease;
}
.lang.is-open .lang-chevron{ transform: rotate(180deg); }

/* Dropdown menu */
.lang-menu{
  position:absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;

  background: var(--langBg2);
  border:1px solid var(--langStroke);
  border-radius:16px;
  padding:6px;

  box-shadow: var(--shadowDark);
  backdrop-filter: blur(10px);
  z-index: 50;
}

.lang-option{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;

  padding:10px 12px;
  border-radius:12px;

  color: var(--langText);
  text-decoration:none;
}

.lang-option:hover{
  background: radial-gradient(circle at 30% 30%, rgba(242,184,35,.18), rgba(242,184,35,.06));
}

.lang-option[aria-selected="true"]{
  background: radial-gradient(circle at 30% 30%, rgba(242,184,35,.28), rgba(242,184,35,.10));
  border: 1px solid rgba(242,184,35,.30);
}

.lang-name{ font-weight:650; }
.lang-pill{
  font-weight:800;
  letter-spacing:.5px;
  color: #111;
  background: rgba(242,184,35,.95);
  padding: 6px 8px;
  border-radius: 999px;
}

/* Mobile friendliness */
@media (max-width: 860px){
  .lang{ margin-left:10px;}
  .lang-btn{
    min-width: 64px;
    padding: 0 10px;
    gap: 8px;
  }
}

/* Very small screens: make the menu easier to tap and not clipped */
@media (max-width: 520px){
  .lang-menu{
    position: fixed;
    left: 12px;
    right: 12px;
    top: 72px;          /* adjust if your header height differs */
    width: auto;
  }
  .lang-option{ padding: 12px 14px; }
}


.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width:70px; height:70px; 
    display:grid; place-items:center;

}

.brand-logo{
  width:70%;
  height:70%;
  object-fit:contain;
  display:block;
}

.brand-text strong{ display:block; font-weight:800; line-height:1; color:#fff; }
.brand-text em{ display:block; font-style:normal; font-size:.86rem; color:rgba(255,255,255,.62); }

.nav{ display:flex; align-items:center; gap:10px; }
.nav-link{
  padding:10px 10px;
  border-radius:12px;
  color:rgba(255,255,255,.78);
  position:relative;
  transition:transform .2s ease, color .2s ease, background .2s ease;
}
.nav-link:after{
  content:"";
  position:absolute;
  left:10px; right:10px; bottom:6px;
  height:2px;
  background:linear-gradient(90deg, transparent, var(--yellow), transparent);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .25s ease;
  opacity:.95;
}
.nav-link:hover{
  color:#fff;
  transform:translateY(-1px);
  background: rgba(255,255,255,.05);
}
.nav-link:hover:after{ transform:scaleX(1); }

.nav-cta{
  padding:11px 14px;
  border-radius:14px;
  background: linear-gradient(180deg, rgba(242,184,35,.96), rgba(242,184,35,.78));
  color:#111;
  font-weight:900;
  box-shadow: var(--glow);
  border:1px solid rgba(242,184,35,.35);
  transition:transform .2s ease, filter .2s ease;
}
.nav-cta:hover{ transform:translateY(-2px); filter:saturate(1.10); }

.nav-toggle{
  display:none;
  width:46px; height:46px; border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#fff; cursor:pointer;
}
.nav-toggle span{ display:block; width:18px; height:2px; background:#fff; margin:4px auto; border-radius:99px; opacity:.92; }

.scroll-progress{
  height:3px; width:0%;
  background: linear-gradient(90deg, var(--yellow), rgba(242,184,35,.25));
  box-shadow: var(--glow);
}


.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--strokeLight);
  background: rgba(255,255,255,.78);
  color:rgba(10,10,10,.80);
  width:fit-content;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.pulse{ width:10px; height:10px; border-radius:99px; background:var(--yellow); box-shadow: var(--glow); position:relative; }
.pulse:after{
  content:""; position:absolute; inset:-10px;
  border:1px solid rgba(242,184,35,.35);
  border-radius:999px;
  animation:pulse 1.8s ease-out infinite;
}
@keyframes pulse{ 0%{ transform:scale(.2); opacity:.9 } 100%{ transform:scale(1.3); opacity:0 } }



/* HERO */


/* WOW HERO */
.hero-wow{
  position:relative;
  min-height: 92vh;
  display:flex;
  align-items:center;
  padding: clamp(84px, 10vh, 120px) 0 clamp(44px, 6vh, 70px);
  overflow:hidden;
  background:#000;
}

.hero-wow-media{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero-wow-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform: scale(1.02);
}

/* Cinematic overlay (dark + yellow energy) */
.hero-wow-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(900px 420px at 18% 25%, rgba(242,184,35,.22), transparent 60%),
    radial-gradient(800px 360px at 82% 20%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.45) 45%, rgba(0,0,0,.25));
  pointer-events:none;
}

/* Animated glow blob */
.hero-wow-glow{
  position:absolute;
  inset:-20%;
  z-index:1;
  background: radial-gradient(circle at 30% 30%, rgba(242,184,35,.22), transparent 45%);
  filter: blur(22px);
  opacity:.85;
  animation: wowFloat 10s ease-in-out infinite;
  pointer-events:none;
}

@keyframes wowFloat{
  0%{ transform: translate3d(-2%, -1%, 0) scale(1); }
  50%{ transform: translate3d(3%, 2%, 0) scale(1.06); }
  100%{ transform: translate3d(-2%, -1%, 0) scale(1); }
}

.hero-wow-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items:center;
}

/* Left copy (minimal) */
.hero-wow-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom: 14px;
}

.wow-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  font-weight: 800;
  letter-spacing:.2px;
}

.wow-badge--dot .dot{
  width:8px; height:8px; border-radius:999px;
  background: rgba(242,184,35,.95);
  box-shadow: 0 0 0.75rem rgba(242,184,35,.35);
}

.hero-wow-title{
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
  line-height: 1.00;
  letter-spacing: -.02em;
  color:#fff;
  text-shadow: 0 18px 60px rgba(0,0,0,.45);
}

.hl{
  color: #f2b823;
}

.wow-accent{
  color: rgba(255,255,255,.95);
  position:relative;
}

.wow-accent::after{
  content:"";
  position:absolute;
  left:-8px; right:-8px; bottom:.10em;
  height:.22em;
  background: rgba(242,184,35,.70);
  border-radius: 999px;
  z-index:-1;
  transform: skewX(-12deg);
  box-shadow: 0 16px 50px rgba(242,184,35,.22);
}

.hero-wow-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 8px;
}

/* Stats chips */
.hero-wow-stats{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:10px;
  max-width: 520px;
}

.wow-stat{
  border-radius: 18px;
  padding: 12px 12px 10px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.wow-stat strong{
  display:block;
  font-size: 1.35rem;
  letter-spacing: -.01em;
  color:#fff;
}

.wow-stat span{
  display:block;
  margin-top: 2px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  letter-spacing:.2px;
}

/* Right floating photo panel */
.hero-wow-float{
  display:flex;
  flex-direction:column;
  gap: 12px;
  align-items: stretch;
}

.hero-wow-photo{
  position:relative;
  overflow:hidden;
  border-radius: var(--radius2);
  min-height: clamp(360px, 46vh, 520px);
  background-image: var(--float-bg);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadowDark);
  isolation:isolate;
}

.hero-wow-photo-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(242,184,35,.22), transparent 55%),
    linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.12));
}

.hero-wow-photo-text{
  position:absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index:2;

  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}

.hero-wow-photo-kicker{
  color: rgba(255,255,255,.78);
  font-weight: 900;
  letter-spacing:.25px;
  margin-bottom: 6px;
}

.hero-wow-photo-line{
  color:#fff;
  font-weight: 950;
  letter-spacing:.2px;
  font-size: 1.1rem;
}

.hero-wow-mini{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;

  padding: 12px 14px;
  border-radius: 18px;
  text-decoration:none;

  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  font-weight: 900;
}

.hero-wow-mini:hover{ box-shadow: var(--glow); }

/* Scroll cue */
.hero-wow-scroll{
  position:absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;

  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 8px;
  text-decoration:none;
  color: rgba(255,255,255,.78);
  font-weight: 800;
  letter-spacing:.25px;
}

.hero-wow-scroll .mouse{
  width: 22px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.45);
  position:relative;
}

.hero-wow-scroll .mouse::after{
  content:"";
  position:absolute;
  left:50%;
  top: 8px;
  width: 4px;
  height: 6px;
  border-radius: 999px;
  background: rgba(242,184,35,.95);
  transform: translateX(-50%);
  animation: scrollDot 1.35s ease-in-out infinite;
}

@keyframes scrollDot{
  0%{ opacity:.2; transform: translate(-50%, 0); }
  50%{ opacity:1; transform: translate(-50%, 10px); }
  100%{ opacity:.2; transform: translate(-50%, 0); }
}

/* Mobile */
@media (max-width: 980px){
  .hero-wow{ min-height: 720px; }
  .hero-wow-inner{ grid-template-columns: 1fr; }
  .hero-wow-stats{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-wow-photo{ min-height: 320px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero-wow-glow,
  .hero-wow-scroll .mouse::after{ animation: none; }
  .hero-wow-video{ transform:none; }
}













.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid var(--strokeLight);
  cursor:pointer;
  transition: transform .18s ease, filter .18s ease, background .18s ease, box-shadow .18s ease;
  user-select:none;
  font-weight:800;
}
.btn .arrow{ display:inline-block; transition:transform .18s ease; }
.btn:hover .arrow{ transform:translateX(3px); }

.btn-primary{
  background: linear-gradient(180deg, rgba(242,184,35,.98), rgba(242,184,35,.78));
  color:#111;
  border-color: rgba(242,184,35,.35);
  box-shadow: var(--glow);
}
.btn-primary:hover{ transform:translateY(-2px); filter:saturate(1.06); }

.btn-ghost{
  background: rgba(255,255,255,.82);
  color:#111;
  border-color: rgba(10,10,10,.14);
}
.btn-ghost:hover{
  transform:translateY(-2px);
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}
.btn.small{ padding:10px 12px; border-radius:14px; font-weight:900; font-size:.92rem; }

.stats{ display:flex; gap:14px; margin-top:18px; flex-wrap:wrap; }
.stat{
  padding:14px 14px;
  border-radius:18px;
  border:1px solid var(--strokeLight);
  background: rgba(255,255,255,.84);
  min-width: 140px;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
}
.stat-num{ font-size:1.7rem; font-weight:900; letter-spacing:-.02em; }
.stat-label{ color:rgba(10,10,10,.60); font-size:.92rem; }

.checklist{ margin:0; padding:0; list-style:none; display:grid; gap:8px; color:rgba(255,255,255,.78); }
.checklist li{ position:relative; padding-left:24px; }
.checklist li:before{
  content:"*";
  position:absolute; left:0; top:0;
  color:var(--yellow);
  font-weight:900;
  text-shadow: var(--glow);
}

.mini-cta{
  margin-top:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:rgba(242,184,35,.95);
  font-weight:900;
  transition: transform .18s ease;
}
.mini-cta:hover{ transform:translateX(2px); }


.ticker{
  border:1px solid var(--strokeLight);
  background: rgba(255,255,255,.86);
  border-radius: 18px;
  padding:12px 14px;
  color:rgba(10,10,10,.74);
  display:flex; gap:10px; align-items:center;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
}
.ticker strong{ color:#0a0a0a; }

/* Sections */
.section{ padding:68px 0; }
.section-alt{
  background: linear-gradient(180deg, rgba(10,10,10,.02), rgba(10,10,10,.00));
  border-top: 1px solid rgba(10,10,10,.06);
  border-bottom: 1px solid rgba(10,10,10,.06);
}
.section-head{ max-width: 90ch; }
.section-head h2{
  margin:0 0 8px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing:-.02em;
  color:#0a0a0a;
}
.section-head p{ margin:0; }

.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:18px; }
.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; margin-top:16px; }

/* BLACK cards */
.card{
  padding:18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), #060606);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadowDark);
  position:relative;
  overflow:hidden !important;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  color:#fff;
}
.card:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(520px 220px at 20% 0%, rgba(242,184,35,.22), transparent 55%);
  opacity:0;
  transition: opacity .25s ease;
  pointer-events:none;
}
.card:hover{
  transform: translateY(-4px);
  border-color: rgba(242,184,35,.28);
  box-shadow: 0 26px 90px rgba(0,0,0,.65);
}
.card:hover:before{ opacity:1; }
.card-icon{ font-size:1.7rem; margin-bottom:10px; }

.split{ display:grid; grid-template-columns: 1.1fr .9fr; gap:16px; margin-top:18px; }
.pill-row{ display:flex; gap:10px; flex-wrap:wrap; margin:12px 0 12px; }
.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(10,10,10,.12);
  background: rgba(255,255,255,.85);
  color:rgba(10,10,10,.72);
  font-size:.92rem;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

/* Light map box */
.map-box{
  margin-top:14px;
  border-radius: var(--radius2);
  border:1px solid rgba(10,10,10,.10);
  background: rgba(255,255,255,.92);
  overflow:hidden;
  position:relative;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
}
.map-glow{
  position:absolute; inset:-60%;
  background: radial-gradient(circle at 30% 30%, rgba(242,184,35,.20), transparent 55%);
  opacity:.85;
  pointer-events:none;
}
.map-inner{ padding:18px; position:relative; }
.map-title{ font-weight:900; margin-bottom:4px; color:#0a0a0a; }

/* Quote & requirements as BLACK surfaces */
.quote-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, var(--card2), #070707);
  padding:18px;
  position:relative;
  overflow:hidden;
  box-shadow: var(--shadowDark);
  color:#fff;
}
.quote-mark{
  position:absolute; top:-10px; left:10px;
  font-size:5rem; opacity:.14;
  color:var(--yellow);
  text-shadow: var(--glow);
}
.quote-by{ color:rgba(255,255,255,.62); font-size:.92rem; margin-top:10px; }
.quote-card p{ color:rgba(255,255,255,.82); }

.requirements{
  margin-top:14px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, var(--card2), #070707);
  box-shadow: var(--shadowDark);
  color:#fff;
}

/* Timeline */
.timeline{ margin-top:18px; display:grid; gap:14px; }
.timeline-item{ display:grid; grid-template-columns: 20px 1fr; gap:12px; align-items:start; }
.timeline-dot{
  width:12px; height:12px; border-radius:999px;
  background: var(--yellow);
  box-shadow: var(--glow);
  margin-top:18px;
}
.timeline-card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), #060606);
  border:1px solid #f2b723a1;
  padding:16px;
  position:relative;
  overflow:hidden;
  box-shadow: var(--shadowDark);
  color:#fff;
}
.timeline-card .muted{ color:rgba(255,255,255,.72); }

/* Media cards (black) */
.media-card{
  border-radius: var(--radius2);
  border:1px solid #f2b723a1;
  background: linear-gradient(180deg, var(--card), #060606);
  padding:18px;
  overflow:hidden;
  position:relative;
  box-shadow: var(--shadowDark);
  color:#fff;
}
.media-card-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px; }
.tag{
  font-size:.82rem;
  font-weight:900;
  padding:7px 10px;
  border-radius:999px;
  color:#111;
  background: rgba(242,184,35,.98);
  border:1px solid rgba(242,184,35,.35);
  box-shadow: var(--glow);
  white-space:nowrap;
}


/* Gallery (light shell + images) */

/* Gallery shell */
.splide{
  margin-top:16px;
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(10,10,10,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
}

.splide__slide img{
  width:100%;
  height: clamp(320px, 42vw, 480px);
  object-fit:cover;
  transition: transform .6s ease;
  filter:contrast(1.06) saturate(1.06);
}
.splide__slide:hover img{ transform: scale(1.06); }
/* Videos: featured + secondary */
.video-grid{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 14px;
  margin-top: 16px;
}

/* Card becomes the video frame */
.video-card{
  position: relative;
  overflow: hidden;
  padding: 0; /* IMPORTANT: remove padding so video can fill */
  border-radius: var(--radius2);
  background: #000;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);

  /* gives the card height */
  aspect-ratio: 16 / 10;
}

/* Make featured a bit taller */
.video-card--featured{
  aspect-ratio: 16 / 9;
}

/* Video fills the whole card (crop if needed) */
.video-card > .video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
  display:block;
}

/* Nice hover */
.video-card:hover{
  box-shadow: 0 18px 60px rgba(0,0,0,.10), 0 0 0.75rem rgba(242,184,35,.20);
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 900px){
  .video-grid{ grid-template-columns: 1fr; }
  .video-card{ aspect-ratio: 16 / 9; } /* consistent on mobile */
}


/* Reduced motion: stop hover zoom vibes */
@media (prefers-reduced-motion: reduce){
  .splide__slide img{ transition:none; }
  .video-card{ transition:none; }
}

/* FAQ (black accordions) */
/* White background section */
.section.faq-section{
  background: var(--page);
  padding: clamp(64px, 8vw, 96px) 0;
  position: relative;
}

.section.faq-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 380px at 15% 15%, rgba(242,184,35,.14), transparent 60%),
    radial-gradient(700px 320px at 85% 35%, rgba(10,10,10,.05), transparent 55%);
  pointer-events:none;
}

.section.faq-section .container{ position: relative; z-index: 1; }

/* Dark header panel so text is white */
.section.faq-section .faq-head{
  padding: 22px 22px;
  margin-bottom: 16px;

  display:grid;
  grid-template-columns: 180px 1fr;
  gap: 12px 18px;
  align-items: center;
}

.section.faq-section .faq-head h2{
  margin:0;
  color:#000;
}

.section.faq-section .faq-head .muted{
  margin:0;
  color: rgba(0,0,0,.78);
}

/* FAQ list layout */
.section.faq-section .faq{
  display:grid;
  gap: 12px;
}

/* FAQ item as dark “accordion card” */
.section.faq-section .faq-item{
  background: linear-gradient(180deg, var(--card2), #070707);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadowDark);
  overflow:hidden;
}

/* Summary row */
.section.faq-section .faq-item summary{
  list-style: none;
  cursor: pointer;

  padding: 18px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;

  color:#fff;
  font-weight: 800;
  letter-spacing: .2px;
}

/* Hide default marker */
.section.faq-section .faq-item summary::-webkit-details-marker{ display:none; }

/* Custom chevron */
.section.faq-section .faq-item summary::after{
  content:"";
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255,255,255,.75);
  border-bottom: 2px solid rgba(255,255,255,.75);
  transform: rotate(45deg);
  transition: transform .18s ease, opacity .18s ease;
  opacity: .85;
}

.section.faq-section .faq-item[open] summary::after{
  transform: rotate(-135deg);
  opacity: 1;
}

/* Answer */
.section.faq-section .faq-item > .muted{
  padding: 0 18px 18px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

/* Subtle highlight on hover */
.section.faq-section .faq-item:hover{
  border-color: rgba(242,184,35,.28);
}

/* CTA band to match */
.section.faq-section .cta-band--faq{
  margin-top: 18px;
  background: linear-gradient(180deg, var(--card), #060606);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadowDark);
  padding: 18px 18px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;

  color:#fff;
}

.section.faq-section .cta-title{
  font-weight: 900;
  letter-spacing: .2px;
}

/* Mobile */
@media (max-width: 900px){
  .section.faq-section .faq-head{
    grid-template-columns: 1fr;
  }
  .section.faq-section .cta-band--faq{
    flex-direction: column;
    align-items: flex-start;
  }
}

.cta-band{
  margin-top:20px;
  border-radius: var(--radius2);
  border:1px solid rgba(10,10,10,.10);
  background:
    radial-gradient(600px 220px at 20% 0%, rgba(242,184,35,.22), transparent 60%),
    rgba(255,255,255,.92);
  padding:16px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
  color:#0a0a0a;
}
.cta-title{ font-weight:900; letter-spacing:-.02em; }

/* Footer (black) */
.site-footer{
  padding:44px 0 28px;
  border-top:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(5,5,5,.98), rgba(5,5,5,.92));
  color:#fff;
}
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap:14px; }
.footer-title{ font-weight:900; margin-bottom:8px; }
.site-footer .muted{ color:rgba(255,255,255,.68); }

.chip-row{ display:flex; gap:8px; flex-wrap:wrap; margin-top:12px; }
.chip{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:rgba(255,255,255,.75);
  font-size:.86rem;
}
.chip-yellow{
  border-color: rgba(242,184,35,.35);
  background: rgba(242,184,35,.12);
  box-shadow: 0 0 1.2rem rgba(242,184,35,.12);
  color:#fff;
}
.footer-bottom{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
 display:block; justify-content:center; align-items:center; text-align: center;}
 
.link{ color:rgba(242,184,35,.95); }
.link:hover{ text-decoration:underline; }

/* To top */
.to-top{
  position:fixed;
  right:16px;
  bottom:16px;
  width:46px;
  height:46px;
  border-radius:16px;
  border:1px solid rgba(10,10,10,.12);
  background: rgba(255,255,255,.92);
  color:#0a0a0a;
  cursor:pointer;
  display:none;
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}
.to-top.show{ display:block; }

/* Form (white shell, black kid cards) */
.form-hero{ padding-top:36px; }
.form-hero-inner{
  border-radius: var(--radius2);
  border:1px solid rgba(10,10,10,.10);
  background:
    rgba(255,255,255,.98);
  padding:18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
  margin-bottom:14px;
}
.price-live{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:12px; }
.price-live-num{
  font-size:1.6rem;
  font-weight:900;
  color:#0a0a0a;
}
.alert{
  border-radius: var(--radius);
  border:1px solid rgba(220,38,38,.25);
  background: rgba(220,38,38,.08);
  padding:14px;
  margin:10px 0 14px;
}
.alert ul{ margin:8px 0 0; color:rgba(10,10,10,.80); }

.form{
  border-radius: var(--radius2);
  border:1px solid rgba(10,10,10,.10);
  background: rgba(255,255,255,.95);
  padding:16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
}
.form-section{ padding:14px 0; border-bottom:1px dashed rgba(10,10,10,.14); }
.form-section:last-child{ border-bottom:none; }
.form-section-title{ font-weight:900; margin-bottom:10px; letter-spacing:-.01em; }

.field{ display:grid; gap:8px; margin-bottom:12px; }
.field span{ color:rgba(10,10,10,.72); font-size:.92rem; }

input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 16px;
  border:1px solid rgba(10,10,10,.14);
  background: #ffffff;
  color:#0a0a0a;
  outline:none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(242,184,35,.55);
  box-shadow: 0 0 0 4px rgba(242,184,35,.18);
}

.check{ display:flex; gap:10px; align-items:flex-start; color:rgba(10,10,10,.72); }
.check input{ width:18px; height:18px; margin-top:3px; }
.hp{ position:absolute; left:-9999px; opacity:0; }

/* Kid card stays BLACK */
.kid-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: #fff;
  padding:14px;
  margin:10px 0;
  position:relative;
  overflow:hidden;
  box-shadow: var(--shadow);
  color:#000;
}
.kid-card .field span{ color:rgba(0, 0, 0, 0.7); }
.kid-card input, .kid-card select, .kid-card textarea{
  background: rgba(0, 0, 0, 0.06);
  border:1px solid rgba(255, 255, 255, 0.14);
  color:#000000;
}
.kid-card input::placeholder{ color:rgba(0, 0, 0, 0.55); }
.kid-card input:focus, .kid-card select:focus, .kid-card textarea:focus{
  border-color: rgba(242,184,35,.40);
  box-shadow: 0 0 0 4px rgba(242,184,35,.14);
}

.kid-top{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:6px; }
.kid-title{ font-weight:900; }
.kid-remove{
  background: rgba(0, 0, 0, 0.6);
  border:1px solid rgba(0, 0, 0, 0.14);
  color:#fff;
  padding:10px 12px;
  border-radius: 14px;
  cursor:pointer;
  font-weight:900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.kid-remove:hover{
  transform:translateY(-1px);
  border-color: rgba(242,184,35,.30);
  background: rgba(242,184,35,.10);
}

.form-actions{ margin-top:10px; }

.bank-box{
  margin-top:12px;
  padding:12px;
  border-radius: 18px;
  border:1px solid rgba(10,10,10,.10);
  background: rgba(255,255,255,.92);
}
.bank-title{ font-weight:900; margin-bottom:6px; color:#0a0a0a; }

/* Thanks */
.thanks{
  border-radius: var(--radius2);
  border:1px solid rgba(10,10,10,.10);
  background: rgba(255,255,255,.92);
  padding:20px;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
  max-width: 760px;
  margin:0 auto;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.thanks:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(600px 240px at 50% 0%, rgba(242,184,35,.22), transparent 55%);
  opacity:.95;
  pointer-events:none;
}
.thanks-badge{
  display:inline-flex;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(242,184,35,.45);
  background: rgba(242,184,35,.18);
  box-shadow: var(--glow);
  font-weight:900;
  color:#0a0a0a;
  margin-bottom:10px;
  position:relative;
  z-index:1;
}
.confetti{ position:absolute; inset:0; width:100%; height:100%; pointer-events:none; opacity:.9; }

/* Prose */
.prose{ max-width: 78ch; }
.prose h1{ margin-top:0; color:#0a0a0a; }
.prose h2{ margin-top:26px; color:#0a0a0a; }
.prose ul{ color:rgba(10,10,10,.72); }

/* Responsive */
@media (max-width: 980px){
  .split{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .price-grid{ grid-template-columns: 1fr; }
  .video-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }

  .nav-toggle{ display:inline-grid; place-items:center; }
  .nav{
    position:fixed; top:120px; left:16px; right:16px;
    flex-direction:column; gap:8px; padding:12px;
    border-radius: 22px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(5,5,5,.92);
    transform: translateY(-20px);
    opacity:0;
    pointer-events:none;
    transition: opacity .2s ease, transform .2s ease;
    box-shadow: 0 18px 60px rgba(0,0,0,.45);
  }
  .nav.open{ transform: translateY(0); opacity:1; pointer-events:auto; }
  .nav-link, .nav-cta{ width:100%; text-align:center; }

  .brand-text em{
    display: none;
  }
}

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
}


/* Footer mobile: single centered column */
@media (max-width: 780px){
  .footer-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
    justify-items: center;
  }

  .footer-grid > div{
    width: 100%;
    max-width: 420px; /* keeps lines readable */
  }

  .footer-grid .muted{
    margin-left: auto;
    margin-right: auto;
  }

  /* Center icon/text nicely */
  .footer-grid i{
    margin-right: 8px;
  }

  /* Bottom area centered */
  .footer-bottom{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-credits-text{
    margin: 0;
  }

  /* Remove the manual indent on mobile (your &nbsp; spacing) */
  .footer-grid .muted br + *{
    text-indent: 0;
  }
}

/* --- GRID + PHOTO CARD OVERRIDES (must come AFTER default .card) --- */
.grid-3.grid-cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 900px){
  .grid-3.grid-cards{ grid-template-columns: 1fr; }
}

/* Override the default black card styling ONLY for photo cards */
.grid-3.grid-cards .card.card-photo{
  border-radius: var(--radius);
  /* override base .card */
  background: transparent !important;     /* kill black gradient */
  padding: 30px 28px !important;          /* make larger */
  min-height: 650px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadowDark);
  color: rgba(255,255,255,.95);
  position: relative;
  overflow: hidden;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

/* Replace the base .card:before glow with the photo background */
.grid-3.grid-cards .card.card-photo::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.06);
  z-index:0;
  opacity:1;                 /* ensure it's visible */
  pointer-events:none;
  transition: transform .6s ease;
}

/* Overlay for readability */
.grid-3.grid-cards .card.card-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(242,184,35,.24), rgba(242,184,35,0) 55%),
    linear-gradient(to top, rgba(0,0,0,.12), rgba(0,0,0,.20));
  z-index:0;
  pointer-events:none;
  transition: opacity .35s ease;
}

/* Content above overlays */
.grid-3.grid-cards .card.card-photo > *{
  position:relative;
  z-index:1;
}

/* Hover state overrides base .card:hover */
.grid-3.grid-cards .card.card-photo:hover{
  transform: translateY(-3px);
  border-color: rgba(242,184,35,.28);
  box-shadow: var(--shadowDark), var(--glow);
}

/* Subtle zoom */
.grid-3.grid-cards .card.card-photo:hover::before{
  transform: scale(1.10);
}

/* Cool reveal for p */
.grid-3.grid-cards .card.card-photo p.muted{
  margin:0;
  max-width: 52ch;
  color: rgba(255,255,255,.82);

  opacity:0;
  transform: translateY(14px);
  filter: blur(8px);

  transition:
    opacity .28s ease,
    transform .36s cubic-bezier(.2,.9,.2,1),
    filter .38s ease;

  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

.grid-3.grid-cards .card.card-photo:hover p.muted{
  opacity:1;
  transform: translateY(0);
  filter: blur(0);
}

/* Mobile sizing */
@media (max-width: 700px){
  .grid-3.grid-cards .card.card-photo{
    min-height: 240px;
    padding: 22px 18px !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .grid-3.grid-cards .card.card-photo,
  .grid-3.grid-cards .card.card-photo::before,
  .grid-3.grid-cards .card.card-photo::after,
  .grid-3.grid-cards .card.card-photo p.muted{
    transition: none !important;
  }
  .grid-3.grid-cards .card.card-photo p.muted{
    opacity:1;
    transform:none;
    filter:none;
  }
}

/* Fix: prevent photo layers from bleeding past rounded border */
.grid-3.grid-cards .card.card-photo{
  overflow: hidden !important;            /* ensure clipping */
  border-radius: var(--radius);
  isolation: isolate;          /* keeps pseudo layers contained */
}

.grid-3.grid-cards .card.card-photo::before,
.grid-3.grid-cards .card.card-photo::after{
  border-radius: inherit;      /* match rounded corners */
  overflow: hidden !important;
}

/* Extra-safe clipping (helps with some tilt/3D + subpixel bleed) */
@supports (clip-path: inset(0 round 1px)){
  .grid-3.grid-cards .card.card-photo::before,
  .grid-3.grid-cards .card.card-photo::after{
    clip-path: inset(0 round var(--radius));
  }
}
.grid-3.grid-cards .card.card-photo:hover{
  border-radius: inherit;      /* match rounded corners */
  overflow: hidden !important;
}


/* White section background */
.section.pricing{
  background: var(--page);
  padding: clamp(64px, 8vw, 96px) 0;
  position: relative;
}

/* subtle texture on the white */
.section.pricing::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 380px at 20% 10%, rgba(242,184,35,.14), transparent 60%),
    radial-gradient(700px 320px at 80% 30%, rgba(10,10,10,.05), transparent 55%);
  pointer-events:none;
}

/* Make sure content stays above the texture */
.section.pricing .container{ position: relative; z-index: 1; }

/* Dark panel header so text can be white */
.section.pricing .pricing-head{
  padding: 22px 22px;
  margin-bottom: 18px;

  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px 18px;
  align-items: center;
}

.section.pricing .pricing-head h2{
  margin: 0;
  color: #000;
  letter-spacing: .2px;
}

.section.pricing .pricing-head .muted{
  margin: 0;
  color: rgba(0,0,0,.78);
}

/* Pricing grid */
.section.pricing .price-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

/* Pricing cards (dark, white text) */
.section.pricing .price-card{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 26px 24px;
  min-height: 170px;

  background: linear-gradient(180deg, var(--card), #060606);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadowDark);
  color: #fff;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

/* soft glow accent */
.section.pricing .price-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(520px 220px at 20% 0%, rgba(242,184,35,.22), transparent 55%);
  opacity:.55;
  pointer-events:none;
}

.section.pricing .price-top{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.section.pricing .price-title{
  font-weight: 800;
  letter-spacing: .35px;
  opacity: .95;
}

.section.pricing .price-amount{
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: .2px;
  white-space: nowrap;
}

.section.pricing .price-card .muted{
  color: rgba(255,255,255,.75);
  margin: 14px 0 0;
}

/* Featured */
.section.pricing .price-card.featured{
  border-color: rgba(242,184,35,.45);
  box-shadow: var(--shadowDark), var(--glow);
  transform: translateY(-2px);
}

.section.pricing .price-card.featured::after{
  content:"Beliebt";
  position:absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .8rem;
  letter-spacing: .4px;
  color:#111;
  background: rgba(242,184,35,.95);
}

/* Hover */
.section.pricing .price-card:hover{
  transform: translateY(-4px);
  border-color: rgba(242,184,35,.35);
  box-shadow: 0 26px 90px rgba(0,0,0,.65);
}

/* Pay note as dark bar */
.section.pricing .pay-note{
  margin-top: 18px;
}

.section.pricing .pay-note-inner{
  padding: 18px 18px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  color:#000;
}

/* Mobile */
@media (max-width: 900px){
  .section.pricing .pricing-head{
    grid-template-columns: 1fr;
  }
  .section.pricing .price-grid{
    grid-template-columns: 1fr;
  }
  .section.pricing .price-card.featured{
    transform: none; /* avoid awkward lift when stacked */
  }
  .section.pricing .pay-note-inner{
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Final CTA section spacing */
/* Full background image CTA section */
.section.final-cta-section{
  position: relative;
  isolation: isolate;

  /* full-width background image */
  background-image: var(--final-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* make it feel like a proper final hero */
  min-height: clamp(520px, 70vh, 780px);
  display: flex;
  align-items: center;

  padding: clamp(72px, 9vw, 120px) 0;
  color: #fff;
}

/* Overlay for readability */
.section.final-cta-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 18%, rgba(242,184,35,.10), rgba(242,184,35,0) 55%),
    linear-gradient(to top, rgba(0,0,0,.48), rgba(0,0,0,.35));
  z-index:0;
  pointer-events:none;
}

/* Content above overlay */
.section.final-cta-section .container{
  position: relative;
  z-index: 1;
}

/* Layout inside */
.final-cta-inner{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px 22px;
  align-items: center;
  text-align: center;
  justify-content: center;

  /* optional glass panel for extra legibility */
  padding: clamp(18px, 3vw, 26px);
}

.final-cta-kicker{
  font-weight: 900;
  letter-spacing: .4px;
  color: rgba(255,255,255,.86);
  margin-bottom: 10px;
}

.final-cta-title{
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
  letter-spacing: .2px;
}

.final-cta-sub{
  margin: 0;
  color: rgba(255,255,255,.78);
  max-width: 60ch;
}

.final-cta-points{
  list-style:none;
  padding:0;
  margin: 14px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.final-cta-points li{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.9);
  font-weight: 750;
}

.final-cta-actions{
  display:grid;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.final-cta-link{
  color: rgba(255,255,255,.82);
  text-decoration:none;
  font-weight: 750;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

.final-cta-link:hover{ box-shadow: var(--glow); }


/* White background section */
.section.whenwhere{
  background: var(--page);
  padding: clamp(72px, 9vw, 110px) 0;
  position: relative;
}

.section.whenwhere::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 380px at 15% 10%, rgba(242,184,35,.14), transparent 60%),
    radial-gradient(700px 320px at 85% 35%, rgba(10,10,10,.05), transparent 55%);
  pointer-events:none;
}

.section.whenwhere .container{ position:relative; z-index:1; }

.whenwhere-head{
  margin-bottom: 18px;
}

/* Layout: big photo + info panel */
.whenwhere-grid{
  display:grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
  align-items: stretch;
}

/* Big image area */
.whenwhere-photo{
  border-radius: var(--radius2);
  overflow:hidden;
  min-height: clamp(420px, 52vw, 560px);
  background-image: var(--ww-bg);
  background-size: cover;
  background-position: right;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,10,10,.10);
  position: relative;
  isolation: isolate;
}

.whenwhere-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 20%, rgba(242,184,35,.22), rgba(242,184,35,0) 55%),
    linear-gradient(to top, rgba(0,0,0,.30), rgba(0,0,0,0));
  pointer-events:none;
}

/* Info panel (dark so your existing text/brand stays consistent) */
.whenwhere-panel{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, var(--card), #060606);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadowDark);
  padding: 18px;
  color:#fff;

  display:flex;
  flex-direction:column;
  gap: 12px;
}

/* Blocks inside panel */
.ww-block{
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  padding: 14px 14px;
}

.ww-title{
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 10px;
}

.ww-pills{ gap: 10px; }

.ww-note{
  margin-top: 12px;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
}

.ww-address{
  display:flex;
  flex-direction:column;
  gap: 4px;
}

.ww-address strong{ font-weight: 900; }
.ww-address .muted{ color: rgba(255,255,255,.78); }

.ww-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 12px;
}

/* Give the section a little more breathing room */
.whenwhere-head{ margin-bottom: 22px; }

.whenwhere-grid{
  gap: 20px;
  margin-bottom: 18px; /* space before quote */
}

/* Slightly refine panel spacing */
.whenwhere-panel{ padding: 18px; gap: 12px; }
.ww-block{ padding: 14px; }

/* --- QUOTE CARD (bottom, big mark) --- */
.ww-quote-wrap{
  margin-top: 18px;
}

/* Use dedicated styling so default .card doesn't override */
.ww-quote-card{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius2);

  background: linear-gradient(180deg, var(--card), #060606);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadowDark);

  padding: clamp(22px, 3vw, 34px);
  color: #fff;
}

/* Big quote mark */
.ww-quote-mark{
  position:absolute;
  top: 0px;
  left: 16px;
  font-size: clamp(5rem, 7vw, 7.5rem);
  line-height: 1;
  font-weight: 900;
  color: rgba(242,184,35,.85);
  text-shadow: 0 18px 60px rgba(0,0,0,.45);
  pointer-events:none;
}

/* Soft glow accent behind quote */
.ww-quote-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(700px 260px at 18% 0%, rgba(242,184,35,.22), transparent 60%);
  opacity: .9;
  pointer-events:none;
}

/* Quote text */
.ww-quote-text{
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: clamp(38px, 5vw, 64px); /* clears the big quote mark */
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255,255,255,.88);
  max-width: 85ch;
}

.ww-quote-by{
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding-left: clamp(38px, 5vw, 64px);
  color: rgba(255,255,255,.72);
  font-weight: 850;
  letter-spacing: .2px;
}

/* Optional hover polish */
.ww-quote-card:hover{
  border-color: rgba(242,184,35,.28);
  box-shadow: var(--shadowDark), var(--glow);
}

/* Mobile spacing */
@media (max-width: 980px){
  .ww-quote-text,
  .ww-quote-by{
    padding-left: 44px;
  }
  .ww-quote-mark{
    left: 12px;
    top: -12px;
  }
}

/* Mobile */
@media (max-width: 980px){
  .whenwhere-grid{
    grid-template-columns: 1fr;
  }
  .whenwhere-photo{
    min-height: 320px;
  }
}


.section.program-bg{
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background-image: var(--program-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* make it feel bigger and more “hero-ish” */
  padding: clamp(80px, 9vw, 120px) 0;
}

.program-head h2{
  color: #f2b823;
}
.program-head p{
  color: #fff;
}



/* Cookie banner */
.cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 9999;
  padding: 0 14px;
}

.cookie-card{
  max-width: 980px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;

  border-radius: var(--radius2);
  padding: 16px 16px;

  background: rgba(11,11,11,.88);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadowDark);
  backdrop-filter: blur(12px);

  color: rgba(255,255,255,.92);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cookie-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(700px 260px at 16% 0%, rgba(242,184,35,.22), transparent 60%);
  pointer-events:none;
  opacity: .9;
  z-index: 0;
}

.cookie-card > *{ position: relative; z-index: 1; }

.cookie-title{
  font-weight: 950;
  letter-spacing: .2px;
  margin-bottom: 4px;
}

.cookie-text{
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.45;
}

.cookie-text a{ display:flex;    flex-wrap: wrap;
 align-items: center; justify-content: center; text-align: center;
}
.cookie-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.cookie-close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.9);
  cursor: pointer;
  display:grid;
  place-items:center;
  font-size: 20px;
  line-height: 1;
}

.cookie-close:hover{ box-shadow: var(--glow); }

  .cookie-card{
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .cookie-close{ top: 8px; right: 8px; }

