:root {
  color-scheme: dark;
  --charcoal: #131313;
  --charcoal-2: #1b1715;
  --gold: #d4af37;
  --gold-soft: #f3d982;
  --ivory: #f6efe2;
  --muted: #b9ad9d;
  --wine: #5d2430;
  --border: rgba(212, 175, 55, 0.24);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --glass: rgba(246, 239, 226, 0.055);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--charcoal);
  color: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, #070707 0%, #131313 44%, #090807 100%);
}

#atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  opacity: 0.92;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(24px, 5vw, 72px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  background: rgba(19, 19, 19, 0.74);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-header nav {
  color: rgba(246, 239, 226, 0.76);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header nav a {
  transition: color 180ms ease;
}

.site-header nav a:hover {
  color: var(--gold-soft);
}

.brand {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.monogram {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(440px, 1fr);
  min-height: 92vh;
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: 102px clamp(24px, 5vw, 72px) 78px;
}

.hero::after {
  position: absolute;
  left: clamp(24px, 5vw, 72px);
  right: clamp(24px, 5vw, 72px);
  bottom: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.62), transparent);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 760px;
  font-size: clamp(4.8rem, 9vw, 10.5rem);
}

h2 {
  max-width: 920px;
  font-size: clamp(2.4rem, 4.2vw, 5.5rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2.4rem);
}

.hero-lede {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(246, 239, 226, 0.8);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
}

.hero-actions,
.field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.button,
.signup button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.signup button:hover {
  transform: translateY(-2px);
  border-color: var(--gold-soft);
}

.button.primary,
.signup button {
  border-color: transparent;
  background: var(--gold);
  color: #18120c;
}

.button.ghost {
  background: rgba(246, 239, 226, 0.05);
}

.hero-portrait {
  position: relative;
  max-width: 720px;
  justify-self: end;
}

.hero-portrait img {
  width: 100%;
  height: min(58vh, 640px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  filter: saturate(0.9) contrast(1.08);
}

.hero-plaque {
  position: absolute;
  left: -30px;
  bottom: 34px;
  max-width: 245px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(19, 19, 19, 0.82);
  backdrop-filter: blur(12px);
}

.hero-plaque span,
.product span,
.album-year {
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-plaque strong {
  display: block;
  margin-top: 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
}

.hero-metrics {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  width: min(620px, calc(58vw - 48px));
  gap: 12px;
}

.hero-metrics span {
  padding: 14px 0;
  color: var(--muted);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
}

.hero-metrics strong {
  display: block;
  color: var(--ivory);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.1rem;
  line-height: 1;
}

.section {
  padding: clamp(78px, 10vw, 140px) clamp(24px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  margin-bottom: 34px;
}

.section-heading.narrow {
  display: block;
  max-width: 880px;
}

.album-grid,
.shop-grid,
.story-grid {
  display: grid;
  gap: 18px;
}

.album-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.album,
.story-panel,
.product,
.signup {
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--glass);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.album {
  min-height: 430px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.album::before {
  display: none;
}

.album.featured {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.16), rgba(93, 36, 48, 0.2));
}

.album h3,
.album p,
.album span {
  position: relative;
}

.album-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 700ms ease, filter 700ms ease;
}

.album-play {
  position: absolute;
  inset: auto 18px 18px auto;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(212, 175, 55, 0.58);
  background: rgba(19, 19, 19, 0.72);
  backdrop-filter: blur(14px);
}

.album-copy {
  padding: 22px;
}

.album:hover .album-art img {
  transform: scale(1.08);
  filter: saturate(1.04) contrast(1.08);
}

.spotify-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  margin-top: 24px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(30, 185, 84, 0.12), rgba(93, 36, 48, 0.18)),
    var(--glass);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px);
}

.spotify-copy p:last-child {
  max-width: 460px;
  color: rgba(246, 239, 226, 0.72);
}

.spotify-panel iframe {
  width: 100%;
  min-height: 352px;
  border: 0;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.album p,
.story-panel p,
.product p,
.signup p {
  color: rgba(246, 239, 226, 0.72);
}

.video-shell {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-shell img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: brightness(0.58) contrast(1.12);
}

.performance-caption {
  position: absolute;
  left: clamp(28px, 5vw, 76px);
  bottom: clamp(28px, 5vw, 70px);
  max-width: 780px;
}

.now-playing {
  display: grid;
  max-width: 560px;
  gap: 8px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  background: rgba(19, 19, 19, 0.58);
  backdrop-filter: blur(18px);
}

.now-playing span,
.now-playing small {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.now-playing strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
}

.track-progress {
  height: 3px;
  overflow: hidden;
  background: rgba(246, 239, 226, 0.16);
}

.track-progress i {
  display: block;
  width: 68%;
  height: 100%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.8);
}

