/* ============================================
   SHAWN CARTER COMEDY - Comedy Club Theme
   Warm ambers, deep reds, brick tones
   ============================================ */

:root {
  --amber: #f59e0b;
  --gold: #fbbf24;
  --warm-red: #dc2626;
  --brick: #b91c1c;
  --cream: #fef3c7;
  --bg-dark: #1c1210;
  --bg-card: #2a1f1a;
  --bg-warm: #231815;
  --text-white: #ffffff;
  --text-cream: #f5e6d3;
  --text-muted: #c4a882;
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Inter', sans-serif;
  --spotlight: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--amber);
  text-decoration: none;
  transition: color 0.2s;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  text-transform: uppercase;
}

/* ---- Accent line ---- */
.accent-line {
  height: 3px;
  background: linear-gradient(90deg, var(--brick), var(--amber), var(--brick));
  border: none;
}

/* ---- Animations ---- */
@keyframes spotlight-flicker {
  0%, 100% { opacity: 1; }
  95% { opacity: 1; }
  96% { opacity: 0.85; }
  97% { opacity: 1; }
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28, 18, 16, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--amber);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  color: var(--text-white);
  line-height: 1;
}

.logo:hover {
  color: var(--text-white);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--amber);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-cream);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--amber);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--amber);
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(28, 18, 16, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 2px solid var(--amber);
  }

  .nav-links.open {
    display: flex;
  }
}

/* ============ HERO ============ */
.hero {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
  background: var(--spotlight);
}

.hero-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.hero-large .hero-headshot {
  width: 350px;
  height: 450px;
  border-radius: 12px;
  flex-shrink: 0;
}

.hero-large .hero-video {
  flex-shrink: 0;
  width: 480px;
}

.hero-large .hero-video .video-embed {
  border: 2px solid rgba(245, 158, 11, 0.3);
}

.hero-large .hero-text {
  max-width: 550px;
}

.hero-large .hero-buttons {
  justify-content: flex-start;
}

.hero-headshot {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid var(--amber);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.25);
  margin-bottom: 1.5rem;
  animation: spotlight-flicker 8s infinite;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--text-white);
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.hero .tagline {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--amber);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.hero .bio-short {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--text-cream);
  font-size: 1.05rem;
}

/* ---- Photo strip ---- */
.photo-strip {
  padding: 2rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.photo-strip-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(245, 158, 11, 0.15);
  transition: border-color 0.3s;
}

.photo-strip-grid img:hover {
  border-color: var(--amber);
}

@media (max-width: 768px) {
  .hero-large {
    flex-direction: column;
    text-align: center;
  }

  .hero-large .hero-headshot {
    width: 260px;
    height: 340px;
  }

  .hero-large .hero-video {
    width: 100%;
  }

  .hero-large .hero-buttons {
    justify-content: center;
  }

  .photo-strip-grid {
    grid-template-columns: 1fr;
  }

  .photo-strip-grid img {
    height: 220px;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--amber);
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  color: var(--bg-dark);
  background: var(--gold);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

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

.btn-outline:hover {
  color: var(--bg-dark);
  background: var(--amber);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ SECTIONS ============ */
section {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--amber);
}

/* ---- Cards ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid rgba(245, 158, 11, 0.15);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
  border-color: var(--amber);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}

.card h3 {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  text-transform: none;
}

.card .card-date {
  font-size: 0.85rem;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card .card-venue {
  color: var(--text-cream);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-cream);
}

/* ============ SHOWS ============ */
.shows-section .no-shows {
  text-align: center;
  color: var(--text-cream);
  font-style: italic;
}

/* ============ ALBUMS ============ */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.album-card {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(245, 158, 11, 0.15);
  text-align: center;
}

.album-card h3 {
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.album-card .album-year {
  color: var(--amber);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.album-card p {
  color: var(--text-cream);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.album-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.album-links a {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--amber);
  border-radius: 4px;
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}

.album-links a:hover {
  background: var(--amber);
  color: var(--bg-dark);
}

/* ============ PODCASTS ============ */
.podcast-card {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid rgba(245, 158, 11, 0.15);
  margin-bottom: 1rem;
}

.podcast-card h3 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
  text-transform: none;
}

.podcast-card p {
  color: var(--text-cream);
  margin-bottom: 1rem;
}

.podcast-links {
  display: flex;
  gap: 1rem;
}

.podcast-links a {
  color: var(--amber);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============ VIDEO ============ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid rgba(245, 158, 11, 0.2);
}

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

/* ============ ABOUT ============ */
.about-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

.about-photo {
  width: 100%;
  border-radius: 8px;
  border: 3px solid var(--amber);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.2);
}

.about-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--amber);
}

