:root {
  --navy: #070b14;
  --navy-2: #0c1220;
  --gold: #c9a46c;
  --gold-2: #e0c48a;
  --silver: #b7c0cc;
  --white: #f4f4f4;
  --muted: rgba(244, 244, 244, 0.72);
  --line: rgba(201, 164, 108, 0.35);
  --header: 56px;
  --font: "Outfit", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: 0.01em;
}

html {
  scroll-behavior: smooth;
}

html.home {
  scroll-snap-type: y proximity;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.site-header.is-solid {
  background: rgba(7, 11, 20, 0.88);
  backdrop-filter: blur(16px);
}

.logo-link {
  display: flex;
  align-items: center;
  height: 44px;
  width: max-content;
}

.logo-link img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.45));
}

.nav-center {
  display: flex;
  gap: 4px;
}

.nav-center a,
.nav-right .text-link {
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.nav-center a:hover,
.nav-right .text-link:hover,
.lang-toggle:hover,
.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
}

.lang-toggle,
.menu-toggle {
  min-width: 40px;
  height: 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.menu-toggle {
  width: 40px;
  height: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--white);
}

.snap {
  height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: var(--navy) center / cover no-repeat;
  transform: scale(1.04);
  animation: ken 28s var(--ease) infinite alternate;
}

@keyframes ken {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  top: 0;
  height: 28%;
  background: linear-gradient(to bottom, rgba(7, 11, 20, 0.55), transparent);
}

.hero::after {
  bottom: 0;
  height: 48%;
  background: linear-gradient(to top, rgba(7, 11, 20, 0.82), transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 12vh;
  width: min(920px, 100%);
}

.hero-lockup {
  height: min(280px, 42vh);
  width: auto;
  margin: 0 auto 4px;
  object-fit: contain;
  mix-blend-mode: lighten;
}

.hero h1,
.hero h2 {
  margin: 0;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: 0.08em;
  text-transform: none;
}

.hero .kicker {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}

.hero .fine {
  margin: 8px 0 0;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  min-width: 264px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--white);
  color: #171a20;
}

.btn-primary:hover {
  background: #e8e8e8;
}

.btn-ghost {
  background: rgba(23, 26, 32, 0.55);
  color: var(--white);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 3px var(--white);
}

.btn-ghost:hover {
  background: rgba(23, 26, 32, 0.75);
}

.btn-gold {
  background: var(--gold);
  color: #171a20;
}

.page {
  min-height: 100svh;
  padding: calc(var(--header) + 48px) 28px 80px;
}

.page-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.page h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.55;
}

.gold-rule {
  width: 72px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0 32px;
  border: 0;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.card {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 24px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.card p,
.prose p,
.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.specs {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 8vw, 96px);
  padding: 28px 20px 0;
}

.spec {
  text-align: center;
}

.spec b {
  display: block;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.spec span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.drawer.is-open {
  display: block;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 100%);
  height: 100%;
  background: #eee;
  color: #171a20;
  padding: 20px 28px 40px;
  overflow: auto;
}

.drawer-close {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  font-size: 22px;
}

.drawer-panel nav {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.drawer-panel a,
.drawer-panel button.linkish {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 15px;
  font-weight: 500;
}

.site-footer {
  background: var(--navy);
  padding: 48px 28px 32px;
  color: var(--silver);
  font-size: 12px;
}

.footer-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand img {
  height: 72px;
  width: max-content;
  object-fit: contain;
}

.site-footer h4 {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.site-footer a {
  display: block;
  padding: 4px 0;
  color: var(--silver);
}

.site-footer a:hover {
  color: var(--white);
}

.legal {
  width: min(1080px, 100%);
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.form {
  display: grid;
  gap: 14px;
  max-width: 640px;
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
}

.form input,
.form select,
.form textarea {
  background: #101624;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  height: 44px;
  padding: 0 12px;
  font: inherit;
  border-radius: 2px;
}

.form textarea {
  height: 140px;
  padding: 12px;
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}

.form-success {
  display: none;
  padding: 16px 18px;
  border: 1px solid var(--line);
  color: var(--gold-2);
}

.form-success.is-on {
  display: block;
}

@media (max-width: 900px) {
  .nav-center,
  .nav-right .text-link {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    min-width: min(264px, 86vw);
  }

  .hero-copy {
    padding-bottom: 10vh;
  }

  .specs {
    flex-wrap: wrap;
    gap: 20px 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media {
    animation: none;
  }
}
