/* ===================================
   JEN HERNANDEZ OFFICIAL WEBSITE
=================================== */

/* =======================
   DESIGN TOKENS
======================= */

:root {
  --black: #080808;
  --charcoal: #151515;
  --dark: #1f1f1f;
  --gold: #c6a15b;
  --gold-light: #d8ba7d;
  --burgundy: #4b0d17;      
  --burgundy:#5a0f1f;
  --burgundy-dark:#33040f;
  --burgundy-light:#7d2034;
  --white: #f6f4ef;
  --gray: #bdbdbd;
  --transition: 0.35s ease;
  --content-width: 1200px;
}

/* =======================
   RESET & BASE
======================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  margin: 0;
  background: var(--black);
  color: var(--white);
    font-family:"Cormorant Garamond",serif;
    font-size:1.22rem;
    line-height:1.8;
    letter-spacing:.02em;
}
main {
  display: block;
  width: 100%;
}

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

section {
  width: 100%;
  padding: 90px 10%;
}

.section {
  width: 100%;
  padding: 5rem 2rem;
}

.dark-section {
  background: var(--charcoal);
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-heading {
  width: 100%;
  max-width: 850px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading h2 {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 2.8rem;
}
.dark-section {
  background:
    linear-gradient(
      180deg,
      #14090c,
      #050505
    );
}

.album-card {
  background:
    linear-gradient(
      180deg,
      rgba(90, 15, 31, 0.45),
      rgba(0, 0, 0, 0.9)
    );
}

/* =======================
   HEADER & NAVIGATION
======================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(198, 161, 91, 0.15);
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  padding: 18px 5%;
}

.site-logo {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 3px;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 35px;
}

.main-navigation li a{

padding:

.55rem 1rem;

border:

1px solid rgba(198,161,91,.45);

border-radius:999px;

transition:.3s;

}

.main-navigation a{

font-size:.82rem;

letter-spacing:.18rem;

text-transform:uppercase;

font-weight:600;

}

.main-navigation li a:hover{

background:

rgba(198,161,91,.12);

border-color:

var(--gold);

color:

var(--gold);

}
.main-navigation li a.active{

background:

var(--gold);

color:

black;

}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px;
  background: var(--white);
}
.social-icons{

display:flex;

gap:1rem;

justify-content:center;

}
.social-icons a{

width:48px;

height:48px;

display:flex;

align-items:center;

justify-content:center;

border:

1px solid var(--gold);

border-radius:50%;

font-size:1.2rem;

color:white;

transition:.3s;

}
.social-icons a:hover{

background:

var(--gold);

color:black;

transform:translateY(-4px);

}
/* =======================
   BUTTONS
======================= */

.button {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 50px;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  transition: var(--transition);
}

.button:hover {
  transform: translateY(-3px);
  background: var(--gold-light);
}

.button-outline {
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
}

.button-outline:hover {
  background: var(--gold);
  color: #000;
}

.coming-soon-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

/* =======================
   HOME HERO
======================= */

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.85)),
    url("images/backgrounds/hero.jpg") center / cover no-repeat;
  text-align: center;
}

.hero-content {
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 5rem;
  letter-spacing: 4px;
}

.hero-tagline {
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.hero-description {
  max-width: 700px;
  margin: auto;
  color: var(--gray);
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 45px;
}
.hero-overlay{

background:

linear-gradient(

rgba(20,5,8,.45),

rgba(0,0,0,.92)

);

}
/* =======================
   SHARED PAGE HERO
======================= */

.page-hero {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 70vh;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 5rem;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.9)),
    url("images/photosofartists/redjen.png") center / cover no-repeat;
  text-align: center;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
}

/* =======================
   HOME PAGE SECTIONS
======================= */

