/* ===== FONTS ===== */
/* Bebas Neue: brand, menu drawer (tall, condensed, bold) */
/* Inter Tight: headlines & display text (bold, condensed, geometric) */
/* Inter: body, UI, buttons, labels (highly legible at all sizes) */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter+Tight:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #fff;
  color: #333;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body[data-page="home"] {
  background: #0a0a0f;
}

body[data-page="about"],
body[data-page="capabilities"],
body[data-page="gear"],
body[data-page="podcasting"],
body[data-page="contact"] {
  background: #f5f5f5;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
video {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== NAV ===== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 50px;
  transition: background 400ms ease;
}

body[data-page="home"] .site-header {
  background: transparent;
  color: #fff;
}

body .site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
}

body[data-page="about"] .site-header,
body[data-page="capabilities"] .site-header,
body[data-page="gear"] .site-header,
body[data-page="podcasting"] .site-header,
body[data-page="contact"] .site-header {
  background: #f5f5f5;
  color: #000;
}

.explore-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.explore-toggle__icon {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.explore-toggle__icon::before,
.explore-toggle__icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.explore-toggle__icon::before {
  margin-bottom: 6px;
}

.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Bebas Neue", "Inter Tight", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav a:hover,
.menu-drawer__nav a:hover,
.social-links a:hover {
  opacity: 0.6;
}

.primary-nav a,
.menu-drawer__nav a,
.social-links a {
  transition: opacity 160ms ease;
}

/* ===== MENU DRAWER ===== */

.menu-drawer[hidden] {
  display: none;
}

.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-drawer__panel {
  text-align: center;
  color: #fff;
}

.menu-drawer__nav {
  display: grid;
  gap: 0.4rem;
  margin: 2rem 0;
  font-family: "Bebas Neue", "Inter Tight", system-ui, sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.9;
}

.menu-drawer__nav a {
  color: #fff;
  transition: opacity 200ms ease;
}

.menu-drawer__nav a:hover {
  opacity: 0.5;
}

.menu-drawer__tagline {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-drawer .social-links {
  margin-top: 1.5rem;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}

.menu-drawer .eyebrow {
  display: none;
}

/* ===== SOCIAL LINKS ===== */

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.25rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-links--icons {
  gap: 1.5rem;
  align-items: center;
}

.social-links--icons a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
}

.social-links--icons a:hover {
  color: #fff;
  opacity: 1;
}

.social-links--icons svg {
  display: block;
}

/* ===== EYEBROW ===== */

.eyebrow {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== HOME HERO ===== */

.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.hero-home__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0a0a0f;
}

.hero-home__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(177.78vh * 3);
  height: calc(100vh * 3);
  min-width: calc(100vw * 3);
  min-height: calc(56.25vw * 3);
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  filter: blur(4px);
}

.hero-home__video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.72);
}

.hero-home__center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-home__center .eyebrow {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
}

.hero-home h1 {
  margin: 0.5rem 0 1rem;
  font-family: "Bebas Neue", "Inter Tight", system-ui, sans-serif;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  font-weight: 400;
  text-transform: uppercase;
}

.hero-quote {
  margin: 0 0 2rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  line-height: 1.6;
}

