/* ── Hero Module ── */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-eyebrow { 
  font-size: 0.8rem; 
  letter-spacing: 0.2em; 
  text-transform: uppercase; 
  color: var(--gold); 
  margin-bottom: 1.25rem; 
}

.hero-title { 
  font-family: 'Playfair Display', serif; 
  font-size: clamp(3.5rem, 10vw, 7rem); 
  font-weight: 400; 
  line-height: 1.05; 
  letter-spacing: -0.01em; 
  margin-bottom: 0.25rem; 
}

.hero-title em { 
  font-style: italic; 
  color: var(--rust); 
}

.hero-divider { 
  width: 60px; 
  height: 2px; 
  background: var(--gold); 
  margin: 2rem auto; 
  border-radius: 2px; 
}

/* ── CTA Action Button ── */
.btn-listen {
  display: inline-flex; 
  align-items: center; 
  gap: 0.6rem; 
  background: var(--bark); 
  color: var(--cream);
  font-size: 0.875rem; 
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
  text-decoration: none; 
  padding: 0.85rem 2rem; 
  border-radius: 2px; 
  transition: background 0.2s, transform 0.15s; 
  margin-top: 0.5rem;
}

.btn-listen:hover { 
  background: var(--bark-md); 
  transform: translateY(-1px); 
}

.btn-listen svg { 
  width: 16px; 
  height: 16px; 
  fill: var(--gold-lt); 
}

/* ── Latest Song Section ── */
.latest-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
}

.latest-section-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(44, 35, 24, 0.1);
}

.latest-section-header .section-label {
  margin-bottom: 0.5rem;
}

.latest-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--bark);
}

.latest-archive-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 35, 24, 0.2);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.latest-archive-link:hover {
  color: var(--bark);
  border-color: var(--bark);
}

/* ── Embedded Music Section ── */
.music-section { 
  padding: 5rem 2rem 6rem; 
  max-width: 820px; 
  margin: 0 auto; 
}

.section-label { 
  font-size: 0.75rem; 
  letter-spacing: 0.22em; 
  text-transform: uppercase; 
  color: var(--sage); 
  margin-bottom: 0.75rem; 
}

.section-title { 
  font-family: 'Playfair Display', serif; 
  font-size: clamp(1.8rem, 4vw, 2.5rem); 
  font-weight: 400; 
  margin-bottom: 2.5rem; 
}

.soundcloud-wrap { 
  border-radius: 4px; 
  overflow: hidden; 
  box-shadow: 0 4px 32px rgba(44, 35, 24, 0.12); 
  border: 1px solid rgba(44, 35, 24, 0.1); 
}

.soundcloud-wrap iframe { 
  display: block; 
  width: 100%; 
}

/* ── About Strip ── */
.about-strip { 
  background: var(--bark); 
  color: var(--cream); 
  padding: 5rem 2rem; 
  text-align: center; 
}

.about-strip p { 
  max-width: 560px; 
  margin: 0 auto 2rem; 
  font-size: 1.1rem; 
  line-height: 1.8; 
  color: rgba(245, 241, 232, 0.85); 
  font-style: italic; 
}

.about-strip-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-ghost { 
  display: inline-block; 
  border: 1px solid var(--gold); 
  color: var(--gold); 
  font-size: 0.8rem; 
  letter-spacing: 0.12em; 
  text-transform: uppercase; 
  text-decoration: none; 
  padding: 0.7rem 1.75rem; 
  border-radius: 2px; 
  transition: background 0.2s, color 0.2s; 
}

.btn-ghost:hover { 
  background: var(--gold); 
  color: var(--bark); 
}

.flourish { 
  display: block; 
  margin: 0 auto 1rem; 
  opacity: 0.35; 
}

/* ── UI Entry Animations ── */
.fade-up { 
  opacity: 0; 
  transform: translateY(24px); 
  animation: fadeUp 0.8s ease forwards; 
}

.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.25s; }
.fade-up:nth-child(3) { animation-delay: 0.4s; }
.fade-up:nth-child(4) { animation-delay: 0.55s; }

@keyframes fadeUp { 
  to { 
    opacity: 1; 
    transform: none; 
  } 
}

@media (max-width: 600px) { 
  .music-section, .about-strip { padding: 3.5rem 1.25rem; }
  .latest-section { padding: 3.5rem 1.25rem 2rem; }
  .about-strip-links { flex-direction: column; align-items: center; }
}
