/* ══════════════════════════════════════════
   BASE — Nav, Footer, Sections, Buttons
══════════════════════════════════════════ */


/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  z-index: 1100;
  background: rgba(1,11,28,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo,
.nav-logo:visited,
.nav-logo:active,
.nav-logo:hover {
  display: flex; align-items: center;
  text-decoration: none; line-height: 1;
  gap: 14px; cursor: auto;
  color: var(--white);
  -webkit-tap-highlight-color: transparent;
}
.nav-symbol {
  height: 38px; width: 38px; display: block;
  flex-shrink: 0;
}
.nav-logo-sep {
  width: 1px; height: 26px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex; flex-direction: column; gap: 4px;
}
.nav-logo-name {
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.26em;
  color: rgba(255,255,255,0.92);
  -webkit-text-fill-color: rgba(255,255,255,0.92);
  line-height: 1;
}
.nav-logo-tagline {
  font-size: 7px; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(217,164,65,0.5);
  line-height: 1;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--muted); text-transform: uppercase;
  text-decoration: none; transition: color 0.2s;
  cursor: pointer;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid rgba(217,164,65,0.35);
  color: rgba(217,164,65,0.8);
  padding: 9px 20px; background: transparent;
  text-decoration: none; cursor: pointer;
  transition: all 0.25s; border-radius: 2px;
}
.nav-cta:hover {
  background: rgba(217,164,65,0.08);
  border-color: rgba(217,164,65,0.6);
  color: var(--gold);
}
.nav-studio-sep {
  width: 1px;
  height: 16px;
  background: var(--faint);
}

.nav-links .nav-studio-badge {
  color: var(--gold);
  border: 1px solid rgba(217, 164, 65, 0.4);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links .nav-studio-badge:hover {
  background: var(--gold-dim);
}
.lang-btn {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.48);
  background: transparent; border: 1px solid rgba(255,255,255,0.14);
  border-radius: 3px; padding: 5px 11px; cursor: pointer;
  transition: all 0.2s; margin-right: 4px;
}
.lang-btn:hover { color: rgba(217,164,65,0.85); border-color: rgba(217,164,65,0.35); }

/* ── SECTIONS ── */
section { padding: 100px 56px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.eyebrow-section {
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(217,164,65,0.55); margin-bottom: 16px;
  display: block;
}
.section-h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--white);
  margin-bottom: 16px;
}
.section-h2 em { font-style: normal; color: var(--gold); font-weight: 400; }
.section-sub {
  font-size: 14px; color: var(--muted);
  line-height: 1.72; max-width: 520px; margin-bottom: 56px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: #060f1a;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 14px 28px; border: none;
  cursor: pointer; border-radius: 2px;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-ghost {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9.5px; font-weight: 300;
  color: var(--muted); cursor: pointer;
  background: none; border: none;
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s; text-decoration: none;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ── BEAM DIVIDER ── */
.beam {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(217,164,65,0.12) 25%,
    rgba(217,164,65,0.28) 50%,
    rgba(217,164,65,0.12) 75%,
    transparent 100%);
}

/* ── FOOTER ── */
footer {
  background: #030810;
  padding: 52px 56px 32px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 7px; }
.footer-logo {
  font-size: 12px; font-weight: 300;
  letter-spacing: 0.38em; color: rgba(255,255,255,0.65);
}
.footer-tagline {
  font-size: 10px; color: rgba(255,255,255,0.18);
  letter-spacing: 0.1em; line-height: 1.6;
}
.footer-email {
  font-size: 11px; color: rgba(217,164,65,0.38);
  letter-spacing: 0.04em; margin-top: 4px;
}
.footer-cols { display: flex; gap: 56px; }
.footer-col h4 {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.58); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 11.5px; font-weight: 300;
  color: rgba(255,255,255,0.32); letter-spacing: 0.03em;
  text-decoration: none; margin-bottom: 10px;
  cursor: pointer; transition: color 0.2s;
}
.footer-col a:hover { color: rgba(217,164,65,0.7); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-size: 10px; color: rgba(255,255,255,0.18); letter-spacing: 0.06em;
}
.footer-slogan {
  font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(217,164,65,0.18);
}

