@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap");

:root {
  --background: hsl(35 30% 96%);
  --foreground: hsl(20 25% 12%);
  --card: hsl(33 25% 93%);
  --card-foreground: hsl(20 25% 12%);
  --primary: hsl(32 85% 48%);
  --primary-foreground: hsl(35 30% 98%);
  --secondary: hsl(8 45% 82%);
  --secondary-foreground: hsl(20 25% 15%);
  --muted: hsl(30 15% 90%);
  --muted-foreground: hsl(20 10% 45%);
  --accent: hsl(280 35% 30%);
  --accent-foreground: hsl(35 30% 96%);
  --border: hsl(30 20% 85%);
  --ring: hsl(32 85% 48%);
  --radius: 0.625rem;

  --sunset-gold: hsl(40 90% 55%);
  --sunset-amber: hsl(25 88% 52%);
  --sunset-coral: hsl(12 75% 62%);
  --deep-plum: hsl(280 40% 22%);
  --warm-clay: hsl(15 55% 38%);
  --sky-steel: hsl(215 30% 55%);
  --sage-green: hsl(145 18% 42%);
  --cream: hsl(38 40% 94%);

  --gradient-sunset: linear-gradient(135deg, hsl(40 90% 55%), hsl(25 88% 52%), hsl(12 75% 62%));
  --gradient-dusk: linear-gradient(135deg, hsl(280 40% 22%), hsl(320 35% 35%), hsl(12 75% 62%));
  --gradient-warm: linear-gradient(180deg, hsl(35 30% 96%), hsl(33 25% 90%));
  --gradient-soft-peach: linear-gradient(135deg, hsl(35 55% 95%), hsl(12 62% 90%));

  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --shadow-soft: 0 2px 8px hsl(20 25% 12% / 0.06), 0 1px 3px hsl(20 25% 12% / 0.04);
  --shadow-medium: 0 4px 16px hsl(20 25% 12% / 0.08), 0 2px 6px hsl(20 25% 12% / 0.05);
  --shadow-warm: 0 4px 20px hsl(32 85% 48% / 0.15);

  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-enter: 600ms;
  --duration-micro: 150ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, hsl(40 90% 55% / 0.12), transparent 26%),
    radial-gradient(circle at right 12% top 20%, hsl(12 75% 62% / 0.12), transparent 20%),
    var(--gradient-warm);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

p {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--foreground);
  text-wrap: balance;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 20px auto;
  background: hsl(35 30% 96% / 0.92);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.8);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(10px);
}

.hero {
  padding: 28px;
  background:
    linear-gradient(180deg, hsl(35 30% 98% / 0.86), hsl(35 30% 96% / 0.75)),
    linear-gradient(135deg, hsl(40 90% 55% / 0.16), hsl(12 75% 62% / 0.12)),
    var(--gradient-warm);
  border-bottom: 1px solid var(--border);
}

.section-hero {
  padding-bottom: 22px;
}

.landing-hero {
  position: relative;
  isolation: isolate;
}

.landing-hero::before {
  content: "";
  position: absolute;
  left: -170px;
  top: 84px;
  width: min(70vw, 840px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, hsl(35 30% 98% / 0.18) 0 1.2%, transparent 1.4%),
    radial-gradient(circle at 50% 50%, transparent 0 8.5%, hsl(320 35% 35% / 0.5) 8.8% 14.4%, hsl(20 25% 12% / 0.88) 14.8% 100%),
    repeating-radial-gradient(circle at center, transparent 0 6.2%, hsl(35 30% 98% / 0.035) 6.3% 6.55%, transparent 6.7% 8.9%),
    repeating-radial-gradient(circle at center, transparent 0 15.5%, hsl(20 25% 12% / 0.08) 15.65% 15.9%, transparent 16.05% 18.4%),
    linear-gradient(140deg, transparent 0 62%, hsl(35 30% 98% / 0.16) 66% 69%, transparent 73%),
    radial-gradient(circle at center, hsl(20 25% 12% / 0.92) 0 100%);
  filter: blur(0.1px);
  animation: vinyl-spin 14s linear infinite;
  z-index: 0;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 42%, hsl(35 30% 98% / 0.2), transparent 18%),
    linear-gradient(90deg, hsl(35 30% 96% / 0.42), transparent 34%);
  z-index: 0;
}

