/* ============================================================
   ZION AKINRINMADE — style.css
   Shared styles for index.html, about.html, music.html
   ============================================================ */

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

:root {
  --cream:        #F5F2ED;
  --cream-mid:    #EDE8DF;
  --cream-dark:   #E0D9CE;
  --green:        #3A6B47;
  --green-dark:   #1A2E1F;
  --green-mid:    #4A7C59;
  --green-light:  #EAF2EC;
  --gold:         #C9A84C;
  --gold-light:   #E2C47A;
  --gold-dim:     #A8883A;
  --text-main:    #1A2E1F;
  --text-mid:     #4A5E4F;
  --text-muted:   #7A8C7E;
  --white:        #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text-main);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ── NAV (shared) ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: rgba(245,242,237,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
}
/* Home nav starts transparent and frosts on scroll — see index.html inline script */
nav.transparent { background: transparent; border-bottom-color: transparent; }
nav.transparent .nav-logo { color: var(--cream); }
nav.transparent .nav-links a { color: rgba(245,242,237,0.7); }
nav.transparent .nav-links a:hover { color: var(--gold-light); }
nav.transparent .nav-links a.active { color: var(--gold-light); }

.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--green);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--green); font-weight: 500; }

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  background: var(--gold); color: var(--green-dark);
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(245,242,237,0.45); color: var(--cream);
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-secondary:hover { border-color: var(--cream); background: rgba(245,242,237,0.1); transform: translateY(-1px); }

.btn-green {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  background: var(--green); color: var(--cream);
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-green:hover { background: var(--green-mid); transform: translateY(-1px); }

.btn-outline-green {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(58,107,71,0.4); color: var(--green);
  text-decoration: none; display: inline-block;
  transition: all 0.2s;
}
.btn-outline-green:hover { border-color: var(--green); background: rgba(58,107,71,0.06); transform: translateY(-1px); }

/* ── SHARED COMPONENTS ── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::after {
  content: ''; display: block;
  height: 1px; width: 40px;
  background: var(--gold-dim); opacity: 0.4;
}

.stream-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  border: 1px solid rgba(58,107,71,0.3); color: var(--green);
  text-decoration: none; transition: all 0.2s;
}
.stream-btn:hover { background: var(--green); color: var(--cream); }
.stream-btn.primary { background: var(--green); color: var(--cream); border-color: var(--green); }
.stream-btn.primary:hover { background: var(--green-mid); }

/* ── FOOTER ── */
footer {
  background: var(--cream-mid);
  border-top: 1px solid var(--cream-dark);
  padding: 2.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green);
}
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-credit { font-size: 0.75rem; color: var(--text-muted); opacity: 0.55; }
.footer-credit a { color: var(--green); text-decoration: none; opacity: 0.8; }
.footer-credit a:hover { opacity: 1; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   HOME PAGE (index.html)
   ================================================================ */

.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 3rem;
  position: relative; overflow: hidden;
  background: var(--green-dark);
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center 75%;
  background-repeat: no-repeat;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(26,46,31,0.85) 0%, rgba(26,46,31,0.55) 55%, rgba(26,46,31,0.2) 100%),
    linear-gradient(to top, rgba(26,46,31,0.65) 0%, transparent 40%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700; line-height: 0.95;
  color: var(--cream); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
}
.hero-name span { color: var(--gold-light); display: block; }
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.15rem;
  color: rgba(245,242,237,0.8);
  margin-bottom: 2.5rem; max-width: 460px; line-height: 1.7;
  opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s 0.8s forwards; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 3rem;
  display: flex; align-items: center; gap: 0.75rem;
  opacity: 0; animation: fadeUp 0.9s 1.2s forwards;
}
.scroll-line { width: 40px; height: 1px; background: var(--gold); opacity: 0.5; }
.scroll-text { font-family: 'DM Sans', sans-serif; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245,242,237,0.5); }

.intro-strip { background: var(--white); padding: 6rem 3rem; }
.intro-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.intro-heading { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--green-dark); line-height: 1.15; margin-bottom: 1.5rem; }
.intro-heading span { color: var(--green); }
.intro-body { font-size: 1rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 2rem; }
.intro-body p { margin-bottom: 1rem; }
.intro-verse { padding: 1.25rem 1.5rem; border-left: 2px solid var(--gold); background: rgba(201,168,76,0.05); margin-bottom: 2rem; }
.intro-verse p { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: var(--text-main); line-height: 1.6; margin-bottom: 0.4rem; }
.intro-verse cite { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.08em; color: var(--gold-dim); font-style: normal; }

