:root {
  --ink: #141414;
  --ink-soft: #383838;
  --paper: #ffffff;
  --paper-soft: #f6f3ef;
  --paper-warm: #fff8f3;
  --red: #ff1e00;
  --red-deep: #c51607;
  --red-dark: #7a0f07;
  --line: rgba(20, 20, 20, 0.13);
  --line-light: rgba(255, 255, 255, 0.24);
  --muted: #6f6a66;
  --max: 1180px;
  --radius: 6px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Trebuchet MS", "Gill Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--red);
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding-top: 14px;
  background: transparent;
  color: var(--paper);
  transition: padding-top 180ms ease, background 180ms ease, color 180ms ease, backdrop-filter 180ms ease;
}

.has-scrolled-header .site-header {
  padding-top: 0;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  position: relative;
  display: inline-flex;
  width: clamp(180px, 20vw, 286px);
  align-items: center;
  isolation: isolate;
}

.brand::before,
.brand::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.brand::before {
  inset: -46% -34%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 58%, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.28) 38%, rgba(0, 0, 0, 0) 76%);
  filter: blur(18px);
  opacity: 0;
  transform: scale(0.82);
  animation: brandGlowIn 1300ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms forwards;
}

.brand::after {
  inset: 0;
  z-index: 1;
  background: url("../images/redstart-brand2.png") center / contain no-repeat;
  clip-path: inset(100% 0 0 0);
  animation: brandColorRise 1500ms cubic-bezier(0.2, 0.8, 0.2, 1) 260ms forwards;
}

.brand img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: width 180ms ease, filter 180ms ease;
}

.has-scrolled-header .brand {
  width: clamp(148px, 16vw, 210px);
}

.has-scrolled-header .brand img {
  filter: none;
}

.has-scrolled-header .brand::before {
  opacity: 0;
  animation: none;
}

.has-scrolled-header .brand::after {
  clip-path: inset(0 0 0 0);
}