.landing-hero .topbar,
.landing-hero .hero-content,
.landing-hero .landing-showcase {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.brand-link {
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: calc(var(--radius) * 1.2);
  background: var(--gradient-sunset);
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-warm);
}

.brand-logo {
  display: block;
  width: 136px;
  height: auto;
  min-height: 92px;
  padding: 0;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.brand h1 {
  font-size: clamp(1.7rem, 2vw, 2.1rem);
}

.section-hero-copy {
  margin-top: 30px;
  max-width: 760px;
}

.section-hero-copy h2 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1;
  margin-bottom: 14px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.landing-nav-link:hover,
.landing-nav-link:focus-visible {
  background: hsl(35 30% 98% / 0.88);
  color: var(--foreground);
  border-color: var(--border);
  box-shadow: var(--shadow-soft);
}

.tab-button {
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: hsl(35 30% 98% / 0.72);
  color: var(--foreground);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition:
    background var(--duration-micro) ease,
    border-color var(--duration-micro) ease,
    box-shadow 300ms var(--ease-smooth),
    transform 150ms ease;
}

.tab-button:hover,
.tab-button:focus-visible,
.tab-button.active {
  background: var(--gradient-sunset);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-warm);
  outline: none;
  transform: translateY(-1px);
}

.subscribe-button {
  background: var(--gradient-dusk);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 24px hsl(280 40% 22% / 0.22);
}

.subscribe-button:hover,
.subscribe-button:focus-visible,
.subscribe-button.active {
  background: linear-gradient(135deg, hsl(280 40% 26%), hsl(320 35% 38%), hsl(12 75% 62%));
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 28px hsl(280 40% 22% / 0.28);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.7fr);
  gap: 24px;
  margin-top: 28px;
}

.hero-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.98;
  max-width: 11ch;
}

.landing-hero .hero-copy {
  max-width: 620px;
}

.landing-hero .hero-copy h2 {
  font-size: clamp(3.5rem, 5.2vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  max-width: 8ch;
  margin-bottom: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 78%, transparent);
}

.landing-hero .hero-text {
  max-width: 44ch;
  font-size: 1.06rem;
  margin-top: 20px;
}

.hero-text {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--muted-foreground);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-link,
.preview-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  border: none;
  font-weight: 500;
  box-shadow: var(--shadow-warm);
  transition:
    transform 150ms ease,
    box-shadow 300ms var(--ease-smooth),
    background 200ms ease;
}

.hero-link:hover,
.preview-link:hover {
  box-shadow: 0 6px 24px hsl(32 85% 48% / 0.25);
  transform: translateY(-1px);
}

.hero-link-secondary,
.preview-link-muted {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
  box-shadow: none;
}

.hero-link-secondary:hover,
.preview-link-muted:hover {
  background: hsl(35 30% 98% / 0.84);
  color: var(--foreground);
  border-color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.hero-note,
.member-card,
.album-card,
.editorial-card,
.feature-article,
.score-card {
  background: var(--card);
  color: var(--card-foreground);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--duration-enter) var(--ease-smooth), transform 150ms ease;
}

.hero-note:hover,
.member-card:hover,
.album-card:hover,
.editorial-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.hero-note-link,
.album-card-link,
.landing-album-link {
  text-decoration: none;
  color: inherit;
}

.hero-note-link {
  display: block;
}

.hero-note {
  padding: 18px;
  align-self: start;
}

.landing-hero .hero-note-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 24px 26px;
  background:
    linear-gradient(180deg, hsl(300 35% 95% / 0.92), hsl(295 28% 91% / 0.86)),
    linear-gradient(135deg, hsl(280 40% 22% / 0.42), hsl(320 35% 35% / 0.3), hsl(12 75% 62% / 0.14));
  border-color: hsl(290 22% 62% / 0.56);
  box-shadow:
    0 0 0 1px hsl(280 40% 22% / 0.12),
    0 14px 34px hsl(280 24% 34% / 0.22);
}

.landing-hero .hero-note-link:hover {
  box-shadow:
    0 0 0 1px hsl(280 40% 22% / 0.16),
    0 18px 38px hsl(280 24% 34% / 0.28);
}

