@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600&family=Newsreader:opsz,wght@6..72,400;6..72,500&display=swap");

:root {
  --bg: #12090b;
  --ink: #12090b;
  --wine: #5b1622;
  --wine-light: #7a2533;
  --text: #f4eadb;
  --cream: #f4eadb;
  --paper: #fff8ed;
  --muted: rgba(244, 234, 219, 0.7);
  --subtle: rgba(244, 234, 219, 0.54);
  --accent: #d5aa61;
  --accent-warm: #d5aa61;
  --heading: #f4eadb;
  --line: rgba(244, 234, 219, 0.15);
  --max-width: 1180px;
  --radius: 0;
  --shadow: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 0%, rgba(142, 36, 51, 0.38), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(213, 170, 97, 0.075), transparent 24%),
    var(--ink);
  font-family: "Instrument Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(142, 36, 51, 0.2), transparent 31%),
    radial-gradient(circle at 92% 22%, rgba(213, 170, 97, 0.05), transparent 24%);
}

.page-frame { display: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.shell {
  width: min(var(--max-width), calc(100% - 48px));
  margin-inline: auto;
}

.site-header,
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(18, 9, 11, 0.88);
  backdrop-filter: blur(22px);
}

.site-header .shell,
.header-inner {
  min-height: 88px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--accent);
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-mark,
.brand img {
  width: 47px;
  height: 47px;
  flex: 0 0 47px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.brand-mark img,
.brand > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.nav,
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: none;
}

.nav a { transition: color 180ms ease; }
.nav a:hover { color: var(--cream); }
.nav a[aria-current="page"] { color: var(--cream); }

a:focus-visible,
button:focus-visible,
audio:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.nav a[href="./index.html"],
.nav a[href="./"],
.nav a[href="./start-a-podcast.html"],
.nav a[href="./start-a-podcast"],
.nav a[href="./careers.html"],
.nav a[href="./careers"],
.nav a[href="./contact.html"],
.nav a[href="./contact"] { display: none; }

