/* =========================================================
   Lizzy Alexander — Lizzy Era
   Theme: gold · black · violet
   ========================================================= */

:root {
  /* Palette */
  --bg: #0a0610;
  --bg-2: #0f0918;
  --ink: #070409;
  --panel: #140d20;
  --purple-deep: #2a1140;
  --purple: #6a2dad;
  --purple-bright: #9d5cff;
  --gold: #e8c66a;
  --gold-light: #fbe6b0;
  --gold-deep: #b8862f;
  --text: #f3ecdf;
  --text-muted: #b9a98f;
  --line: rgba(232, 198, 106, 0.18);

  /* Type */
  --font-display: "Cinzel", Georgia, serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", system-ui, sans-serif;

  --gold-grad: linear-gradient(
    180deg,
    var(--gold-light) 0%,
    var(--gold) 45%,
    var(--gold-deep) 100%
  );

  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient gradient wash behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      60% 50% at 15% 0%,
      rgba(106, 45, 173, 0.22),
      transparent 60%
    ),
    radial-gradient(
      50% 45% at 100% 30%,
      rgba(184, 134, 47, 0.1),
      transparent 55%
    ),
    radial-gradient(
      70% 60% at 50% 110%,
      rgba(106, 45, 173, 0.18),
      transparent 60%
    );
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

/* ---------- Shared helpers ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8.5rem) clamp(1.25rem, 5vw, 3rem);
  max-width: var(--container);
  margin: 0 auto;
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__sub {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: var(--text-muted);
  margin-top: 0.9rem;
}
.section__sub em,
.section__title em {
  font-style: italic;
}

/* Hairline divider used between sections */
.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(70%, 760px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95em 1.9em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold-grad);
  color: #2a1a05;
  box-shadow: 0 8px 30px rgba(232, 198, 106, 0.22);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(232, 198, 106, 0.38);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
  color: var(--text);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 6, 16, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.05rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  color: var(--text);
}
.nav__brand-crown {
  display: inline-flex;
  align-items: center;
  width: 1.31em;
  flex-shrink: 0;
  /* nudge up so the crown centers on the cap height, not the full line box */
  transform: translateY(-0.0625em);
}
.nav__brand-crown svg {
  display: block;
  width: 100%;
  height: auto;
}
.nav__links {
  margin-left: auto;
  display: flex;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover {
  color: var(--gold-light);
}
.nav__links a:hover::after {
  width: 100%;
}
.nav__cta {
  padding: 0.7em 1.5em;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding: 1.5rem 1.5rem 2.4rem;
  background: rgba(10, 6, 16, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}
.nav__mobile.is-open {
  display: flex;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg,
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: -2;
}
.hero__bg img {
  animation: heroZoom 22s ease-out forwards;
}
@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      80% 70% at 50% 38%,
      transparent 0%,
      rgba(10, 6, 16, 0.35) 60%,
      rgba(10, 6, 16, 0.92) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 6, 16, 0.55) 0%,
      transparent 28%,
      transparent 55%,
      rgba(10, 6, 16, 0.96) 100%
    );
}

.hero__content {
  padding: 0 1.25rem;
  max-width: 880px;
  animation: heroRise 1.2s var(--ease) both;
}
@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  padding-left: 0.5em;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.92;
  font-size: clamp(3rem, 11vw, 7.5rem);
  letter-spacing: 0.04em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 40px rgba(232, 198, 106, 0.15);
}
.hero__title span {
  display: block;
  font-size: 0.42em;
  letter-spacing: 0.28em;
  font-weight: 500;
  margin-top: 0.35em;
  color: var(--text);
  background: none;
  -webkit-text-fill-color: var(--text);
}
.hero__album {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 2rem 0 1.1rem;
}
.hero__album-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}
.hero__album-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  color: var(--gold-light);
}
.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: var(--text);
  max-width: 32ch;
  margin: 0 auto 2.2rem;
}
.hero__tagline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  justify-content: center;
}
.hero__scroll span {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 7px;
  animation: scrollPulse 1.8s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% {
    opacity: 0;
    transform: translateY(-3px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* =========================================================
   Singles
   ========================================================= */
.singles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
}
.single {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    border-color 0.5s var(--ease);
}
.single:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 198, 106, 0.45);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(232, 198, 106, 0.15);
}
.single__art {
  display: block;
  aspect-ratio: 1;
}
.single__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.single:hover .single__art img {
  transform: scale(1.05);
}
.single__badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4em 0.9em;
  border-radius: 999px;
  background: var(--gold-grad);
  color: #2a1a05;
}
.single__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(10, 6, 16, 0.55);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 1.2rem;
  opacity: 0;
  backdrop-filter: blur(4px);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.single:hover .single__play {
  opacity: 1;
  transform: translate(-50%, -55%) scale(1);
}
.single__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem 1.25rem;
}
.single__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--gold-light);
}
.single__action {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =========================================================
   Album / Tracklist
   ========================================================= */
.album {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.album__visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.album__visual img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 25%;
}
.album__visual-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.5em 1em;
  border-radius: 999px;
  background: rgba(10, 6, 16, 0.6);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  backdrop-filter: blur(6px);
}
.album__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.2rem;
}
.album__intro {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.album__intro em {
  font-style: italic;
  color: var(--gold-light);
}

.tracklist {
  list-style: none;
  margin-bottom: 2.2rem;
}
.track {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.7rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    background 0.3s var(--ease),
    padding-left 0.3s var(--ease);
}
.track:hover {
  background: rgba(232, 198, 106, 0.04);
  padding-left: 0.9rem;
}
.track__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold-deep);
  width: 2ch;
  flex-shrink: 0;
}
.track__name {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  flex: 1;
}
.track--out .track__name {
  color: var(--gold-light);
}
.track__tag {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2a1a05;
  background: var(--gold-grad);
  padding: 0.32em 0.7em;
  border-radius: 999px;
}