.hero-note-label,
.hero-note-date,
.hero-note-copy,
.score-value,
.score-scale {
  margin: 0;
}

.hero-note-label,
.score-scale,
.album-month,
.editorial-tag {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
}

.hero-note-date {
  margin-top: 12px;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--warm-clay);
}

.landing-hero .hero-note-date {
  margin-top: 16px;
  font-size: clamp(2.2rem, 3.8vw, 2.9rem);
  line-height: 1;
  color: var(--deep-plum);
}

.hero-note-copy {
  margin-top: 12px;
  color: var(--muted-foreground);
}

.landing-hero .hero-note-copy {
  max-width: 28ch;
  font-size: 1.04rem;
  line-height: 1.65;
  color: hsl(280 18% 30%);
}

.landing-hero .hero-note-label {
  color: hsl(280 18% 38%);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

.hero-note-art {
  margin-top: 14px;
  aspect-ratio: 1;
  width: min(100%, 240px);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-warm);
  background-size: cover;
  background-position: center;
}

.landing-hero .hero-note-art {
  width: min(100%, 300px);
  margin-top: 16px;
  border-radius: 20px;
}

.landing-showcase {
  margin-top: 34px;
  display: grid;
  gap: 24px;
}

.landing-showcase-heading h3 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
}

@keyframes vinyl-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.landing-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.landing-album {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(100%, 190px);
  justify-self: center;
}

.landing-album-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.landing-album-art {
  aspect-ratio: 1;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background-size: cover;
  background-position: center;
  transition: transform 180ms ease, box-shadow 300ms var(--ease-smooth);
}

.landing-album:hover .landing-album-art {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.landing-album-link:hover .landing-album-title {
  color: var(--primary);
}

.landing-art-rodeo {
  background-image: url("../Photos/Rodeo.jpg");
}

.landing-art-mamas-gun {
  background-image: url("../Photos/MamasGun.jpeg");
}

.landing-art-buckingham-nicks {
  background-image: url("../Photos/BuckinghamNicks.png");
}

.landing-art-sirens {
  background-image: url("../Photos/Sirens.jpg");
}

.landing-album-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
}

.landing-album-note {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.45;
  color: var(--muted-foreground);
}

.landing-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border-radius: 18px;
  background: var(--gradient-sunset);
  color: white;
  box-shadow: var(--shadow-warm);
}

.landing-banner .eyebrow,
.landing-banner h3,
.landing-banner-copy {
  color: inherit;
}

.landing-banner h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  margin-bottom: 10px;
}

.landing-banner-copy {
  margin: 0;
  max-width: 52ch;
  color: hsl(35 30% 98% / 0.84);
}

.landing-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  justify-self: center;
  padding-inline: 14px;
}

.landing-banner-link {
  background: hsl(35 30% 98%);
  color: var(--foreground);
  box-shadow: none;
}

.landing-banner-link:hover {
  box-shadow: 0 8px 26px hsl(20 25% 12% / 0.12);
}

.landing-banner-link-secondary {
  border-color: hsl(35 30% 98% / 0.42);
  color: white;
}

.landing-banner-link-secondary:hover {
  background: hsl(35 30% 98% / 0.12);
  border-color: hsl(35 30% 98% / 0.6);
  color: white;
}

.content {
  padding: 24px 28px 36px;
}

.panel {
  padding: 10px 0 28px;
  animation: fade-up 0.6s var(--ease-smooth);
}

.panel + .panel {
  border-top: 1px solid var(--border);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h3 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.02;
  margin-bottom: 12px;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted-foreground);
}

