/* ============================================
   SERVANT RECORDINGS — Design System
   ============================================ */

/* --- Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #0A0A0A;
  --bg-surface: #141414;
  --bg-surface-alt: #0E0E0E;
  --bg-footer: #080808;
  --gold: #C9A962;
  --gold-dark: #8B6914;
  --gold-transparent-40: rgba(201, 169, 98, 0.25);
  --gold-transparent-20: rgba(201, 169, 98, 0.125);
  --gold-transparent-10: rgba(201, 169, 98, 0.08);
  --text-primary: #FFFFFF;
  --text-secondary: #848484;
  --text-tertiary: #6A6A6A;
  --text-muted: #4A4A4A;
  --border: #2A2A2A;
  --border-light: #1A1A1A;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 100px 120px;
  --section-padding-sm: 60px 120px;
  --header-padding: 20px 60px;

  /* Transitions */
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

.tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

.subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.section {
  padding: var(--section-padding);
}

.section--alt {
  background: var(--bg-surface-alt);
}

.section--surface {
  background: var(--bg-surface);
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 60px;
}

.flex-row {
  display: flex;
  gap: 32px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--header-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(42, 42, 42, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo__text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--text-primary);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}

.nav__cta--mobile {
  display: none;
}

.nav__cta:hover {
  background: #d4b56e;
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

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

/* --- Single Hero --- */
.single-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0), rgba(10,10,10,0.8) 60%, rgba(10,10,10,1));
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  padding: 140px 120px 80px;
  max-width: 900px;
}

.hero__title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 1.1;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

/* --- Page Hero (shorter, for inner pages) --- */
.page-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 140px 120px 60px;
  background: var(--bg-primary);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn--primary:hover {
  background: #d4b56e;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn--outline:hover {
  background: var(--gold-transparent-20);
}

.btn--small {
  padding: 8px 16px;
  font-size: 0.8125rem;
}

.btn--full {
  width: 100%;
}

/* --- Cards --- */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
}

.card--featured {
  border-color: var(--gold);
  border-width: 2px;
}

/* --- Single/Album Cards --- */
.single-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  width: 280px;
  transition: transform var(--transition), border-color var(--transition);
}

.single-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.single-card__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.single-card__info {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.single-card__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}

.single-card__scripture {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* --- Step Cards --- */
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 32px 28px;
  width: 320px;
  text-align: center;
}

.step-card__number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--gold);
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.step-card__desc {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  line-height: 1.6;
  max-width: 260px;
}

/* --- Donation / Tier Cards --- */
.tier-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
  width: 360px;
}

.tier-card--featured {
  border: 2px solid var(--gold);
}

.tier-card__badge {
  background: var(--gold-transparent-20);
  padding: 6px 16px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
}

.tier-card__tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--text-secondary);
}

.tier-card--featured .tier-card__tag {
  color: var(--gold);
}

.tier-card__price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.tier-card__amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
}

.tier-card--featured .tier-card__amount {
  color: var(--gold);
}

.tier-card__period {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-bottom: 8px;
}

.tier-card__divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.tier-card__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  flex: 1;
}

.tier-card__feature {
  font-size: 0.875rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.tier-card__feature--highlight {
  color: var(--gold);
}

/* --- Scripture Banner --- */
.scripture-banner {
  position: relative;
  overflow: hidden;
}

.scripture-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.scripture-banner__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse, rgba(10,10,10,0.25), rgba(10,10,10,0.88));
}

.scripture-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: var(--section-padding);
}

.scripture-banner__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  max-width: 800px;
}

.scripture-banner__ref {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
}

/* --- Form Elements --- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-primary);
  width: 100%;
  transition: border-color var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%234A4A4A' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-row {
  display: flex;
  gap: 24px;
}

.form-row > * {
  flex: 1;
}

/* --- Promo Banner --- */
.promo-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--gold-transparent-10);
  border: 1px solid var(--gold-transparent-40);
  padding: 20px 24px;
}

.promo-banner__tag {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
}

.promo-banner__prices {
  display: flex;
  align-items: center;
  gap: 12px;
}

