/* ============================================================
   Wake & Chill 2026 — styles.css
   Paletă: apă teal-night + accent aqua/lime. Mobile-first.
   ============================================================ */
:root {
  --navy-900: #04161f;
  --navy-800: #06222e;
  --navy-700: #0a3147;
  --navy-600: #0f4257;
  --teal-500: #0f6f86;
  --aqua-400: #1fc8df;
  --aqua-300: #4ee0f0;
  --lime-400: #c6f24e;
  --lime-500: #aee61f;
  --coral-400: #ff6b4a;
  --sand-100: #f3f7f8;
  --ink-900: #04161f;
  --ink-700: #244653;
  --ink-500: #5b7782;
  --white: #ffffff;
  --line: rgba(255, 255, 255, .12);
  --line-dark: rgba(4, 22, 31, .1);

  --grad-hero: radial-gradient(120% 120% at 80% 0%, #0f4257 0%, #06222e 45%, #04161f 100%);
  --grad-aqua: linear-gradient(120deg, var(--aqua-400), var(--aqua-300));
  --grad-lime: linear-gradient(120deg, var(--lime-500), var(--lime-400));

  --ff-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --maxw: 1180px;
  --pad: clamp(18px, 5vw, 64px);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --shadow: 0 18px 50px -20px rgba(4, 22, 31, .55);
  --nav-h: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--ff-body);
  color: var(--ink-900);
  background: var(--sand-100);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100%;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 800; line-height: 1.04; letter-spacing: -.02em; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 9vw, 120px); }
