/*
Theme Name: JasonMcArthur Theme
Theme URI: https://jasonmcarthur.com
Author: Jason McArthur
Description: Custom theme for JasonMcArthur.com
Version: 2.1
*/

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --color-bg:         #0a0a0a;
  --color-surface:    #141414;
  --color-surface-2:  #1a1a1a;
  --color-gold:       #c9a84c;
  --color-gold-light: #dfc06e;
  --color-gold-dim:   rgba(201, 168, 76, 0.15);
  --color-text:       #e8e4dc;
  --color-text-muted: rgba(232, 228, 220, 0.55);
  --color-border:     rgba(201, 168, 76, 0.15);
  --font-display:     'Cormorant Garamond', Georgia, serif;
  --font-body:        'DM Sans', system-ui, sans-serif;
  --max-width:        1200px;
  --gutter:           2rem;
}

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

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

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--color-gold-light); }
ul { list-style: none; }

.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;
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   HEADER / NAV
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-logo span { color: var(--color-gold); }

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.current { color: var(--color-gold); }

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.25s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--color-border);
}

.nav-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
  line-height: 1;
}

.nav-social-icon:hover {
  color: var(--color-gold);
}

.nav-social-icon svg {
  width: 16px;
  height: 16px;
}

@media ( max-width: 768px ) {
  .nav-social-icons {
    flex-direction: row;
    margin-left: 0;
    padding-left: var(--gutter);
    padding-top: 0.75rem;
    padding-bottom: 0.5rem;
    border-left: none;
    border-top: 1px solid var(--color-border);
    gap: 1.25rem;
  }
}

@media ( max-width: 768px ) {
  .mobile-menu-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 1.5rem;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: 0.75rem var(--gutter); font-size: 0.9rem; width: 100%; }
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 3rem var(--gutter) 2rem;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

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

.footer-copy {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ============================================================
   PAGE HERO (shared across inner pages)
============================================================ */
.page-hero {
  padding: 8rem var(--gutter) 4rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.page-tagline {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-style: italic;
}

/* ============================================================
   SECTION TITLES
============================================================ */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.section-title--ruled {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-title--ruled::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed { opacity: 1; transform: none; }

/* ============================================================
   HOMEPAGE — HERO
============================================================ */
.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem var(--gutter) 4rem;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient( ellipse at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60% );
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.hero-credentials {
  list-style: none;
  margin-bottom: 2rem;
}

.hero-credentials li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
  letter-spacing: 0.02em;
}

.hero-credentials li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  opacity: 0.6;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero-cta {
  display: inline-block;
  padding: 0.8rem 2.25rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.hero-cta:hover {
  background: var(--color-gold);
  color: var(--color-bg);
}

.hero-photo-wrap {
  position: relative;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--color-border);
  pointer-events: none;
  z-index: -1;
}

@media ( max-width: 900px ) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo-wrap { order: -1; max-width: 380px; margin: 0 auto; }
  .hero-stats { gap: 1.5rem; }
}

/* ============================================================
   HOMEPAGE — CREDENTIALS TICKER
============================================================ */
.credentials-ticker {
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 0.85rem 0;
  background: var(--color-surface);
}

.credentials-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.credentials-ticker-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
}

.ticker-item {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0 2.5rem;
}

.ticker-item span {
  color: var(--color-gold);
  margin-right: 2.5rem;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HOMEPAGE — ABOUT SNAPSHOT
============================================================ */
.home-about {
  padding: 6rem var(--gutter);
  background: var(--color-surface);
}

.home-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-copy p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-album-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.about-album-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.about-album-grid img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
}

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

/* ============================================================
   HOMEPAGE — THREE PILLARS
============================================================ */
.home-pillars {
  padding: 6rem var(--gutter);
}

.home-pillars .container { max-width: var(--max-width); margin: 0 auto; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.pillar-card {
  background: var(--color-surface);
  padding: 2.5rem 2rem;
  border-top: 2px solid var(--color-gold);
  transition: background 0.3s ease;
}

.pillar-card:hover { background: var(--color-surface-2); }

.pillar-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-gold-dim);
  line-height: 1;
  margin-bottom: 1rem;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.pillar-copy {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media ( max-width: 768px ) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HOMEPAGE — RECENT DISCOGRAPHY PREVIEW
============================================================ */
.home-discography {
  padding: 6rem var(--gutter);
  background: var(--color-surface);
}

.home-discography .container { max-width: var(--max-width); margin: 0 auto; }

.home-disc-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2.5rem;
}

