@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --bg-primary: #FAF9F6; /* Luxury Warm Alabaster */
  --bg-secondary: #F5F5F3; /* Soft Cream */
  
  --color-gold-dark: #8C5D3A; /* Premium Bronze */
  --color-gold-medium: #A47A5C; /* Warm Gold */
  --color-gold-light: #C59B76; /* Soft Muted Gold */
  --color-gold-bright: #D4AF37; /* Accent Gold */
  
  --color-text-dark: #18181A; /* Charcoal Black */
  --color-text-muted: #68686B; /* Architectural Grey */
  --color-border: rgba(140, 93, 58, 0.12);
  
  --font-heading: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  overflow: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary);
  
  /* Blueprint/Drafting paper Grid Background */
  background-image: 
    linear-gradient(to right, rgba(140, 93, 58, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(140, 93, 58, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Background Canvas for Interactive Drawing */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Ambient Bronze Glow */
.ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(197, 155, 118, 0.06) 0%, rgba(255,255,255,0) 75%);
  z-index: 1;
  pointer-events: none;
  animation: pulse-glow 10s infinite alternate ease-in-out;
}

@keyframes pulse-glow {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1.1;
  }
}

/* Main Viewport Container */
.main-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 2rem;
}

/* Minimal Container */
.minimal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform-style: preserve-3d;
  will-change: transform;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.8em;
  color: var(--color-text-dark);
  text-transform: uppercase;
  line-height: 1.2;
  margin-right: -0.8em; /* Offset for centering last letter */
  opacity: 0;
  animation: reveal-title 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-right 0.4s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.4s ease, color 0.4s ease;
  cursor: default;
}

.brand-title:hover {
  letter-spacing: 0.55em;
  margin-right: -0.55em;
  color: var(--color-gold-dark);
  text-shadow: 0 0 25px rgba(140, 93, 58, 0.15);
}

@keyframes reveal-title {
  0% {
    opacity: 0;
    letter-spacing: 0.8em;
    margin-right: -0.8em;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    letter-spacing: 0.5em; /* Settle on elegant wide spacing */
    margin-right: -0.5em;
    transform: scale(1);
  }
}

.divider {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-medium), transparent);
  margin: 2rem 0;
  opacity: 0;
  animation: draw-line 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes draw-line {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 80px;
    opacity: 0.8;
  }
}

.coming-soon-text {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 2.5vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  margin-right: -0.4em; /* Offset for centering */
  opacity: 0;
  animation: fade-in-sub 1.5s ease-out 1.2s forwards;
}

@keyframes fade-in-sub {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