.release-strip { background: var(--cream); padding: 5rem 3rem; }
.release-inner { max-width: 1100px; margin: 0 auto; }
.release-card { background: var(--white); border: 1px solid var(--cream-dark); padding: 2.5rem; display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.release-art { width: 100px; height: 100px; background: var(--green-light); border: 1px solid rgba(58,107,71,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 2rem; color: var(--green); }
.release-info { flex: 1; min-width: 200px; }
.release-label { font-family: 'DM Sans', sans-serif; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 0.4rem; }
.release-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.3rem; }
.release-desc { font-size: 0.85rem; color: var(--text-muted); }
.release-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.connect-strip { background: var(--green-dark); padding: 5rem 3rem; }
.connect-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 3rem; }
.connect-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; color: var(--cream); line-height: 1.2; margin-bottom: 0.5rem; }
.connect-sub { font-size: 0.9rem; color: rgba(245,242,237,0.45); }
.connect-label { font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; }
.connect-label::after { content: ''; display: block; height: 1px; width: 40px; background: var(--gold-dim); opacity: 0.5; }
.social-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-link { display: flex; align-items: center; padding: 0.8rem 1.4rem; border: 1px solid rgba(245,242,237,0.18); text-decoration: none; transition: all 0.2s; }
.social-link:hover { border-color: var(--gold); background: rgba(201,168,76,0.07); }
.social-link span { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(245,242,237,0.55); transition: color 0.2s; }
.social-link:hover span { color: var(--gold); }

/* ================================================================
   ABOUT PAGE (about.html)
   ================================================================ */

.page-hero-about {
  padding: 8rem 0 0;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}
.page-hero-about-top {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 45vh;
}
.page-hero-about-left {
  padding: 4rem 5rem 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.page-hero-about-right {
  background: var(--green-dark);
  padding: 4rem 3rem 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.0;
}
.page-hero-title span { color: var(--green); display: block; }
.name-meaning-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.name-meaning-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.5rem;
  color: var(--cream); line-height: 1.5;
}
.name-meaning-text span { color: var(--gold-light); }
.page-hero-desc {
  font-size: 1rem; color: rgba(245,242,237,0.55);
  line-height: 1.7; margin-top: 1.5rem;
}

.bio-full { background: var(--white); padding: 0; }
.bio-full-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.bio-image-col { position: relative; overflow: hidden; min-height: 500px; }
.bio-image-col img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
.bio-image-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,46,31,0.2) 0%, transparent 60%); }
.bio-text-col { padding: 6rem 5rem; display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.bio-sidebar-title { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--green-dark); line-height: 1.15; margin-bottom: 2rem; }
.bio-sidebar-title span { color: var(--green); display: block; }
.bio-text { font-size: 1rem; line-height: 1.9; color: var(--text-mid); }
.bio-text p { margin-bottom: 1.5rem; }
.bio-text p:last-child { margin-bottom: 0; }
.bio-text strong { color: var(--text-main); font-weight: 500; }

.scripture-section { background: var(--green-dark); padding: 7rem 3rem; }
.scripture-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.scripture-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.scripture-label::before,
.scripture-label::after { content: ''; display: block; height: 1px; width: 40px; background: var(--gold-dim); opacity: 0.5; }
.scripture-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--cream); line-height: 1.5; margin-bottom: 1.5rem; }
.scripture-text span { color: var(--gold-light); }
.scripture-ref { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; letter-spacing: 0.1em; color: rgba(201,168,76,0.6); text-transform: uppercase; }

.cta-strip { background: var(--cream); padding: 5rem 3rem; }
.cta-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.cta-text { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 700; color: var(--green-dark); }
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ================================================================
   MUSIC PAGE (music.html)
   ================================================================ */

.page-hero-music {
  padding: 10rem 3rem 5rem;
  background: var(--green-dark);
  position: relative; overflow: hidden;
}
.page-hero-music-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(58,107,71,0.3) 0%, transparent 70%); }
.page-hero-music-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero-music-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.page-hero-music-label::after { content: ''; display: block; height: 1px; width: 40px; background: var(--gold-dim); opacity: 0.5; }
.page-hero-music-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5vw, 5rem); font-weight: 700; color: var(--cream); line-height: 1.05; margin-bottom: 1rem; }
.page-hero-music-title span { color: var(--gold-light); }
.page-hero-music-desc { font-size: 1rem; color: rgba(245,242,237,0.55); max-width: 500px; line-height: 1.7; }

