/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #c9a84c;
  --gold-light: #e4cc7a;
  --gold-dark: #9e7b2f;
  --black: #0a0a0a;
  --black-light: #141414;
  --white: #f5f0e8;
  --white-muted: #c4bfb3;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* ── Particle Canvas ─────────────────────────────────────────── */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Gold Accent Bars ────────────────────────────────────────── */
.gold-bar {
  position: fixed;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 10;
}
.gold-bar.top { top: 0; }
.gold-bar.bottom { bottom: 0; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 700px;
  width: 100%;
}

.hero-content {
  animation: fadeUp 1.2s ease-out both;
}

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

/* ── Monogram ────────────────────────────────────────────────── */
.monogram {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  position: relative;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.15); }
  50%      { box-shadow: 0 0 40px rgba(201,168,76,0.3); }
}

/* ── Tagline ─────────────────────────────────────────────────── */
.tagline-top {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* ── Brand Name ──────────────────────────────────────────────── */
.brand-name {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.brand-name .first {
  color: var(--white);
}

.brand-name .sep {
  color: var(--white-muted);
  font-weight: 400;
  font-size: 0.65em;
  margin: 0 0.15em;
}

.brand-name .last {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Divider ─────────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.2rem auto;
  width: 200px;
}

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

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

.diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Philosophy Quote ────────────────────────────────────────── */
.philosophy {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--white-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

/* ── Services ────────────────────────────────────────────────── */
.services {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-muted);
}

.services .dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Coming Soon Badge ───────────────────────────────────────── */
.coming-soon-wrapper {
  margin-bottom: 2rem;
}

.coming-soon {
  display: inline-block;
  padding: 0.6rem 2.5rem;
  border: 1px solid var(--gold);
  position: relative;
}

.cs-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
}

.cs-sub {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--white-muted);
  font-weight: 300;
}

/* ── Notify Form ─────────────────────────────────────────────── */
.notify-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto 0.6rem;
}

.notify-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-right: none;
  background: rgba(255,255,255,0.03);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}

.notify-form input::placeholder {
  color: var(--white-muted);
  font-weight: 300;
}

.notify-form input:focus {
  border-color: var(--gold);
}

.notify-form button {
  padding: 0.85rem 1.8rem;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.notify-form button:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.form-msg {
  font-size: 0.8rem;
  color: var(--gold);
  min-height: 1.2rem;
  margin-bottom: 2rem;
}

/* ── Socials ─────────────────────────────────────────────────── */
.socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  color: var(--white-muted);
  transition: color 0.3s, transform 0.3s;
  display: flex;
}

.social-link:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 520px) {
  .services {
    flex-direction: column;
    gap: 0.4rem;
  }
  .services .dot { display: none; }

  .notify-form {
    flex-direction: column;
    gap: 0.5rem;
  }
  .notify-form input {
    border-right: 1px solid rgba(201,168,76,0.3);
  }
  .notify-form button {
    width: 100%;
  }
}