/* ── REVEAL ON SCROLL ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
              transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── HAMBURGER + MENU MOBILE ── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent; border: none; cursor: pointer;
  padding: 4px; z-index: 1100;
}
.nav-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: rgba(255,255,255,0.72);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── DRAWER BACKDROP ── */
.nav-mobile-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 1040;
  background: rgba(0,0,0,0);
  transition: background 0.35s ease;
}
.nav-mobile-backdrop.open {
  display: block;
  background: rgba(0,0,0,0.55);
}

/* ── DRAWER PANEL ── */
.nav-mobile {
  position: fixed; top: 0; right: 0; left: auto; height: auto;
  bottom: auto;
  width: min(72vw, 280px);
  z-index: 1050;
  background: rgba(6,15,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(217,164,65,0.1);
  border-bottom: 1px solid rgba(217,164,65,0.06);
  border-bottom-left-radius: 12px;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-start;
  padding: 72px 24px 32px;
  box-sizing: border-box;
  gap: 2px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  overflow: visible;
  pointer-events: none;
}
.nav-mobile.open {
  transform: translateX(0);
  pointer-events: all;
}
.nav-mobile a, .nav-mobile button {
  font-size: 16px; font-weight: 300; letter-spacing: -0.01em;
  color: rgba(255,255,255,0.65); text-decoration: none;
  padding: 10px 0; background: transparent; border: none;
  cursor: pointer; transition: color 0.2s;
  width: 100%;
}
.nav-mobile a:hover, .nav-mobile button:hover { color: var(--gold); }
.nav-mobile .nav-mobile-cta {
  margin-top: 20px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: #030810;
  background: var(--gold); border-radius: 2px;
  padding: 12px 16px; text-align: left;
  width: auto; box-sizing: border-box;
  white-space: normal; line-height: 1.4;
}
.nav-mobile .nav-mobile-cta:hover { opacity: 0.88; color: #030810; }
.nav-mobile-sep { width: 100%; height: 1px; background: rgba(255,255,255,0.06); margin: 2px 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-sep { height: 20px; }
  section { padding: 72px 24px; }
  #manifesto, #cta-final { padding: 80px 24px; }
  footer { padding: 40px 24px 24px; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-cols { gap: 32px; }
  .btn-primary, .btn-ghost, .nav-cta, a, button { cursor: pointer; }

}

/* ── NAV RIGHT GROUP ── */
.nav-right {
  display: none;
  align-items: center;
  gap: 8px;
}
@media (max-width: 900px) {
  .nav-right { display: flex; }
}

/* ── LANG BUTTON MOBILE (alongside hamburger) ── */
#lang-toggle-mobile {
  display: none;
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  background: transparent;
  border: 1px solid rgba(217,164,65,0.2);
  border-radius: 2px;
  padding: 4px 8px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-right: 8px;
}
#lang-toggle-mobile:hover { color: rgba(217,164,65,0.85); border-color: rgba(217,164,65,0.35); }
@media (max-width: 900px) {
  #lang-toggle-mobile { display: flex; align-items: center; }
}

/* ── COOKIE CONSENT BANNER ── */
#cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%);
  z-index: 9000;
  width: calc(100% - 48px); max-width: 720px;
  background: rgba(3,8,20,0.97);
  border: 1px solid rgba(217,164,65,0.2);
  border-radius: 8px;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
#cookie-banner.cb-show { transform: translateX(-50%) translateY(0); }
.cb-text {
  flex: 1; font-size: 12px; color: rgba(255,255,255,0.58);
  line-height: 1.6; margin: 0; min-width: 200px;
}
.cb-link {
  color: rgba(217,164,65,0.7); text-decoration: underline;
  text-underline-offset: 2px; white-space: nowrap;
}
.cb-link:hover { color: var(--gold); }
.cb-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cb-btn {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 2px;
  padding: 9px 18px; cursor: pointer; border: 1px solid transparent;
  transition: all 0.2s;
}
.cb-reject {
  background: transparent; color: rgba(255,255,255,0.45);
  border-color: rgba(255,255,255,0.14);
}
.cb-reject:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }
.cb-accept {
  background: var(--gold); color: #030810; border-color: var(--gold);
}
.cb-accept:hover { opacity: 0.88; }
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; gap: 14px; bottom: 16px; }
  .cb-actions { width: 100%; }
  .cb-btn { flex: 1; text-align: center; }
}