.featured-section { background: var(--white); padding: 6rem 3rem; }
.featured-inner { max-width: 1100px; margin: 0 auto; }
.featured-card { display: grid; grid-template-columns: 180px 1fr; gap: 3rem; align-items: center; background: var(--cream); border: 1px solid var(--cream-dark); padding: 3rem; }
.featured-art { width: 180px; height: 180px; background: var(--green-light); border: 1px solid rgba(58,107,71,0.15); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--green); flex-shrink: 0; }
.featured-label { font-family: 'DM Sans', sans-serif; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 0.5rem; }
.featured-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 700; color: var(--green-dark); margin-bottom: 0.5rem; line-height: 1.2; }
.featured-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.featured-desc { font-size: 0.95rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 1.5rem; }
.track-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.tracks-section { background: var(--cream); padding: 6rem 3rem; }
.tracks-inner { max-width: 1100px; margin: 0 auto; }
.tracks-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.tracks-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700; color: var(--green-dark); }
.track-row { display: grid; grid-template-columns: 60px 1fr auto; gap: 1.5rem; align-items: center; background: var(--white); border: 1px solid var(--cream-dark); padding: 1.25rem 1.5rem; margin-bottom: 1px; transition: background 0.2s; }
.track-row:hover { background: var(--green-light); }
.track-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: rgba(58,107,71,0.2); text-align: center; }
.track-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.2rem; }
.track-sub { font-size: 0.8rem; color: var(--text-muted); }
.track-actions { display: flex; gap: 0.5rem; }
.track-btn { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.45rem 0.9rem; border: 1px solid rgba(58,107,71,0.25); color: var(--green); text-decoration: none; white-space: nowrap; transition: all 0.2s; }
.track-btn:hover { background: var(--green); color: var(--cream); }

.platforms-section { background: var(--cream-mid); padding: 6rem 3rem; }
.platforms-inner { max-width: 1100px; margin: 0 auto; }
.platforms-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700; color: var(--green-dark); margin-bottom: 3rem; }
.platforms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--cream-dark); border: 1px solid var(--cream-dark); }
.platform-card { background: var(--white); padding: 2.5rem 2rem; text-decoration: none; display: flex; flex-direction: column; gap: 1rem; transition: background 0.2s; position: relative; overflow: hidden; }
.platform-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.platform-card:hover { background: var(--green-light); }
.platform-card:hover::before { transform: scaleX(1); }
.platform-icon { font-size: 1.6rem; color: var(--green); }
.platform-icon svg {  width: 1.2em;  height: 1.2em;}
.platform-name-label { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dim); }
.platform-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--green-dark); }
.platform-arrow { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; color: var(--text-muted); margin-top: auto; }

/* ================================================================
   HAMBURGER & MOBILE MENU
   ================================================================ */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 101;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green); transition: all 0.3s; }
nav.transparent .hamburger span { background: var(--cream); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--green-dark);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--gold-light); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  font-size: 2rem; color: var(--cream);
  cursor: pointer; line-height: 1;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 768px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* home */
  .hero { padding: 0 1.5rem; }
  .hero-scroll { left: 1.5rem; }
  .intro-strip, .release-strip, .connect-strip { padding: 4rem 1.5rem; }
  .intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .connect-inner { flex-direction: column; align-items: flex-start; }

  /* about */
  .page-hero-about-top { grid-template-columns: 1fr; }
  .page-hero-about-left { padding: 4rem 1.5rem 2rem; }
  .page-hero-about-right { padding: 2rem 1.5rem 4rem; }
  .bio-full-inner { grid-template-columns: 1fr; }
  .bio-image-col { min-height: 320px; }
  .bio-text-col { padding: 4rem 1.5rem; }
  .scripture-section, .cta-strip { padding: 5rem 1.5rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }

  /* music */
  .page-hero-music { padding: 8rem 1.5rem 4rem; }
  .featured-section, .tracks-section, .platforms-section { padding: 5rem 1.5rem; }
  .featured-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .featured-art { width: 100px; height: 100px; font-size: 2rem; }
  .track-row { grid-template-columns: 40px 1fr; }
  .track-actions { display: none; }

  footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
}