/* ==============================
   NAVIGATION
   ============================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.98), rgba(7, 17, 31, 0.92)),
    radial-gradient(circle at 70% 0%, rgba(101, 130, 170, 0.16), transparent 30%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav__inner {
  width: var(--content);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 218px;
}
.brand__mark {
  position: relative;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
  transform: translateY(-3px);
}
.brand__text {
  display: grid;
  gap: 3px;
}

.brand__name {
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(242, 234, 220, 0.88);
}

.brand__sub {
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  color: rgba(242, 234, 220, 0.46);
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 3vw, 46px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__links a {
  position: relative;
  display: inline-block;
  padding: 31px 0 28px;
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(242, 234, 220, 0.88);
  transition: color 180ms ease;
}

.nav__links a:hover {
  color: var(--accent-bright);
}

.nav__links a.active::after,
.nav__links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 1px;
  background: var(--accent-bright);
}

.nav__cta {
  height: 42px;
  padding: 0 25px;
  border: 1px solid rgba(217, 154, 86, 0.72);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.nav__cta:hover {
  transform: translateY(-1px);
  border-color: var(--accent-bright);
  background: rgba(217, 154, 86, 0.08);
}

/* ==============================
   FOOTER
   ============================== */

.footer {
  background: #050A11;
  border-top: 1px solid rgba(242, 234, 220, 0.08);
  padding: 16px 0;
}

.footer__inner {
  width: var(--content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: rgba(242, 234, 220, 0.48);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer .brand__mark {
  width: 26px;
  height: 26px;
  font-size: 23px;
}

.footer__name {
  color: var(--cream);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  gap: 34px;
  color: rgba(242, 234, 220, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer__links a:hover {
  color: var(--accent-bright);
}

