:root {
  --primary:   #000000;
  --secondary: #f0e800;
  --light:     #ffffff;
  --dark:      #111111;
  --nav-h:     76px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, Cantarell, sans-serif;
  color: var(--dark);
  background: var(--light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
}

body.menu-open { overflow: hidden; }

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: var(--nav-h);
  background: var(--primary);
  border-bottom: 1px solid rgba(240,232,0,0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

body > *:not(nav):not(.fullscreen-menu) {
  margin-top: var(--nav-h);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  z-index: 1101;
}

.nav-logo img {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  object-fit: cover;
}

.nav-logo-text { display: flex; flex-direction: column; gap: 2px; }

.nav-logo-text strong {
  color: var(--secondary);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.nav-logo-text small {
  color: rgba(255,255,255,0.55);
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===================== DESKTOP NAV LINKS ===================== */
.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 4px;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  cursor: pointer;
  user-select: none;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  border-radius: 6px;
  transition: all 0.25s ease;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--secondary);
  background: rgba(240,232,0,0.06);
}

.nav-links > li > a .arrow-down {
  font-size: 0.6rem;
  transition: transform 0.25s ease;
}

.nav-links > li:hover > a .arrow-down {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.nav-links > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dropdown li a:hover,
.dropdown li a.active {
  color: var(--secondary);
  background: rgba(240,232,0,0.06);
  padding-left: 20px;
}

/* ===================== HAMBURGER ===================== */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  z-index: 1101;
  position: relative;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--light);
  border-radius: 1px;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: right center;
}

.menu-toggle span:nth-child(1) { width: 28px; }
.menu-toggle span:nth-child(2) { width: 20px; background: var(--secondary); }
.menu-toggle span:nth-child(3) { width: 28px; }

.menu-toggle:hover span:nth-child(2) { width: 28px; }

.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) scaleX(1.1);
  background: var(--secondary);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) scaleX(1.1);
  background: var(--secondary);
}

/* ===================== FULLSCREEN MENU (MOBILE) ===================== */
.fullscreen-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  bottom: 0;
  z-index: 1050;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.45s ease, clip-path 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.fullscreen-menu.active {
  opacity: 1;
  pointer-events: auto;
  clip-path: inset(0 0 0% 0);
}

.fullscreen-menu::after {
  content: '';
  position: absolute;
  left: 40px; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(240,232,0,0.4), transparent);
}

.menu-inner {
  width: min(680px, 88vw);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 48px 0 40px;
}

.menu-list {
  list-style: none;
  width: 100%;
}

.menu-list > li {
  border-top: 1px solid rgba(255,255,255,0.07);
}
.menu-list > li:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.simple-link,
.sub-toggle {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: var(--light);
  text-align: left;
  transition: color 0.25s;
  position: relative;
}

.simple-link::after,
.sub-toggle::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--secondary);
  transition: width 0.35s ease;
}

.simple-link:hover,
.sub-toggle:hover {
  color: var(--secondary);
}

.simple-link:hover::after,
.sub-toggle:hover::after {
  width: 100%;
}

.link-num {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(240,232,0,0.6);
  min-width: 24px;
}

.link-label {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  flex: 1;
  text-transform: uppercase;
}

.arrow {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.25s, transform 0.3s ease;
  flex-shrink: 0;
}

.has-sub.open > .sub-toggle .arrow {
  transform: rotate(45deg);
  color: var(--secondary);
}

.has-sub.open > .sub-toggle {
  color: var(--secondary);
}

.submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  padding-left: 44px;
}

.has-sub.open .submenu {
  max-height: 320px;
}

.submenu li a {
  display: block;
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s, padding-left 0.2s;
}

.submenu li a:hover,
.submenu li a.active {
  color: var(--secondary);
  padding-left: 8px;
}

/* ===================== MENU FOOTER ===================== */
.menu-footer {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-footer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--primary);
  border-top: 1px solid rgba(240,232,0,0.25);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  letter-spacing: 0.3px;
  max-width: 480px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
}

.footer-copy a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-copy a:hover {
  color: var(--secondary);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin: 20px 0 16px;
  width: 100%;
}

.footer-legal a {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: var(--secondary);
}

/* ════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
════════════════════════════════════════════════════════════ */

#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  background: #111;
  border-top: 1px solid rgba(240,232,0,0.15);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookieConsent.cookie-show {
  transform: translateY(0);
}

#cookieConsent.cookie-hide {
  transform: translateY(100%);
}

.cookie-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  min-width: 240px;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.cookie-content a {
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-btn-accept {
  background: var(--secondary);
  color: var(--primary);
}

.cookie-btn-accept:hover {
  background: #e6d700;
}

.cookie-btn-reject {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
}

.cookie-btn-reject:hover {
  background: rgba(255,255,255,0.1);
  color: var(--light);
}

@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-btns {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .nav-logo-text small {
    display: block;
  }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }

  .nav-links { display: none; }

  .nav-logo img { width: 44px; height: 44px; }
  .nav-logo-text small { display: none; }

  .fullscreen-menu::after { display: none; }

  .menu-inner { padding: 32px 0 28px; }

  .link-label { font-size: 1.2rem; }

  .footer-inner {
    padding: 36px 20px 28px;
    gap: 20px;
  }

  .footer-tagline {
    font-size: 0.9rem;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  nav { padding: 0 16px; }
  .nav-logo-text strong { font-size: 0.85rem; }
}

/* ═══════════════════ SHARED PAGE HERO */
.page-hero {
  background: #0c0c0c;
  padding: 80px 24px 40px;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #f0e800 0px,
    #f0e800 20px,
    transparent 20px,
    transparent 30px
  );
}

.page-hero h1 {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1;
}

.page-hero h1 span {
  color: #f0e800;
}

.page-hero p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.2);
  max-width: 360px;
  line-height: 1.5;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-hero { padding: 60px 20px 32px; }
  .page-hero h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .page-hero { padding: 50px 16px 28px; }
  .page-hero h1 { font-size: 1.5rem; }
}