.release-layout,
.album-feature-content,
.coming-soon-layout {
  display: grid;
  grid-template-columns: minmax(280px, 480px) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.release-details,
.coming-soon-details {
  min-width: 0;
  overflow-wrap: anywhere;
}

.release-details h3 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.release-details p,
.album-feature-text p {
  margin-bottom: 20px;
  color: var(--gray);
}

.release-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.album-feature-text h2 {
  margin-bottom: 20px;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 2.6rem;
}

.coming-soon-artwork {
  position: relative;
}

.coming-soon-badge {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 40px;
  background: var(--burgundy);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.audio-preview {
  margin: 35px 0;
}

audio {
  width: 100%;
}

.about-preview-layout {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  max-width: var(--content-width);
  margin: 0 auto;
}

.about-preview-text h2 {
  margin-bottom: 25px;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
}

.about-preview-text p {
  margin-bottom: 20px;
  color: var(--gray);
}

.video-container {
  max-width: 1000px;
  margin: auto;
  aspect-ratio: 16 / 9;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

.quote-section {
  background: linear-gradient(135deg, #1d1113, #080808);
  text-align: center;
}

.quote-content {
  max-width: 900px;
  margin: auto;
}

blockquote {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 2rem;
  line-height: 1.5;
}

.quote-content p {
  margin-top: 25px;
  color: var(--gray);
}

.newsletter-content {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.newsletter-form input {
  width: 380px;
  max-width: 100%;
  padding: 15px;
  border: 1px solid #333;
  border-radius: 40px;
  background: #202020;
  color: #fff;
}
blockquote{

background:

rgba(90,15,31,.18);

border-left:

3px solid var(--gold);

}
/* =======================
   MUSIC PAGE
======================= */

.album-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: var(--content-width);
  margin: 3rem auto 0;
}

.timeline-item {
  min-width: 0;
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.timeline-item:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.timeline-item:hover .coming-soon-button {
  background: var(--gold);
  color: #090909;
}

.timeline-number {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
}

.timeline-item h3 {
  margin-bottom: 0.75rem;
}

.upcoming-timeline-item {
  opacity: 0.75;
}

.track-list-container {
  width: 100%;
  max-width: 900px;
  margin: 4rem auto 0;
  padding: 2.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.track-list-container h3 {
  margin-bottom: 2rem;
  text-align: center;
}

.track-list {
  columns: 2;
  column-gap: 4rem;
  padding-left: 1.5rem;
}

.track-list li {
  margin-bottom: 0.8rem;
  break-inside: avoid;
}

.album-grid {
  display: block;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: var(--content-width);
  margin: 3rem auto 0;
}

.album-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
  overflow-wrap: anywhere;
}

.album-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.album-card-image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.album-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-card-content {
  padding: 1.75rem;
}

.album-status,
.song-album {
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
}

.album-card-content h3 {
  margin-bottom: 1rem;
}

.album-card-buttons {
  margin-top: 1.5rem;
}

.song-grid {
  display: block;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: var(--content-width);
  margin: 3rem auto 0;
}

.song-card {
  min-width: 0;
  padding: 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.03);
  overflow-wrap: anywhere;
}

.song-card h3 {
  margin-bottom: 1rem;
}

.song-card .text-link {
  display: inline-block;
  margin-top: 1rem;
}

.streaming-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.streaming-card {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-family: "Cinzel", serif;
  font-weight: 600;
  text-align: center;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.streaming-card:hover {
  transform: translateY(-4px);
  background: var(--gold);
  color: #090909;
}

.lyrics-spotlight h2 {
  margin-bottom: 1.5rem;
}

.lyrics-spotlight .button {
  margin-top: 1.5rem;
}

/* =======================
   ABOUT PAGE
======================= */

.about-story-layout,
.creative-process-layout,
.studio-layout,
.artist-closing-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.studio-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.about-story-image,
.studio-image,
.artist-closing-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-story-image img,
.studio-image img,
.artist-closing-image img {
  width: 280px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--gold);
  border-radius: 4px;
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.75),
    0 0 0 8px rgba(198, 161, 91, 0.06);
}

.album-cover-frame {
  position: relative;
  width: 280px;
  max-width: 100%;
  margin: 0 auto;
}

.album-cover-frame img {
  width: 100%;
}

.album-cover-text {
  position: absolute;
  inset: auto 0 0;
  padding: 1.25rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  text-align: center;
}

.album-cover-text span {
  display: block;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
}

.album-cover-text strong {
  display: block;
  margin-top: 0.4rem;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  line-height: 1.3;
}

/* =======================
   SOCIAL & FOOTER
======================= */

.social-section {
  background: #0d0d0d;
  text-align: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 35px;
}

.social-links a {
  color: var(--gold);
}

.social-links a:hover {
  color: var(--white);
}

.site-footer {
  border-top: 1px solid #222;
  background: #000;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: auto;
  padding: 70px 10%;
}

.footer-logo {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 2rem;
}

.footer-container h2 {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 1.1rem;
}

.footer-container li {
  margin-bottom: 10px;
}

.footer-bottom {
  padding: 25px;
  border-top: 1px solid #222;
  color: #777;
  text-align: center;
}

/* =======================
   SCROLLBAR
======================= */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
}
/* ==================================================
   LYRICS & STORIES PAGE
================================================== */

.lyrics-page-hero {
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.92)
    ),
    url("images/photosofartists/redjen.png")
    center / cover no-repeat;
}

