:root {
  --black: #000000;
  --line: rgba(201, 168, 76, 0.16);
  --gold: #d8b85c;
  --gold-bright: #f0d488;
  --silver: #cfd2d6;
  --text: #e7e7ea;
  --muted: #9a9aa2;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* pure-black backdrop so the metallic logos blend completely */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: #000;
}

/* ---------- typography helpers ---------- */
.eyebrow {
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, #ffffff 0%, #b9bcc2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem clamp(1.2rem, 5vw, 3.5rem);
  background: #000;
  transition: border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}
.nav__mark {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.nav__wordmark {
  height: 22px;
  width: auto;
  object-fit: contain;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
}
.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: color 0.25s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__cta {
  border-radius: 999px;
  padding: 0.5rem 1.3rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  background: linear-gradient(135deg, #f6f1e6 0%, #d9cbab 45%, #c8b48a 100%);
  color: #1c1709 !important;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(220, 205, 170, 0.25);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.btn--platinum {
  background: linear-gradient(135deg, #f6f1e6 0%, #d9cbab 45%, #c8b48a 100%);
  color: #1c1709;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(220, 205, 170, 0.16);
}
.btn--platinum:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #fffaf0 0%, #e7dabb 45%, #d8c79c 100%);
  box-shadow: 0 12px 42px rgba(230, 215, 180, 0.32);
}
/* ---------- hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.2rem 4rem;
}
.hero__mark {
  width: clamp(190px, 32vw, 360px);
  animation: float 7s ease-in-out infinite;
}
.hero__mark img { mix-blend-mode: screen; }
.hero__wordmark {
  width: clamp(240px, 40vw, 460px);
  margin-top: 1.4rem;
}
.hero__wordmark img { mix-blend-mode: screen; }
.hero__slogan {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 3.2vw, 2rem);
  margin-top: 1.6rem;
  letter-spacing: 0.01em;
  background: linear-gradient(110deg, var(--silver) 0%, var(--gold-bright) 50%, var(--silver) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__slogan span { display: inline-block; }
.hero__sub {
  max-width: 600px;
  margin: 1.4rem auto 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 2.4rem;
}

@keyframes float {
  0%, 100% { transform: translateY(-14px); }
  50% { transform: translateY(14px); }
}

/* ---------- contact ---------- */
.contact {
  text-align: center;
  padding: clamp(4rem, 11vw, 9rem) clamp(1.2rem, 5vw, 2rem);
  position: relative;
}
.contact__inner { max-width: 640px; margin: 0 auto; position: relative; }
.contact__text {
  color: var(--muted);
  margin: 1.1rem auto 2.2rem;
  max-width: 480px;
}
.contact__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}
.contact__input {
  flex: 1 1 240px;
  min-width: 0;
  background: #0c0c0f;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.contact__input::placeholder { color: #6c6c74; }
.contact__input:focus {
  outline: none;
  border-color: rgba(216, 184, 92, 0.55);
  box-shadow: 0 0 0 3px rgba(216, 184, 92, 0.1);
}
.contact__form .btn { flex: 0 0 auto; }
.contact__note {
  margin-top: 1rem;
  min-height: 1.2em;
  font-size: 0.88rem;
  color: var(--gold);
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(2.6rem, 6vw, 4rem) clamp(1.2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer__mark {
  height: 54px;
  width: auto;
}
.footer__wordmark {
  height: 28px;
  width: auto;
}
.footer__tag {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.04em;
  background: linear-gradient(110deg, var(--silver) 0%, var(--gold-bright) 50%, var(--silver) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.95rem;
}
.footer__copy {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  margin-top: 0.4rem;
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero__mark { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 560px) {
  .nav__links { gap: 1rem; }
}