.hero-quote__attr {
  font-style: normal;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.cta-link {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
  transition: opacity 160ms ease;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-link:hover {
  opacity: 0.7;
  background: rgba(255, 255, 255, 0.05);
}

.cta-link--dark {
  color: #1d1d1d;
  border-color: rgba(0, 0, 0, 0.2);
}

.cta-link--dark:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* Side rails */

.page-rail {
  position: absolute;
  z-index: 2;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.page-rail--left {
  left: 50px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: fit-content;
  transform: rotate(180deg);
}

.page-rail--right {
  right: 50px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: fit-content;
  transform: rotate(180deg);
}

/* Home footer bar */

.hero-home__footer {
  position: absolute;
  z-index: 2;
  bottom: 50px;
  left: 50px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ===== REEL + CAPABILITIES ROW ===== */

.reel-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  background: #fff;
}

.reel-col {
  padding: 80px 50px;
}

.reel-col .eyebrow {
  color: #999;
  margin-bottom: 16px;
}

.capabilities-col {
  padding: 80px 50px;
}

.reel-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}

.reel-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== LOGO WALL (full-width centered) ===== */

.logo-wall {
  background: #fff;
  padding: 80px 60px;
}

.logo-wall__header {
  text-align: center;
  margin-bottom: 40px;
}

.logo-wall__header .eyebrow {
  color: #999;
  margin-bottom: 12px;
}

.logo-wall__title {
  font-family: "Bebas Neue", "Inter Tight", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  margin: 0;
}

.logo-wall__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-wall__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  min-height: 70px;
  position: relative;
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 350ms ease, background 350ms ease, z-index 0s 0s;
  cursor: default;
}

.logo-wall__img {
  max-width: 80px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Fix low-contrast logos (grey bg on white) */
.logo-wall__img[alt="PBS"] {
  filter: contrast(1.8) brightness(0.95);
}

.logo-wall__cell:hover {
  z-index: 10;
}

.logo-wall__cell:hover .logo-wall__img {
  transform: scale(1.6);
}

/* Text fallback for logos that fail to load */
.logo-wall__cell--text {
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

/* ===== HOME CAPABILITIES (right column) ===== */

.home-capabilities__header {
  margin-bottom: 30px;
}

.home-capabilities__header .eyebrow {
  color: #999;
  margin-bottom: 8px;
}

.home-capabilities__header h2 {
  font-family: "Bebas Neue", "Inter Tight", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  margin: 0;
}

.home-capabilities__list {
  display: flex;
  flex-direction: column;
}

.capability-card {
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
}

.capability-card h3 {
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.capability-card p {
  font-size: 12px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.home-capabilities__cta {
  margin-top: 30px;
}

/* ===== PAGE LAYOUT (shared inner pages) ===== */

.page-main {
  margin-top: 80px;
}

.page-intro {
  padding: 60px 60px 40px;
}

.page-title {
  font-family: "Bebas Neue", "Inter Tight", system-ui, sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.9;
  margin: 0 0 16px;
  color: #1a1a1a;
}

.page-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: #888;
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}

/* ===== CAPABILITIES PAGE ===== */

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 60px 80px;
}

.cap-card {
  padding: 40px 30px;
  border: 1px solid #e5e5e5;
  margin: -1px 0 0 -1px;
  transition: background 200ms ease;
}

.cap-card:hover {
  background: #fff;
}

.cap-card__number {
  font-family: "Bebas Neue", system-ui, sans-serif;
  font-size: 32px;
  color: #ccc;
  margin-bottom: 16px;
  line-height: 1;
}

.cap-card__title {
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.cap-card__desc {
  font-size: 12px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.cap-card__link {
  display: inline-block;
  margin-top: 16px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: opacity 160ms ease;
}

.cap-card__link:hover {
  opacity: 0.6;
}

/* ===== GEAR PAGE ===== */

.gear-section {
  padding: 0 60px 80px;
  max-width: 1000px;
}

.gear-category {
  margin-bottom: 0;
  padding: 40px 0;
  border-bottom: 1px solid #e0e0e0;
}

.gear-category:first-child {
  padding-top: 0;
}

.gear-category__title {
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 20px;
}

.gear-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gear-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.gear-item:last-child {
  border-bottom: none;
}

.gear-item__name {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.gear-item__detail {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #999;
  text-align: right;
}

/* ===== PODCASTING PAGE ===== */

.podcast-services {
  padding: 0 60px 80px;
}

.podcast-hero {
  max-width: 700px;
  margin-bottom: 60px;
}

.podcast-hero h2 {
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px;
}

.podcast-hero p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 24px;
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.podcast-card {
  padding: 30px;
  border: 1px solid #e5e5e5;
  margin: -1px 0 0 -1px;
  transition: background 200ms ease;
}

.podcast-card:hover {
  background: #fff;
}

.podcast-card h3 {
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.podcast-card p {
  font-size: 12px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ===== CONTACT PAGE ===== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 60px 80px;
  max-width: 1100px;
}

.contact-layout--centered {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 120px;
  text-align: center;
}

.contact-layout--centered .contact-block {
  margin-bottom: 40px;
}

.contact-layout--centered .contact-block--lead .contact-block__value {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.contact-block__socials--row {
  flex-direction: row;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-block {
  margin-bottom: 28px;
}

.contact-block .eyebrow {
  color: #000;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-block__value {
  font-size: 14px;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

.contact-block__value a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-block__socials {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-block__socials a {
  font-size: 13px;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  background: #fff;
  color: #1a1a1a;
  font-size: 14px;
  font-family: "Inter", system-ui, sans-serif;
  transition: border-color 160ms ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a1a1a;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  align-self: flex-start;
  padding: 14px 32px;
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.form-submit:hover {
  background: #fff;
  color: #1a1a1a;
}

.form-feedback {
  min-height: 1.2rem;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  margin: 0;
}

/* ===== ABOUT PAGE ===== */

.page-main--about {
  display: grid;
  grid-template-columns: 7fr 3fr;
  grid-template-rows: auto auto auto;
  gap: 0;
  padding: 0;
  margin-top: 80px;
}

.about-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 50px;
  min-height: 400px;
}

.text-card {
  max-width: 600px;
  font-size: 17px;
  line-height: 1.6;
  color: #1d1d1d;
  padding: 0;
  border: none;
  background: none;
}

.about-image-cell {
  min-height: 400px;
  overflow: hidden;
}

.about-image-cell__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
  padding: 0 50px 30px;
}

.info-card {
  padding: 8px 0;
  border: none;
  background: none;
}

.info-card .eyebrow {
  color: #000;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-card p {
  margin: 0 0 2px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  color: #464646;
  line-height: 1.6;
}

.info-card a {
  color: #000;
}

/* Services grid */

.services-grid {
  display: block;
  background: #e9e9e9;
  padding: 40px 50px;
  margin: 0;
}

.service-card {
  padding: 20px 0;
  border: none;
  border-top: 1px solid #ccc;
  background: none;
}

.service-card:first-of-type {
  border-top: none;
}

.service-card h2 {
  margin: 0 0 6px;
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000;
}

.service-card__tags {
  margin: 0 0 8px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999;
}

.service-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #666;
}

/* About columns */

.about-columns {
  display: block;
  background: #e9e9e9;
  padding: 40px 30px;
  margin: 0;
}

.definition-card,
.clients-card {
  padding: 0;
  border: none;
  background: none;
}

.definition-card {
  display: grid;
  gap: 1.5rem;
}

.definition-card__group p {
  margin: 0;
  font-size: 10px;
  color: #666;
  line-height: 1.6;
}

.definition-card__group .eyebrow {
  color: #000;
  font-weight: 700;
  margin-bottom: 4px;
}

.definition-card__group a {
  color: #000;
  text-decoration: underline;
}

.clients-card {
  margin-top: 2rem;
}

.clients-card .eyebrow {
  color: #000;
  font-weight: 700;
}

.clients-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 1rem;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  font-size: 10px;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Full-width accent row */

.dual-media {
  grid-column: 1 / -1;
  display: block;
  margin: 0;
}

.media-placeholder {
  min-height: 20rem;
  overflow: hidden;
  background: var(--placeholder-b, #888);
  border: none;
}

.media-placeholder::before,
.media-placeholder::after {
  display: none;
}

/* ===== FOOTER ===== */

.site-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 50px 60px 50px;
  background: #1a1a1a;
}

.site-footer__meta,
.site-footer__contact,
.site-footer__subscribe {
  padding: 0;
  border: none;
  background: none;
}

.site-footer .eyebrow,
.site-footer p,
.site-footer__meta p:first-child,
.site-footer__contact p:first-child,
.site-footer__subscribe p:first-child {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6;
}

.site-footer .eyebrow {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.site-footer p {
  margin: 0 0 4px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.newsletter-form input {
  flex: 1 1 auto;
  min-width: 0;
  height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-form button {
  height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 160ms ease;
}

.newsletter-form button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-feedback {
  min-height: 1.2rem;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== WORK GRID ===== */

.projects-section {
  padding: 0 60px 80px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.project-card {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 3;
  background: #111;
}

.project-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease, opacity 300ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
  transition: opacity 300ms ease;
}

.project-card:hover .project-card__media {
  transform: scale(1.05);
}

.project-card__copy {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.project-card__client {
  margin: 0 0 4px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.project-card__title {
  margin: 0;
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

/* ===== PROJECT DETAIL ===== */

#project-detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 60px 80px;
}

.project-detail__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}

.project-detail__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-detail__info {
  padding: 40px 0 20px;
  max-width: 800px;
}

.project-detail__credit {
  margin: 0 0 14px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
}

.project-detail__title {
  margin: 0 0 20px;
  font-family: "Inter Tight", "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #1a1a1a;
}

.project-detail__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.project-detail__back {
  display: inline-block;
  margin-top: 30px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  transition: color 160ms ease;
}

.project-detail__back:hover {
  color: #1a1a1a;
}

.project-detail__missing {
  padding: 100px 0;
  text-align: center;
  font-size: 14px;
  color: #999;
}

/* ===== REEL BLURB (home) ===== */

.reel-blurb {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  max-width: 500px;
}

/* ===== REVEAL ANIMATION ===== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .reel-capabilities {
    grid-template-columns: 1fr;
  }

  .reel-col,
  .capabilities-col {
    padding: 60px 40px;
  }

  .logo-wall {
    padding: 60px 40px;
  }

  .logo-wall__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .capabilities-grid,
  .podcast-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-capabilities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 20px;
  }

  .page-rail {
    display: none;
  }

  .hero-home__footer {
    left: 20px;
  }

  .reel-col,
  .capabilities-col {
    padding: 40px 20px;
  }

  .logo-wall {
    padding: 40px 20px;
  }

  .logo-wall__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-capabilities {
    padding: 60px 20px 50px;
  }

  .home-capabilities__grid {
    grid-template-columns: 1fr;
  }

  .page-main--about {
    grid-template-columns: 1fr;
  }

  .about-top {
    padding: 30px 20px;
  }

  .info-grid {
    padding: 0 20px 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    padding: 30px 20px;
  }

  .about-columns {
    padding: 30px 20px;
  }

  .page-intro {
    padding: 40px 20px 30px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 60px;
  }

  .projects-section {
    padding: 0 20px 60px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card__title {
    font-size: 14px;
  }

  .project-card__copy {
    padding: 16px;
  }

  #project-detail {
    padding: 20px 20px 60px;
  }

  .gear-section {
    padding: 0 20px 60px;
  }

  .podcast-services {
    padding: 0 20px 60px;
  }

  .podcast-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    padding: 0 20px 60px;
    gap: 40px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0 15px;
    height: 60px;
  }

  .brand {
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  .page-main {
    margin-top: 60px;
  }

  .page-main--about {
    margin-top: 60px;
  }

  .hero-home__footer {
    left: 15px;
    bottom: 15px;
  }

  .page-rail--left {
    left: 15px;
  }

  .page-rail--right {
    right: 15px;
  }

  .logo-wall__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card__title {
    font-size: 12px;
  }

  .project-card__client {
    font-size: 9px;
  }

  .project-card__copy {
    padding: 12px;
  }

  .logo-wall__cell {
    padding: 10px 8px;
    min-height: 56px;
  }

  .logo-wall__img {
    max-width: 56px;
    max-height: 26px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
