/* The Frontline Owner — shared styles
   Palette pulled from the show logo: black badge, steel-blue chevron/ring, tan "OWNER" accent, white wordmark. */

:root {
  --cream: #0d0d0f;        /* main background (was light cream, now the logo's black) */
  --cream-2: #1f2124;      /* subtle surface / border tone */
  --terracotta: #c9975e;   /* primary accent — tan/gold from "OWNER" */
  --terracotta-dark: #a97a44;
  --brown: #17181b;        /* dark surface (cards, footer, nav) */
  --brown-soft: #b7bcc4;   /* muted body text on dark bg */
  --gold: #c9975e;
  --steel: #5c7c9c;        /* steel blue from the ring/chevron */
  --steel-light: #86a5c2;
  --white: #f5f5f2;        /* off-white wordmark tone */
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--white);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--white);
}

p { margin: 0 0 1em; color: var(--brown-soft); }

a { color: var(--steel-light); text-decoration: none; }
a:hover { color: var(--terracotta); text-decoration: underline; }

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

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

/* Header / Nav */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.logo img { height: 40px; width: 40px; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--terracotta); text-decoration: none; }

.nav-cta {
  background: var(--terracotta);
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.nav-cta:hover { background: var(--terracotta-dark); text-decoration: none; }

.menu-toggle { display: none; }

/* Hero */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--steel-light);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 2.75rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero p.lead {
  max-width: 560px;
  margin: 16px auto 28px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
}
.btn-primary:hover { background: var(--terracotta-dark); text-decoration: none; }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--steel); border-color: var(--steel); color: var(--white); text-decoration: none; }

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--brown); }

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--steel-light);
}

/* Cards / Grids */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  border: 1px solid var(--cream-2);
}

.episode-card {
  display: flex;
  gap: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  align-items: flex-start;
  border: 1px solid var(--cream-2);
}

.episode-card .ep-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--steel-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.episode-card h3 { margin-bottom: 6px; }

.tag {
  display: inline-block;
  background: var(--cream-2);
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* Subscribe buttons */
.platform-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.platform-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brown);
  border: 1px solid var(--cream-2);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  color: var(--white);
  box-shadow: var(--shadow);
}
.platform-btn:hover { border-color: var(--terracotta); text-decoration: none; }

.plat-icon {
  width: 18px;
  height: 18px;
  vertical-align: -4px;
  margin-right: 2px;
  flex-shrink: 0;
}

/* Host bios */
.host-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--brown);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid var(--cream-2);
}

.host-card img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Forms */
form { max-width: 520px; margin: 0 auto; }

.form-row { margin-bottom: 18px; text-align: left; }

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--white);
}

input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--cream-2);
  background: var(--brown);
  font-family: inherit;
  font-size: 1rem;
  color: var(--white);
}

input::placeholder, textarea::placeholder { color: var(--brown-soft); }

textarea { min-height: 140px; resize: vertical; }

.newsletter-box {
  background: var(--brown);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  border: 1px solid var(--steel);
}
.newsletter-box h2, .newsletter-box p { color: var(--white); }
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 20px auto 0;
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: var(--cream);
}

/* Blog */
.post-card img {
  border-radius: var(--radius) var(--radius) 0 0;
  height: 180px;
  width: 100%;
  object-fit: cover;
}
.post-card .post-body { padding: 24px; }
.post-card { padding: 0; overflow: hidden; }
.post-meta {
  font-size: 0.8rem;
  color: var(--steel-light);
  margin-bottom: 10px;
}

/* Footer */
.site-footer {
  background: #000000;
  color: var(--white);
  padding: 48px 0 24px;
  margin-top: 40px;
  border-top: 1px solid var(--cream-2);
}
.site-footer a { color: var(--brown-soft); opacity: 0.9; }
.site-footer a:hover { color: var(--terracotta); opacity: 1; }
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-cols h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 12px; }
.footer-cols ul { list-style: none; padding: 0; margin: 0; }
.footer-cols li { margin-bottom: 8px; font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(245, 245, 242, 0.1);
  padding-top: 20px;
  font-size: 0.85rem;
  opacity: 0.6;
  text-align: center;
}

/* Responsive */
@media (max-width: 800px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero h1 { font-size: 2rem; }
  .host-card { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
}
