:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #6a625b;
  --paper: #fff8ef;
  --surface: #ffffff;
  --line: #ead6bf;
  --orange: #ff6a00;
  --orange-dark: #c94d00;
  --orange-soft: #fff0df;
  --cream: #fff8ef;
  --shadow: 0 20px 60px rgba(17, 17, 17, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: white;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0));
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  text-decoration: none;
}

.brand img {
  display: block;
  width: clamp(156px, 17vw, 218px);
  height: auto;
}

.nav-links {
  gap: 8px;
}

.nav-links a {
  min-height: 38px;
  padding: 10px 11px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-cta {
  background: rgba(255, 106, 0, 0.24);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 124px clamp(18px, 5vw, 72px) 78px;
  color: white;
}

.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.66) 43%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(255, 106, 0, 0.28), rgba(0, 0, 0, 0.1));
}

.hero-content {
  position: relative;
  width: min(790px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.16;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.primary {
  background: var(--orange);
  color: var(--ink);
}

.primary:hover {
  background: #ff7d20;
}

.secondary {
  background: rgba(255, 106, 0, 0.16);
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 106, 0, 0.5);
}

.dark {
  background: var(--ink);
  color: white;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--ink);
  color: white;
}

.signal-strip span {
  min-height: 88px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 106, 0, 0.28);
  color: rgba(255, 248, 239, 0.86);
  font-weight: 900;
}

.section,
.contact,
.packages {
  padding: 76px clamp(18px, 5vw, 72px);
}

.intro,
.process,
.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
}

.section-title {
  max-width: 620px;
}

.section-title h2 + p,
.contact p {
  color: var(--muted);
  font-size: 1.17rem;
  line-height: 1.65;
}

.copy-panel,
.dark-copy-panel {
  display: grid;
  gap: 14px;
  max-width: 680px;
  border-left: 5px solid var(--orange);
  padding: 4px 0 4px 24px;
}

.copy-panel p,
.dark-copy-panel p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.62;
}

.copy-panel p {
  color: var(--muted);
}

.producer {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: 76px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

.producer-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.producer-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.dark-copy-panel p {
  color: rgba(255, 248, 239, 0.76);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-summary {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.text-link {
  color: var(--orange-dark);
  font-weight: 950;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article,
.format-list article,
.example-grid article,
.packages article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-grid article {
  min-height: 280px;
  padding: 24px;
}

.service-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--orange-dark);
  font-weight: 950;
}

.service-grid p,
.format-list p,
.example-grid p,
.process span,
.packages p {
  color: var(--muted);
  line-height: 1.55;
}

.examples {
  background: var(--ink);
  color: white;
}

.examples .section-summary {
  color: rgba(255, 248, 239, 0.72);
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.example-grid article {
  min-height: 275px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-color: rgba(255, 106, 0, 0.28);
  background: #181818;
  box-shadow: none;
  color: white;
  padding: 24px;
}

.podcast-art {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 8px;
  object-fit: cover;
  background: #111111;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
}

.podcast-art-fallback {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 106, 0, 0.45);
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 106, 0, 0.42), transparent 24%),
    linear-gradient(135deg, #111111, #2b1a10);
  color: var(--orange);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 950;
}

.bieb-art {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.example-grid span {
  width: fit-content;
  margin-bottom: 38px;
  border-radius: 8px;
  padding: 8px 10px;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.example-grid p {
  color: rgba(255, 248, 239, 0.74);
}

.example-link {
  width: fit-content;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 950;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.example-link:hover {
  color: #ff9a4a;
}

.formats {
  background: var(--orange-soft);
}

.format-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.format-list article {
  min-height: 230px;
  padding: 24px;
}

.format-label {
  width: fit-content;
  margin-bottom: 32px;
  border-radius: 8px;
  padding: 8px 10px;
  background: var(--ink);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.process {
  background: var(--ink);
  color: white;
}

.process .eyebrow {
  color: var(--orange);
}

.process ol {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  list-style: none;
  background: rgba(255, 106, 0, 0.32);
}

.process li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.process span {
  color: rgba(255, 255, 255, 0.78);
}

.packages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.packages article {
  padding: 32px;
}

.contact {
  background: var(--orange-soft);
}

form {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: white;
  box-shadow: var(--shadow);
}

label {
  font-size: 0.9rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 920px) {
  .site-header,
  .section-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .signal-strip,
  .service-grid,
  .example-grid,
  .format-list,
  .intro,
  .producer,
  .process,
  .packages,
  .contact {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: absolute;
    gap: 14px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }

  .nav-links a {
    min-height: 34px;
    padding: 8px 7px;
    text-align: center;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 92vh;
    padding-top: 190px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(17, 12, 8, 0.92), rgba(17, 12, 8, 0.45));
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.25rem);
  }

  .signal-strip,
  .service-grid,
  .example-grid,
  .format-list,
  .intro,
  .producer,
  .process,
  .packages,
  .contact {
    grid-template-columns: 1fr;
  }

  .process li {
    grid-template-columns: 1fr;
  }
}
