/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black: #000000; --dark: #0a0a0a; --dark-gray: #1a1a1a; --mid-gray: #2a2a2a;
  --light-gray: #888; --white: #ffffff; --orange: #d4845a; --orange-hover: #e09570;
  --lime: #c8e64a; --font-heading: 'Oswald', sans-serif; --font-body: 'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--black); color: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; } img { max-width: 100%; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(10,10,10,0.95); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px; border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(0); transition: transform 0.5s ease;
}
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-banner p { font-size: 13px; color: var(--light-gray); letter-spacing: 0.5px; }
.cookie-banner a { color: var(--white); text-decoration: underline; }
.cookie-btn {
  background: var(--orange); color: var(--white); border: none; padding: 14px 28px;
  font-family: var(--font-heading); font-size: 13px; letter-spacing: 3px;
  cursor: pointer; border-radius: 30px; white-space: nowrap; transition: background 0.3s;
}
.cookie-btn:hover { background: var(--orange-hover); }

/* ===== NAVIGATION ===== */
.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px; transition: background 0.3s;
}
.main-nav.scrolled { background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); }
.logo-text {
  font-family: var(--font-heading); font-size: 18px; font-weight: 700;
  letter-spacing: 2px; color: var(--white);
}
.nav-links { display: flex; gap: 40px; }
.nav-link {
  font-family: var(--font-heading); font-size: 13px; letter-spacing: 3px;
  color: var(--light-gray); transition: color 0.3s; position: relative; cursor: pointer;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--white); transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--white);
  margin: 5px 0; transition: 0.3s;
}
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.98); z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 30px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-family: var(--font-heading); font-size: 24px; letter-spacing: 4px;
  color: var(--light-gray); transition: color 0.3s;
}
.mobile-link:hover { color: var(--white); }

/* ===== SECTION: CR7 HERO ===== */
.section { min-height: 100vh; position: relative; }
.section-cr7 { padding-top: 80px; }
.cr7-layout { display: flex; height: calc(100vh - 80px); }
.cr7-left { width: 30%; position: relative; overflow: hidden; }
.career-card {
  position: absolute; inset: 0; cursor: pointer; overflow: hidden;
}
.career-card-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%),
              url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?w=600&h=900&fit=crop');
  background-size: cover; background-position: center;
  transition: transform 0.6s ease; filter: grayscale(0.5);
}
.career-card:hover .career-card-bg { transform: scale(1.05); }
.career-card-content {
  position: absolute; bottom: 40px; left: 40px; right: 40px; z-index: 2;
}
.career-card-content h2 {
  font-family: var(--font-heading); font-size: 22px; letter-spacing: 4px;
  margin-bottom: 10px;
}
.career-card-content h2 strong { font-weight: 700; }
.career-card-content p { font-size: 14px; color: var(--light-gray); margin-bottom: 20px; }
.view-link {
  font-family: var(--font-heading); font-size: 12px; letter-spacing: 3px;
  color: var(--white); display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.3s;
}
.view-link:hover { color: var(--orange); }
.view-link .arrow { font-size: 16px; transition: transform 0.3s; }
.view-link:hover .arrow { transform: translateX(4px); }
.cr7-right { width: 70%; overflow: hidden; }
.image-strips { display: flex; height: 100%; gap: 4px; padding: 60px 40px 40px; }
.strip {
  flex: 1; background-size: cover; background-position: center;
  border-radius: 4px; transition: flex 0.5s ease, filter 0.3s;
  filter: brightness(0.8); cursor: pointer;
}
.strip:hover { flex: 1.5; filter: brightness(1); }

/* ===== SECTION: CAREER HIGHLIGHTS ===== */
.section-career { padding: 0; overflow: hidden; }
.career-slider-container { position: relative; width: 100%; height: 100vh; }
.career-slider { display: flex; height: calc(100% - 60px); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.career-slider::-webkit-scrollbar { display: none; }
.career-slide {
  min-width: 70%; height: 100%; position: relative; scroll-snap-align: start;
  flex-shrink: 0; overflow: hidden;
}
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s; }
.career-slide:hover .slide-bg { transform: scale(1.03); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
}
.slide-content { position: absolute; bottom: 40px; left: 40px; z-index: 2; }
.team-name {
  font-family: var(--font-heading); font-size: 28px; letter-spacing: 4px;
  font-weight: 600; text-transform: uppercase;
}
.slider-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 60px; display: flex; align-items: center; padding: 0 40px; }
.progress-track { width: 100%; height: 2px; background: rgba(255,255,255,0.15); position: relative; }
.progress-segments { display: flex; height: 100%; }
.segment { flex: 1; position: relative; }
.segment::after {
  content: ''; position: absolute; inset: 0;
  background: var(--white); transform: scaleX(0); transform-origin: left;
  transition: transform 5s linear;
}
.segment.active::after { transform: scaleX(1); }
.segment.done::after { transform: scaleX(1); transition: none; }

