*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--navy); color: var(--white); font-family: 'Barlow Condensed', sans-serif; overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 3rem; background: rgba(10,14,20,0.97); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(42,184,160,0.1); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-dim); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal-glow); }
.nav-cta { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); background: var(--teal-light); border: none; padding: 0.55rem 1.4rem; cursor: pointer; text-decoration: none; clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%); transition: background 0.2s; }
.nav-cta:hover { background: var(--teal-glow); }
.hamburger { display: none; }

/* PAGE HERO */
.page-hero { padding: 9rem 3rem 5rem; background: var(--navy-mid); border-bottom: 1px solid rgba(42,184,160,0.1); position: relative; overflow: hidden; }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(42,184,160,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(42,184,160,0.03) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.section-label { font-family: 'Space Mono', monospace; font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem; }
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--teal-light); }
.page-hero h1 { font-family: 'Rajdhani', sans-serif; font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 700; text-transform: uppercase; line-height: 0.95; letter-spacing: -0.01em; margin-bottom: 1.5rem; }
.page-hero p { font-size: 1.1rem; font-weight: 300; color: var(--white-dim); line-height: 1.7; max-width: 540px; letter-spacing: 0.03em; }

/* BRAND GRID */
.brands-section { padding: 5rem 3rem; max-width: 1200px; margin: 0 auto; }
.brands-count { font-family: 'Space Mono', monospace; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--white-dim); margin-bottom: 2.5rem; }
.brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1.5rem; }

.brand-card {
  background: var(--navy-mid);
  border: 1px solid rgba(42,184,160,0.1);
  padding: 2.5rem 1.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  min-height: 160px;
  cursor: default;
}
.brand-card[href] { cursor: pointer; }
.brand-card:not([href])::before {
  content: 'Binnenkort';
  position: absolute;
  bottom: 0.6rem;
  right: 0.75rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.45rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  opacity: 0;
  transition: opacity 0.3s;
}
.brand-card:not([href]):hover::before { opacity: 1; }
.brand-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.brand-card:hover {
  border-color: rgba(42,184,160,0.35);
  background: var(--navy-light);
  transform: translateY(-2px);
}
.brand-card:hover::after { transform: scaleX(1); }

/* Logo area — swap <img> in here when ready; hide .brand-name-text when img is present */
.brand-logo-area { display: flex; align-items: center; justify-content: center; margin-bottom: 0.8rem; }
.brand-logo-area img { max-height: 48px; max-width: 140px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.85; transition: opacity 0.2s; }
.brand-card:hover .brand-logo-area img { opacity: 1; }

.brand-name-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  transition: color 0.2s;
}
.brand-card:hover .brand-name-text { color: var(--teal-glow); }

.brand-category {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.5rem;
}

/* FOOTER */
footer { background: #070a0f; border-top: 1px solid rgba(42,184,160,0.15); padding: 3rem; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; }
.footer-left p { font-size: 0.85rem; color: var(--white-dim); margin-top: 0.5rem; font-weight: 300; letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal-light); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .brand-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-links { display: none; position: fixed; top: 57px; left: 0; right: 0; background: rgba(10,14,20,0.98); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(42,184,160,0.2); flex-direction: column; padding: 0.5rem 0; gap: 0; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links a { display: block; padding: 1rem 1.5rem; font-size: 1rem; letter-spacing: 0.1em; }
  .page-hero { padding: 6rem 1.5rem 3rem; }
  .brands-section { padding: 2.5rem 1.5rem; }
  .brand-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
  .brand-name-text { font-size: 1.5rem; }
  footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 0.75rem; }
}