.home-disc-link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ============================================================
   HOMEPAGE — CTA BAND
============================================================ */
.home-cta-band {
  padding: 5rem var(--gutter);
  text-align: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  border-top: 1px solid var(--color-border);
}

.home-cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.home-cta-band p {
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* ============================================================
   ALBUM CARDS (Discography & Homepage preview)
============================================================ */
.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.album-card {
  background: var(--color-surface);
  transition: transform 0.25s ease;
}

.album-card:hover { transform: translateY(-3px); }

.album-cover-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-surface-2);
}

.album-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.album-card:hover .album-cover { transform: scale(1.04); }

.album-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-2);
}

.album-cover-placeholder span {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-gold);
  opacity: 0.4;
  text-transform: uppercase;
}

.album-streaming-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.album-cover-wrap:hover .album-streaming-overlay { opacity: 1; }

.stream-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-text);
  transition: color 0.2s ease, transform 0.2s ease;
}

.stream-link:hover { color: var(--color-gold); transform: scale(1.15); }
.stream-link svg { width: 20px; height: 20px; fill: currentColor; }

.album-info { padding: 1rem; }

.album-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.album-artist {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.album-year {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.album-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.album-release-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 0.6rem;
}

/* Role tags */
.album-role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.role-tag {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  border: 1px solid;
}

.role-tag--executive-producer {
  background: rgba(201,168,76,0.12);
  color: var(--color-gold);
  border-color: rgba(201,168,76,0.3);
}

.role-tag--ar {
  background: rgba(100,160,220,0.12);
  color: #7ab0dc;
  border-color: rgba(100,160,220,0.3);
}

.role-tag--songwriter {
  background: rgba(100,200,140,0.12);
  color: #7ac89a;
  border-color: rgba(100,200,140,0.3);
}

.role-tag--vocals {
  background: rgba(180, 100, 180, 0.15);
  color: #c88fc8;
  border-color: rgba(180, 100, 180, 0.3);
}

/* Track listing accordion */
.album-tracks-wrap { margin-top: 0.5rem; }

.tracks-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.4rem 0;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid var(--color-border);
  transition: color 0.2s ease;
}

.tracks-toggle:hover { color: var(--color-gold); }

.tracks-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.tracks-toggle.is-open .tracks-chevron { transform: rotate(180deg); }

.album-tracks {
  margin-top: 0.5rem;
  padding-left: 0;
  list-style: decimal;
  list-style-position: inside;
}

.track-item {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  padding: 0.2rem 0;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.track-item--songwriter {
  color: var(--color-text);
}

.sw-badge {
  color: var(--color-gold);
  font-size: 0.65rem;
  margin-left: 0.3rem;
}

.discography-legend {
  padding: 1.5rem 0 3rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ============================================================
   DISCOGRAPHY PAGE — CONTROLS
============================================================ */
.discography-controls {
  padding: 2.5rem 0 0;
  background: var(--color-bg);
  position: sticky;
  top: 60px;
  z-index: 50;
  border-bottom: 1px solid var(--color-border);
}

.discography-controls .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 1.25rem;
}

.discography-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s ease;
}

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

.filter-btn.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-bg);
}

.discography-grid-section {
  padding: 3rem 0 4rem;
}

.discography-grid-section .container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================================
   SEARCH FIELD
============================================================ */
.discography-search-wrap {
  margin-bottom: 1.5rem;
}

.search-input-wrap {
  position: relative;
  max-width: 480px;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  pointer-events: none;
  opacity: 0.7;
}

.discography-search {
  width: 100%;
  padding: 0.75rem 2.75rem 0.75rem 2.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 3px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.discography-search::placeholder {
  color: rgba(232, 228, 220, 0.35);
}

.discography-search:focus {
  outline: none;
  border-color: rgba(201, 168, 76, 0.6);
  background: rgba(255, 255, 255, 0.07);
}

.discography-search::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.search-clear {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(232, 228, 220, 0.5);
  transition: color 0.2s ease;
}

.search-clear:hover { color: var(--color-gold); }
.search-clear svg { width: 15px; height: 15px; }

.no-results-message {
  padding: 3rem 0;
  text-align: center;
  color: rgba(232, 228, 220, 0.45);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.page-about { padding-top: 0; }

.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  padding: 4rem var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-sidebar-photo {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: top;
  margin-bottom: 1.5rem;
}

.sidebar-credentials { border-top: 1px solid var(--color-border); padding-top: 1.25rem; }

.cred-item { margin-bottom: 1.25rem; }

.cred-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.2rem;
}

.cred-value {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.about-bio section { margin-bottom: 2.5rem; }

.about-bio p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.about-tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-text);
  font-style: italic;
  line-height: 1.6;
  border-left: 2px solid var(--color-gold);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

@media ( max-width: 900px ) {
  .about-layout { grid-template-columns: 1fr; }
  .about-sidebar-photo { max-width: 260px; }
}

/* ============================================================
   SONGWRITING PAGE
============================================================ */
.songwriting-bio-section {
  padding: 4rem var(--gutter);
  border-bottom: 1px solid var(--color-border);
}

.songwriting-bio-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.songwriting-bio-copy p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.sidebar-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-gold);
  padding: 1.5rem;
}