/* ===== SECTION: MUSEUM ===== */
.section-museum {
  min-height: 100vh; padding: 80px 40px;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}
.museum-tag {
  font-family: var(--font-heading); font-size: 22px; letter-spacing: 3px;
  color: var(--lime); display: block; margin-bottom: 30px; font-style: italic;
  font-weight: 700;
}
.museum-layout { display: flex; gap: 4px; height: 70vh; }
.museum-left { flex: 1.3; }
.museum-img {
  width: 100%; height: 100%; background-size: cover; background-position: center;
  border-radius: 4px; filter: grayscale(0.4); transition: filter 0.3s;
}
.museum-img:hover { filter: grayscale(0); }
.museum-right { flex: 1; }
.museum-img-right {
  width: 100%; height: 100%; background-size: cover; background-position: center;
  border-radius: 4px; filter: grayscale(0.6); transition: filter 0.3s;
}
.museum-img-right:hover { filter: grayscale(0); }

/* ===== BRANDS OVERLAY ===== */
.brands-overlay {
  position: fixed; inset: 0; z-index: 2000; background: var(--black);
  display: none; opacity: 0; transition: opacity 0.4s;
}
.brands-overlay.open { display: flex; opacity: 1; }
.brands-close {
  position: absolute; top: 20px; right: 30px; background: none; border: none;
  color: var(--white); font-size: 28px; cursor: pointer; z-index: 10; transition: transform 0.3s;
}
.brands-close:hover { transform: rotate(90deg); }
.brands-content { display: flex; width: 100%; height: 100%; }
.brands-sidebar {
  width: 200px; padding: 100px 40px; display: flex; flex-direction: column; gap: 20px; z-index: 2;
}
.brand-item {
  font-family: var(--font-heading); font-size: 14px; letter-spacing: 3px;
  color: var(--light-gray); cursor: pointer; display: flex; align-items: center;
  gap: 12px; transition: color 0.3s;
}
.brand-item:hover, .brand-item.active { color: var(--white); }
.brand-indicator {
  width: 3px; height: 20px; background: transparent; transition: background 0.3s;
}
.brand-item.active .brand-indicator { background: var(--orange); }
.brands-display { flex: 1; position: relative; overflow: hidden; }
.brand-panel {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s;
  display: flex; align-items: flex-end;
}
.brand-panel.active { opacity: 1; z-index: 1; }
.brand-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.brand-info {
  position: relative; z-index: 2; padding: 60px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
  width: 100%;
}
.brand-category {
  font-family: var(--font-heading); font-size: 18px; letter-spacing: 3px;
  color: var(--light-gray); display: block; margin-bottom: 5px;
}
.brand-title {
  font-family: var(--font-heading); font-size: 40px; letter-spacing: 4px;
  font-weight: 700; margin-bottom: 15px;
}
.brand-desc { font-size: 14px; color: var(--light-gray); max-width: 500px; margin-bottom: 20px; line-height: 1.6; }
.shop-link {
  font-family: var(--font-heading); font-size: 12px; letter-spacing: 3px;
  display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s;
}
.shop-link:hover { color: var(--orange); }
.shop-link .arrow { transition: transform 0.3s; }
.shop-link:hover .arrow { transform: translateX(4px); }

/* ===== MUSEUM OVERLAY ===== */
.museum-overlay {
  position: fixed; inset: 0; z-index: 2000; background: var(--black);
  display: none; opacity: 0; transition: opacity 0.4s;
}
.museum-overlay.open { display: flex; opacity: 1; }
.museum-close {
  position: absolute; top: 20px; right: 30px; background: none; border: none;
  color: var(--white); font-size: 32px; cursor: pointer; z-index: 10; transition: transform 0.3s;
}
.museum-close:hover { transform: rotate(90deg); }
.museum-overlay-content { display: flex; width: 100%; height: 100%; position: relative; }
.museum-overlay-left { flex: 1.3; position: relative; }
.museum-overlay-img { width: 100%; height: 100%; background-size: cover; background-position: center; }
.museum-overlay-right { flex: 1; position: relative; }
.museum-overlay-img-2 { width: 100%; height: 100%; background-size: cover; background-position: center; filter: grayscale(1); }
.museum-overlay-info {
  position: absolute; bottom: 80px; left: 80px; z-index: 2;
}
.museum-overlay-tag {
  font-family: var(--font-heading); font-size: 20px; letter-spacing: 3px;
  color: var(--lime); margin-bottom: 10px;
}
.museum-overlay-title {
  font-family: var(--font-heading); font-size: 36px; letter-spacing: 5px;
  font-weight: 700; margin-bottom: 15px;
}
.museum-overlay-info p { font-size: 14px; color: var(--light-gray); margin-bottom: 5px; }
.museum-buttons { display: flex; gap: 15px; margin-top: 25px; flex-wrap: wrap; }
.museum-btn {
  padding: 14px 24px; border: none; background: var(--lime); color: var(--black);
  font-family: var(--font-heading); font-size: 12px; letter-spacing: 2px;
  font-weight: 600; cursor: pointer; border-radius: 2px; transition: all 0.3s;
}
.museum-btn:hover { background: #d4f050; transform: translateY(-2px); }

/* ===== SECTION: PARTNERS ===== */
.section-partners {
  min-height: 50vh; padding: 80px 40px;
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.section-title {
  font-family: var(--font-heading); font-size: 14px; letter-spacing: 5px;
  text-align: center; margin-bottom: 60px; color: var(--light-gray);
}
.partners-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  max-width: 800px; margin: 0 auto;
}
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 30px; border: 1px solid rgba(255,255,255,0.08); border-radius: 4px;
  transition: all 0.3s; cursor: pointer;
}
.partner-logo:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.03); }
.partner-text {
  font-family: var(--font-heading); font-size: 16px; letter-spacing: 4px;
  color: var(--light-gray); font-weight: 500;
}