.eyebrow {
  font-family: var(--ff-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .22em; font-size: .74rem; color: var(--teal-500);
  display: inline-flex; align-items: center; gap: .5rem;
}
.section-dark .eyebrow { color: var(--aqua-300); }
.section h2 { font-size: clamp(2rem, 5.2vw, 3.4rem); margin: .5rem 0 1rem; }
.lead { font-size: clamp(1.02rem, 2.3vw, 1.22rem); color: var(--ink-700); max-width: 62ch; }
.section-dark { background: var(--grad-hero); color: var(--white); }
.section-dark .lead { color: rgba(255, 255, 255, .82); }

/* ---- Reveal ---- */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js [data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  font-family: var(--ff-display); font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  padding: .92rem 1.5rem; border-radius: 999px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad-lime); color: var(--navy-900); box-shadow: 0 12px 30px -12px rgba(174, 230, 31, .7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(174, 230, 31, .8); }
.btn-aqua { background: var(--grad-aqua); color: var(--navy-900); box-shadow: 0 12px 30px -12px rgba(31, 200, 223, .65); }
.btn-aqua:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-dark { background: var(--navy-800); color: var(--white); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: #fff; border-color: var(--line-dark); color: var(--ink-900); }
.btn-outline:hover { border-color: var(--teal-500); color: var(--teal-500); }

/* ============================================================ NAV */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 60;
  display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav-scrolled { background: rgba(4, 22, 31, .82); backdrop-filter: blur(12px); box-shadow: 0 6px 24px -16px #000; }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }
.brand { display: flex; align-items: center; gap: .6rem; color: #fff; }
.brand-logos { display: flex; align-items: center; gap: .5rem; }
.brand-badge {
  font-family: var(--ff-display); font-weight: 800; font-size: .76rem; letter-spacing: .04em;
  color: var(--navy-900); background: var(--grad-lime); padding: .2rem .5rem; border-radius: 6px;
}
.brand-name { font-family: var(--ff-display); font-weight: 800; font-size: 1.05rem; color: #fff; letter-spacing: -.01em; }
.brand-name span { color: var(--aqua-300); }
.nav-menu { display: flex; align-items: center; gap: 1.4rem; }
.nav-menu a { color: rgba(255,255,255,.85); font-weight: 600; font-size: .94rem; transition: color .2s; }
.nav-menu a:hover { color: var(--lime-400); }
.nav-actions { display: flex; align-items: center; gap: .7rem; }
.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang-switch button {
  background: transparent; color: rgba(255,255,255,.7); border: 0; cursor: pointer;
  font-family: var(--ff-display); font-weight: 700; font-size: .78rem; padding: .35rem .6rem;
}
.lang-switch button.is-active { background: var(--aqua-400); color: var(--navy-900); }
.nav-burger { display: none; background: transparent; border: 0; cursor: pointer; width: 42px; height: 42px; position: relative; }
.nav-burger span { position: absolute; left: 9px; right: 9px; height: 2px; background: #fff; transition: .25s; }
.nav-burger span:nth-child(1) { top: 14px; } .nav-burger span:nth-child(2) { top: 20px; } .nav-burger span:nth-child(3) { top: 26px; }
.nav-open .nav-burger span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav-open .nav-burger span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ============================================================ HERO */
.hero { position: relative; background: var(--grad-hero); color: #fff; padding-top: calc(var(--nav-h) + clamp(36px, 8vw, 80px)); padding-bottom: clamp(48px, 9vw, 110px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background:
    radial-gradient(40% 50% at 12% 18%, rgba(31,200,223,.22), transparent 70%),
    radial-gradient(45% 45% at 92% 12%, rgba(198,242,78,.16), transparent 70%);
}
.hero-waves { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(60px, 12vw, 140px); pointer-events: none; }
.hero .wrap { position: relative; z-index: 2; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.4rem; }
.chip {
  display: inline-flex; align-items: center; gap: .4rem; font-family: var(--ff-display); font-weight: 700;
  font-size: .76rem; letter-spacing: .04em; text-transform: uppercase;
  padding: .42rem .8rem; border-radius: 999px; border: 1px solid var(--line); color: #fff; background: rgba(255,255,255,.05);
}
.chip-star { background: var(--grad-lime); color: var(--navy-900); border-color: transparent; }
.chip-iwwf { background: rgba(31,200,223,.16); border-color: rgba(31,200,223,.4); color: var(--aqua-300); }
.hero h1 { font-size: clamp(2.7rem, 9vw, 6rem); text-transform: uppercase; }
.hero h1 .amp { color: var(--aqua-300); font-style: italic; }
.hero-sub { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; margin: 1.1rem 0 0; font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.05rem, 3vw, 1.5rem); }
.hero-sub .dot { color: var(--lime-400); }
.hero-meta { margin-top: .5rem; color: rgba(255,255,255,.78); font-size: 1.02rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

/* Countdown */
.countdown { display: flex; gap: .6rem; margin-top: 2.2rem; flex-wrap: wrap; }
.cd-cell {
  min-width: 78px; text-align: center; padding: .9rem .7rem; border-radius: var(--r-md);
  background: rgba(255,255,255,.06); border: 1px solid var(--line); backdrop-filter: blur(4px);
}
.cd-num { display: block; font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.7rem, 5vw, 2.6rem); color: var(--aqua-300); font-variant-numeric: tabular-nums; line-height: 1; }
.cd-lbl { display: block; text-transform: uppercase; letter-spacing: .14em; font-size: .66rem; color: rgba(255,255,255,.65); margin-top: .35rem; }
.cd-live .cd-num { color: var(--lime-400); }
.cd-live-label { margin-top: 1rem; font-family: var(--ff-display); font-weight: 800; color: var(--lime-400); text-transform: uppercase; letter-spacing: .1em; }

/* ============================================================ FACTS BAR */
.factsbar { background: var(--navy-900); color: #fff; border-top: 1px solid var(--line); }
.factsbar .wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border-radius: var(--r-md); overflow: hidden; padding: 0; margin-block: 0; }
.factsbar .fact { background: var(--navy-800); padding: 1.1rem 1.2rem; }
.fact-k { font-family: var(--ff-display); font-weight: 800; font-size: 1.15rem; color: var(--aqua-300); }
.fact-v { font-size: .82rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; }

/* ============================================================ ABOUT */
.about-grid { display: grid; gap: 2.4rem; }
.about-points { display: grid; gap: 1rem; margin-top: 1.4rem; }
.about-point { display: flex; gap: .9rem; align-items: flex-start; }
.about-point .ico { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; background: var(--grad-aqua); display: grid; place-items: center; font-size: 1.1rem; }
.about-point h4 { font-size: 1.05rem; }
.about-point p { color: var(--ink-700); font-size: .96rem; }

/* ============================================================ RIDERS */
#riders { background: var(--navy-900); color: #fff; }
.riders-app { margin-top: 2rem; }
.riders-stats { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.rstat { display: flex; align-items: baseline; gap: .5rem; padding: .6rem 1.1rem; border: 1px solid var(--line); border-radius: var(--r-md); background: rgba(255,255,255,.04); }
.rstat-n { font-family: var(--ff-display); font-weight: 800; font-size: 1.7rem; color: var(--lime-400); }
.rstat-l { text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: rgba(255,255,255,.65); }
.rstat-ems { margin-left: auto; }
.riders-controls { display: grid; grid-template-columns: 1fr; gap: .7rem; margin-bottom: 1.1rem; }
.r-input, .r-select {
  width: 100%; padding: .8rem 1rem; border-radius: var(--r-sm); border: 1px solid var(--line);
  background: rgba(255,255,255,.06); color: #fff; font-family: var(--ff-body); font-size: .95rem;
}
.r-input::placeholder { color: rgba(255,255,255,.5); }
.r-select option { color: #000; }
.riders-tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); }
.riders-table { width: 100%; border-collapse: collapse; font-size: .94rem; min-width: 560px; }
.riders-table thead th {
  text-align: left; font-family: var(--ff-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; font-size: .72rem; color: var(--aqua-300); padding: .9rem 1rem;
  background: var(--navy-800); position: sticky; top: 0;
}
.riders-table tbody td { padding: .8rem 1rem; border-top: 1px solid var(--line); }
.riders-table tbody tr:hover { background: rgba(31,200,223,.06); }
.r-idx { color: rgba(255,255,255,.4); font-variant-numeric: tabular-nums; }
.r-name { font-weight: 600; }
.r-flag { font-size: 1.05rem; }
.r-cat { font-family: var(--ff-display); font-weight: 700; font-size: .78rem; padding: .15rem .5rem; border-radius: 6px; background: rgba(31,200,223,.16); color: var(--aqua-300); }
.r-yes { font-family: var(--ff-display); font-weight: 800; font-size: .78rem; color: var(--lime-400); }
.r-no { color: rgba(255,255,255,.3); }
.r-nomatch, .riders-count { color: rgba(255,255,255,.6); }
.riders-count { text-align: right; font-size: .82rem; margin-top: .8rem; }
.r-nomatch { text-align: center; padding: 2rem; }
/* Empty state */
.riders-empty { text-align: center; padding: clamp(2rem, 6vw, 4rem) 1rem; border: 1px dashed var(--line); border-radius: var(--r-lg); background: rgba(255,255,255,.03); }
.re-badge { display: inline-block; font-family: var(--ff-display); font-weight: 800; font-size: 1rem; letter-spacing: .1em; color: var(--navy-900); background: var(--grad-lime); padding: .35rem .9rem; border-radius: 999px; margin-bottom: 1rem; }
.riders-empty h3 { font-size: clamp(1.4rem, 4vw, 2rem); }
.riders-empty p { color: rgba(255,255,255,.78); max-width: 46ch; margin: .7rem auto 1.4rem; }
.re-note { font-size: .82rem; color: rgba(255,255,255,.5) !important; margin-top: 1rem !important; }

/* ============================================================ SCHEDULE */
.schedule { display: grid; gap: 1.1rem; margin-top: 2rem; }
.day-card { background: #fff; border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.day-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--grad-aqua); }
.day-num { font-family: var(--ff-display); font-weight: 800; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-500); }
.day-card h3 { font-size: 1.4rem; margin: .3rem 0 .5rem; }
.day-card p { color: var(--ink-700); }
.tbd { display: inline-block; font-family: var(--ff-display); font-weight: 700; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--coral-400); border: 1px dashed var(--coral-400); border-radius: 6px; padding: .12rem .45rem; margin-left: .4rem; vertical-align: middle; }

/* ============================================================ CATEGORIES */
.cats-grid { display: grid; gap: 1.2rem; margin-top: 2rem; }
.cat-card { background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; }
.cat-card h3 { color: #fff; font-size: 1.5rem; display: flex; align-items: center; gap: .6rem; }
.cat-card h3 .ico { font-size: 1.4rem; }
.cat-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.cat-tag { font-family: var(--ff-display); font-weight: 700; font-size: .82rem; padding: .4rem .8rem; border-radius: 999px; background: rgba(31,200,223,.14); color: var(--aqua-300); border: 1px solid rgba(31,200,223,.3); }
.cat-card .mf { color: rgba(255,255,255,.65); font-size: .88rem; margin-top: .8rem; }
.prize-banner { margin-top: 1.6rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; background: var(--grad-lime); color: var(--navy-900); border-radius: var(--r-lg); padding: 1.3rem 1.6rem; }
.prize-banner .big { font-family: var(--ff-display); font-weight: 800; font-size: 1.5rem; }

/* ============================================================ REGISTER */
.reg-grid { display: grid; gap: 1.4rem; margin-top: 2rem; }
.reg-card { background: #fff; border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: 1.7rem; box-shadow: var(--shadow); }
.reg-card h3 { font-size: 1.3rem; margin-bottom: .8rem; }
.reg-steps { list-style: none; display: grid; gap: .8rem; }
.reg-steps li { display: flex; gap: .8rem; align-items: flex-start; color: var(--ink-700); }
.reg-steps .n { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--navy-900); color: #fff; font-family: var(--ff-display); font-weight: 800; font-size: .82rem; display: grid; place-items: center; }
.reg-note { margin-top: 1rem; padding: .9rem 1rem; background: var(--sand-100); border-left: 3px solid var(--coral-400); border-radius: 8px; font-size: .9rem; color: var(--ink-700); }
.reg-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }

/* ============================================================ LOCATION */
.loc-grid { display: grid; gap: 2rem; align-items: center; }
.loc-card { background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; }
.loc-card h3 { color: #fff; font-size: 1.6rem; }
.loc-list { list-style: none; margin: 1.2rem 0; display: grid; gap: .7rem; }
.loc-list li { display: flex; gap: .7rem; color: rgba(255,255,255,.82); }
.loc-list .ico { color: var(--aqua-300); }
.loc-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.loc-map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); min-height: 280px; background: linear-gradient(135deg, #0a3147, #06222e); display: grid; place-items: center; text-align: center; color: rgba(255,255,255,.6); padding: 2rem; }
.loc-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ============================================================ GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin-top: 2rem; }
.gal-item { position: relative; aspect-ratio: 4/3; border-radius: var(--r-md); overflow: hidden; cursor: pointer; background: linear-gradient(135deg, #0f4257, #06222e); border: 1px solid var(--line-dark); }
.gal-item .ph { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.55); font-family: var(--ff-display); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .78rem; }
.gallery-note { text-align: center; color: var(--ink-500); margin-top: 1.2rem; font-size: .9rem; }

/* ============================================================ SPONSORS */
.sponsors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.sponsor { aspect-ratio: 16/7; border: 1px dashed var(--line-dark); border-radius: var(--r-md); display: grid; place-items: center; color: var(--ink-500); font-family: var(--ff-display); font-weight: 700; background: #fff; }

/* ============================================================ FAQ */
.faq { max-width: 820px; margin: 2rem auto 0; }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-q { width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer; padding: 1.2rem 2.4rem 1.2rem 0; font-family: var(--ff-display); font-weight: 700; font-size: 1.06rem; color: var(--ink-900); position: relative; }
.faq-q::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--teal-500); transition: transform .25s; }
.faq-active .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--ink-700); }
.faq-active .faq-a { max-height: 320px; }
.faq-a p { padding: 0 0 1.2rem; }

/* ============================================================ CONTACT */
.contact-grid { display: grid; gap: 1.2rem; margin-top: 2rem; }
.contact-card { background: rgba(255,255,255,.05); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; }
.contact-card .role { font-family: var(--ff-display); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: var(--aqua-300); }
.contact-card h3 { color: #fff; font-size: 1.3rem; margin: .3rem 0 .8rem; }
.contact-card a { color: rgba(255,255,255,.85); display: inline-flex; gap: .5rem; align-items: center; margin-top: .35rem; }
.contact-card a:hover { color: var(--lime-400); }

/* ============================================================ FOOTER */
.footer { background: var(--navy-900); color: rgba(255,255,255,.7); border-top: 1px solid var(--line); padding-block: 2.4rem; }
.footer .wrap { display: grid; gap: 1.4rem; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.4rem; align-items: center; }
.footer-logos { display: flex; align-items: center; gap: 1rem; font-family: var(--ff-display); font-weight: 800; color: #fff; }
.footer-logos .sep { color: var(--line); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; font-size: .9rem; }
.footer-links a:hover { color: var(--lime-400); }
.footer-legal { font-size: .8rem; color: rgba(255,255,255,.45); border-top: 1px solid var(--line); padding-top: 1.2rem; }

/* ============================================================ LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(4,22,31,.92); z-index: 100; display: none; place-items: center; padding: 4vw; }
.lightbox.lb-open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--r-md); }
.lb-close { position: absolute; top: 18px; right: 22px; font-size: 2rem; color: #fff; cursor: pointer; line-height: 1; background: transparent; border: 0; }

/* ============================================================ REAL ASSETS (logos, photos, fees) */
.brand-logo { height: 46px; width: auto; display: block; filter: drop-shadow(0 0 1px rgba(4,22,31,.6)); }

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(4,22,31,.62) 0%, rgba(4,22,31,.78) 55%, rgba(4,22,31,.94) 100%),
    url("../assets/photos/hero-cable.webp") center 35% / cover no-repeat;
}
.hero::before { z-index: 1; }
.hero-logo { margin: .2rem 0; }
.hero-logo img { width: min(500px, 80vw); height: auto;
  filter: drop-shadow(0 0 1.4px rgba(4,22,31,.7)) drop-shadow(0 1px 1px rgba(4,22,31,.55)) drop-shadow(0 12px 34px rgba(0,0,0,.5)); }

.day-time { font-family: var(--ff-display); font-weight: 800; font-size: 1.15rem; color: var(--teal-500); }
#program .reg-note { margin-top: 1.4rem; }

/* Fees */
.fees { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 1.4rem 0 2.2rem; }
.fee-card { position: relative; background: #fff; border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: 1.6rem 1.4rem; text-align: center; box-shadow: var(--shadow); }
.fee-card--accent { background: var(--grad-hero); border-color: transparent; }
.fee-amt { font-family: var(--ff-display); font-weight: 800; font-size: 2.7rem; line-height: 1; color: var(--teal-500); }
.fee-card--accent .fee-amt { color: var(--lime-400); }
.fee-lbl { margin-top: .55rem; font-weight: 600; color: var(--ink-700); }
.fee-card--accent .fee-lbl { color: rgba(255,255,255,.85); }
.fee-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad-lime); color: var(--navy-900); font-family: var(--ff-display); font-weight: 800; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; padding: .26rem .8rem; border-radius: 999px; white-space: nowrap; }

/* Gallery images */
.gal-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.gal-item:hover img { transform: scale(1.07); }

/* Sponsors / partner logos */
.sponsor { padding: 1.4rem 1.2rem; border: 1px solid var(--line-dark); background: #fff; min-height: 116px; min-width: 0; aspect-ratio: auto; overflow: hidden; }
.sponsor .logo { max-width: 100%; max-height: 60px; width: auto; height: auto; object-fit: contain; }
.sponsor--dark { background: var(--navy-800); border-color: var(--line); }
/* logo portret înalt (CS Wake Empire) — lasă-l mai înalt ca să se vadă */
.sponsor--portrait .logo { max-height: 92px; max-width: 64%; }
/* logo tile cu fundal propriu (A2 Wake Empire -05) — colțuri rotunjite */
.logo--tile { border-radius: 8px; max-height: 78px; }

/* Video / atmosfera — cadru tip telefon */
.video-wrap { display: grid; gap: 2.2rem; align-items: center; }
.video-copy .btn { margin-top: 1.4rem; }
.phone-frame {
  width: min(300px, 74vw); margin-inline: auto; aspect-ratio: 9 / 16;
  border-radius: 30px; overflow: hidden; background: #000;
  border: 4px solid #0a3147;
  box-shadow: 0 30px 70px -28px rgba(0,0,0,.85), 0 0 0 1px var(--line);
}
.wc-video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Sub egida — strip organizator + logo-uri IWWF/FRSW (în secțiunea Despre) */
.aegis { margin-top: 2.6rem; padding-top: 1.9rem; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.1rem 2.2rem; text-align: center; }
.aegis-text { font-family: var(--ff-display); font-weight: 600; color: var(--ink-700); font-size: 1.02rem; max-width: 42ch; }
.aegis-text strong { color: var(--ink-900); }
.aegis-logos { display: flex; align-items: center; gap: 1.4rem; }
.aegis-logos img { height: 40px; width: auto; }
.aegis-logos img[src*="iwwf"] { height: 46px; border-radius: 6px; }

/* Note suplimentare */
.format-note { margin-top: 1.4rem; color: rgba(255,255,255,.72); font-size: .92rem; }
.loc-note { margin-top: 1.1rem; color: rgba(255,255,255,.6); font-size: .85rem; line-height: 1.5; }
.contact-sub { color: rgba(255,255,255,.72); font-size: .92rem; margin: -.1rem 0 .7rem; }

/* Cazare / pachet Fresh Planet — banner */
.pkg-banner {
  display: grid; gap: 1.8rem; align-items: center;
  background: var(--grad-hero); color: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.pkg-banner::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 80% at 100% 0%, rgba(198,242,78,.15), transparent 60%); }
.pkg-left, .pkg-right { position: relative; }
.pkg-banner .eyebrow { color: var(--aqua-300); }
.pkg-banner h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); margin: .4rem 0 0; }
.pkg-lead { color: rgba(255,255,255,.82); max-width: 54ch; margin-top: .6rem; }
.pkg-includes { list-style: none; display: grid; gap: .55rem; margin: 1.2rem 0 .9rem; }
.pkg-includes li { position: relative; padding-left: 1.7rem; color: #fff; font-weight: 600; }
.pkg-includes li::before { content: "✓"; position: absolute; left: 0; color: var(--lime-400); font-weight: 800; }
.pkg-not { color: rgba(255,255,255,.55); font-size: .85rem; }
.pkg-right { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .25rem; }
.pkg-price { display: flex; align-items: baseline; gap: .35rem; flex-wrap: wrap; justify-content: center; }
.pkg-from { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; color: rgba(255,255,255,.6); }
.pkg-amt { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2.4rem, 6vw, 3.2rem); color: var(--lime-400); line-height: 1; }
.pkg-per { font-size: .85rem; color: rgba(255,255,255,.72); }
.pkg-dates { font-family: var(--ff-display); font-weight: 700; font-size: .9rem; color: var(--aqua-300); margin-bottom: .9rem; }
.pkg-right .btn { width: 100%; max-width: 320px; }
@media (min-width: 820px) { .pkg-banner { grid-template-columns: 1.5fr auto; } .pkg-right { min-width: 230px; } }

/* ============================================================ RESPONSIVE */
@media (min-width: 700px) {
  .factsbar .wrap { grid-template-columns: repeat(5, 1fr); }
  .about-grid { grid-template-columns: 1.1fr .9fr; }
  .riders-controls { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .schedule { grid-template-columns: repeat(3, 1fr); }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .reg-grid { grid-template-columns: repeat(2, 1fr); }
  .fees { grid-template-columns: 1fr 1fr; max-width: 660px; }
  .video-wrap { grid-template-columns: 1.1fr auto; }
  .loc-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .sponsors-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 880px) {
  .nav-menu { position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: flex-start;
    background: rgba(4,22,31,.97); backdrop-filter: blur(12px); padding: 1.4rem var(--pad); gap: 1.1rem;
    transform: translateY(-120%); transition: transform .32s cubic-bezier(.2,.7,.2,1); border-bottom: 1px solid var(--line); }
  .nav-open .nav-menu { transform: translateY(0); }
  .nav-menu a { font-size: 1.1rem; }
  .nav-burger { display: block; }
  .nav-actions .lang-switch { order: -1; }
}
@media (max-width: 420px) {
  .cd-cell { min-width: 64px; padding: .7rem .5rem; }
  .hero-cta .btn { width: 100%; }
}
