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

:root {
  --bg:         #fcfee8;
  --text:       #1a1209;
  --text-muted: #6b5e4c;
  --gold:       #c49a35;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Raleway', system-ui, sans-serif;
}

/* ============================================================
   Base
   ============================================================ */
html {
  height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
  background: radial-gradient(ellipse at 50% 38%, #ffffff 0%, var(--bg) 62%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  color: var(--text);
}

/* ============================================================
   Accessibility
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Particles Canvas
   ============================================================ */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   Layout
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.8vh, 2.2rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

/* ============================================================
   Logo
   ============================================================ */
.logo-container {
  line-height: 0;
  transform-style: preserve-3d;
}

.logo {
  width: clamp(110px, 18vw, 220px);
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(196, 154, 53, 0.14));
  will-change: transform;
  opacity: 0; /* GSAP takes over */
}

/* ============================================================
   Brand Name
   ============================================================ */
.brand-name {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.15rem, 3.8vw, 2.1rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1b2d47;
  line-height: 1;
  margin-top: clamp(-0.4rem, -0.8vh, 0rem);
  opacity: 0; /* GSAP takes over */
}

/* ============================================================
   Separator
   ============================================================ */
.separator-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: clamp(100px, 20vw, 220px);
  opacity: 0; /* GSAP takes over */
}

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

.sep-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
}

/* ============================================================
   Tagline
   ============================================================ */
.tagline {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.5rem, 1.4vw, 0.72rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #1b2d47;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  opacity: 0; /* GSAP takes over */
}

.tagline .bull {
  color: var(--gold);
  font-size: 1.2em;
  line-height: 1;
  flex-shrink: 0;
}

/* ============================================================
   Coming Soon
   ============================================================ */
.coming-soon-wrapper {
  opacity: 0; /* GSAP takes over */
}

.coming-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.coming-big {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 0.9;
  letter-spacing: 0.03em;

  /* Shimmer gradient */
  background: linear-gradient(
    100deg,
    var(--text) 20%,
    var(--text) 33%,
    var(--gold) 50%,
    var(--text) 67%,
    var(--text) 80%
  );
  background-size: 250% auto;
  background-position: 200% center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  will-change: background-position;
}

.coming-big.shimmer-active {
  animation: shimmer 8s linear infinite 0s;
}

.coming-sub {
  display: block;
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(0.58rem, 1.9vw, 0.88rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #1b2d47;
  clip-path: inset(0 100% 0 0);
}

/* ============================================================
   Keyframes
   ============================================================ */
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ============================================================
   Responsive — small screens
   ============================================================ */
@media (max-width: 600px) {
  .content-wrapper {
    gap: clamp(0.8rem, 2.2vh, 1.4rem);
  }

  .brand-name {
    font-size: clamp(1rem, 5.5vw, 1.5rem);
    letter-spacing: 0.18em;
  }

  .tagline {
    letter-spacing: 0.18em;
    font-size: clamp(0.5rem, 2.5vw, 0.65rem);
    gap: 0.25rem 0.45rem;
  }

  .tagline .bull {
    display: none;
  }
}

/* Landscape / short screens */
@media (max-height: 500px) {
  .content-wrapper {
    gap: 0.6rem;
  }

  .logo {
    width: clamp(90px, 20vh, 160px);
  }

  .brand-name {
    font-size: clamp(0.85rem, 3.5vh, 1.3rem);
    letter-spacing: 0.15em;
  }

  .separator-line {
    display: none;
  }

  .coming-big {
    font-size: clamp(1.6rem, 7vh, 2.8rem);
  }

  .coming-sub {
    font-size: clamp(0.48rem, 1.4vh, 0.7rem);
    letter-spacing: 0.28em;
  }
}
