/* ── TOKENS ── */
:root {
  --black:   #080808;
  --dark:    #101010;
  --surface: #161616;
  --border:  rgba(255, 255, 255, 0.07);
  --text:    #f0ede8;
  --muted:   rgba(240, 237, 232, 0.45);
  --fh:      'Bebas Neue', sans-serif;
  --fb:      'DM Sans', sans-serif;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--fb);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── MOBILE OVERLAY ── */
.mob {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 120px;
  gap: 48px;
  background: var(--black);
}

.mob.open { display: flex; }

.mob-logo {
  font-family: var(--fh);
  font-size: 28px;
  letter-spacing: 6px;
  color: var(--text);
}

.mob a.mob-cta {
  font-family: var(--fh);
  font-size: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  border: .5px solid rgba(240, 237, 232, 0.3);
  padding: 16px 40px;
}

.mob-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  height: 90px;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: .5px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 7px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
}

.nav-logo img {
  max-width: 60px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(240, 237, 232, 0.7);
  transition: color .2s;
}

.nav-link:hover { color: var(--text); }

.nav-cta {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  padding: 10px 24px;
  border: .5px solid rgba(240, 237, 232, 0.35);
  transition: all .2s;
}

.nav-cta:hover {
  background: var(--text);
  color: var(--black);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav         { padding: 0 20px; }
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .hamburger  { display: flex; }
  .nav-logo   { display: flex; transform: none; }
  .nav-logo img { transform: none; }
}