.promo-banner__old {
  font-size: 1.125rem;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.promo-banner__new {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-light);
  padding: 60px 120px 40px;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}

.footer__brand {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer__brand-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer__brand-desc {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links-title {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.footer__links a {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.footer__links a svg.social-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer__album-group { margin: 0; padding: 0; border: none; }
.footer__album-group summary {
  font-size: 0.8125rem;
  color: var(--gold);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__album-group summary::-webkit-details-marker { display: none; }
.footer__album-group summary::before {
  content: '\25B6';
  font-size: 0.5rem;
  transition: transform 0.2s;
  display: inline-block;
}
.footer__album-group[open] summary::before { transform: rotate(90deg); }
.footer__album-group .footer__album-tracks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 16px;
  margin-top: 6px;
}
.footer__album-group .footer__album-tracks a {
  font-size: 0.75rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.footer__copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 24px;
}

.footer__legal a:hover {
  color: var(--text-secondary);
}

/* --- Split Section (image + text side by side) --- */
.split {
  display: flex;
  position: relative;
  overflow: hidden;
}

.split__image {
  width: 45%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.split__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, var(--bg-surface-alt) 85%);
}

.split__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 80px;
}

.split__content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- FAQ --- */
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item__question {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.faq-item__answer {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Contact Layout --- */
.contact-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-form {
  flex: 1;
}

.contact-sidebar {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card--highlight {
  border-color: var(--gold-transparent-40);
}

.contact-card__tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
}

.contact-card__value {
  font-size: 1rem;
}

.contact-card__desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.contact-card__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card__links a {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.contact-card__links a svg.social-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

/* --- Pillar Cards (About page) --- */
.pillar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  flex: 1;
}

.pillar-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.pillar-card__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
}

.pillar-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Audio Player (Single Pages) --- */
.album-player {
  position: relative;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.album-player__art-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  cursor: pointer;
  overflow: hidden;
}

.album-player__art-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transition: filter 0.3s ease;
}

.album-player__art-wrap:hover img {
  filter: brightness(0.7);
}

.album-player__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  pointer-events: none;
}

.album-player__art-wrap:hover .album-player__play-btn,
.album-player--playing .album-player__play-btn {
  opacity: 1;
}

.album-player__play-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.album-player__play-btn .icon-play {
  margin-left: 4px;
}

.album-player__play-btn .icon-pause {
  display: none;
}

.album-player--playing .album-player__play-btn .icon-play {
  display: none;
}

.album-player--playing .album-player__play-btn .icon-pause {
  display: block;
}

.album-player__progress {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  position: relative;
}

.album-player__progress-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.1s linear;
}

.album-player__controls {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 0;
}

.album-player__time {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
}

.album-player__btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.album-player__btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.album-player__btn:hover {
  opacity: 1;
}

.album-player__btn svg {
  width: 18px;
  height: 18px;
  fill: var(--text-primary);
}

.album-player__btn--play svg {
  width: 22px;
  height: 22px;
}

.album-player__btn--play {
  background: rgba(201,169,98,0.15);
  border: 1px solid #C9A962;
  border-radius: 4px;
  padding: 4px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9A962;
  opacity: 1;
  transition: all 0.2s ease;
}

.album-player__btn--play:hover {
  background: rgba(201,169,98,0.3);
}

.album-player__btn--play .pause-label {
  display: none;
}

.album-player--playing .album-player__btn--play .play-label {
  display: none;
}

.album-player--playing .album-player__btn--play .pause-label {
  display: inline;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-secondary { color: var(--text-secondary); }
.text-tertiary { color: var(--text-tertiary); }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-40 { gap: 40px; }
.mt-20 { margin-top: 20px; }
.mb-0 { margin-bottom: 0; }
.w-full { width: 100%; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 60px;
    --section-padding-sm: 48px 60px;
    --header-padding: 16px 32px;
  }

  .nav { display: none; }
  .nav--open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.96); padding: 24px 32px; gap: 20px; border-bottom: 1px solid var(--border); z-index: 100; }
  .nav__cta--mobile { display: none; }
  .nav__cta--desktop {
    margin-left: auto;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  .menu-toggle { display: flex; margin-left: 16px; }

  .hero__content { padding: 120px 40px 60px; }
  .page-hero { padding: 120px 40px 48px; }

  .flex-row { flex-wrap: wrap; justify-content: center; }
  .split { flex-direction: column; }
  .split__image { width: 100%; min-height: 300px; }
  .split__content { padding: 48px 40px; }

  .contact-layout { flex-direction: column; }
  .contact-sidebar { width: 100%; }

  .footer__main { flex-wrap: wrap; gap: 40px; }
}

