/* ============================================================
   VARIABLES & RESET
============================================================ */
:root {
  --navy: #0d1b2a;
  --navy-mid: #122235;
  --navy-light: #1a2e44;
  --gold: #D4B05C;
  --gold-light: #e6c97a;
  --text-light: #e8dcc8;
  --text-muted: #a89880;
  --border: rgba(212, 176, 92, 0.2);
  --font-heading: 'Cinzel', Georgia, serif;
  --font-body: 'EB Garamond', Georgia, serif;
  --max-width: 1100px;
  --section-pad: 100px 24px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  background-color: var(--navy);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

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

ul {
  list-style: none;
}

/* ============================================================
   ACCESSIBILITY
============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.section-heading {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
  opacity: 0.5;
}

.section-heading--left {
  text-align: left;
}

.section-heading--left::after {
  margin: 16px 0 0;
}

/* ============================================================
   LAYOUT HELPERS
============================================================ */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(232, 220, 200, 0.5);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.link-btn:hover {
  color: var(--gold-light);
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
}

.header-logo-link:hover {
  color: var(--gold);
}

.header-logo {
  height: 40px;
  width: auto;
}

.header-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  gap: 32px;
}

.site-nav a {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: all var(--transition);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background:
    radial-gradient(ellipse at 30% top, rgba(212, 176, 92, 0.07) 0%, transparent 55%),
    var(--navy);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(212, 176, 92, 0.02) 80px,
      rgba(212, 176, 92, 0.02) 81px
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-bio-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  margin-bottom: 20px;
}

.announcement-banner {
  display: inline-block;
  background: rgba(212, 176, 92, 0.12);
  border: 1px solid rgba(212, 176, 92, 0.35);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 2px;
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
  text-align: left;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 48px;
  font-style: italic;
  text-align: left;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-artwork-panel {
  position: relative;
}

.hero-artwork-inner {
  border: 1px solid var(--border);
  padding: 20px;
  background: var(--navy-mid);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-artwork-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.hero-mailing-list-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 12px rgba(212, 175, 55, 0.25);
}

.hero-artwork-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.hero-artwork-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   MUSIC / RELEASES
============================================================ */
.music {
  background: var(--navy);
}

.music .section-inner {
  padding-bottom: 120px;
}

.release-block {
  margin-bottom: 80px;
}

.release-block:last-child {
  margin-bottom: 0;
}

/* Featured release — larger, more prominent */
.release-block--featured {
  padding: 48px;
  border: 1px solid var(--border);
  background: var(--navy-mid);
  margin-bottom: 64px;
}

.release-block--featured .release-grid {
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
}

.release-block--featured .release-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

/* Secondary release — smaller, recessed */
.release-block--secondary {
  padding: 0 0 0 24px;
  border-left: 2px solid var(--border);
  margin-left: 0;
  opacity: 0.85;
}

.release-block--secondary .release-grid {
  grid-template-columns: 200px 1fr;
  gap: 36px;
}

.release-block--secondary .release-grid--reversed {
  grid-template-columns: 200px 1fr;
}

.release-block--secondary .release-grid--reversed .release-artwork {
  order: 1;
}

.release-block--secondary .release-grid--reversed .release-info {
  order: 2;
}

.release-block--secondary .release-title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

.release-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.85;
}

/* Upcoming / unreleased release — clearly marked as not yet available */
.release-block--upcoming {
  opacity: 0.7;
}

.release-eyebrow--upcoming {
  color: var(--text-muted);
  border: 1px solid var(--border);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
}

/* Embedded YouTube lyric video — fills the grid slot left empty by artwork */
.release-video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.release-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.release-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}

.release-grid--reversed {
  grid-template-columns: 1.4fr 1fr;
}

.release-grid--reversed .release-artwork {
  order: 2;
}

.release-grid--reversed .release-info {
  order: 1;
}

.artwork-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--navy-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.artwork-placeholder span {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.release-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--text-light);
  margin-bottom: 20px;
}

