/* ============================================================
   WHISKEY TALKS — dark cinematic
   Palette: deep black / charcoal, whiskey-amber gold, cream
   ============================================================ */

:root {
  --black: #0b0a08;
  --charcoal: #151310;
  --panel: #1a1712;
  --amber: #d9a441;
  --amber-bright: #f0bd5a;
  --cream: #f4ecdd;
  --muted: #a89c88;
  --line: rgba(217, 164, 65, 0.22);
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.02;
  text-transform: uppercase;
}

h2 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 1.25rem; }
h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  background: var(--amber);
  margin-top: 1rem;
}

.eyebrow {
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.container { width: min(var(--maxw), 92%); margin: 0 auto; }
.narrow { max-width: 720px; margin: 0 auto; }

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section-alt { background: var(--charcoal); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2rem;
  border-radius: 3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber-bright), var(--amber));
  color: #1a1206;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(217, 164, 65, 0.35);
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(0, 0, 0, 0.35);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-bright); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(11, 10, 8, 0.94);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}
.nav-inner {
  width: min(var(--maxw), 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--cream);
}
.brand span { color: var(--amber); }
.brand-sm { font-size: 1.1rem; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.nav-links a:hover { color: var(--amber-bright); opacity: 1; }
.nav-links .nav-cta {
  border: 1px solid var(--amber);
  color: var(--amber-bright);
  padding: 0.55rem 1.3rem;
  border-radius: 3px;
  opacity: 1;
}
.nav-links .nav-cta:hover { background: var(--amber); color: #1a1206; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/wt-hero-poster.jpg') center 22% / cover no-repeat;
  transform: scale(1.04);
  animation: heroDrift 24s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.1) translateY(-1.5%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,10,8,0.72) 0%, rgba(11,10,8,0.35) 34%, rgba(11,10,8,0.42) 62%, var(--black) 100%),
    radial-gradient(ellipse at center, rgba(11,10,8,0.1) 0%, rgba(11,10,8,0.62) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(880px, 92%);
  padding: 6rem 0 4rem;
}
.hero-content h1 {
  font-size: clamp(3.6rem, 13vw, 9rem);
  color: var(--cream);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.85);
  margin-bottom: 1.4rem;
}
.hero-content .eyebrow { text-shadow: 0 2px 12px rgba(0,0,0,0.9); }
.tagline {
  font-size: clamp(1.05rem, 2.6vw, 1.5rem);
  font-weight: 500;
  color: var(--cream);
  max-width: 640px;
  margin: 0 auto 2.4rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95);
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(244, 236, 221, 0.5);
  border-radius: 14px;
  display: block;
}
.scroll-cue span {
  display: block;
  width: 4px; height: 8px;
  background: var(--amber);
  border-radius: 2px;
  margin: 8px auto 0;
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ---------- Show / Host grids ---------- */
.show-grid, .host-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.show-copy p + p, .host-copy p + p { margin-top: 1.1rem; }
.show-copy p, .host-copy p { color: #d8cfbd; font-size: 1.06rem; }
.show-copy em, .host-copy em { color: var(--cream); }

.show-art img, .host-art img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.host-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }

/* ---------- Cast ---------- */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.6rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}
.cast-card {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.cast-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}
.cast-card img { width: 100%; height: auto; display: block; }
.cast-card h3 {
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 1.2rem 1rem;
}

/* ---------- Pillars ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 2.6rem;
}
.pillar-card {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.7rem 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(217, 164, 65, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-bright);
  margin-bottom: 1.1rem;
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
  color: var(--cream);
}
.pillar-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.6; }

@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ---------- Podcast ---------- */
.podcast-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.6rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}
.podcast-art {
  width: 84px; height: 84px;
  flex: 0 0 84px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2a2113, #0f0d0a);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--amber);
}
.podcast-info { flex: 1 1 180px; }
.podcast-info h3 { font-size: 1.5rem; margin-bottom: 0.2rem; }
.podcast-info p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Press ---------- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 2.6rem;
}
.press-card {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.press-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}
.press-card h3 {
  font-size: 1.45rem;
  color: var(--amber-bright);
  margin-bottom: 0.6rem;
}
.press-title {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--cream);
  margin-bottom: 0.7rem;
}
.press-card > p:last-of-type { color: var(--muted); font-size: 0.94rem; margin-bottom: 1.2rem; }
.press-link {
  margin-top: auto;
  color: var(--amber-bright);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}
.press-link:hover { text-decoration: underline; }
.press-soon { color: var(--muted); font-weight: 500; cursor: default; }
.press-soon:hover { text-decoration: none; }

/* ---------- Merch ---------- */
.merch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.6rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}
.merch-card {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.merch-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}
.merch-card img { width: 100%; height: auto; display: block; }
.merch-info { padding: 1.4rem 1.4rem 1.6rem; text-align: center; }
.merch-info h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.merch-price { color: var(--amber-bright); font-weight: 700; font-size: 1.1rem; }
.merch-soon { color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.merch-cta-copy { text-align: center; margin-top: 2.6rem; color: #d8cfbd; }
#merch .subscribe-form { margin-top: 1.2rem; }

/* ---------- Subscribe ---------- */
#subscribe { text-align: center; }
#subscribe .narrow p { color: #d8cfbd; }
.subscribe-form {
  display: flex;
  gap: 0.8rem;
  margin: 2.2rem auto 0;
  max-width: 520px;
}
.subscribe-form input[type="email"] {
  flex: 1;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--cream);
  font-size: 1rem;
  font-family: var(--font-body);
  padding: 0.95rem 1.2rem;
  outline: none;
  transition: border-color 0.2s ease;
}
.subscribe-form input[type="email"]::placeholder { color: var(--muted); }
.subscribe-form input[type="email"]:focus { border-color: var(--amber); }
.subscribe-form input.input-error { border-color: #c0392b; }

.form-note { min-height: 1.6em; margin-top: 0.9rem; font-size: 0.95rem; }
.form-note.success { color: var(--amber-bright); }
.form-note.error { color: #e0705f; }

.social-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.6rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--cream);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.social-link svg { width: 20px; height: 20px; }
.social-link:hover { border-color: var(--amber); color: var(--amber-bright); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.4rem 0;
  background: #080706;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer-copy { color: var(--muted); font-size: 0.88rem; }
.footer-social { display: flex; gap: 1.4rem; }
.footer-social a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-social a:hover { color: var(--amber-bright); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .show-grid, .host-grid { grid-template-columns: 1fr; }
  .cast-grid { grid-template-columns: 1fr; max-width: 420px; }
  .host-grid .host-art { order: -1; max-width: 420px; margin: 0 auto; }
  .show-art { max-width: 420px; margin: 0 auto; }

  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: rgba(11, 10, 8, 0.98);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 2.4rem;
    gap: 1.8rem;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.6);
  }
  .nav-links.open { transform: none; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .subscribe-form { flex-direction: column; }
  .subscribe-form .btn { width: 100%; }
  .podcast-card { flex-direction: column; text-align: center; }
  .podcast-card .btn { width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
}