.member-grid,
.album-grid,
.editorial-list,
.blog-main {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.member-grid {
  align-items: stretch;
}

.member-card,
.album-card,
.editorial-card,
.post-card {
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.member-photo {
  aspect-ratio: 4 / 5;
  min-height: 250px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background-color: hsl(33 18% 84%);
  background-size: cover;
  background-position: center;
  margin-bottom: 14px;
}

.member-photo-1 {
  background-image:
    linear-gradient(180deg, hsl(20 25% 12% / 0.08), hsl(20 25% 12% / 0.14)),
    url("../Photos/IMG_0934 2.JPG");
  background-position: center, center 12%;
}

.member-photo-2 {
  background-image:
    linear-gradient(180deg, transparent 48%, hsl(20 25% 12% / 0.18) 48%),
    radial-gradient(circle at 50% 24%, hsl(280 20% 18%) 0 13%, transparent 13.5%),
    radial-gradient(circle at 50% 44%, hsl(22 58% 67%) 0 16%, transparent 16.5%),
    linear-gradient(180deg, hsl(215 30% 55%) 0 22%, hsl(33 22% 84%) 22% 65%, hsl(145 18% 42%) 65% 100%);
}

.member-photo-3 {
  background-image:
    linear-gradient(180deg, transparent 47%, hsl(20 25% 12% / 0.18) 47%),
    radial-gradient(circle at 50% 24%, hsl(15 28% 24%) 0 13%, transparent 13.5%),
    radial-gradient(circle at 50% 44%, hsl(20 74% 74%) 0 16%, transparent 16.5%),
    linear-gradient(180deg, hsl(12 75% 62%) 0 22%, hsl(38 32% 88%) 22% 65%, hsl(280 40% 22%) 65% 100%);
}

.member-copy {
  padding: 2px 4px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.member-copy h4,
.album-card h4,
.editorial-card h4,
.post-title {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.member-role,
.album-artist,
.editorial-meta {
  color: var(--warm-clay);
  font-weight: 500;
}

.member-note {
  margin-top: 14px;
  padding-top: 12px;
  margin-bottom: 0;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

.member-card {
  height: 100%;
}

.member-card p:not(.member-role) {
  margin-top: 0;
}

.member-card .member-note {
  margin-top: auto;
}

.member-copy p:last-child,
.album-note,
.editorial-card p:not(.editorial-tag):not(.editorial-meta),
.article-section p,
.hero-text,
.hero-note-copy {
  color: var(--muted-foreground);
}

.album-card {
  padding: 0;
  overflow: hidden;
  height: 100%;
  background:
    linear-gradient(180deg, hsl(35 30% 98% / 0.44), hsl(35 30% 96% / 0.94)),
    var(--card);
}

.album-card-link {
  display: flex;
  flex-direction: column;
}

.album-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.album-card-1 {
  grid-column: span 1;
  position: relative;
  background:
    linear-gradient(180deg, hsl(35 30% 98% / 0.68), hsl(35 30% 96% / 0.96)),
    var(--card);
  box-shadow:
    0 0 0 1px hsl(32 85% 48% / 0.26),
    0 12px 32px hsl(12 75% 62% / 0.18),
    0 0 0 10px hsl(40 90% 55% / 0.16);
}

.editorial-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

.album-note {
  margin-bottom: 0;
}

.editorial-card,
.editorial-card.featured {
  padding: 0;
  overflow: hidden;
  height: 100%;
  background:
    linear-gradient(180deg, hsl(35 30% 98% / 0.42), hsl(35 30% 96% / 0.96)),
    var(--card);
}

.editorial-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.preview-card-visual {
  min-height: 220px;
  border-bottom: 1px solid var(--border);
  background-size: cover;
  background-position: center;
}

.preview-card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.preview-card-body > h4,
.preview-card-body > p {
  margin: 0;
}

.preview-card-header,
.preview-actions,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.preview-card-header {
  justify-content: flex-start;
}

.preview-label,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.28rem 0.82rem;
  border-radius: 999px;
  font-size: 0.88rem;
  line-height: 1;
}

.preview-label {
  background: hsl(0 0% 38%);
  color: white;
  box-shadow: 0 6px 14px hsl(20 25% 12% / 0.18);
}

.preview-label-dark {
  background: hsl(0 0% 34%);
}

.pill {
  background: hsl(34 48% 91%);
  color: var(--primary);
}

.pill-plum {
  background: hsl(280 20% 90%);
  color: var(--accent);
}

.album-card h4,
.editorial-card h4 {
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.album-card h4 {
  font-size: clamp(1.9rem, 2.8vw, 2.75rem);
}

.album-artist,
.editorial-meta {
  margin-top: -1px;
}

.editorial-card h4 {
  max-width: 13ch;
}

.album-card .album-note,
.editorial-card p:not(.editorial-tag):not(.editorial-meta):not(.preview-label) {
  max-width: 36ch;
  font-size: 0.98rem;
}

.preview-actions {
  margin-top: auto;
  padding-top: 8px;
}

.preview-actions .preview-link {
  min-width: 150px;
}

.album-visual {
  position: relative;
  overflow: hidden;
  background-color: hsl(35 30% 92%);
}

.album-visual-rodeo {
  background-image:
    linear-gradient(180deg, hsl(20 25% 12% / 0.08), hsl(20 25% 12% / 0.14)),
    url("../Photos/Rodeo.jpg");
  background-size: cover;
  background-position: center;
}

.album-visual-mamas-gun {
  background-image:
    linear-gradient(180deg, hsl(20 25% 12% / 0.06), hsl(20 25% 12% / 0.1)),
    url("../Photos/MamasGun.jpeg");
  background-size: cover;
  background-position: center;
}

.album-visual-buckingham-nicks {
  background-image:
    linear-gradient(180deg, hsl(20 25% 12% / 0.06), hsl(20 25% 12% / 0.08)),
    url("../Photos/BuckinghamNicks.png");
  background-size: cover;
  background-position: center;
}

.album-visual-sirens {
  background-image:
    linear-gradient(180deg, hsl(20 25% 12% / 0.08), hsl(20 25% 12% / 0.14)),
    url("../Photos/Sirens.jpg");
  background-size: cover;
  background-position: center;
}

.editorial-visual {
  background:
    linear-gradient(180deg, hsl(35 30% 98% / 0.08), hsl(20 25% 12% / 0.12)),
    var(--gradient-soft-peach);
}

.editorial-visual-james-blake {
  background-image:
    linear-gradient(180deg, hsl(35 30% 98% / 0.06), hsl(20 25% 12% / 0.14)),
    url("../Photos/James_Blake_Friend_That_Break_Your_Heart.jpg");
  background-size: cover;
  background-position: center;
}

.editorial-visual-genesis-owusu {
  background-image:
    linear-gradient(180deg, hsl(20 25% 12% / 0.08), hsl(20 25% 12% / 0.14)),
    url("../Photos/Struggler.jpeg");
  background-size: cover;
  background-position: center;
}

.editorial-visual-notes {
  background:
    radial-gradient(circle at 18% 22%, hsl(40 90% 72% / 0.9) 0 8%, transparent 8.5%),
    radial-gradient(circle at 80% 74%, hsl(12 75% 62% / 0.72) 0 14%, transparent 14.5%),
    linear-gradient(135deg, hsl(35 55% 92%), hsl(18 68% 83%), hsl(32 85% 62%));
}

.editorial-visual-essay {
  background:
    radial-gradient(circle at 24% 24%, hsl(35 95% 78% / 0.85) 0 9%, transparent 9.5%),
    radial-gradient(circle at 72% 34%, hsl(320 45% 62% / 0.46) 0 12%, transparent 12.5%),
    linear-gradient(135deg, hsl(280 28% 28%), hsl(320 34% 42%), hsl(18 72% 72%));
}

.editorial-card .preview-card-visual {
  min-height: 190px;
}

.editorial-card .preview-card-body {
  padding: 14px 14px 16px;
}

.editorial-card h4 {
  max-width: 15ch;
}

.editorial-card .preview-actions .preview-link {
  min-width: 0;
}

.editorial-card .editorial-meta,
.editorial-card p:not(.editorial-tag):not(.editorial-meta):not(.preview-label) {
  min-height: 0;
}

.editorial-status {
  margin: auto 0 0;
  padding-top: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.article-page {
  min-height: 100vh;
}

.article-shell {
  margin-top: 20px;
}

.article-hero {
  border-bottom: 1px solid var(--border);
}

.article-hero-james-blake {
  background:
    linear-gradient(135deg, hsl(280 40% 22% / 0.78), hsl(12 75% 62% / 0.42)),
    url("../Photos/James_Blake_Friend_That_Break_Your_Heart.jpg");
  background-size: cover;
  background-position: center;
  color: white;
}

.article-hero-genesis-owusu {
  background:
    radial-gradient(circle at 18% 22%, hsl(40 90% 55% / 0.18), transparent 24%),
    radial-gradient(circle at 78% 28%, hsl(12 75% 62% / 0.16), transparent 22%),
    linear-gradient(135deg, hsl(145 18% 18% / 0.78), hsl(212 30% 20% / 0.7), hsl(280 36% 24% / 0.76), hsl(18 70% 40% / 0.5)),
    url("../Photos/Struggler.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
}

.article-hero-rodeo {
  background:
    linear-gradient(135deg, hsl(20 25% 12% / 0.76), hsl(12 75% 62% / 0.24)),
    url("../Photos/Rodeo.jpg");
  background-size: cover;
  background-position: center;
  color: white;
}

.article-hero-mamas-gun {
  background:
    linear-gradient(135deg, hsl(18 42% 18% / 0.72), hsl(32 85% 48% / 0.18)),
    url("../Photos/MamasGun.jpeg");
  background-size: cover;
  background-position: center;
  color: white;
}

.article-hero-buckingham-nicks {
  background:
    linear-gradient(135deg, hsl(20 25% 12% / 0.68), hsl(35 30% 98% / 0.12)),
    url("../Photos/BuckinghamNicks.png");
  background-size: cover;
  background-position: center;
  color: white;
}

.article-hero-sirens {
  background:
    linear-gradient(135deg, hsl(215 38% 16% / 0.84), hsl(12 75% 62% / 0.18)),
    url("../Photos/Sirens.jpg");
  background-size: cover;
  background-position: center;
  color: white;
}

.subscribe-hero {
  background:
    radial-gradient(circle at 18% 22%, hsl(40 90% 55% / 0.18), transparent 22%),
    radial-gradient(circle at 78% 24%, hsl(320 35% 35% / 0.18), transparent 24%),
    linear-gradient(135deg, hsl(280 40% 22% / 0.94), hsl(320 30% 34% / 0.9), hsl(12 75% 62% / 0.72));
  color: white;
}

.article-hero-james-blake .brand h1,
.article-hero-genesis-owusu .brand h1,
.article-hero-rodeo .brand h1,
.article-hero-mamas-gun .brand h1,
.article-hero-buckingham-nicks .brand h1,
.subscribe-hero .brand h1,
.article-hero-sirens .brand h1,
.article-hero-james-blake h2,
.article-hero-genesis-owusu h2,
.article-hero-rodeo h2,
.article-hero-mamas-gun h2,
.article-hero-buckingham-nicks h2,
.subscribe-hero h2,
.article-hero-sirens h2,
.article-hero-james-blake .eyebrow {
  color: white;
}

.article-hero-genesis-owusu .eyebrow,
.article-hero-rodeo .eyebrow,
.article-hero-mamas-gun .eyebrow,
.article-hero-buckingham-nicks .eyebrow,
.subscribe-hero .eyebrow,
.article-hero-sirens .eyebrow {
  color: white;
}

.article-hero-james-blake .hero-text,
.article-hero-james-blake .hero-note-label,
.article-hero-genesis-owusu .hero-text,
.article-hero-genesis-owusu .hero-note-label,
.article-hero-rodeo .hero-text,
.article-hero-rodeo .hero-note-label,
.article-hero-mamas-gun .hero-text,
.article-hero-mamas-gun .hero-note-label,
.article-hero-buckingham-nicks .hero-text,
.article-hero-buckingham-nicks .hero-note-label,
.subscribe-hero .hero-text,
.subscribe-hero .hero-note-label,
.article-hero-sirens .hero-text,
.article-hero-sirens .hero-note-label {
  color: hsl(35 30% 98% / 0.86);
}

.article-hero-james-blake .album-review-title,
.article-hero-james-blake .album-review-artist,
.article-hero-genesis-owusu .album-review-title,
.article-hero-genesis-owusu .album-review-artist,
.article-hero-rodeo .album-review-title,
.article-hero-rodeo .album-review-artist,
.article-hero-mamas-gun .album-review-title,
.article-hero-mamas-gun .album-review-artist,
.article-hero-buckingham-nicks .album-review-title,
.article-hero-buckingham-nicks .album-review-artist,
.subscribe-hero .album-review-title,
.subscribe-hero .album-review-artist,
.article-hero-sirens .album-review-title,
.article-hero-sirens .album-review-artist {
  color: white;
}

.album-review-title {
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.album-review-artist {
  margin: 10px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: hsl(35 30% 98% / 0.78);
}

.article-hero-james-blake .hero-link,
.article-hero-james-blake .hero-link-secondary,
.article-hero-genesis-owusu .hero-link,
.article-hero-genesis-owusu .hero-link-secondary,
.article-hero-rodeo .hero-link,
.article-hero-rodeo .hero-link-secondary,
.article-hero-mamas-gun .hero-link,
.article-hero-mamas-gun .hero-link-secondary,
.article-hero-buckingham-nicks .hero-link,
.article-hero-buckingham-nicks .hero-link-secondary,
.subscribe-hero .hero-link,
.subscribe-hero .hero-link-secondary,
.article-hero-sirens .hero-link,
.article-hero-sirens .hero-link-secondary {
  color: white;
}

.pick-card {
  padding: 18px;
  text-align: center;
  align-self: end;
  background:
    linear-gradient(180deg, hsl(35 30% 98% / 0.94), hsl(35 30% 96% / 0.84)),
    linear-gradient(135deg, hsl(40 90% 55% / 0.14), hsl(12 75% 62% / 0.14));
  box-shadow: var(--shadow-medium);
}

.pick-card .hero-note-label,
.pick-card-copy {
  color: var(--muted-foreground);
}

.pick-card-value,
.pick-card-subtitle,
.pick-card-copy {
  margin: 0;
}

.pick-card-value {
  margin-top: 6px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 0.95;
  font-family: var(--font-display);
  color: var(--foreground);
}

.pick-card-subtitle {
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-clay);
}

.pick-card-copy {
  margin-top: 12px;
  font-size: 0.94rem;
  line-height: 1.55;
}

.subscribe-pick-card {
  background:
    linear-gradient(180deg, hsl(35 30% 98% / 0.94), hsl(35 30% 96% / 0.84)),
    linear-gradient(135deg, hsl(320 35% 35% / 0.14), hsl(12 75% 62% / 0.12));
}

.subscribe-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(240px, 0.62fr);
  gap: 20px;
  align-items: start;
}

.subscribe-card {
  padding: 24px;
  max-width: none;
}

.subscribe-card-header h4 {
  max-width: 16ch;
}

.subscribe-form {
  display: grid;
  gap: 16px;
  max-width: 560px;
}

.subscribe-embed-shell {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: clip;
  background: hsl(35 30% 98% / 0.84);
  box-shadow: inset 0 1px 0 hsl(35 30% 99% / 0.6);
  padding: 18px;
}

.subscribe-embed {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
  background: transparent;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--foreground);
}

.form-input {
  min-height: 52px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: hsl(35 30% 98% / 0.88);
  color: var(--foreground);
  font: inherit;
  box-shadow: inset 0 1px 1px hsl(20 25% 12% / 0.02);
  transition:
    border-color var(--duration-micro) ease,
    box-shadow 300ms var(--ease-smooth),
    background var(--duration-micro) ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px hsl(32 85% 48% / 0.12);
  background: hsl(35 30% 98%);
}

.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--muted-foreground);
}

.form-checkbox input {
  margin-top: 0.22rem;
  accent-color: var(--primary);
}

.subscribe-submit {
  justify-self: start;
}

.form-helper,
.form-status {
  margin: 0;
  max-width: 52ch;
  font-size: 0.94rem;
  color: var(--muted-foreground);
}

.form-status[data-state="success"] {
  color: hsl(145 42% 32%);
}

.form-status[data-state="error"] {
  color: hsl(0 58% 44%);
}

.form-status[data-state="pending"] {
  color: var(--warm-clay);
}

.subscribe-side {
  display: grid;
  gap: 18px;
}

.subscribe-side-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(180deg, hsl(35 30% 98% / 0.56), hsl(35 30% 96% / 0.94)),
    var(--card);
  box-shadow: var(--shadow-soft);
}

.subscribe-side-card p:last-child {
  margin-bottom: 0;
}

.subscribe-side-card-accent {
  background:
    linear-gradient(180deg, hsl(300 35% 95% / 0.66), hsl(295 28% 91% / 0.88)),
    var(--card);
}

.subscribe-list {
  margin: 14px 0 0;
  padding-left: 1.15rem;
  color: var(--muted-foreground);
}

.subscribe-list li + li {
  margin-top: 10px;
}

.score-card {
  padding: 18px;
  text-align: center;
  align-self: end;
  background:
    linear-gradient(180deg, hsl(35 30% 98% / 0.94), hsl(35 30% 96% / 0.84)),
    linear-gradient(135deg, hsl(40 90% 55% / 0.14), hsl(12 75% 62% / 0.14));
  box-shadow: var(--shadow-medium);
}

.score-card .hero-note-label {
  color: var(--muted-foreground);
}

.score-value {
  font-size: clamp(4rem, 10vw, 6rem);
  line-height: 0.9;
  font-family: var(--font-display);
  font-weight: 400;
}

.score-scale {
  margin-top: 8px;
}

.score-red .score-value {
  color: hsl(0 65% 50%);
}

.score-yellow .score-value {
  color: hsl(32 85% 48%);
}

.score-green .score-value {
  color: hsl(145 42% 38%);
}

.feature-article {
  padding: 24px;
  box-shadow: var(--shadow-medium);
}

.feature-article-header {
  max-width: 760px;
  margin-bottom: 22px;
}

.feature-article-header h4 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin-bottom: 12px;
}

.album-review-title-small {
  margin-bottom: 6px;
}

.album-review-artist-small {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--warm-clay);
}