.performance-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  opacity: 0.82;
}

.performance-strip img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 4px;
  filter: saturate(0.75) brightness(0.78);
  transition: filter 220ms ease, transform 220ms ease;
}

.performance-strip img:hover {
  filter: saturate(1) brightness(1);
  transform: translateY(-3px);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px);
}

.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #080808;
}

.video-card div {
  padding: 22px;
}

.video-card h3 {
  font-size: clamp(1.3rem, 1.8vw, 2rem);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.65);
  border-radius: 50%;
  background: rgba(19, 19, 19, 0.7);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.play-button span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 34px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid var(--gold-soft);
}

.story-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: minmax(220px, auto);
}

.story-panel {
  padding: 28px;
  overflow: hidden;
}

.story-panel.tall {
  grid-row: span 2;
}

.story-panel img {
  width: 100%;
  height: 360px;
  margin: -28px -28px 24px;
  max-width: calc(100% + 56px);
  object-fit: cover;
}

.story-panel.image-panel {
  padding: 0;
}

.story-panel.image-panel img {
  height: 100%;
  min-height: 260px;
  margin: 0;
  max-width: 100%;
}

.story-panel.accent {
  background: rgba(93, 36, 48, 0.34);
}

.shop-grid {
  grid-template-columns: 1.2fr 0.8fr 1fr;
}

.product {
  min-height: 390px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: top;
}

.product div {
  padding: 24px;
}

.product.dark {
  justify-content: flex-end;
  background:
    linear-gradient(rgba(19, 19, 19, 0.5), rgba(19, 19, 19, 0.88)),
    url("assets/photos/blue-portrait.jpeg") center top / cover;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.gallery img:first-child,
.gallery img:last-child {
  grid-row: span 2;
}

.inner-circle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 40px;
  align-items: center;
}

.signup {
  padding: 28px;
}

.signup label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-weight: 800;
}

.signup input {
  flex: 1 1 240px;
  min-height: 52px;
  min-width: 0;
  padding: 0 16px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.26);
  color: var(--ivory);
  font: inherit;
}

.signup button {
  cursor: pointer;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(24px, 5vw, 72px) 58px;
  color: var(--muted);
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.audio-visualizer {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 25;
  display: flex;
  height: 28px;
  align-items: end;
  gap: 4px;
  padding: 8px 12px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  background: rgba(19, 19, 19, 0.58);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.audio-visualizer span {
  display: block;
  width: 3px;
  height: 7px;
  background: var(--gold-soft);
  animation: visualizer 1.2s ease-in-out infinite;
}

.audio-visualizer span:nth-child(2n) {
  animation-delay: 120ms;
}

.audio-visualizer span:nth-child(3n) {
  animation-delay: 260ms;
}

@keyframes visualizer {
  0%,
  100% {
    height: 7px;
    opacity: 0.55;
  }
  50% {
    height: 20px;
    opacity: 1;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card {
  transition: opacity 720ms ease, transform 720ms ease, border-color 180ms ease;
}

.reveal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.58);
}

@media (max-width: 1100px) {
  .site-header nav {
    display: none;
  }

  .hero,
  .inner-circle,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 106px;
  }

  .hero-portrait {
    justify-self: stretch;
  }

  .hero-metrics {
    position: static;
    grid-column: 1;
    transform: none;
    width: 100%;
  }

  .album-grid,
  .shop-grid,
  .story-grid,
  .gallery,
  .performance-strip,
  .spotify-panel,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 4.25rem;
  }

  .album-grid,
  .shop-grid,
  .story-grid,
  .gallery,
  .performance-strip,
  .spotify-panel,
  .video-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .video-shell,
  .video-shell img {
    min-height: 460px;
  }

  .hero-portrait img {
    height: min(34vh, 310px);
  }

  .hero-metrics {
    display: none;
  }

  .gallery img:first-child,
  .gallery img:last-child,
  .story-panel.tall {
    grid-row: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .audio-visualizer {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  #atmosphere {
    display: none;
  }

  .audio-visualizer span {
    animation: none;
  }
}