.release-description {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.8;
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.streaming-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 4px;
}

.streaming-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 2px;
  transition: all var(--transition);
}

.streaming-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   SHOWS
============================================================ */
.shows {
  background: var(--navy-mid);
}

.shows-intro {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: -36px;
  margin-bottom: 48px;
  letter-spacing: 0.03em;
}

.bit-widget-wrapper {
  max-width: 800px;
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  background: var(--navy);
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 72px;
  align-items: start;
}

.about-photo {
  position: relative;
  padding-top: 8px;
}

.about-img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-pullquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--gold);
  line-height: 1.65;
  border-left: 2px solid rgba(212, 176, 92, 0.4);
  padding-left: 20px;
  margin-bottom: 28px;
  opacity: 0.9;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* ============================================================
   MERCH
============================================================ */
.merch {
  background: var(--navy-mid);
}

.merch-content {
  border-left: 3px solid rgba(212, 176, 92, 0.35);
  padding-left: 40px;
  max-width: 680px;
}

.merch-tagline {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.8;
}

.merch-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

/* ============================================================
   MAILING LIST
============================================================ */
.mailing-list {
  background: var(--navy-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mailing-list-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.mailing-list-inner .section-heading {
  margin-bottom: 16px;
}

.mailing-list-sub {
  color: var(--text-muted);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
}

.indicates-required {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  background: var(--navy-mid);
}

.contact-inner {
  text-align: center;
}

.contact-intro {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}

.contact-email {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.contact-email a {
  color: var(--gold);
}

/* ============================================================
   MAILCHIMP FORM
============================================================ */
.mc-honeypot {
  position: absolute;
  left: -5000px;
}

.mc-field-group {
  margin-bottom: 20px;
}

.mc-field-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.mc-field-group input[type="text"],
.mc-field-group input[type="email"],
.mc-field-group input[type="tel"] {
  width: 100%;
  background: var(--navy-light);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 2px;
  outline: none;
  transition: border-color var(--transition);
}

.mc-field-group input[type="text"]:focus,
.mc-field-group input[type="email"]:focus,
.mc-field-group input[type="tel"]:focus {
  border-color: var(--gold);
}

.mc-field-group input[type="submit"] {
  width: 100%;
  margin-top: 8px;
}

.mc-field-group.birthday .datefield {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mc-field-group.birthday .subfield {
  display: flex;
}

.mc-field-group.birthday input.birthday {
  width: 56px;
  background: var(--navy-light);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 10px;
  border-radius: 2px;
  outline: none;
  text-align: center;
  transition: border-color var(--transition);
}

.mc-field-group.birthday input.birthday:focus {
  border-color: var(--gold);
}

.mc-field-group.birthday .datefield > span:not(.subfield) {
  color: var(--text-muted);
  font-size: 1rem;
}

.small-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.asterisk {
  color: var(--gold);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #091420;
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  height: 52px;
  width: auto;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.footer-logo:hover {
  opacity: 1;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-nav a {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-social a {
  color: var(--text-muted);
  font-size: 1.3rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ============================================================
   PAGE-LEVEL (non-home pages)
============================================================ */
.page-hero {
  padding: 140px 24px 72px;
  text-align: center;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--gold);
  margin-bottom: 12px;
}

.cf-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
}

.cf-heading-word {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.cf-letter-img {
  display: inline-block;
  height: 1.5em;
  width: 1.5em;
  object-fit: contain;
  vertical-align: middle;
  margin: 0 -0.05em;
}

.page-hero p {
  color: var(--text-muted);
  font-style: italic;
}

.page-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 24px;
}

.page-body h2 {
  font-size: 1.4rem;
  color: var(--gold);
  margin: 40px 0 16px;
}

.page-body p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--text-light);
}

.page-body a {
  color: var(--gold);
}

/* ============================================================
   LINKINBIO
============================================================ */
.linkinbio-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 72px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.linkinbio-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  margin-bottom: 4px;
}

.linkinbio-wrap .linkinbio-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.linkinbio-wrap .linkinbio-sub {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

.linkinbio-video {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.linkinbio-video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.linkinbio-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.linkinbio-video-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.linkinbio-video-caption .linkinbio-link-title {
  font-size: 0.9rem;
  font-weight: 700;
}

.linkinbio-link {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1.5px solid var(--border);
  padding: 8px 20px;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.06),
    rgba(212, 175, 55, 0)
  );
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: all var(--transition);
}

.linkinbio-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.14),
    rgba(212, 175, 55, 0.02)
  );
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--gold);
  transform: translateY(-2px);
}