.article-main {
  display: grid;
  gap: 20px;
}

.article-main-wide {
  max-width: 860px;
}

.article-section h5 {
  font-size: 1.42rem;
  margin-bottom: 12px;
}

.article-section p {
  margin: 0 0 14px;
  line-height: 1.82;
}

.article-quote {
  margin: 4px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--primary);
  border-radius: 22px;
  background: linear-gradient(135deg, hsl(40 90% 55% / 0.12), hsl(12 75% 62% / 0.08));
  color: var(--muted-foreground);
  font-style: italic;
}

.article-section .article-quote:nth-of-type(even) {
  border-left-color: hsl(280 35% 30% / 0.8);
  background: linear-gradient(135deg, hsl(280 35% 30% / 0.1), hsl(8 45% 82% / 0.16));
}

.blog-main {
  padding: 20px;
}

.post-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--duration-enter) var(--ease-smooth);
}

.post-card:hover {
  box-shadow: var(--shadow-medium);
}

.button {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  border-radius: 8px;
  background: var(--primary);
  color: white;
  border: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: var(--shadow-warm);
  transition:
    transform 150ms ease,
    box-shadow 300ms var(--ease-smooth);
}

.button:hover {
  box-shadow: 0 6px 24px hsl(32 85% 48% / 0.25);
  transform: translateY(-1px);
}

