:root {
  --black: #0a0a0a;
  --black-soft: #131313;
  --gold: #c9a227;
  --gold-light: #e8c96a;
  --silver: #c7c9cc;
  --silver-light: #eef0f2;
  --text: #ededed;
  --text-dim: #a8a8a8;
  --max-width: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: 0.03em;
}

a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--silver-light);
  transition: color 0.2s ease;
}

.nav a:hover { color: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--silver-light);
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(201, 162, 39, 0.12), transparent 60%),
    var(--black);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-logo {
  width: min(220px, 60vw);
  height: auto;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--silver-light);
}

.hero h1 span {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 42ch;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.85rem 2.2rem;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: #0a0a0a;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
}

.btn-outline {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold-light);
}

.btn-outline:hover {
  background: rgba(201, 162, 39, 0.1);
  box-shadow: none;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--black-soft);
}

.section h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 1.5rem;
  color: var(--silver-light);
  text-align: center;
}

.section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0.75rem auto 0;
}

.lead {
  max-width: 65ch;
  margin: 0 auto;
  color: var(--text-dim);
  text-align: center;
  font-size: 1.05rem;
}

/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cards .card {
  flex: 1 1 280px;
  max-width: 360px;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.card h3 {
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.card p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.card-soon {
  opacity: 0.85;
}

.badge {
  position: absolute;
  top: -12px;
  right: 1.25rem;
  background: var(--silver);
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

/* Contact */
.contact-inner {
  text-align: center;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  height: 28px;
  width: auto;
  opacity: 0.8;
}

.footer-inner p {
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Responsive nav */
@media (max-width: 640px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black-soft);
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    display: none;
  }

  .nav.open { display: flex; }

  .nav-toggle { display: flex; }
}