/* Featured Story */

.featured-story-layout {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-story-image {
  display: flex;
  justify-content: center;
}

.featured-story-image img {
  width: 320px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--gold);
  border-radius: 4px;
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.75),
    0 0 0 8px rgba(198, 161, 91, 0.06);
}

.featured-story-content h2 {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.song-meta {
  margin-bottom: 1.5rem;
  color: var(--gray);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.featured-story-intro {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.featured-lyric {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
  font-size: 1.6rem;
  text-align: left;
}

.featured-story-content p {
  margin-bottom: 1.25rem;
}

.featured-story-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* Album Archive */

.lyrics-album-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.lyrics-album-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(198, 161, 91, 0.3);
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

a.lyrics-album-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold);
}

.lyrics-album-image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.lyrics-album-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.lyrics-album-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(
      circle,
      rgba(198, 161, 91, 0.15),
      rgba(0, 0, 0, 0.95)
    );
}

.lyrics-album-placeholder span {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 4rem;
}

.lyrics-album-content {
  padding: 1.75rem;
}

.lyrics-album-content h3 {
  margin-bottom: 1rem;
}

.lyrics-album-content p {
  margin-bottom: 1rem;
}

.upcoming-lyrics-card {
  opacity: 0.82;
}

/* Song Archive */

.story-song-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.story-song-card {
  min-width: 0;
  padding: 2rem;
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-top: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.story-song-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.story-song-card h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: "Cinzel", serif;
}

.song-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.song-tags span {
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}

.text-link {
  color: var(--gold);
  font-weight: 600;
}

.text-link:hover {
  color: var(--gold-light);
}

/* Individual Story Sections */

.individual-story-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.story-heading {
  max-width: 850px;
  margin: 0 auto 3rem;
  text-align: center;
}

.story-heading h2 {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.story-meta span {
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(198, 161, 91, 0.3);
  border-radius: 999px;
  color: var(--gray);
  font-size: 0.75rem;
}

.story-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.story-panel {
  padding: 2rem;
  border: 1px solid rgba(198, 161, 91, 0.25);
  background: rgba(255, 255, 255, 0.025);
}

.story-panel h3 {
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: "Cinzel", serif;
}

.story-panel p + p {
  margin-top: 1rem;
}

.lyric-preview-box {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2.5rem;
  border-left: 4px solid var(--gold);
  background: rgba(198, 161, 91, 0.06);
  text-align: center;
}

.lyric-preview-box blockquote {
  margin: 1rem 0;
}

.story-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Mythology Guide */

.mythology-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.mythology-guide-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(198, 161, 91, 0.25);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.mythology-icon {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
}

.mythology-guide-card h3 {
  margin-bottom: 0.75rem;
  font-family: "Cinzel", serif;
}

/* Writing Process */

.writing-process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.writing-process-content h2 {
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.writing-process-content p {
  margin-bottom: 1.25rem;
}

.writing-process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.writing-step {
  padding: 1.5rem;
  border: 1px solid rgba(198, 161, 91, 0.25);
  background: rgba(255, 255, 255, 0.025);
}

.writing-step span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
}

.writing-step h3 {
  margin-bottom: 0.5rem;
}

/* Favorite Lines */

.favorite-lines-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.favorite-line-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  border: 1px solid rgba(198, 161, 91, 0.25);
  background:
    linear-gradient(
      135deg,
      rgba(75, 13, 23, 0.35),
      rgba(0, 0, 0, 0.8)
    );
  text-align: center;
}

