html,
body {
  background-color: #141414;
  background-image: url("/assets/img/bg.png");
  background-repeat: repeat;
  background-size: 25px;
  background-blend-mode: normal; /* or multiply if you want grit */
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

html {
  scrollbar-width: none;          /* Firefox */
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  display: none;                  /* Chrome, Safari, Edge */
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-feature-settings:
    "kern" 1,
    "liga" 1,
    "calt" 1,
    "ss01" 1,
    "ss02" 1;
  font-kerning: normal;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  color: #be0a0b;
}

a:hover {
  opacity: 0.7;
}

a:active {
  opacity: 0.5;
}

a:focus {
  outline: none;
}

.hero-title {
  text-rendering: geometricPrecision;
}

/* Bezier-based fade (nice smooth ease-in/out) */
.fade {
  opacity: 0;
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}

.fade.is-visible {
  opacity: 1;
}

/* optional: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.site-nav {
  text-rendering: optimizeSpeed;
}
/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  background-color: #000;
  opacity: 0.9;
}

/* Logo */
.logo-wrap {
  display: inline-flex;
  align-items: center;
  height: 100%;

  text-decoration: none;
}

.logo-wrap svg {
  height: 72px;
  width: auto;
  display: block;
  background-color: #be0a0b;
}

.logo-wrap svg * {
  fill: #fff;
}

/* Nav */
.site-nav {
  margin-left: auto;

  display: flex;
  gap: 32px;
  font-weight: 400;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
}

.site-nav a.active {
  color: #be0a0b;
  opacity: 1;
}


.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  text-align: center;
}


.hero-inner {
  transform: translateY(-24px); /* slight lift like the mock */
}

.hero-inner {
  opacity: 0;
  animation: heroFadeIn 2s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
  }
}

.hero-kicker {
  font-size: 14px;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: 24px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  letter-spacing: 0.0154em;

}

.hero-title {
  font-family: "URW DIN", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  margin: 0 0 8px;
  color: #ffffff;
}

.hero-title,
.hero-kicker {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.35);
}


.hero-copy {
  color: #FFF;
  max-width: 84ch;
  padding: 0px 100px;
  margin-bottom: 24px;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.75em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 240px;
  height: 44px;

  background: #be0a0b;
  color: #ffffff;

  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;

}

.hero-sub {
  color: #fff;
  display: block;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  text-transform: uppercase;
  font-size: 75%;
  margin-top: 16px;
  text-decoration: none;
  opacity: 0.75;

}



.work-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px;
  display: grid;
  gap: 32px;
  padding-top: 0;
}

.work-item {
  display: grid;
  grid-template-columns: 140px auto;
  gap: 24px;
  align-items: stretch;
}

/* image box */
.work-mark {
  width: 140px;
  height: 140px;
  overflow: hidden;
  background: #141414; /* fallback while image loads */
}

.work-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-mark video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* card */
.work-card {
  background-image: url("/assets/img/txt.jpg");
  background-repeat: repeat;
  background-size: 50px;
  padding: 32px 40px;
  text-decoration: none;
  color: #000;
}

/* alternating widths */
.work-item:nth-child(odd) .work-card { max-width: 760px; }
.work-item:nth-child(even) .work-card { max-width: 960px; }

.card-head { 
  text-shadow: 0 0 1px rgba(255, 255, 255, 1);
  font-family: "URW DIN", system-ui, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1em;
  margin-top: 16px;
  color: #141414;
}

.card-desc { 
text-shadow: 0 0 1px rgba(255, 255, 255, 1);
color: #be0a0b;
font-size: 12px;
font-weight: 500;
line-height: 2em;

}

.work-mark {
  display: block;
}



@media (max-width: 768px) {
  .work-list {
    padding: 48px 24px;
    gap: 40px;
  }

  .work-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-mark {
    width: 100%;
    height: 180px; /* adjust if you want more presence */
  }

  .work-card {
    max-width: 100% !important; /* kill alternating widths on mobile */
    padding: 24px;
  }
}


