@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

:root {
  --bg: #ffffff;
  --text: #080808;
  --accent: #fff064;
  --muted: #5b5f66;
  --nav-height: 104px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

main {
  padding-top: 0;
}

/* ===== NAVIGATION ===== */
nav {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 100;
}

.nav-container {
  width: 100%;
  padding: 16px clamp(1rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2px;
}


.menu-left,
.menu-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.menu-left li,
.menu-right li {
  list-style: none;
}

.menu-left li::before,
.menu-right li::before {
  content: none;
}

.menu-left a,
.menu-right a {
  text-decoration: none;
  color: var(--text);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 12px;
  background: transparent;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.menu-left a:hover,
.menu-right a:hover {
  background: var(--accent);
  color: var(--text);
}

.menu-left a::after,
.menu-right a::after {
  content: none;
}

.nav-logo {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
  padding: 0 1rem;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.nav-logo:hover {
  opacity: 0.6;
}

.cta-btn {
  background: var(--text);
  color: #fff;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: #333;
}

@media (max-width: 768px) {
  :root {
    --nav-height: 88px;
  }

  .nav-container {
    gap: 16px;
    padding: 12px clamp(1rem, 3vw, 2.5rem);
  }

  .menu-left a,
  .menu-right a {
    font-size: 11px;
    padding: 7px 8px;
    letter-spacing: 0.07em;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-height: 85px;
  }

  .nav-container {
    gap: 16px;
    padding: 12px clamp(1rem, 3vw, 2.5rem);
  }

  .menu-left a,
  .menu-right a {
    font-size: 10px;
    padding: 6px 6px;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 380px) {
  :root {
    --nav-height: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .menu-left a,
  .menu-right a,
  .cta-btn,
  .nav-logo {
    transition: none;
  }
}

/* ===== PAGE BANNER ===== */
.page-banner {
  padding: 52px clamp(1.5rem, 5vw, 3.5rem) 44px;
  background: #ffffff;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.page-banner .banner-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.page-banner .banner-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #5b5f66;
  margin-bottom: 16px;
}

.page-banner .banner-rule {
  border: none;
  border-top: 1px solid #080808;
  margin: 0;
}

.page-banner h1 {
  font-size: clamp(2.8rem, 9vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #080808;
  margin: 20px 0;
}

.page-banner--flush {
  border-bottom: none;
  padding-bottom: 32px;
}

.page-banner .banner-sub {
  font-size: 0.95rem;
  color: #5b5f66;
  margin-top: 16px;
  font-style: italic;
  font-weight: 400;
}

@media (max-width: 768px) {
  .page-banner {
    padding: 40px clamp(1rem, 4vw, 2rem) 36px;
  }

  .page-banner h1 {
    font-size: clamp(2rem, 11vw, 3.5rem);
    margin: 16px 0;
  }
}
