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

body {
  background: #1a1a1a;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Header ── */
.site-header {
  background: #141414;
  height: 110px;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Logo ── */
.header-logo img {
  height: 80px;
  width: auto;
  display: block;
}

/* ── Nav ── */
.header-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-nav ul li a {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.header-nav ul li a:hover {
  opacity: 0.75;
}

/* ── CTA ── */
.nav-cta {
  font-family: 'Futura', 'Futura PT', 'Century Gothic', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  background: #EE5B30;
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #d44e25;
  opacity: 1 !important;
}