/* ===== SECTION: NEWSLETTER ===== */
.section-newsletter {
  min-height: auto; padding: 80px 40px;
  display: flex; align-items: center; justify-content: center;
}
.newsletter-container { width: 100%; max-width: 800px; margin: 0 auto; }
.newsletter-box {
  background: var(--dark-gray); padding: 60px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.05); text-align: center;
}
.newsletter-box h2 {
  font-family: var(--font-heading); font-size: 14px; letter-spacing: 5px;
  margin-bottom: 15px; color: var(--white);
}
.newsletter-box > p { font-size: 14px; color: var(--light-gray); margin-bottom: 30px; line-height: 1.6; }
.privacy-check { margin-bottom: 30px; }
.custom-checkbox {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 13px; color: var(--light-gray); cursor: pointer;
}
.custom-checkbox input { display: none; }
.checkmark {
  width: 18px; height: 18px; border: 1px solid var(--light-gray);
  border-radius: 50%; display: inline-flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: all 0.3s;
}
.custom-checkbox input:checked + .checkmark { background: var(--orange); border-color: var(--orange); }
.custom-checkbox input:checked + .checkmark::after { content: '✓'; font-size: 10px; color: var(--white); }
.privacy-link { text-decoration: underline; color: var(--white); }
.newsletter-form { display: flex; flex-direction: column; gap: 15px; max-width: 500px; margin: 0 auto; }
.email-input {
  padding: 18px 24px; background: transparent; border: 1px solid var(--light-gray);
  border-radius: 30px; color: var(--white); font-size: 14px;
  font-family: var(--font-body); text-align: center; outline: none; transition: border-color 0.3s;
}
.email-input::placeholder { color: var(--light-gray); }
.email-input:focus { border-color: var(--white); }
.subscribe-btn {
  padding: 18px 24px; background: var(--orange); border: none; border-radius: 30px;
  color: var(--white); font-family: var(--font-heading); font-size: 13px;
  letter-spacing: 3px; cursor: pointer; transition: all 0.3s;
}
.subscribe-btn:hover { background: var(--orange-hover); transform: translateY(-1px); }

/* ===== FOOTER ===== */
.footer {
  padding: 60px 40px 40px; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.social-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
.social-icon { color: var(--light-gray); transition: color 0.3s; }
.social-icon:hover { color: var(--white); }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 1px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cr7-layout { flex-direction: column; }
  .cr7-left { width: 100%; height: 40vh; }
  .cr7-right { width: 100%; height: 60vh; }
  .image-strips { padding: 20px; }
  .career-slide { min-width: 85%; }
  .museum-layout { flex-direction: column; height: auto; }
  .museum-left, .museum-right { height: 40vh; }
  .museum-overlay-content { flex-direction: column; }
  .museum-overlay-info { bottom: 40px; left: 40px; }
  .museum-buttons { flex-direction: column; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .main-nav { padding: 15px 20px; }
  .section-cr7 { padding-top: 60px; }
  .cr7-layout { height: auto; min-height: calc(100vh - 60px); }
  .career-card-content { bottom: 20px; left: 20px; right: 20px; }
  .career-slide { min-width: 90%; }
  .team-name { font-size: 20px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .newsletter-box { padding: 40px 20px; }
  .brands-sidebar { width: 140px; padding: 80px 20px; }
  .brand-item { font-size: 11px; letter-spacing: 2px; }
  .brand-title { font-size: 28px; }
  .brand-info { padding: 30px; }
  .cookie-banner { flex-direction: column; gap: 10px; padding: 16px 20px; text-align: center; }
}