.button {
  min-height: 47px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 234, 219, 0.27);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 234, 219, 0.48);
  background: rgba(244, 234, 219, 0.04);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.button-primary:hover { background: #e2bd79; }
.button-secondary { background: transparent; color: var(--cream); }

h1,
h2,
h3 {
  margin: 0;
  color: var(--cream);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 15ch;
  margin-top: 22px;
  font-size: clamp(3.7rem, 7vw, 6.8rem);
  line-height: 0.94;
}

h1 em { color: var(--accent); font-weight: 400; }

h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

p { color: var(--muted); line-height: 1.72; }
li { color: var(--muted); line-height: 1.72; }

.eyebrow,
.tag,
.meta,
.mini-label,
.meta-kicker {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow { display: block; }
.eyebrow::before { display: none; }
.tag { display: inline-block; margin-bottom: 15px; }

.hero {
  padding: 90px 0 76px;
  border-bottom: 1px solid var(--line);
}

.hero p,
.hero-lead {
  max-width: 690px;
  margin-top: 27px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.4vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions,
.cta-actions,
.actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-grid,
.hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.hero-grid > .panel,
.hero-wrap > .panel,
.hero-card {
  padding: 23px 0 0;
  border-top: 1px solid var(--accent);
}

.section,
.services {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.section-header,
.section-intro {
  margin-bottom: 43px;
  display: grid;
  grid-template-columns: minmax(270px, 0.78fr) minmax(0, 1.22fr);
  gap: 64px;
  align-items: start;
}

.section-header p,
.section-copy {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.grid,
.services-grid,
.fit-grid,
.role-grid,
.resource-grid,
.split-grid,
.proof-grid,
.steps-grid,
.check-grid,
.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 54px;
}

.services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.fit-grid,
.steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.article { width: min(820px, 100%); margin-inline: auto; }
.article.grid { display: grid; grid-template-columns: 1fr; }

.panel,
.card,
.section-card,
.mini-card,
.cta-panel {
  min-height: 0;
  padding: 29px 0 31px;
  position: relative;
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.panel::before,
.card::before,
.cta-panel::before { display: none; }

.panel h2,
.card h2 { font-size: clamp(2rem, 3vw, 3rem); }
.panel h3,
.card h3 { margin-bottom: 0; }
.panel p:last-child,
.card p:last-child { margin-bottom: 0; }
.panel .button,
.card .button { margin-top: 8px; }

.bullet-list,
ul {
  margin: 17px 0 0;
  padding-left: 19px;
}

.pill-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pill {
  padding: 8px 11px;
  border: 1px solid rgba(213, 170, 97, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta,
.contact {
  padding: 88px 0 96px;
}

.cta-panel {
  padding: 65px;
  border: 1px solid rgba(244, 234, 219, 0.14);
  background:
    radial-gradient(circle at 85% 35%, rgba(213, 170, 97, 0.14), transparent 30%),
    linear-gradient(145deg, #641724, #3c1018);
}

.cta-panel h2 { max-width: 12ch; }
.cta-panel p { max-width: 590px; margin-top: 18px; }

.site-footer,
.footer {
  padding: 0;
  color: var(--subtle);
}

.site-footer .shell,
.footer-inner {
  min-height: 90px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 0;
  font-size: 0.82rem;
}

/* A shorter, editorial homepage using the existing SEO-friendly content. */
.home-page .hero {
  padding: 92px 0 0;
  border-bottom: 0;
  overflow: hidden;
}

.home-page .hero h1 { max-width: 830px; }
.home-page .hero-wrap { padding-bottom: 0; row-gap: 64px; }

.home-page .hero-card {
  align-self: end;
  display: block;
  background: transparent;
}

.home-page .hero-card .hero-mark,
.home-page .hero-card .mini-grid,
.home-page .hero-card p { display: none; }

.home-page .hero-card .hero-mark-wrap { display: block; }
.home-page .hero-card h3 { font-size: clamp(1.55rem, 2.2vw, 2.05rem); }

.home-page .hero-meta {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100vw;
  margin: 0;
  padding: 0 calc((100vw - min(var(--max-width), calc(100vw - 48px))) / 2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-page .hero-meta > div {
  min-height: 90px;
  padding: 18px 28px;
  display: grid;
  place-content: center;
  text-align: center;
}

.home-page .hero-meta > div + div { border-left: 1px solid var(--line); }
.home-page .meta-kicker { display: none; }
.home-page .meta-value { margin: 0; color: var(--muted); font-size: 0.87rem; font-weight: 400; line-height: 1.5; }
.home-page .meta-value strong { color: var(--cream); }

.home-page #services { padding-top: 105px; }
.home-page #services .services-grid { grid-template-columns: 1fr; }

.home-page #services .service-card {
  display: grid;
  grid-template-columns: 72px minmax(220px, 0.75fr) minmax(0, 1.25fr) auto;
  gap: 28px;
  align-items: center;
  padding: 27px 0;
}

.home-page #services .service-card .tag { margin: 0; }
.home-page #services .service-card h3 { margin: 0; }
.home-page #services .service-card p { margin: 0; }
.home-page #services .service-card p:has(.button) { justify-self: end; }
.home-page #services .service-card .button { min-width: 42px; width: 42px; min-height: 42px; padding: 0; font-size: 0; }
.home-page #services .service-card .button::after { content: "\2197"; font-size: 1.15rem; color: var(--accent); }

.home-page #proof {
  padding: 92px 0;
  background:
    radial-gradient(circle at 82% 40%, rgba(213, 170, 97, 0.12), transparent 30%),
    linear-gradient(145deg, #641724, #3c1018);
}

.home-page #proof .panel { border-color: rgba(244, 234, 219, 0.19); }
.home-page #proof .quote { font-family: "Newsreader", Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.18; }

/* Audio should be the strongest proof on an audio studio's work page. */
.work-page .hero h1 { max-width: 10ch; }
.work-note { align-self: end; }

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

.audio-card {
  padding: 31px 0 36px;
  border-top: 1px solid var(--line);
}

.audio-card-top {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.audio-card-top .tag { margin: 0; }
.audio-card h3 { margin-bottom: 13px; }
.audio-card p { max-width: 510px; margin: 0; }

.audio-time {
  color: var(--subtle);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.audio-card audio {
  width: 100%;
  height: 44px;
  margin-top: 25px;
  display: block;
  color-scheme: dark;
  accent-color: var(--accent);
}

.work-deep-listen {
  background: rgba(244, 234, 219, 0.025);
}

.released-work .quote {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.65rem, 2.6vw, 2.5rem);
  line-height: 1.2;
}

.quote-meta {
  margin-top: 22px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Long-form resources stay readable instead of turning into a wall of cards. */
.resource-page main > .section .shell.article,
.resource-page main > .section .article { width: min(820px, calc(100% - 48px)); }
.resource-page .article .card { padding: 38px 0; }
.resource-page .article .card h2 { max-width: 19ch; }
.resource-page .meta-grid { grid-template-columns: repeat(3, 1fr); gap: 0 28px; }
.resource-page .meta-item { border-top: 1px solid var(--line); padding-top: 18px; }

@media (max-width: 960px) {
  .hero-grid,
  .hero-wrap,
  .section-header,
  .section-intro,
  .work-grid { grid-template-columns: minmax(0, 1fr); gap: 42px; }

  .hero-grid > .panel,
  .hero-wrap > .panel { max-width: 570px; }

  .home-page #services .service-card {
    grid-template-columns: 52px 1fr auto;
  }

  .home-page #services .service-card > p:not(:has(.button)) { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  .shell { width: min(var(--max-width), calc(100% - 32px)); }

  .site-header .shell,
  .header-inner {
    min-height: auto;
    padding: 12px 0;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .brand { font-size: 0.7rem; }
  .brand-mark,
  .brand img { width: 39px; height: 39px; flex-basis: 39px; }
  .nav,
  .nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .nav {
    order: 3;
    width: 100%;
    padding-top: 11px;
    overflow-x: auto;
    border-top: 1px solid var(--line);
    font-size: 0.78rem;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar { display: none; }
  .nav > .button { display: none; }
  .site-header > .shell > .button,
  .header .button { min-height: 41px; padding: 0 15px; font-size: 0.8rem; }

  .hero { padding: 63px 0 53px; }
  h1 { font-size: clamp(3.35rem, 16.5vw, 5rem); }
  h2 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .hero p,
  .hero-lead { font-size: 1rem; }

  .section,
  .services { padding: 72px 0; }

  .grid,
  .services-grid,
  .fit-grid,
  .role-grid,
  .resource-grid,
  .split-grid,
  .proof-grid,
  .steps-grid,
  .check-grid,
  .section-grid,
  .resource-page .meta-grid,
  .work-grid { grid-template-columns: 1fr; }

  .cta,
  .contact { padding: 64px 0; }
  .cta-panel { padding: 45px 25px; }

  .site-footer .shell,
  .footer-inner {
    padding: 23px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .hero { padding-top: 63px; }
  .home-page .nav,
  .home-page .nav-links { display: flex; }
  .home-page .nav > .button { display: none; }
  .home-page .hero-wrap { padding-bottom: 0; row-gap: 48px; }
  .home-page .hero-meta {
    padding: 10px 16px;
    grid-template-columns: 1fr;
  }
  .home-page .hero-meta > div { min-height: auto; padding: 13px 0; }
  .home-page .hero-meta > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .home-page #services { padding-top: 75px; }
  .home-page #services .service-card { gap: 15px; }
  .home-page #services .service-card > p:not(:has(.button)) { font-size: 0.92rem; }
  .home-page #proof { padding: 73px 0; }
}
