:root {
  --color-bg: #0a0a0a;
  --color-gold: #c9a84c;
  --color-gold-dark: #8a6d2b;
  --color-gold-light: #e0c872;
  --color-crimson: #6b1c23;
  --color-text: #d4c5a0;
  --color-text-muted: #5a5040;
  --font-serif: 'Cinzel', 'Times New Roman', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

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

html, body {
  height: 100%;
  overflow: hidden;
  background-color: var(--color-bg);
  color: var(--color-text);
}

body {
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('/images/bg-texture.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

/* Logo */
.logo {
  width: 220px;
  height: auto;
  opacity: 0;
  animation: fadeSlideUp 1.5s ease-out 0.2s forwards;
}

/* Brand Name */
.brand-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.6em;
  color: var(--color-gold);
  margin-top: 1.5rem;
  text-indent: 0.6em;
  opacity: 0;
  animation: fadeSlideUp 1.2s ease-out 0.8s forwards;
}

/* Divider */
.divider {
  width: 0;
  max-width: 120px;
  height: 1px;
  border: none;
  background-color: var(--color-gold-dark);
  margin: 1.2rem 0;
  animation: growWidth 0.8s ease-out 1.4s forwards;
}

/* Contact */
.contact {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  text-decoration: none;
  opacity: 0;
  animation: fadeSlideUp 1s ease-out 1.8s forwards;
  transition: color 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.contact:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold-dark);
}

/* Roman Numeral */
.numeral {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  color: var(--color-text-muted);
  opacity: 0;
  margin-top: 3rem;
  text-indent: 0.5em;
  animation: fadeIn 2s ease-out 2.5s forwards;
}

/* Animations */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes growWidth {
  from {
    width: 0;
  }
  to {
    width: 120px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.25; }
}

/* Responsive */
@media (min-width: 480px) {
  .logo { width: 300px; }
  .brand-name {
    font-size: 2rem;
    letter-spacing: 0.8em;
    text-indent: 0.8em;
  }
  .contact { font-size: 0.9rem; }
}

@media (min-width: 768px) {
  .logo { width: 380px; }
  .brand-name {
    font-size: 2.5rem;
    letter-spacing: 1em;
    text-indent: 1em;
  }
}

@media (min-width: 1200px) {
  .logo { width: 420px; }
  .brand-name { font-size: 3rem; }
}