.favorite-line-card blockquote {
  font-size: 1.4rem;
}

.favorite-line-card p {
  margin-top: 1.5rem;
  color: var(--gray);
}

/* Closing */

.lyrics-closing-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.lyrics-closing-content h2 {
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
}

.lyrics-closing-content p {
  max-width: 700px;
  margin: 0 auto;
}

.lyrics-closing-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ==================================================
   LYRICS PAGE TABLET
================================================== */

@media (max-width: 1000px) {

  .lyrics-album-grid,
  .story-song-grid,
  .favorite-lines-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mythology-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-story-layout,
  .writing-process-layout {
    grid-template-columns: 1fr;
  }

  .featured-story-content,
  .writing-process-content {
    text-align: center;
  }

  .featured-story-buttons {
    justify-content: center;
  }

}

/* ==================================================
   LYRICS PAGE MOBILE
================================================== */

@media (max-width: 700px) {

  .lyrics-album-grid,
  .story-song-grid,
  .story-content-grid,
  .mythology-guide-grid,
  .writing-process-steps,
  .favorite-lines-grid {
    grid-template-columns: 1fr;
  }

  .featured-story-image img {
    width: 240px;
  }

  .featured-lyric {
    padding-left: 0;
    border-left: 0;
    text-align: center;
  }

  .featured-story-buttons,
  .story-buttons,
  .lyrics-closing-buttons {
    flex-direction: column;
  }

  .featured-story-buttons .button,
  .story-buttons .button,
  .lyrics-closing-buttons .button {
    width: 100%;
    text-align: center;
  }

  .lyric-preview-box {
    padding: 1.5rem;
  }

}
/* =======================
   TABLET
======================= */

@media (max-width: 1000px) {
  .main-navigation {
    display: none;
  }

  .main-navigation.menu-open {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: rgba(5, 5, 5, 0.98);
  }

  .main-navigation.menu-open ul {
    flex-direction: column;
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 3rem;
  }

  blockquote {
    font-size: 1.4rem;
  }

  .release-layout,
  .album-feature-content,
  .coming-soon-layout,
  .about-preview-layout,
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .album-timeline,
  .album-grid,
  .song-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-story-layout,
  .creative-process-layout,
  .studio-layout,
  .artist-closing-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 2.5rem;
  }

  .studio-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}
/* =======================
   DESKTOP NAVIGATION
======================= */

@media (min-width: 1001px) {

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 16px 4%;
  }

  .site-logo {
    flex-shrink: 0;
  }

  .main-navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
  }

  .main-navigation ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
  }

  .main-navigation li {
    display: block;
    margin: 0;
  }

  .main-navigation li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.45rem 0.75rem;

    border: 1px solid rgba(198, 161, 91, 0.65);
    border-radius: 999px;

    color: var(--gold) !important;

    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1rem;
    white-space: nowrap;
    text-transform: uppercase;
  }

  .main-navigation li a:hover {
    border-color: var(--gold);
    background: rgba(198, 161, 91, 0.12);
    color: var(--gold-light) !important;
  }

  .main-navigation li a.active,
  .main-navigation li a[aria-current="page"] {
    border-color: var(--gold);
    background: rgba(90, 15, 31, 0.55);
    color: var(--gold) !important;
  }

  .main-navigation > .button,
  .main-navigation > .button-small {
    flex-shrink: 0;

    padding: 0.72rem 1.35rem;

    border: 1px solid var(--gold);
    border-radius: 999px;

    background: transparent;
    color: var(--gold) !important;

    font-size: 0.68rem;
    line-height: 1;
    letter-spacing: 0.1rem;
    white-space: nowrap;
  }

  .main-navigation > .button:hover,
  .main-navigation > .button-small:hover {
    background: var(--gold);
    color: var(--black) !important;
  }

  .menu-toggle {
    display: none;
  }
}

