/* jasonsmylie.com — shared type, chrome, buttons */
@font-face {
  font-family: 'Anton';
  src: url('fonts/Anton-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('fonts/BarlowCondensed-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('fonts/BarlowCondensed-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('fonts/BarlowCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('fonts/Barlow-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --lime: #B5C918;
  --lime-hi: #C6D72E;
  --red: #D11E2A;
  --ink: #16161A;
  --paper: #FFFFFF;
  --paper-warm: #F4F3EF;
  --line: #E4E3DD;
  --grey: #76767E;
  --font-display: 'Anton', Impact, sans-serif;
  --font-label: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ink); }
a:hover { color: var(--red); }
img { display: block; max-width: 100%; }

/* Display = Anton. Labels/CTAs = Barlow Condensed. Never mix. */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin: 0;
}
.label, .eyebrow, nav, .btn, .btn-ghost, .who-strip, .meta, .footer-name, .footer-nav, .socials a {
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px clamp(20px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: none;
}
.brand img {
  width: 48px;
  height: 48px;
  display: block;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 30px);
  flex-wrap: wrap;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 3px solid transparent;
}
.site-nav a:hover,
.site-nav a.is-active { border-bottom-color: var(--lime); }
.site-nav a.btn {
  border-bottom: 0;
  padding: 10px 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #FFFFFF;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 2px solid var(--ink);
  box-shadow: 0 4px 0 var(--ink);
  text-decoration: none;
}
.btn:hover { background: var(--ink); color: #FFFFFF; }
.btn-nav {
  font-size: 15px;
  padding: 10px 18px;
  box-shadow: 0 3px 0 var(--ink);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 2px solid var(--ink);
  text-decoration: none;
}
.btn-ghost:hover { background: var(--lime); color: var(--ink); }

.who-strip {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 6px solid var(--lime);
  padding-left: 16px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.who-strip .who-door {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
  color: #2A2A2E;
}

.hl { display: block; }
.hl-red { display: block; color: var(--red); }
.mistakes-label { color: var(--red); }

.hero {
  background: var(--paper-warm);
  border-bottom: 2px solid var(--ink);
}
.hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(20px, 3.2vw, 40px) clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
.hero-photo { order: -1; } /* picture UP on mobile */
.hero-photo-frame { position: relative; padding: 0 0 16px 16px; }
.hero-photo-frame .accent {
  position: absolute;
  left: 0; bottom: 0;
  width: 70%; height: 70%;
  background: var(--lime);
}
.hero-photo-frame img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 28%;
  border: 2px solid var(--ink);
  background: #E9E8E3;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    padding-top: clamp(24px, 3vw, 36px);
    padding-bottom: clamp(24px, 3vw, 36px);
  }
  .hero-copy { order: 1; }
  .hero-photo { order: 2; }
}

.decision-h {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  font-size: clamp(22px, 2.5vw, 36px);
  white-space: nowrap;
}

.site-footer {
  background: var(--paper-warm);
  border-top: 2px solid var(--ink);
  margin-top: auto;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 28px 40px;
  align-items: start;
}
.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-brand img { width: 40px; height: 40px; }
.footer-name {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-role {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-nav a { color: var(--ink); text-decoration: none; }
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 8px;
}
.socials a {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--lime);
  padding-bottom: 2px;
}
.socials a:hover { color: var(--red); border-bottom-color: var(--red); }

.feed-placeholder {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--paper);
  border: 2px dashed var(--ink);
  padding: 28px 24px;
  min-height: 220px;
  justify-content: center;
}
.feed-placeholder .kicker {
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-size: 14px;
}

@media (max-width: 420px) {
  .decision-h { white-space: normal; font-size: 26px; }
}

/* Our House episode feed */
.ep-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,260px),1fr));gap:24px}
.ep-card{display:flex;flex-direction:column;background:#FFFFFF;border:2px solid #16161A;box-shadow:0 4px 0 #16161A;text-decoration:none;color:#16161A}
.ep-card img{width:100%;aspect-ratio:16/9;object-fit:cover;border-bottom:2px solid #16161A;background:#E9E8E3}
.ep-card-body{padding:22px 24px 26px;display:flex;flex-direction:column;gap:12px;flex:1}
.ep-card-body h3{font-size:clamp(22px,2vw,28px);line-height:1;margin:0}
.ep-kicker{font-size:14px;letter-spacing:.16em;color:#D11E2A}
.ep-watch{margin-top:auto;font-size:15px;letter-spacing:.14em;color:#D11E2A}
.ep-card--featured{box-shadow:0 4px 0 #B5C918}
.ep-meta{margin:8px 0 0;font-size:14px;color:#76767E}
.ep-empty{font-size:17px;color:#2A2A2E}


/* Contact intent segmented control */
.intent-group {
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #16161A;
}
.intent-option {
  flex: 1 1 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 14px 16px;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16161A;
  background: #FFFFFF;
  border-right: 2px solid #16161A;
  box-sizing: border-box;
}
.intent-option:last-child { border-right: none; }
.intent-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  margin: 0;
  flex: none;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
}
.intent-option.is-selected,
.intent-option:has(input:checked) {
  background: #16161A;
  color: #FFFFFF;
}
.intent-option.is-selected input,
.intent-option:has(input:checked) input {
  background: #B5C918;
  border-color: #B5C918;
  box-shadow: inset 0 0 0 2px #16161A;
}
.intent-option:hover:not(.is-selected):not(:has(input:checked)) {
  background: #F4F3EF;
}
