 :root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-pale: #e8c96a;
  --gold-dim: #9a7c20;
  --bg: #080707;
  --bg-card: #0f0d0b;
  --border: rgba(212,175,55,0.18);
  --border-hover: rgba(212,175,55,0.45);
  --white: #f5f0e8;
  --muted: #7a6e5c;
  --muted2: #9e8f72;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.42;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(8,7,7,0.98) 0%, rgba(8,7,7,0) 100%);
  border-bottom: 1px solid rgba(212,175,55,0.07);
}

.nav-brand {
  display: flex;
  flex-direction: column;
}

.nav-brand-top {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  line-height: 1;
}

.nav-brand-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--muted2);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(212,175,55,0.075) 0%, transparent 70%),
    radial-gradient(ellipse 45% 35% at 20% 20%, rgba(240,208,96,0.045) 0%, transparent 72%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 210px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-inner {
  width: min(920px, 100%);
  position: relative;
  z-index: 2;
}

.moon-deco {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 120px;
  opacity: 0.13;
  animation: moonPulse 8s ease-in-out infinite;
}

@keyframes moonPulse {
  0%,100% { opacity: 0.12; transform: scale(1); }
  50% { opacity: 0.20; transform: scale(1.04); }
}

.star-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--border);
  padding: 0.45rem 1.5rem;
  margin-bottom: 2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  animation: fadeDown 0.8s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  animation: fadeDown 0.8s 0.1s ease both;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 45px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
  animation: fadeDown 0.8s 0.2s ease both;
}

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

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted2);
  max-width: 620px;
  margin: 0 auto 1.5rem;
  animation: fadeDown 0.8s 0.3s ease both;
  line-height: 1.6;
}

.hero-sub em {
  color: var(--gold-pale);
}

.ornament-line {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: center;
  margin: 2rem 0;
}

.ornament-line::before,
.ornament-line::after {
  content: '';
  flex: 1;
  max-width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament-line::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament-diamond {
  color: var(--gold);
  font-size: 0.7rem;
}

.hero-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: var(--white);
  max-width: 660px;
  margin: 0 auto 2.2rem;
  animation: fadeDown 0.8s 0.4s ease both;
  letter-spacing: 0.02em;
}

.message-card {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(212,175,55,0.055);
  animation: fadeDown 0.8s 0.48s ease both;
}

.message-card p {
  color: var(--muted2);
  font-size: 1.1rem;
  line-height: 1.85;
}

.message-card p + p {
  margin-top: 1rem;
  color: var(--gold-pale);
  font-style: italic;
}

.soon {
  display: inline-flex;
  margin: 2rem 0 0;
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: rgba(212,175,55,0.07);
}

.contact-card {
  max-width: 700px;
  margin: 2.5rem auto 0;
  padding: 1.4rem;
  border: 1px solid rgba(212,175,55,0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  background: rgba(15,13,11,0.72);
  animation: fadeDown 0.8s 0.56s ease both;
}

.contact-card p {
  text-align: left;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.contact-card a {
  flex: 0 0 auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 1.5rem;
  border: 1px solid var(--border-hover);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  background: rgba(212,175,55,0.09);
  border-color: var(--gold);
}

footer {
  text-align: center;
  padding: 3rem 2rem 2rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.footer-brand {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media(max-width: 720px) {
  nav {
    padding: 1rem 1.2rem;
  }

  .hero {
    padding: 7rem 1.2rem 4rem;
  }

  .moon-deco {
    width: 90px;
    right: 4%;
    top: 10%;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
  }

  .contact-card p {
    text-align: center;
  }

  .contact-card a {
    width: 100%;
  }
}

@media(max-width: 460px) {
  .hero-badge {
    font-size: 0.5rem;
    letter-spacing: 0.18em;
    padding: 0.45rem 1rem;
  }

  .hero-eyebrow {
    font-size: 0.52rem;
    letter-spacing: 0.22em;
  }

  .hero-title {
    font-size: clamp(2.5rem, 15vw, 4.4rem);
  }

  .message-card {
    padding: 1.25rem;
  }
}