/* =======================
   FOOTER ALIGNMENT
======================= */

.footer-container {
  display: grid;
  grid-template-columns:
    minmax(280px, 1.2fr)
    minmax(180px, 0.65fr)
    minmax(280px, 1fr);

  align-items: start;
  gap: 4rem;

  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 2rem;
}

.footer-brand,
.footer-navigation,
.footer-label {
  text-align: left;
}

.footer-navigation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-navigation h2,
.footer-label h2 {
  width: 100%;
  margin: 0 0 1rem;

  color: var(--gold);

  font-family: "Cinzel", serif;
  font-size: 1rem;
  letter-spacing: 0.08rem;
}

.footer-navigation ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;

  width: 100%;
  margin: 0;
  padding: 0;
}

.footer-navigation li {
  width: 100%;
  margin: 0;
}

.footer-navigation a {
  display: inline-block;

  padding: 0;

  color: var(--gold) !important;

  font-size: 1rem;
  line-height: 1.4;
}

.footer-navigation a:hover {
  color: var(--gold-light) !important;
}

.footer-label p {
  color: var(--white);
}

.footer-label a {
  color: var(--gold);
}

/* =======================
   TABLET
======================= */

@media (max-width: 1000px) {

  .main-navigation {
    display: none;
  }

  .main-navigation.menu-open {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 1.25rem;
    padding: 2rem 1.25rem;

    background: rgba(5, 5, 5, 0.98);
  }

  .main-navigation.menu-open ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;

    width: min(100%, 340px);
  }

  .main-navigation.menu-open li a {
    display: block;
    width: 100%;

    padding: 0.75rem 1rem;

    border: 1px solid rgba(198, 161, 91, 0.65);
    border-radius: 999px;

    color: var(--gold) !important;

    font-size: 0.75rem;
    letter-spacing: 0.12rem;
    text-align: center;
  }

  .main-navigation.menu-open li a.active,
  .main-navigation.menu-open li a[aria-current="page"] {
    border-color: var(--gold);
    background: rgba(90, 15, 31, 0.5);
    color: var(--gold) !important;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 3rem;
  }

  blockquote {
    font-size: 1.4rem;
  }

  .release-layout,
  .album-feature-content,
  .coming-soon-layout,
  .about-preview-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .album-timeline,
  .album-grid,
  .song-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-story-layout,
  .creative-process-layout,
  .studio-layout,
  .artist-closing-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 2.5rem;
  }

  .studio-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 1.5rem;
  }

  .footer-brand,
  .footer-navigation,
  .footer-label {
    align-items: center;
    text-align: center;
  }

  .footer-navigation ul {
    align-items: center;
  }
}

/* =======================
   MOBILE
======================= */

@media (max-width: 700px) {

  section,
  .section {
    padding: 4rem 1.25rem;
  }

  .page-hero {
    min-height: 60vh;
    padding: 7rem 1.25rem 4rem;
  }

  .album-timeline,
  .album-grid,
  .song-grid,
  .streaming-links,
  .about-story-layout,
  .creative-process-layout,
  .studio-layout,
  .artist-closing-layout,
  .lyrics-album-grid,
  .story-song-grid,
  .story-content-grid,
  .mythology-guide-grid,
  .writing-process-steps,
  .favorite-lines-grid {
    grid-template-columns: 1fr;
  }

  .about-story-layout,
  .creative-process-layout,
  .studio-layout,
  .artist-closing-layout {
    gap: 2.5rem;
    text-align: center;
  }

  .track-list {
    columns: 1;
  }

  .track-list-container {
    padding: 1.5rem;
  }

  .about-story-image img,
  .studio-image img,
  .artist-closing-image img,
  .album-cover-frame {
    width: 220px;
  }

  .hero-buttons,
  .release-buttons,
  .featured-story-buttons,
  .story-buttons,
  .lyrics-closing-buttons {
    flex-direction: column;
    align-items: center;
  }

  .featured-story-buttons .button,
  .story-buttons .button,
  .lyrics-closing-buttons .button {
    width: 100%;
    text-align: center;
  }
}