/* =========================================================
   Watch / Video
   ========================================================= */
.video {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.video__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s var(--ease),
    filter 0.5s var(--ease);
}
.video:hover .video__poster {
  transform: scale(1.04);
  filter: brightness(0.8);
}
.video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 60% at 50% 50%,
    transparent,
    rgba(10, 6, 16, 0.5)
  );
  pointer-events: none;
}
.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 60px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s var(--ease);
}
.video__play svg {
  width: 100%;
  height: 100%;
}
.video:hover .video__play {
  transform: translate(-50%, -50%) scale(1.1);
}
.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
   About
   ========================================================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__portrait {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.about__portrait img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.about__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  line-height: 1.25;
  color: var(--gold-light);
  margin-bottom: 1.6rem;
  border: none;
}
.about__text p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  max-width: 46ch;
}
.about__text em {
  color: var(--gold-light);
  font-style: italic;
}

/* =========================================================
   Gallery
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: clamp(0.6rem, 1.5vw, 1rem);
}
.gallery__item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: var(--panel);
  grid-column: span 2;
}
.gallery__item--wide {
  grid-column: span 2;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s var(--ease),
    filter 0.5s var(--ease);
}
.gallery__item picture {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(106, 45, 173, 0),
    rgba(232, 198, 106, 0.18)
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.gallery__item:hover img {
  transform: scale(1.07);
  filter: brightness(1.05);
}
.gallery__item:hover::after {
  opacity: 1;
}
.gallery__item:hover {
  border-color: rgba(232, 198, 106, 0.45);
}

/* =========================================================
   Connect
   ========================================================= */
.section--connect {
  text-align: center;
}
.connect {
  max-width: 640px;
  margin: 0 auto;
}
.social {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  margin: 2.2rem 0 1.8rem;
}
.social__link {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text-muted);
  transition:
    transform 0.35s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}
.social__link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.social__link:hover {
  transform: translateY(-4px);
  color: var(--ink);
  background: var(--gold-grad);
  border-color: transparent;
}
.connect__email {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  color: var(--gold-light);
  letter-spacing: 0.02em;
  margin-bottom: 2.2rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.connect__email:hover {
  border-bottom-color: var(--gold);
}
.connect__cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.6rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text);
}
.footer__brand span {
  color: var(--gold);
}
.footer__links {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}
.footer__links a:hover {
  color: var(--gold-light);
}
.footer__copy {
  font-size: 0.74rem;
  color: rgba(185, 169, 143, 0.6);
  letter-spacing: 0.04em;
}

/* =========================================================
   Lightbox
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 3, 9, 0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 4rem);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s var(--ease);
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox__img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease);
}
.lightbox.is-open .lightbox__img {
  transform: scale(1);
}
.lightbox__close {
  position: absolute;
  top: 1.4rem;
  right: 1.8rem;
  width: 46px;
  height: 46px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.lightbox__close:hover {
  border-color: var(--gold);
  transform: rotate(90deg);
}

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.singles .single:nth-child(2) {
  transition-delay: 0.1s;
}
.singles .single:nth-child(3) {
  transition-delay: 0.2s;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 920px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }

  .album,
  .about {
    grid-template-columns: 1fr;
  }
  .album__visual {
    max-width: 460px;
    margin: 0 auto;
  }
  .album__visual img {
    aspect-ratio: 16/11;
  }
  .about__portrait {
    order: -1;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery__item,
  .gallery__item--wide {
    grid-column: span 1;
  }
  .gallery__item:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .singles {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__cta .btn {
    width: 100%;
  }
  .social {
    flex-wrap: wrap;
  }
  .gallery {
    grid-auto-rows: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   Legal pages (Privacy, Terms)
   ========================================================= */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 10rem) clamp(1.25rem, 5vw, 2rem)
    clamp(4rem, 8vw, 6rem);
}
.legal__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1.05;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.legal__updated {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0.9rem 0 2.6rem;
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--gold-light);
  margin: 2.4rem 0 0.9rem;
}
.legal p,
.legal li {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.legal ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.legal li {
  margin-bottom: 0.5rem;
}
.legal a {
  color: var(--gold-light);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s var(--ease);
}
.legal a:hover {
  border-bottom-color: var(--gold);
}
.legal__back {
  display: inline-block;
  margin-top: 2.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: none;
}
.legal__note {
  margin-top: 2.4rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.86rem;
  color: var(--text-muted);
}
