:root {
  --bg: #08080d;
  --bg-2: #0f111a;
  --text: #f5f2ea;
  --muted: rgba(245, 242, 234, 0.65);
  --gold: #d7b56d;
  --rose: #ff5b99;
  --teal: #37d7c6;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --radius: 20px;
}

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

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(215, 181, 109, 0.25), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(255, 91, 153, 0.2), transparent 60%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.5px;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: rgba(215, 181, 109, 0.45);
  top: -120px;
  left: -80px;
  animation: float 18s ease-in-out infinite;
}

.orb-2 {
  width: 520px;
  height: 520px;
  background: rgba(255, 91, 153, 0.35);
  right: -200px;
  top: 200px;
  animation: float 22s ease-in-out infinite reverse;
}

.orb-3 {
  width: 380px;
  height: 380px;
  background: rgba(55, 215, 198, 0.3);
  left: 60%;
  bottom: -180px;
  animation: float 20s ease-in-out infinite;
}

.gridlines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.15;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: rgba(8, 8, 13, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(215, 181, 109, 0.6);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
}

.wordmark span {
  font-weight: 600;
  font-size: 18px;
}

.wordmark small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.links {
  display: flex;
  gap: 28px;
}

.links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  transition: color 200ms ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.btn.primary {
  background: linear-gradient(120deg, rgba(215, 181, 109, 0.95), rgba(255, 91, 153, 0.85));
  color: #0b0b12;
  box-shadow: 0 10px 30px rgba(215, 181, 109, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  position: relative;
  height: 88vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 0 6vw;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
  filter: saturate(1.1) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 8, 13, 0.85), rgba(8, 8, 13, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  display: grid;
  gap: 22px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
}

.hero h1 span {
  color: var(--gold);
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-metrics strong {
  font-size: 20px;
  display: block;
}

.hero-metrics span {
  font-size: 12px;
  color: var(--muted);
}

.section {
  position: relative;
  padding: 90px 6vw;
  z-index: 1;
}

.section-head {
  max-width: 700px;
  margin-bottom: 40px;
}

.section h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 12px 0;
}

.muted {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.card .tag {
  font-size: 12px;
  color: var(--gold);
}

.split {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.media-stack {
  display: grid;
  gap: 18px;
}

.media-stack img,
.split-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step span {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: 22px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.gallery img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transition: transform 200ms ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
}

.stats strong {
  display: block;
  font-size: 24px;
}

.contact {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 16px;
}

.footer {
  padding: 30px 6vw 50px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 600ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    gap: 16px;
  }
  .links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero {
    padding-top: 40px;
    height: auto;
  }
  .hero-content {
    padding: 80px 0;
  }
  .stats {
    flex-wrap: wrap;
  }
}