[hidden] {
  display: none !important;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 960px) {
  .hero-content,
  .member-grid,
  .editorial-list,
  .subscribe-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h2 {
    max-width: 100%;
  }

  .landing-strip,
  .landing-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-banner-actions {
    justify-content: flex-start;
  }

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

  .album-card-1 {
    grid-column: auto;
  }

  .landing-hero::before {
    left: -135px;
    top: 170px;
    width: min(82vw, 600px);
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 16px, 1180px);
    margin: 8px auto 18px;
  }

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

  .topbar {
    align-items: flex-start;
  }

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

  .tab-list,
  .hero-actions {
    width: 100%;
  }

  .subscribe-submit {
    width: 100%;
  }

  .landing-strip,
  .landing-banner {
    grid-template-columns: 1fr;
  }

  .landing-hero::before {
    left: -170px;
    top: 194px;
    width: 470px;
    opacity: 0.24;
  }

  .tab-button {
    flex: 1 1 100%;
    text-align: left;
  }

  .hero-copy h2 {
    font-size: 2.7rem;
  }

  .preview-card-header {
    align-items: flex-start;
  }

  .album-card h4,
  .editorial-card h4 {
    font-size: 1.95rem;
  }

  .album-grid {
    grid-template-columns: 1fr;
  }

  .preview-actions .preview-link {
    width: 100%;
  }

  .subscribe-card,
  .subscribe-side-card {
    padding: 18px;
  }
}
