/**
 * Opening Animation Styles
 * Premium Hospitality Brand Reveal
 */

#intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

#intro-overlay::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(168, 143, 94, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(40, 40, 40, 0.15) 0%, transparent 45%);
  animation: introBackgroundFlow 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes introBackgroundFlow {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-3%, 2%) rotate(1deg);
  }
  66% {
    transform: translate(2%, -1%) rotate(-1deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.intro-container {
  text-align: center;
  transform-origin: center;
}

.intro-divider {
  width: 230px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250, 250, 250, 0.7), transparent);
  margin: 0 auto 2.75rem auto;
  transform-origin: center;
}

.intro-logo {
  font-size: 2.55rem;
  font-weight: 300;
  letter-spacing: 0.38em;
  margin: 0;
  color: var(--color-white);
  text-transform: uppercase;
  font-feature-settings: "cpsp" 1;
  line-height: 1.4;
}

.intro-tagline {
  margin-top: 1.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(8px);
}

/* Content visible by default for no-JS fallback */
#main-content {
  opacity: 1;
  transform: translateY(0);
}

.js #main-content {
  opacity: 0;
  transform: translateY(30px);
}

#site-header.active {
  transform: translateY(-10px);
  opacity: 0;
}

/**
 * Narrative Scroll Sections
 */

.narrative-section {
  padding: var(--space-xl) 0;
  position: relative;
}

.narrative-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.text-center {
  text-align: center;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-portrait {
  width: 100%;
}

.portrait-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: var(--color-medium);
  border-radius: var(--radius-lg);
}

.section-title {
  margin-bottom: var(--space-xl);
}