/* =============================================
   STRUGGLING BROTHERS UNITED — MAIN STYLESHEET
   ============================================= */

:root {
  --orange: #C9601C;
  --orange-dark: #A34D15;
  --orange-light: #E8784A;
  --charcoal: #1A1A1A;
  --charcoal-mid: #2A2A2A;
  --charcoal-light: #3A3A3A;
  --steel: #8A8F96;
  --steel-light: #B0B5BA;
  --white: #FFFFFF;
  --off-white: #F5F3F0;
  --light-gray: #EFEFEF;
  --text-main: #1A1A1A;
  --text-muted: #555555;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --nav-height: 72px;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-main); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* CONTAINERS */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 720px; }

/* SECTIONS */
.section { padding: 96px 0; }
.section-dark { background: var(--charcoal); }
.section-charcoal { background: var(--charcoal-mid); }

.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-label.light { color: var(--orange-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-sub { font-size: 17px; color: var(--text-muted); max-width: 600px; margin-bottom: 48px; line-height: 1.7; }
.section-sub.light { color: var(--steel-light); }

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--charcoal); }
.btn-outline-orange { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,96,28,0.25);
  transition: background var(--transition);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-sbu {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
}
.logo-full {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--steel-light);
  letter-spacing: 0.04em;
  display: none;
}
@media (min-width: 900px) { .logo-full { display: block; } }

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
  list-style: none;
}
@media (min-width: 960px) { .nav-links { display: flex; } }

.nav-links li { position: relative; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--steel-light);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  display: block;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 8px 18px;
  margin-left: 8px;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-links a.nav-cta:hover { background: var(--orange-dark); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--charcoal-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 100;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown li a { font-size: 13px; padding: 10px 18px; color: var(--steel-light); border-radius: 0; }
.dropdown li a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.nav-toggle {
  display: flex;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 960px) { .nav-toggle { display: none; } }

/* Mobile nav */
@media (max-width: 959px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--charcoal);
    padding: 24px;
    gap: 4px;
    border-top: 1px solid rgba(201,96,28,0.25);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  .nav-links.open a { font-size: 16px; padding: 12px 16px; }
  .dropdown { position: static; opacity: 1; pointer-events: all; transform: none; background: rgba(255,255,255,0.04); margin: 4px 0; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9601C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--charcoal) 0%, #0F0F0F 60%, #1A0A00 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,26,0.9) 50%, rgba(26,26,26,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 112px);
  font-weight: 700;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  font-family: var(--font-accent);
  color: var(--orange);
  font-weight: 400;
}
.hero-sub {
  font-size: 18px;
  color: var(--steel-light);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  font-family: var(--font-display);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--steel), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* =============================================
   PILLARS
   ============================================= */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  margin-top: 48px;
}
.pillar-card {
  background: var(--off-white);
  padding: 40px 28px;
  border-top: 3px solid transparent;
  transition: all var(--transition);
  cursor: default;
}
.pillar-card:hover { background: var(--charcoal); border-top-color: var(--orange); }
.pillar-card:hover h3, .pillar-card:hover p { color: var(--white); }
.pillar-card:hover p { color: var(--steel-light); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(201,96,28,0.15);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.pillar-card:hover .pillar-num { color: rgba(201,96,28,0.4); }
.pillar-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; transition: color var(--transition); }
.pillar-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; transition: color var(--transition); }

/* =============================================
   LATEST EPISODE
   ============================================= */
.episode-featured {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
@media (max-width: 768px) { .episode-featured { grid-template-columns: 1fr; gap: 32px; } }

.episode-art { position: relative; }
.episode-art-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--charcoal-light), var(--charcoal-mid));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,96,28,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ep-logo { font-family: var(--font-display); font-size: 64px; font-weight: 700; color: var(--orange); }
.ep-tag { font-size: 12px; color: var(--steel); letter-spacing: 0.1em; font-family: var(--font-display); }
.play-btn {
  position: absolute;
  bottom: -20px;
  right: 28px;
  width: 56px; height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(201,96,28,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  padding-left: 4px;
}
.play-btn:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(201,96,28,0.6); }