.about-text p {
  color: var(--text-cream);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-text .highlights {
  list-style: none;
  margin: 1.5rem 0;
}

.about-text .highlights li {
  padding: 0.4rem 0;
  color: var(--text-cream);
}

.about-text .highlights li::before {
  content: "\1F3A4  ";
}

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

  .about-photo {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ============ EPK ============ */
.epk-header {
  text-align: center;
  margin-bottom: 3rem;
}

.epk-header h1 {
  font-size: 2.5rem;
  color: var(--amber);
}

.epk-header p {
  color: var(--text-cream);
  margin-top: 0.5rem;
}

.epk-section {
  margin-bottom: 3rem;
}

.epk-section h2 {
  text-align: left;
  font-size: 1.4rem;
  color: var(--amber);
  border-bottom: 2px solid rgba(245, 158, 11, 0.2);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.epk-bio {
  color: var(--text-cream);
  font-size: 1.05rem;
  line-height: 1.8;
}

.epk-bio p {
  margin-bottom: 1rem;
}

.epk-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.epk-stat {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.epk-stat .stat-label {
  color: var(--amber);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.epk-stat .stat-value {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.3rem;
}

.epk-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.epk-photos img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 2px solid rgba(245, 158, 11, 0.15);
}

.epk-download {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 8px;
  border: 2px solid var(--amber);
}

.epk-download p {
  color: var(--text-cream);
  margin-bottom: 1rem;
}

/* ============ BLOG ============ */
.blog-list {
  max-width: 800px;
  margin: 0 auto;
}

.blog-list h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--amber);
}

.blog-card {
  display: block;
  background: var(--bg-card);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(245, 158, 11, 0.15);
  transition: border-color 0.3s, box-shadow 0.3s;
  color: var(--text-white);
}

.blog-card:hover {
  border-color: var(--amber);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
  color: var(--text-white);
}

.blog-card time {
  font-size: 0.85rem;
  color: var(--amber);
  font-weight: 600;
}

.blog-card h2 {
  font-size: 1.3rem;
  margin: 0.3rem 0 0.5rem;
  text-align: left;
  color: var(--text-white);
  text-transform: none;
}

.blog-card p {
  color: var(--text-cream);
  font-size: 0.95rem;
}

/* ---- Blog post ---- */
.blog-post {
  max-width: 750px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.post-header {
  margin-bottom: 2rem;
}

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-transform: none;
}

.post-header time {
  color: var(--amber);
  font-weight: 600;
}

.post-content {
  color: var(--text-cream);
  font-size: 1.05rem;
  line-height: 1.8;
}

.post-content h2 {
  color: var(--amber);
  font-size: 1.6rem;
  text-align: left;
  margin: 2rem 0 1rem;
}

.post-content h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin: 1.5rem 0 0.75rem;
}

.post-content p {
  margin-bottom: 1rem;
}

.post-content ul, .post-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content blockquote {
  border-left: 3px solid var(--amber);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: var(--gold);
  font-style: italic;
}

.back-link {
  display: inline-block;
  margin-top: 2rem;
  color: var(--amber);
}

/* ============ CONTACT ============ */
.contact-page {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.contact-page h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--amber);
}

.contact-page > p {
  color: var(--text-cream);
  margin-bottom: 2rem;
}

.contact-page h2 {
  text-align: center;
}

.contact-page .services-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

.contact-page .services-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.contact-page .services-list li:last-child {
  border-bottom: none;
}

.two-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.path-card {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.path-card h2 {
  font-size: 1.3rem;
  text-align: left;
  margin-bottom: 0.75rem;
}

.path-card > p {
  color: var(--text-cream);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.path-card .services-list {
  margin-bottom: 1.25rem;
}

.path-card .btn {
  display: inline-block;
}

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

.contact-form {
  text-align: left;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--amber);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 4px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.15);
}

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

