/* ==========================================================================
   Oh F*ck, Now What? — Kara Wolters Podcast Landing Page
   Theme pulled from the real studio chalkboard logo: black, white, gold,
   with a hand-drawn "Permanent Marker" display font for that chalk feel.
   ========================================================================== */

:root {
  --black: #0B0B0C;
  --charcoal: #18191B;
  --white: #FFFFFF;
  --off-white: #F5F4F0;
  --gold: #E9C450;
  --gold-dark: #C9A230;
  --gray: #6B6E73;
  --gray-light: #DEDCD5;
  --max-width: 1180px;
  --radius: 14px;
  --font-display: 'Permanent Marker', 'Archivo Black', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; margin: 0 0 0.5em; }
h3 { margin: 0; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-dark); box-shadow: 0 8px 20px rgba(233,196,80,0.4); }
.btn-outline { border-color: var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--black); }

/* Header / Nav ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 12, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.brand-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: var(--off-white);
  font-weight: 600;
  font-size: 0.92rem;
}
.main-nav a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--gold-dark); color: var(--black) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--white); border-radius: 2px; }

/* Hero --------------------------------------------------------------------*/
.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(233,196,80,0.08), transparent 40%),
    linear-gradient(160deg, var(--black) 0%, var(--charcoal) 100%);
  color: var(--white);
  padding: 72px 0 96px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 22px;
}
.hero h1 .censor { color: var(--gold); }

.hero-logo-heading { margin: 0 0 28px; }
.hero-logo-img {
  width: clamp(220px, 26vw, 340px);
  border-radius: 12px;
  box-shadow: 0 20px 44px rgba(0,0,0,0.5);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--gray-light);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.hero-actions .btn-outline:hover { background: var(--white); color: var(--black); }

.hero-media { position: relative; justify-self: center; }
.hero-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(233,196,80,0.45);
}

/* Section labels ----------------------------------------------------------*/
.section-label {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin: 0 0 10px;
}
.section-label.light { color: var(--gold); }

/* About Kara ----------------------------------------------------------------*/
.about { padding: 100px 0; background: var(--off-white); }
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.about-media img {
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(11,11,12,0.18);
}
.about-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.about-copy p { color: #3A3B3E; margin-bottom: 16px; font-size: 1.02rem; }

/* Podcast section -----------------------------------------------------------*/
.podcast { background: var(--black); color: var(--white); padding: 100px 0; }
.podcast-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
  align-items: center;
}
.podcast h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); max-width: 16ch; }
.podcast-lede {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 65ch;
  margin: 20px 0 44px;
}
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.podcast-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.podcast-card-icon { font-size: 1.6rem; }
.podcast-card h3 { font-family: var(--font-body); font-weight: 800; font-size: 1rem; margin: 12px 0 8px; }
.podcast-card p { color: var(--gray-light); margin: 0; font-size: 0.92rem; }
.podcast-media img {
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

/* Watch / videos ------------------------------------------------------------*/
.watch { padding: 100px 0; background: var(--white); }
.watch h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.watch-sub { color: var(--gray); max-width: 60ch; margin: 12px 0 40px; }
.watch-sub code {
  background: var(--off-white);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.85em;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--black);
  overflow: hidden;
}
.video-thumb iframe, .video-thumb img { width: 100%; height: 100%; object-fit: cover; border: 0; }
.video-info { padding: 16px 18px; }
.video-info h3 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; margin: 0 0 6px; }
.video-info p { margin: 0; color: var(--gray); font-size: 0.88rem; }

.video-placeholder {
  grid-column: 1 / -1;
  border: 2px dashed var(--gray-light);
  border-radius: var(--radius);
  padding: 56px 24px;
  text-align: center;
  color: var(--gray);
}
.video-placeholder strong { display: block; color: var(--black); font-size: 1.1rem; margin-bottom: 6px; }

/* Gallery ---------------------------------------------------------------- */
.gallery { padding: 100px 0; background: var(--off-white); }
.gallery h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.gallery-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  border: none;
  padding: 0;
  cursor: zoom-in;
  border-radius: 10px;
  overflow: hidden;
  background: none;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

/* Lightbox ----------------------------------------------------------------*/
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,6,7,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
}

/* Footer / Follow ---------------------------------------------------------*/
.follow {
  background: var(--black);
  color: var(--white);
  padding: 70px 0 40px;
  text-align: center;
}
.follow-badge { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; margin: 0 auto 24px; }
.follow-inner h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.follow-inner > p { color: var(--gray-light); max-width: 50ch; margin: 0 auto 32px; font-family: var(--font-body); }
.follow-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.footer-fine { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; }

/* Responsive ---------------------------------------------------------------*/
@media (max-width: 900px) {
  .hero-inner, .about-inner, .podcast-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .podcast-media { order: -1; max-width: 320px; margin: 0 auto; }
  .podcast-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 640px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .video-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