.episode-cat {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 12px;
}
.episode-title { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.episode-desc { font-size: 15px; color: var(--steel-light); line-height: 1.7; margin-bottom: 20px; }
.episode-meta { font-size: 13px; color: var(--steel); display: flex; gap: 8px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.episode-actions { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.listen-platforms { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.listen-platforms span { font-size: 12px; color: var(--steel); font-family: var(--font-display); letter-spacing: 0.08em; }
.platform-link {
  font-size: 12px;
  color: var(--steel-light);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 20px;
  transition: all var(--transition);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}
.platform-link:hover { border-color: var(--orange); color: var(--orange-light); }

/* =============================================
   MISSION BANNER
   ============================================= */
.mission-banner {
  background: var(--orange);
  padding: 56px 0;
}
.mission-quote {
  font-family: var(--font-accent);
  font-size: clamp(22px, 3.5vw, 36px);
  font-style: italic;
  color: var(--white);
  text-align: center;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
}

/* =============================================
   JOIN / PATRON TIERS
   ============================================= */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 0;
}
.tier-card {
  background: var(--off-white);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
}
.tier-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier-card.tier-featured {
  background: var(--charcoal);
  border-color: var(--orange);
}
.tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.tier-level {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.tier-card.tier-featured .tier-price { color: var(--white); }
.tier-price span { font-size: 18px; font-weight: 400; color: var(--steel); }
.tier-features { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.tier-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.tier-card.tier-featured .tier-features li { color: var(--steel-light); }
.tier-features li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section { text-align: center; }
.newsletter-form { margin-top: 32px; }
.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 15px;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: var(--steel); }
.newsletter-form input:focus { outline: none; border-color: var(--orange); }
.form-note { font-size: 13px; color: var(--steel); margin-top: 16px; }

/* =============================================
   COACHING
   ============================================= */
.coaching-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) { .coaching-inner { grid-template-columns: 1fr; gap: 40px; } }
.coaching-list { margin: 20px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.coaching-list li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}
.coaching-list li::before { content: "→"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.coaching-visual { display: flex; flex-direction: column; gap: 20px; }
.coaching-card {
  background: var(--off-white);
  border-left: 4px solid var(--orange);
  padding: 28px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.coaching-card-alt { border-left-color: var(--steel); }
.coaching-icon { font-size: 20px; color: var(--orange); margin-bottom: 12px; }
.coaching-card-alt .coaching-icon { color: var(--steel); }
.coaching-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.coaching-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.link-arrow { font-size: 13px; font-weight: 600; color: var(--orange); font-family: var(--font-display); letter-spacing: 0.04em; transition: gap var(--transition); }
.link-arrow:hover { color: var(--orange-dark); }

/* =============================================
   SOCIAL
   ============================================= */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.social-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  display: block;
}
.social-card:hover { background: rgba(201,96,28,0.12); border-color: rgba(201,96,28,0.4); transform: translateY(-2px); }
.social-icon { font-size: 28px; font-weight: 700; color: var(--orange); font-family: var(--font-display); margin-bottom: 8px; height: 36px; display: flex; align-items: center; justify-content: center; }
.social-name { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.social-handle { font-size: 12px; color: var(--steel); }

/* =============================================
   SUPPORT
   ============================================= */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.support-card {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.support-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.support-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.support-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #0F0F0F; padding: 72px 0 0; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; margin-bottom: 56px; }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: 40px; } }
.footer-logo { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 12px; }
.footer-tagline { font-size: 14px; color: var(--steel); line-height: 1.7; margin-bottom: 24px; font-family: var(--font-accent); font-style: italic; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel-light);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-display);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 600px) { .footer-links { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--steel); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: var(--steel); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--charcoal);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,96,28,0.08), transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero p { font-size: 17px; color: var(--steel-light); max-width: 560px; line-height: 1.7; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-title { font-size: 56px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .footer-legal { flex-direction: column; gap: 8px; }
}

/* =============================================
   UTILITY
   ============================================= */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