@keyframes brandColorRise {
  0% {
    clip-path: inset(100% 0 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes brandGlowIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  58% {
    opacity: 0.72;
  }

  100% {
    opacity: 0.42;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand::before,
  .brand::after {
    animation: none;
  }

  .brand::before {
    opacity: 0.42;
    transform: none;
  }

  .brand::after {
    clip-path: inset(0 0 0 0);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.91rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.has-scrolled-header .nav-links {
  color: var(--ink-soft);
}

.nav-links a {
  text-decoration: none;
}

.nav-contact {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  padding: 8px 14px;
}

.mobile-menu {
  display: none;
}

.main {
  min-height: 100vh;
}

.hero {
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(128px, 17vh, 168px) 0 clamp(32px, 7vh, 64px);
  background:
    linear-gradient(90deg, rgba(118, 15, 7, 0.82), rgba(255, 30, 0, 0.48)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=82") center / cover;
  color: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.hero-copy {
  max-width: min(760px, 100%);
  padding-top: clamp(12px, 3vh, 34px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.work-band .eyebrow,
.approach-band .eyebrow,
.contact-band .eyebrow {
  color: var(--paper);
}

.headline {
  max-width: 780px;
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.headline-fill {
  --headline-fill-color: currentColor;
  --headline-base-color: rgba(255, 255, 255, 0.92);
  position: relative;
  display: inline-block;
  color: transparent;
}

.headline-fill::before,
.headline-fill::after {
  content: attr(data-word);
  position: absolute;
  inset: 0;
}

.headline-fill::before {
  color: var(--headline-base-color);
}

.headline-fill::after {
  color: var(--headline-fill-color);
  clip-path: inset(100% 0 0 0);
  animation: headlineWordFill 1500ms cubic-bezier(0.2, 0.82, 0.2, 1) 620ms forwards;
}

.headline-fill-red {
  --headline-fill-color: #ff1e00;
}

.headline-fill-black {
  --headline-fill-color: #090909;
}

@keyframes headlineWordFill {
  0% {
    clip-path: inset(100% 0 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .headline-fill::after {
    animation: none;
    clip-path: inset(0 0 0 0);
  }
}

.lead,
.section-lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: inherit;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.55;
}

.hero .lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.55vw, 1.2rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 11px 16px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper);
}

.button.dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.hero .button.dark,
.contact-band .button.dark {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--red-deep);
}

.hero-panel {
  border-top: 2px solid rgba(255, 255, 255, 0.64);
  padding-top: 22px;
}

.hero-panel-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-mark {
  margin: 10px 0 18px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(6.2rem, 14vw, 13rem);
  line-height: 0.8;
}

.page-hero {
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(128px, 17vh, 168px) 0 clamp(32px, 7vh, 64px);
  background:
    linear-gradient(90deg, rgba(118, 15, 7, 0.84), rgba(255, 30, 0, 0.5)),
    var(--hero-bg-image, url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=82")) center / cover;
  color: var(--paper);
}

.page-hero-simple {
  height: 100vh;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.page-hero .page-title {
  max-width: 850px;
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
  color: var(--paper);
}

.page-hero .section-lead {
  color: rgba(255, 255, 255, 0.86);
}

.page-hero-meta {
  display: inline-flex;
  width: fit-content;
  margin: 22px 0 0;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(255, 248, 245, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.careers-page {
  background:
    linear-gradient(180deg, #f4efe6 0%, #f7f2eb 34%, #fbf8f3 100%);
}

.editorial-page__hero {
  padding-block: 3rem 1.4rem;
}

.marketing-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.marketing-hero__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.marketing-hero__copy > * {
  margin: 0;
}

.marketing-hero__art {
  display: flex;
  align-self: start;
  align-items: flex-start;
  justify-content: flex-end;
}

.marketing-hero__meta {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(255, 248, 245, 0.12);
  color: rgba(255, 248, 245, 0.92);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.careers-hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at top right, rgba(255, 214, 204, 0.22), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 30%),
    #eb3f43;
  color: #fff8f5;
}

.careers-hero::after {
  content: "";
  position: absolute;
  right: -10rem;
  bottom: -10rem;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: rgba(255, 226, 218, 0.12);
  filter: blur(34px);
  pointer-events: none;
}

.careers-hero__inner,
.careers-story__stack,
.careers-story__copy,
.careers-story__visual,
.careers-quote__inner,
.careers-opportunities__inner,
.careers-opportunities__intro,
.careers-opportunities__filters,
.careers-opportunities__status,
.careers-opportunities__list,
.careers-opportunities__item,
.careers-opportunities__cta,
.careers-opportunities__item-head,
.careers-opportunities__meta {
  display: grid;
  gap: 1rem;
}

.careers-hero__inner {
  position: relative;
  z-index: 1;
  min-height: auto;
  padding-block: 132px 4rem;
}

.careers-hero__inner h1 {
  margin: 0;
  color: #fff8f5;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(4.4rem, 16vw, 10rem);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: 0;
}

.careers-hero__inner p:last-of-type,
.careers-hero__inner span {
  max-width: 36rem;
  margin: 0;
  color: rgba(255, 248, 245, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.editorial-home__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-home__eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: currentColor;
  opacity: 0.42;
}

.careers-hero .editorial-home__eyebrow {
  color: rgba(255, 248, 245, 0.78);
}

.careers-story {
  padding: 2rem 0 4rem;
}

.careers-story__row {
  display: grid;
  gap: 1.2rem;
  border-top: 1px solid rgba(9, 34, 61, 0.1);
  padding-block: 1.2rem;
}

.careers-story__copy h2,
.careers-opportunities__intro h2,
.careers-quote__inner h2 {
  margin: 0;
  color: #091827;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.careers-story__copy h2,
.careers-opportunities__intro h2 {
  font-size: clamp(2rem, 6vw, 4rem);
}

.careers-story__copy p,
.careers-story__visual span,
.careers-opportunities__item p,
.careers-opportunities__status p {
  margin: 0;
  color: rgba(9, 34, 61, 0.72);
  font-size: 1.02rem;
  line-height: 1.72;
}

.careers-story__visual {
  align-content: end;
  min-height: 20rem;
  border: 1px solid rgba(9, 34, 61, 0.08);
  padding: 1.2rem;
  background:
    linear-gradient(145deg, rgba(235, 63, 67, 0.9), rgba(151, 29, 37, 0.92)),
    #eb3f43;
  color: #fff8f5;
}

.careers-story__eyebrow {
  margin: 0;
  color: rgba(255, 248, 245, 0.74);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.careers-story__visual strong {
  max-width: 10ch;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(2rem, 6vw, 4.1rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

.careers-story__visual span {
  color: rgba(255, 248, 245, 0.8);
}

.careers-quote {
  padding: 3rem 0;
  background: #091827;
}

.careers-quote__inner h2 {
  max-width: 14ch;
  color: #fff8f5;
  font-size: clamp(2.4rem, 8vw, 5.6rem);
}

.careers-quote__inner p {
  margin: 0;
  color: rgba(255, 248, 245, 0.64);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.careers-opportunities {
  padding: 3rem 0 4.5rem;
}

.careers-opportunities__filters {
  gap: 0.9rem;
}

.careers-opportunities__filter {
  display: grid;
  gap: 0.45rem;
}

.careers-opportunities__filter span,
.careers-opportunities__item-head span,
.careers-opportunities__meta p,
.careers-opportunities__clear {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.careers-opportunities__filter span,
.careers-opportunities__meta p {
  color: rgba(9, 34, 61, 0.6);
}

.careers-opportunities__filter select {
  width: 100%;
  border: 1px solid rgba(9, 34, 61, 0.12);
  border-radius: 999px;
  padding: 0.92rem 1rem;
  background: rgba(255, 255, 255, 0.86);
  color: #091827;
}

.careers-opportunities__status {
  align-items: center;
  padding-block: 0.25rem 0.4rem;
}

.careers-opportunities__status p {
  font-size: 0.9rem;
}

.careers-opportunities__status span {
  color: #091827;
  font-weight: 800;
}

.careers-opportunities__clear {
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  color: #eb3f43;
  cursor: pointer;
}

.careers-opportunities__list {
  gap: 0;
  border-top: 1px solid rgba(9, 34, 61, 0.1);
}

.careers-opportunities__item {
  position: relative;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(9, 34, 61, 0.08);
  padding-block: 1.1rem;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, padding-inline 180ms ease;
}

.careers-opportunities__item:hover,
.careers-opportunities__item:focus-visible {
  padding-inline: 0.75rem;
  background: rgba(255, 255, 255, 0.58);
  color: inherit;
  transform: translateX(0.2rem);
}

.careers-opportunities__item:focus-visible {
  outline: 2px solid rgba(235, 63, 67, 0.45);
  outline-offset: 3px;
}

.careers-opportunities__item[hidden] {
  display: none;
}

.careers-opportunities__item-head h3 {
  margin: 0;
  color: #091827;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.careers-opportunities__item-head span {
  color: #eb3f43;
}

.careers-opportunities__summary {
  max-width: 44rem;
}

.careers-opportunities__meta {
  gap: 0.35rem;
}

.careers-opportunities__cta {
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
  color: #eb3f43;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compact-section {
  padding: clamp(56px, 7vw, 92px) 0;
}

.copy-stack,
.editorial-statement {
  display: grid;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.editorial-statement {
  max-width: 880px;
}

.flat-list {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-weight: 800;
}

.flat-list li {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.service-row-list,
.capability-list,
.editorial-feed {
  display: grid;
  gap: 0;
}

.service-row-list article,
.capability-list article,
.editorial-feed article {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.service-row-list article:first-child,
.capability-list article:first-of-type,
.editorial-feed article:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-row-list h3,
.capability-list h3,
.editorial-feed h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1;
}

.service-row-list p,
.capability-list p,
.editorial-feed p {
  margin: 0;
}

.capability-list .page-title {
  margin-bottom: 28px;
}

.work-index {
  display: grid;
  gap: 40px;
}

.work-index article {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}

.work-index article:first-child {
  border-top: 0;
  padding-top: 0;
}

.work-index img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.work-index h2 {
  margin: 0 0 12px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.hero-panel p:last-child {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.page-title {
  max-width: 880px;
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(2.2rem, 5.4vw, 5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.partner-proof {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #ffffff 0%, #fff7f4 48%, rgba(255, 30, 0, 0.12) 100%);
  border-top: 8px solid var(--red);
}

.partner-proof::before {
  content: "Google";
  position: absolute;
  right: -0.04em;
  bottom: -0.24em;
  color: rgba(255, 30, 0, 0.08);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(8rem, 19vw, 18rem);
  line-height: 1;
  pointer-events: none;
}

.partner-text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.partner-proof-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(32px, 6vw, 64px);
}

.partner-proof-copy {
  max-width: 840px;
}

.partner-proof-copy .page-title {
  max-width: 760px;
}

.partner-proof-strip {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  padding: 16px 0;
}

.partner-proof-strip::before {
  content: none;
}

.partner-strip-mark,
.partner-strip-count,
.certification-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.partner-strip-count {
  gap: 8px;
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red) 0%, #c51607 100%);
  color: var(--paper);
  box-shadow: 0 10px 28px rgba(255, 30, 0, 0.22);
}

.partner-strip-count strong {
  font-size: 1rem;
  line-height: 1;
}

.certification-link:hover,
.certification-link:focus-visible,
.partner-strip-mark:hover,
.partner-strip-mark:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.impact-meta span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.redstart-story {
  background: var(--paper-soft);
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
}

.story-split p:not(.eyebrow) {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.story-figure {
  margin: 0;
}

.story-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.story-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-band {
  padding: clamp(72px, 10vw, 122px) 0 36px;
  background: var(--red);
  color: var(--paper);
  overflow: hidden;
}

.work-head {
  margin-bottom: 30px;
}

.work-scroll {
  overflow-x: auto;
  padding: 0 0 20px max(16px, calc((100vw - var(--max)) / 2));
  scrollbar-color: rgba(255, 255, 255, 0.64) transparent;
}

.work-track {
  --work-card-width: 360px;
  display: flex;
  width: max-content;
  gap: 18px;
  padding-right: 32px;
}

.work-card {
  width: var(--work-card-width);
  min-width: 220px;
  max-width: 420px;
  margin: 0;
}

.work-card a {
  position: relative;
  display: block;
  color: var(--paper);
  text-decoration: none;
}

.work-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.work-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 2px;
  color: var(--paper);
  font-weight: 900;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.46);
}

.work-card small {
  font-size: 0.85rem;
  font-weight: 700;
}

.slider-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 0;
}

.slider-bar label {
  font-weight: 800;
}

.slider-bar input {
  width: min(360px, 44vw);
  accent-color: var(--paper);
}

.feature-intro {
  margin-bottom: 36px;
}

.impact-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}

.impact-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

.impact-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impact-body p {
  color: var(--ink-soft);
}

.impact-meta {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.impact-meta div {
  display: grid;
  gap: 4px;
}

.impact-meta strong {
  color: var(--ink);
}

.services-band,
.placeholder-band-light {
  background: var(--paper-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 84px);
}

.service-list {
  display: grid;
  gap: 28px;
  border-left: 2px solid var(--red);
  padding-left: clamp(24px, 4vw, 48px);
}

.service-list article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
}

.service-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-list h3 {
  margin: 0 0 8px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.service-list p {
  margin: 0;
  color: var(--ink-soft);
}

.approach-band {
  background: var(--red-dark);
  color: var(--paper);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.35fr minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
}

.approach-band .section-lead {
  color: rgba(255, 255, 255, 0.86);
}

.placeholder-band .section-lead {
  color: var(--ink-soft);
}

.contact-band {
  background: var(--red);
  color: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.contact-band .section-lead {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.88);
}

.service-intake-page {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 28%),
    radial-gradient(circle at 10% 16%, rgba(255, 30, 0, 0.08), transparent 16%),
    radial-gradient(circle at 86% 8%, rgba(20, 20, 20, 0.04), transparent 18%),
    #fbf8f3;
}

.service-intake-stage {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.service-intake-head {
  display: grid;
  gap: 16px;
}

.service-intake-head .page-title {
  max-width: 980px;
  color: var(--ink);
}

.service-intake-description {
  max-width: 52rem;
  margin: 0;
  color: rgba(20, 20, 20, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.service-intake-layout {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
}

.service-intake-layout-contact {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.service-intake-sidebar,
.service-intake-main-card,
.service-intake-form-head,
.service-intake-form-grid {
  display: grid;
  gap: 18px;
}

.service-intake-sidebar-card {
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(20, 20, 20, 0.12);
  padding-top: 22px;
}

.service-intake-sidebar-card h3,
.service-intake-form-head h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
}

.service-intake-sidebar-card p,
.service-intake-form-head p {
  margin: 0;
  color: rgba(20, 20, 20, 0.72);
}

.service-intake-action-row,
.service-intake-submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.service-intake-mini-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-intake-mini-list li {
  border-top: 1px solid rgba(20, 20, 20, 0.1);
  padding-top: 10px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.4;
}

.service-intake-main-card {
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.08);
}

.service-intake-form-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-intake-main-card label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-intake-main-card input,
.service-intake-main-card textarea {
  width: 100%;
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 6px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.service-intake-main-card textarea {
  min-height: 132px;
  resize: vertical;
}

.service-intake-field-wide {
  display: grid;
  gap: 8px;
}

.text-muted {
  color: #c9c1b9;
}

.site-footer {
  background: #101112;
  color: var(--paper);
  padding: 48px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 18px 30px;
  align-items: start;
}

.footer-logo {
  width: 190px;
  height: auto;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo-link img {
  filter: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: flex-end;
  justify-self: end;
  color: #d8d1c3;
  font-size: 0.94rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--red);
}

.footer-social {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-end;
  justify-self: end;
}

.footer-social a {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  opacity: 0.85;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--red);
  opacity: 1;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  border-top: 1px solid var(--line-light);
  padding-top: 18px;
}

.footer-bottom {
  color: #a8a197;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-partner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  text-align: right;
}

.footer-partner-copy {
  display: grid;
  gap: 4px;
}

.footer-partner-label,
.footer-partner-description {
  margin: 0;
  text-transform: uppercase;
}

.footer-partner-label {
  color: #a8a197;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.footer-partner-description {
  max-width: 17rem;
  color: #d8d1c3;
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  line-height: 1.45;
}

.footer-partner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-partner-link:hover,
.footer-partner-link:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-partner-logo {
  width: auto;
  height: 38px;
  border-radius: 3px;
  object-fit: cover;
}

.footer-showcase {
  display: none;
  overflow: hidden;
  background: #000;
  padding: 32px 0;
}

.footer-showcase-container {
  width: min(90vw, 1320px);
  margin: 0 auto;
  overflow: hidden;
}

.footer-showcase-carousel {
  position: relative;
  overflow: hidden;
}

.footer-showcase-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  padding: 16px 0;
  animation: footer-showcase-scroll-right 25s linear infinite;
  will-change: transform;
}

.footer-showcase:hover .footer-showcase-track,
.footer-showcase:focus-within .footer-showcase-track {
  animation-play-state: paused;
}

.footer-showcase-item {
  flex: 0 0 auto;
  width: 150px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-showcase-item-wide {
  width: 180px;
}

.footer-showcase-item img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  filter: grayscale(100%) brightness(2.4);
  opacity: 0.82;
  transition: filter 220ms ease, opacity 220ms ease;
}

.footer-showcase-item img:hover,
.footer-showcase-item img:focus-visible {
  filter: none;
  opacity: 1;
}

.footer-showcase-reduced-motion .footer-showcase-track {
  width: auto;
  flex-wrap: wrap;
  justify-content: center;
  animation: none;
}

@keyframes footer-showcase-scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

@media (min-width: 720px) {
  .careers-opportunities__filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .careers-opportunities__status {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 980px) {
  .marketing-hero {
    display: block;
    min-height: 25rem;
    padding-right: clamp(22rem, 36vw, 36rem);
  }

  .marketing-hero__art {
    position: absolute;
    top: 2.3rem;
    right: 0;
    width: clamp(21rem, 34vw, 34rem);
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0;
  }

  .careers-story__row {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.88fr);
    align-items: stretch;
    gap: 1.6rem;
  }

  .careers-story__row[data-reversed="true"] {
    grid-template-columns: minmax(20rem, 0.88fr) minmax(0, 1fr);
  }

  .careers-story__row[data-reversed="true"] .careers-story__copy {
    order: 2;
  }

  .careers-story__row[data-reversed="true"] .careers-story__visual {
    order: 1;
  }

  .careers-opportunities__filters {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .careers-opportunities__item {
    grid-template-columns: minmax(0, 1.4fr) minmax(20rem, 0.9fr);
    align-items: start;
  }

  .careers-opportunities__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: start;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: var(--radius);
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu-toggle::-webkit-details-marker {
    display: none;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    min-width: min(280px, calc(100vw - 32px));
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    box-shadow: 0 22px 48px rgba(20, 20, 20, 0.18);
  }

  .mobile-menu-panel a {
    border-radius: calc(var(--radius) - 2px);
    padding: 10px;
    color: inherit;
    text-decoration: none;
    font-weight: 800;
  }

  .mobile-menu-primary {
    background: var(--red);
    color: var(--paper) !important;
  }

  .hero-grid,
  .partner-proof-inner,
  .page-hero-grid,
  .service-intake-layout-contact,
  .story-split,
  .impact-story,
  .split,
  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 100vh;
    padding-top: clamp(116px, 16vh, 142px);
    padding-bottom: 34px;
  }

  .hero-grid {
    align-content: center;
    gap: 24px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .hero-mark {
    display: none;
  }

  .page-hero {
    height: 100vh;
    padding-top: clamp(116px, 16vh, 142px);
    padding-bottom: 34px;
  }

  .service-row-list article,
  .capability-list article,
  .editorial-feed article,
  .work-index article {
    grid-template-columns: 1fr;
  }

  .service-list {
    border-left: 0;
    border-top: 2px solid var(--red);
    padding-left: 0;
    padding-top: 24px;
  }

  .service-intake-main-card {
    box-shadow: none;
  }

  .impact-media img {
    min-height: 320px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
    justify-self: start;
  }

  .footer-social {
    grid-column: auto;
    justify-content: flex-start;
    justify-self: start;
  }

  .footer-meta {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
  }

  .footer-partner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  .footer-partner-description {
    max-width: 18rem;
  }

  .footer-showcase-container {
    width: 100%;
    padding: 0 20px;
  }

  .footer-showcase-track {
    gap: 32px;
  }

  .footer-showcase-item {
    width: 132px;
    height: 66px;
  }

  .footer-showcase-item-wide {
    width: 152px;
  }
}

@media (max-width: 640px) {
  .container,
  .nav {
    width: min(100% - 24px, var(--max));
  }

  .brand {
    width: 172px;
  }

  .has-scrolled-header .brand {
    width: 150px;
  }

  .headline {
    font-size: clamp(2.7rem, 13.5vw, 4rem);
    line-height: 0.96;
  }

  .hero .lead {
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero-panel p:last-child {
    font-size: 0.96rem;
  }

  .section {
    padding: 64px 0;
  }

  .page-hero .page-title {
    font-size: 2.7rem;
    line-height: 0.98;
  }

  .page-hero-grid {
    gap: 18px;
  }

  .service-intake-form-grid-two {
    grid-template-columns: 1fr;
  }

  .service-intake-submit-row .button {
    width: 100%;
  }

  .partner-proof-strip {
    align-items: flex-start;
  }

  .partner-strip-mark,
  .partner-strip-count,
  .certification-link {
    min-height: 32px;
  }

  .work-track {
    gap: 12px;
  }

  .work-card {
    width: min(var(--work-card-width), 78vw);
  }

  .footer-showcase {
    padding: 24px 0;
  }

  .footer-showcase-container {
    padding: 0 16px;
  }

  .footer-showcase-track {
    gap: 20px;
    padding: 12px 0;
  }

  .footer-showcase-item {
    width: 104px;
    height: 52px;
  }

  .footer-showcase-item-wide {
    width: 126px;
  }
}