.linkinbio-link i {
  font-size: 1.2rem;
}

/* Square thumbnail on the left edge — photo or icon-fallback */
.linkinbio-link-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.linkinbio-link-thumb--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-mid);
  border: 1px solid var(--border);
}

.linkinbio-link-thumb--icon i {
  font-size: 1.3rem;
  color: var(--gold);
}

.linkinbio-link:hover .linkinbio-link-thumb--icon {
  border-color: var(--gold);
}

/* Centered text block filling the space beside the thumbnail */
.linkinbio-link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  text-align: center;
}

.linkinbio-link-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-light);
}

.linkinbio-link-subtitle {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gold);
  opacity: 0.85;
}

/* Mailing list — compact card with real Mailchimp form fields */
.linkinbio-mailing-list {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  padding: 20px;
  margin-top: 8px;
}

.linkinbio-mailing-list-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.25);
}

.linkinbio-mailing-list-title i {
  color: var(--gold);
  margin-right: 6px;
}

.linkinbio-mailing-list .indicates-required {
  text-align: center;
}

.linkinbio-mailing-list .mc-field-group {
  margin-bottom: 14px;
}

/* Social icons — single horizontal row of circular icon buttons */
.linkinbio-social-row {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 8px 0;
}

.linkinbio-social-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.3rem;
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: all var(--transition);
}

.linkinbio-social-icon:hover {
  border-color: var(--gold);
  color: var(--navy-mid);
  background: var(--gold);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

/* ============================================================
   COMPASSIONATE FRIENDS
============================================================ */
.cf-section {
  background: var(--navy-mid);
}

.cf-song-list {
  margin: 24px 0;
  padding-left: 20px;
}

.cf-song-list li {
  margin-bottom: 12px;
  color: var(--text-muted);
  font-style: italic;
}

.cf-song-list strong {
  color: var(--text-light);
  font-style: normal;
}

.cf-frames-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 72px 24px;
}

.cf-frames-grid {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}

.cf-frame {
  border: 1px solid var(--border);
  background: var(--navy);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cf-frame-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0 0 16px;
}

.cf-frame-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.cf-frame--discount {
  justify-content: center;
}

.cf-frame--slides {
  justify-content: center;
}

.cf-frame--player {
  justify-content: center;
  padding: 20px;
}

.cf-frame--player .disco-embed {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 480 / 296;
  height: auto;
  border-radius: 4px;
}

.cf-frame--mailing-list form {
  width: 100%;
  text-align: left;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1000px) {
  .hero-layout {
    grid-template-columns: 1fr 300px;
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-text {
    align-items: center;
    text-align: center;
  }

  .hero-title,
  .hero-subtitle {
    text-align: center;
  }

  .hero-artwork-panel {
    max-width: 320px;
    margin: 0 auto;
  }

  .mailing-list-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .release-block--featured {
    padding: 28px;
  }

  .release-block--featured .release-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .release-block--secondary .release-grid,
  .release-block--secondary .release-grid--reversed {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .release-block--secondary .release-grid--reversed .release-artwork,
  .release-block--secondary .release-grid--reversed .release-info {
    order: unset;
  }
}

@media (max-width: 900px) {
  html {
    font-size: 16px;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-bottom: 1px solid var(--border);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .merch-content {
    padding-left: 24px;
  }

  .footer-nav ul {
    gap: 16px;
  }
}
