:root {
  --text-light: #fff8e8;
  --text-soft: #eadfca;
  --gold: #d8b46a;
  --warm-dark: #120f0b;
  --paper: #f4ead8;
  --paper-text: #2d261d;
  --shadow: rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--paper-text);
  background: var(--warm-dark);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 64%, rgba(236, 177, 80, 0.28) 0 3%, transparent 10%),
    radial-gradient(circle at 82% 42%, rgba(236, 177, 80, 0.18) 0 2%, transparent 8%),
    linear-gradient(180deg, rgba(8, 16, 31, 0.92), rgba(16, 24, 20, 0.92) 52%, rgba(10, 9, 7, 0.98)),
    url("../images/hero-placeholder.svg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.26) 48%, rgba(0, 0, 0, 0.48)),
    radial-gradient(circle at center, transparent 0, rgba(0, 0, 0, 0.58) 100%);
  z-index: 1;
}

.stars {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(circle, rgba(255, 248, 226, 0.8) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 248, 226, 0.55) 0 1px, transparent 1.4px);
  background-size: 150px 150px, 230px 230px;
  background-position: 20px 40px, 90px 10px;
  opacity: 0.32;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(92vw, 760px);
  margin-inline: auto;
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--text-light);
  text-shadow: 0 0 26px var(--shadow);
}

.sparkle {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 0 18px rgba(216, 180, 106, 0.78));
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.subtitle {
  margin: 1.1rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  letter-spacing: 0.06em;
  color: var(--text-soft);
}

.keywords {
  margin: 0.9rem 0 0;
  font-size: clamp(0.98rem, 2.2vw, 1.15rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.welcome {
  margin: 2.2rem auto 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: var(--text-light);
}

.listen-button,
.primary-link {
  display: inline-block;
  margin-top: 2.1rem;
  padding: 0.92rem 1.35rem;
  border: 1px solid rgba(216, 180, 106, 0.64);
  border-radius: 999px;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.listen-button:hover,
.primary-link:hover {
  transform: translateY(-2px);
  background: rgba(216, 180, 106, 0.16);
  border-color: rgba(255, 238, 194, 0.9);
}

.fade-in {
  animation: fadeIn 2.4s ease both;
}

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

.intro-section {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 5rem 1.25rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 180, 106, 0.16), transparent 38%),
    var(--paper);
}

.intro-card {
  width: min(92vw, 760px);
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(92, 67, 34, 0.16);
  border-radius: 28px;
  background: rgba(255, 250, 240, 0.66);
  box-shadow: 0 30px 90px rgba(72, 50, 24, 0.12);
}

.intro-card h2 {
  margin: 0 0 1.4rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 500;
}

.intro-card p {
  margin: 1rem auto;
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.85;
}

.primary-link {
  color: var(--paper-text);
  background: rgba(216, 180, 106, 0.18);
  text-shadow: none;
}

footer {
  padding: 1.5rem 1rem;
  text-align: center;
  color: rgba(255, 248, 232, 0.72);
  background: #0b0907;
  font-size: 0.88rem;
}

@media (max-width: 620px) {
  .hero-content {
    padding: 2rem 1rem;
  }

  .keywords {
    letter-spacing: 0.15em;
  }

  .intro-card p {
    font-size: 1rem;
  }
}