.contact-form .btn {
  width: 100%;
}

.contact-social {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.contact-social a {
  color: var(--text-cream);
  font-weight: 600;
}

/* ============ SUDDEN JEST ============ */
.sj-page {
  max-width: 750px;
  margin: 0 auto;
}

.sj-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.sj-hero h1 {
  font-size: 3rem;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.sj-tagline {
  font-size: 1.2rem;
  color: var(--text-cream);
  font-style: italic;
}

.sj-pitch {
  color: var(--text-cream);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.sj-pitch p {
  margin-bottom: 1rem;
}

.sj-section {
  margin-bottom: 2.5rem;
}

.sj-section h2 {
  font-size: 1.4rem;
  color: var(--amber);
  border-bottom: 2px solid rgba(245, 158, 11, 0.2);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

.sj-app-callout {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid rgba(245, 158, 11, 0.15);
  color: var(--text-cream);
  font-size: 1.05rem;
  line-height: 1.7;
}

.sj-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.sj-stat {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.sj-stat .stat-value {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}

.sj-stat .stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.sj-cta {
  text-align: center;
}

.sj-cta p {
  color: var(--text-cream);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* Sudden Jest featured card on Work With Me */
.sj-featured-card {
  background: var(--bg-card);
  border: 2px solid var(--amber);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.sj-featured-card h2 {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

.sj-featured-tagline {
  color: var(--text-cream);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.sj-featured-card > p {
  color: var(--text-cream);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Sudden Jest callout on homepage / shows */
.sj-home-callout {
  text-align: center;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.sj-home-inner {
  max-width: 600px;
  margin: 0 auto;
}

.sj-home-callout p {
  color: var(--text-cream);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* ============ EDITING / FREELANCE PAGE ============ */
.editing-page {
  max-width: 750px;
  margin: 0 auto;
}

.editing-page h1 {
  font-size: 2.5rem;
  color: var(--amber);
  text-align: center;
  margin-bottom: 1rem;
}

.editing-intro {
  color: var(--text-cream);
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.editing-reel-placeholder {
  background: var(--bg-card);
  border: 2px dashed rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}

.editing-section {
  margin-bottom: 2.5rem;
}

.editing-section h2 {
  font-size: 1.4rem;
  color: var(--amber);
  border-bottom: 2px solid rgba(245, 158, 11, 0.2);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

.editing-section h3 {
  font-size: 1.1rem;
  color: var(--text-cream);
  margin: 1.5rem 0 1rem;
  text-transform: none;
}

.editing-tools {
  color: var(--text-cream);
  font-size: 1.05rem;
}

.editing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.editing-list li {
  padding: 0.6rem 0;
  color: var(--text-cream);
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.editing-list li:last-child {
  border-bottom: none;
}

.editing-samples {
  margin-top: 1.5rem;
}

.editing-samples .video-grid {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.editing-cta {
  text-align: center;
}

.editing-cta p {
  color: var(--text-cream);
  font-size: 1.05rem;
}

/* ============ EMAIL SIGNUP ============ */
.email-signup {
  display: flex;
  gap: 0.75rem;
  max-width: 450px;
  margin: 0 auto;
}

.email-signup input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 4px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.email-signup input[type="email"]:focus {
  outline: none;
  border-color: var(--amber);
}

.email-signup .btn {
  white-space: nowrap;
}

.footer-signup {
  margin-bottom: 1.5rem;
}

.footer-signup p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.footer-signup .email-signup {
  max-width: 380px;
}

.footer-signup .email-signup input[type="email"] {
  font-size: 0.85rem;
  padding: 0.6rem 0.75rem;
}

.footer-signup .email-signup .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
}

/* ============ FOOTER ============ */
.site-footer {
  border-top: 2px solid var(--amber);
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--bg-warm);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-social a {
  color: var(--text-cream);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

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

.footer-club {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.footer-club a {
  color: var(--amber);
}

.footer-copy {
  color: rgba(196, 168, 130, 0.5);
  font-size: 0.8rem;
}

/* ============ PAGE CONTENT (generic) ============ */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .tagline {
    font-size: 1rem;
  }

  section h2 {
    font-size: 1.6rem;
  }

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

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

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