@media (max-width: 640px) {
  :root {
    --section-padding: 60px 24px;
    --section-padding-sm: 40px 24px;
    --header-padding: 14px 20px;
  }

  .nav__cta--desktop {
    padding: 7px 16px;
    font-size: 0.7rem;
  }

  .hero { min-height: 500px; }
  .hero__content { padding: 120px 20px 60px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }

  .album-player { width: 100%; max-width: 300px; }
  .album-player__art-wrap { width: 100%; height: auto; aspect-ratio: 1; }

  .form-row { flex-direction: column; gap: 16px; }

  .tier-card, .step-card, .single-card { width: 100%; max-width: 360px; }

  .site-footer { padding: 40px 24px 24px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .album-showcase { flex-direction: column; text-align: center; gap: 32px; }
  .album-showcase__cover { width: 280px; height: 280px; }
  .album-showcase__details { align-items: center; }
  .album-showcase__details .btn { align-self: center !important; }

  .album-hero__cover { width: 260px; height: 260px; }

  .tracklist__item { gap: 14px; padding: 14px 12px; }
  .tracklist__number { font-size: 1.25rem; min-width: 30px; }
  .tracklist__art { width: 48px; height: 48px; }
}

/* ============================================
   ALBUM COMPONENTS
   ============================================ */

/* Album Hero Cover */
.album-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.album-hero__cover {
  width: 320px;
  height: 320px;
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(201, 169, 98, 0.15);
  border: 1px solid rgba(201, 169, 98, 0.2);
}

/* Album Showcase (Homepage) */
.album-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.album-showcase__cover {
  width: 340px;
  height: 340px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.album-showcase__cover-link:hover .album-showcase__cover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7), 0 0 40px rgba(201, 169, 98, 0.2);
}

.album-showcase__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
}

.album-showcase__scripture {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.album-showcase__ref {
  font-size: 0.875rem;
  font-weight: 500;
  color: #C9A962;
  letter-spacing: 2px;
}

.album-showcase__desc {
  font-size: 0.9375rem;
  color: #848484;
  line-height: 1.8;
}

/* Tracklist */
.tracklist {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.tracklist__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border-bottom: 1px solid #1A1A1A;
  transition: background 0.35s ease, border-color 0.35s ease;
  text-decoration: none;
  color: inherit;
}

.tracklist__item:first-child {
  border-top: 1px solid #1A1A1A;
}

.tracklist__item:hover {
  background: #141414;
  border-color: rgba(201, 169, 98, 0.4);
}

.tracklist__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #C9A962;
  min-width: 40px;
  text-align: center;
}

.tracklist__art {
  width: 56px;
  height: 56px;
  object-fit: cover;
  flex-shrink: 0;
}

.tracklist__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tracklist__title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.tracklist__scripture {
  font-size: 0.8125rem;
  color: #848484;
}

.tracklist__arrow {
  color: #6A6A6A;
  flex-shrink: 0;
  transition: color 0.35s ease, transform 0.35s ease;
}

.tracklist__item:hover .tracklist__arrow {
  color: #C9A962;
  transform: translateX(4px);
}

/* Album Badge (on song pages) */
.album-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.4);
  transition: background 0.35s ease;
  text-decoration: none;
}

.album-badge:hover {
  background: rgba(201, 169, 98, 0.2);
}

.album-badge__text {
  font-size: 0.75rem;
  color: #848484;
  letter-spacing: 1px;
}

.album-badge__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #C9A962;
  letter-spacing: 2px;
}