.sidebar-box-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.catalog-links li { margin-bottom: 0.6rem; }
.catalog-links a {
  font-size: 0.83rem;
  color: var(--color-gold);
  transition: color 0.2s ease;
}
.catalog-links a:hover { color: var(--color-gold-light); }

.sw-discography-section {
  padding: 4rem var(--gutter);
}

.sw-discography-section .container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.sw-credits-wrap { margin-bottom: 0.75rem; }

.sw-credits-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
}

.sw-credits-list {
  list-style: none;
  padding: 0;
}

.sw-credits-list li {
  font-size: 0.78rem;
  color: var(--color-text);
  padding: 0.15rem 0;
  padding-left: 0.75rem;
  position: relative;
}

.sw-credits-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.55rem;
  color: var(--color-gold);
  top: 0.2rem;
}

@media ( max-width: 900px ) {
  .songwriting-bio-wrap { grid-template-columns: 1fr; }
}

/* ============================================================
   SPEAKING PAGE
============================================================ */
.speaking-hero {
  padding: 8rem var(--gutter) 5rem;
  border-bottom: 1px solid var(--color-border);
}

.speaking-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.speaking-hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
}

.speaking-hero-copy p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.speaking-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.5rem;
}

.speaking-photo-main {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
}

.speaking-photo-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.speaking-photo-stack img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  aspect-ratio: 1;
}

.speaking-topics-section {
  padding: 4rem var(--gutter);
  background: var(--color-surface);
}

.speaking-topics-section .container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.speaking-topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.topic-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-gold);
  padding: 1.75rem 1.5rem;
}

.topic-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-gold-dim);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.topic-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.topic-copy {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.speaking-booking-section {
  padding: 4rem var(--gutter);
}

.speaking-booking-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.speaker-bio-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  margin-top: 2rem;
}

.speaker-bio-box h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.speaker-bio-box p {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.booking-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-gold);
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.booking-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.booking-box p {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.booking-email {
  display: block;
  font-size: 0.83rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

@media ( max-width: 900px ) {
  .speaking-hero-inner,
  .speaking-booking-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.page-contact-section {
  padding: 4rem var(--gutter);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-form-wrap label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s ease;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  outline: none;
  border-color: rgba(201,168,76,0.5);
}

.contact-form-wrap textarea { min-height: 140px; resize: vertical; }

.contact-intro {
  margin-bottom: 2rem;
}

.contact-intro > p:first-child {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.contact-disclaimer {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  border: 1px solid var(--color-border);
  border-left: 2px solid var(--color-gold);
  padding: 1.25rem 1.25rem 0.25rem;
  background: rgba(255,255,255,0.02);
}

.contact-disclaimer p {
  margin-bottom: 1rem;
}

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

.contact-sidebar .contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.contact-social-links a {
  font-size: 0.83rem;
  color: var(--color-text-muted);
}

@media ( max-width: 900px ) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ============================================================
   BUTTONS / CTA
============================================================ */
.btn {
  display: inline-block;
  padding: 0.8rem 2.25rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  background: none;
  border-radius: 0;
}

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

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

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

/* ============================================================
   PRIVACY POLICY PAGE
============================================================ */
.page-privacy-section {
  padding: 4rem var(--gutter);
  max-width: 760px;
  margin: 0 auto;
}

.page-privacy-section h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--color-gold);
}

.page-privacy-section p,
.page-privacy-section li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.page-privacy-section ul {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 1rem;
}

/* ============================================================
   RESPONSIVE UTILITIES
============================================================ */
@media ( max-width: 600px ) {
  :root { --gutter: 1.25rem; }
  .discography-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .filter-btn { font-size: 0.68rem; padding: 0.4rem 0.85rem; }
}