/* Centers the hero using flexbox */
.hero-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  padding-bottom: 0px;
  margin-top: 100px;
  margin-bottom: 24px;
}

/* Hero image container */
.hero-image{
  width: 100%;
  max-width: 1200px;
  height: 500px;

  display: flex; /* still flex, as requested */
  align-items: center;
  justify-content: center;


  overflow: hidden;
  background-color: #be0a0b;
  background-image: url("/assets/img/radio.webp"); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}


/* Centers the block on the page */
.white-wrap{
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  margin-bottom: 24px;
}

/* White container */
.white-box{
  width: 100%;
  max-width: 1200px;
  padding: 50px;
  background-image: url("/assets/img/txt.jpg");
  background-repeat: repeat;
  background-size: 50px;
  color: #111;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: flex-start; /* left aligned */
}

/* Text styles */
.line{
  margin: 0;
  text-align: left;
}

.card--copy {

color: #141414;
padding: 0px;
font-weight: 450;
margin-bottom: 36px;
padding-right: 50px;
}

/* Page wrapper */
.two-box-wrap{
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

/* Container */
.two-box{
  width: 100%;
  max-width: 1200px;

  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

/* Shared box styles */
.box{
  flex: 1;
  box-sizing: border-box;
}

/* Red perfect square */
.box--red{
  background: #be0a0b; /* SIGNA red energy */
  aspect-ratio: 1 / 1;
}
.box--red img {
width: 100%;
height: auto;
}

/* White content box */
.box--white{
  background-image: url("/assets/img/txt.jpg");
  background-repeat: repeat;
  background-size: 50px;
  padding: 50px;
  color: #111;
}

/* Mobile stack */
@media (max-width: 768px){
  .two-box{
    flex-direction: column;
  }
}



/* Center wrapper */
.red-wrap{
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  box-sizing: border-box;
}

/* Red box */
.red-box{
  width: 100%;
  max-width: 1200px;
  height: 300px; /* adjust as needed */

  background: #be0a0b;
}




/* Centered wrapper */
.row-wrap{
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  margin-bottom: 24px;
}

/* Row container */
.row{
  width: 100%;
  max-width: 1200px;

  display: flex;
  gap: 24px;
}

/* Red boxes */
.headshot{
  flex: 1;
  aspect-ratio: 1 / 1; /* perfect squares */
  background: #be0a0b;
}

/* Mobile stack */
@media (max-width: 768px){
  .row{
    flex-direction: column;
  }
}

.podcast {

margin-top: 120px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;


}

.podcast-inner {


background-image: none;

}

.podcast-inner .card-head {
  font-size: 3em;
  font-weight: 300;
}

.podcast-inner .card-desc,
.podcast-inner .card-head {
text-shadow: none;
color: #fff;
}

.podcast-inner p {
color: #fff;
font-weight: 350;
}


.row {
  display: flex;
  gap: 24px;
}

.headshot-card {
  position: relative;
  width: 100%;

  overflow: hidden;
}

.headshot-card img {
  width: 100%;
  height: auto;
  display: block;
}

.headshot-card a {
  color: white;
  text-decoration: none;
}

.info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  padding: 14px 16px;
}

.info-bar .name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.info-bar .title {
  font-size: 13px;
  opacity: 0.75;
  margin-top: 2px;
  text-transform: uppercase;
}

/* PODCAST: side-by-side on desktop */
.white-wrap.podcast{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 0 48px;
  box-sizing: border-box;
}

/* Image column */
.white-wrap.podcast > img{
  flex: 0 0 400px;     /* fixed editorial image column */
  max-width: 400px;
  height: auto;
  display: block;
}

/* Content column */
.white-wrap.podcast .white-box{
  flex: 1;
  max-width: 720px;   /* keeps it readable */
  background-image: none; /* already what you want */
}

/* Typography polish */
.podcast-inner .card-head{
  font-size: 3em;
  font-weight: 300;
}

.podcast-inner .card-desc,
.podcast-inner .card-head,
.podcast-inner p{
  color: #fff;
  text-shadow: none;
}

/* MOBILE: stack */
@media (max-width: 768px){
  .white-wrap.podcast{
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
    margin-top: 96px;
  }

  .white-wrap.podcast > img{
    width: 100%;
    max-width: 100%;
  }

  .white-wrap.podcast .white-box{
    max-width: 100%;
    padding: 28px;
  }

  .podcast-inner .card-head{
    font-size: 2.2em;
  }

  .hero-copy.card--copy{
    padding-right: 0;
  }
}

.site-footer {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  text-transform: uppercase;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px;
  padding-top: 0;
  color: #fff;
  opacity: 0.75;
  font-size: 75%;
}






.episode-list{
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 16px;
  padding: 50px;
  padding-top: 0px;
}

.episode{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
}

.episode-top{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.episode-title{
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: #fff;
  opacity: 0.9;
}

.episode-meta{
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  color: #fff;
  opacity: 0.55;
  white-space: nowrap;
}

.player{
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
}

.play-btn{
  width: 44px;
  height: 44px;
  background: #be0a0b;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  text-transform: uppercase;
  font-size: 11px;
}

.seek{
  width: 100%;
}

.time{
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  color: #fff;
  opacity: 0.65;
  min-width: 120px;
  text-align: right;
}

@media (max-width: 768px){
  .player{
    grid-template-columns: 44px 1fr;
    grid-auto-rows: auto;
  }
  .time{
    grid-column: 1 / -1;
    text-align: left;
    min-width: 0;
  }
}

.journal { padding-top:100px; }

/* Journal / Blog list = single column */
.journal .work-item {
  grid-template-columns: 1fr;
  padding-top: 8px;
}

/* Journal visual marker */
.journal-item{
  align-items: center;
}

.journal-mark{
  width: 140px;
  height: 140px;
  background: #be0a0b;
}

/* Journal item layout */
.work-list.lab .journal-item{
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: stretch; /* KEY: match heights */
  gap: 24px;
}

/* Red square = full-height marker */
.work-list.lab .journal-mark{
  width: 140px;
  background: #be0a0b;
}

/* White card fills height naturally */
.work-list.lab .work-card{
  display: block;
  height: 100%;
}

/* Kill alternating widths from Work */
.work-list.lab .work-item:nth-child(odd) .work-card,
.work-list.lab .work-item:nth-child(even) .work-card{
  max-width: 100%;
}

.email-capture {

max-width: 1200px;
margin-left: auto;
margin-right: auto;
padding: 50px;
padding-top: 0px;

}

.email-fields input ,.email-fields textarea{ width:100%; margin-bottom:24px; border:none; border-radius:0px; padding: 8px 24px;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; 
  max-width: 800px;
}

.portfolio-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px;
  padding-top: 0px;
}

.portfolio-inner  img { margin-bottom:24px }

.portfolio--copy { color: #ffffff; max-width:100%; font-weight: 350; margin-bottom: 24px}

 
  .loop-video{
    width: 1200px;
    height: 500px;
    display: block;
    object-fit: cover; /* keeps it filled nicely */
    background: #000;
  }

.blog { }
.blog h1 { font-size: 3em; text-transform: uppercase; max-width: 24ch }
.blog h2 { font-size: 3em; color: #fff; font-weight:300; font-size:1em }
.blog p { color: #fff; font-weight: 300; font-size: 125%;  }

/* ─────────────────────────────────────────
   Baseline grid (DEV ONLY)
   Toggle by adding .show-baseline to <body>
───────────────────────────────────────── */

body.show-baseline::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;

  background-image:
    linear-gradient(
      to bottom,
      rgba(255, 0, 0, 0.5) 1px,
      transparent 1px
    );
  background-size: 100% 8px;
}