:root {
  --navy: #0B1D2E;
  --gold: #C9A84C;
  --white: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.7);
}

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

html {
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: Jost, sans-serif;
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy);
  position: relative;
  padding: 80px 24px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 30% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(at 70% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-logo {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 40px;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(28px, 5vw, 52px);
  letter-spacing: 12px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px auto;
  width: 200px;
}

.hero-divider::before,
.hero-divider::after {
  content: "";
  flex: 1;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.hero-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.6;
}

.hero-tagline {
  font-family: Jost, sans-serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-logo {
    width: 120px;
  }
  .hero-title {
    letter-spacing: 6px;
  }
}
