:root {
  --blue: #00329b;
  --blue-dark: #001f61;
  --blue-soft: #edf3ff;
  --red: #ff4141;
  --ink: #16181d;
  --muted: #59606b;
  --line: #d9dde5;
  --paper: #ffffff;
  --soft: #f8f9fb;
  --max: 1180px;
  --freeman-blue: #0968ad;
  --freeman-green: #65b43d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Avenir, "Avenir Next", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

::selection {
  background: var(--blue);
  color: white;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  background: var(--blue);
  color: white;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:not(:focus):not(:focus-visible) {
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus,
.skip-link:focus-visible {
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
}

.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;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.site-header::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(217, 221, 229, .95);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 420ms ease;
}

.site-header.is-scrolled::after {
  transform: scaleX(1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: clamp(178px, 17vw, 276px);
  transition: min-height 360ms ease;
}

.logo-link {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: clamp(460px, 56vw, 744px);
  aspect-ratio: 3985 / 1293;
  overflow: visible;
  transition: height 360ms ease;
}

.logo {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: auto;
  transform-origin: left center;
  transform: translateY(-50%) scale(1);
  transition: transform 360ms ease;
  will-change: transform;
}

.site-header.is-scrolled .header-inner {
  min-height: 90px;
}

.site-header.is-scrolled .logo-link {
  height: 90px;
}

.site-header.is-scrolled .logo {
  transform: translateY(-50%) scale(.31);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: white;
  color: var(--blue);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.45rem;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  content: "";
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

main {
  overflow: clip;
}

main :where(h1, h2, h3, p) {
  --hang: clamp(18px, 1.05em, 34px);
  padding-left: var(--hang);
  text-indent: calc(-1 * var(--hang));
}

main :where(.editorial-label, .play-mark, .sr-only) {
  padding-left: 0;
  text-indent: 0;
}

.section {
  padding: clamp(58px, 7.2vw, 108px) 0;
}

.section-tight {
  padding: clamp(44px, 5.8vw, 78px) 0;
}

.hero {
  padding: 0 0 clamp(34px, 5vw, 64px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto;
  align-items: end;
  gap: clamp(26px, 4.5vw, 62px);
  min-height: clamp(470px, 43vw, 610px);
}

.hero h1,
.project-hero h1,
.freeman-hero h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2.35rem, 4.45vw, 4.55rem);
  font-weight: 360;
  letter-spacing: 0;
  line-height: .98;
}

.hero .subhead {
  max-width: 460px;
  margin: 28px 0 0;
  color: #353941;
  font-size: clamp(1.06rem, 1.55vw, 1.3rem);
  font-style: italic;
  line-height: 1.55;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
  align-self: start;
  padding-top: clamp(78px, 8vw, 126px);
}

.hero-artwork {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(82vw, 1120px);
  display: flex;
  align-items: start;
  justify-content: flex-end;
  opacity: .95;
  pointer-events: none;
}

.hero-artwork svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.hero-serving {
  position: relative;
  z-index: 2;
  grid-column: 7 / -1;
  grid-row: 1 / span 2;
  align-self: center;
  margin-top: clamp(72px, 8vw, 124px);
  margin-bottom: 0;
}

.hero-serving-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 10px;
}

.hero-serving article {
  position: relative;
  min-height: 126px;
  padding: 16px 18px;
  border: 1px solid rgba(217, 221, 229, .9);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(6px);
}

.hero-serving article::before {
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  content: "";
}

.hero-serving .editorial-label {
  color: var(--red);
  margin-bottom: 16px;
}

.hero-serving h2 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: clamp(.92rem, 1vw, 1.04rem);
  line-height: 1.15;
}

.hero-serving p {
  margin: 0;
  color: #44505f;
  font-size: clamp(.8rem, .86vw, .9rem);
  line-height: 1.45;
}

.hero-serving p strong {
  color: var(--blue);
  font-weight: 800;
}

.hero-flow {
  vector-effect: non-scaling-stroke;
}

.hero-flow,
.hero-shapes path,
.today-shapes path {
  animation: artwork-pulse 5s ease-in-out infinite;
}

.hero-flow:nth-child(2),
.today-shapes path:nth-child(2) {
  animation-delay: -1.35s;
}

.hero-flow:nth-child(3),
.today-shapes path:nth-child(3) {
  animation-delay: -2.7s;
}

.hero-flow-red,
.hero-shapes path:nth-child(2) {
  animation-delay: -3.9s;
}

@keyframes artwork-pulse {
  0%, 100% { opacity: .48; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-flow {
    stroke-dasharray: 760;
    stroke-dashoffset: 0;
    clip-path: inset(0 0 0 100%);
    animation: hero-line-breathe 5s ease-in-out infinite;
    animation-delay: -2.2s;
  }

  .hero-flow-red {
    animation-delay: -2.8s;
  }
}

@keyframes hero-line-breathe {
  0% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
  18% {
    opacity: .35;
  }
  58% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  86% {
    opacity: .28;
    clip-path: inset(0 0 0 0);
  }
  98%, 100% {
    opacity: 0;
    clip-path: inset(0 0 0 0);
  }
}

.editorial-lines {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: clamp(7px, 1.4vw, 18px);
  height: clamp(220px, 34vw, 470px);
  opacity: .95;
}

.editorial-lines span {
  display: block;
  min-height: 44px;
  background: var(--blue);
}

.editorial-lines span:nth-child(1) { height: 38%; opacity: .18; }
.editorial-lines span:nth-child(2) { height: 64%; opacity: .28; }
.editorial-lines span:nth-child(3) { height: 86%; opacity: .42; }
.editorial-lines span:nth-child(4) { height: 52%; opacity: .18; background: var(--red); }
.editorial-lines span:nth-child(5) { height: 100%; opacity: .62; }
.editorial-lines span:nth-child(6) { height: 72%; opacity: .34; }
.editorial-lines span:nth-child(7) { height: 46%; opacity: .2; }

.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(250px, .5fr);
  align-items: end;
  gap: clamp(30px, 5.5vw, 78px);
}

.video-feature.secondary {
  grid-template-columns: minmax(260px, .66fr) minmax(0, 1.34fr);
}

.video-feature.secondary .video-copy {
  order: 1;
}

.video-feature.secondary .video-shell {
  order: 2;
}

.stories-section {
  padding-top: clamp(52px, 7vw, 92px);
}

.stories-feature {
  width: min(calc(100% - 40px), 1010px);
}

.stories-feature .video-shell {
  margin-inline: auto;
}

.stories-copy {
  max-width: 640px;
  margin-top: clamp(24px, 4vw, 42px);
}

.stories-copy h2 {
  font-size: clamp(1.62rem, 2.6vw, 2.55rem);
}

.video-shell,
.project-card-image,
.project-hero-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0e1118;
  aspect-ratio: 16 / 9;
}

.video-feature:not(.secondary) .video-shell {
  margin-inline-start: max(-24px, -2vw);
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.project-hero-media .video-shell {
  width: 100%;
  height: 100%;
}

.video-poster {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: #0e1118;
  color: white;
  cursor: pointer;
}

.video-poster img,
.video-shell > img,
.project-card img,
.project-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: clamp(58px, 7vw, 84px);
  height: clamp(58px, 7vw, 84px);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: rgba(0, 50, 155, .76);
  color: white;
  font-size: 1.35rem;
  line-height: 1;
  transition: background 160ms ease, transform 160ms ease;
}

.video-poster:hover .play-mark,
.video-poster:focus-visible .play-mark {
  background: rgba(255, 65, 65, .9);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-copy h2,
.section-title,
.freeman-section h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.62rem, 3vw, 3.05rem);
  font-weight: 380;
  letter-spacing: 0;
  line-height: 1.05;
}

.video-copy p,
.intro-copy,
.project-copy,
.freeman-copy {
  margin: 20px 0 0;
  color: #333842;
  font-size: clamp(1.08rem, 1.65vw, 1.34rem);
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
  background-image: linear-gradient(90deg, var(--blue), var(--red));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 2px;
  padding-bottom: 3px;
}

.editorial-label {
  margin: 0 0 16px;
  color: var(--red);
  font-size: clamp(.72rem, .9vw, .86rem);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.editorial-section {
  position: relative;
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(240px, .58fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

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

.hanging-text {
  --hang: clamp(24px, 1.25em, 42px);
}

.editorial-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(24px, 3.5vw, 40px);
}

.editorial-cards.cards-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.editorial-card {
  min-height: 100%;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid var(--line);
  border-top: 3px solid rgba(101, 180, 61, .85);
  background: rgba(255, 255, 255, .92);
}

.editorial-card h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
}

.editorial-card p {
  margin: 0;
  color: #44505f;
  font-size: .98rem;
  line-height: 1.58;
}

.featured-panels {
  display: grid;
  gap: clamp(34px, 6vw, 70px);
}

#work {
  padding-top: clamp(42px, 5.2vw, 72px);
}

.featured-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
  gap: clamp(26px, 4.4vw, 58px);
  align-items: end;
}

.featured-panel:nth-child(even) {
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr);
}

.featured-panel:nth-child(even) .video-shell {
  order: 2;
}

.featured-copy h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.55rem, 2.6vw, 2.6rem);
  font-weight: 380;
  line-height: 1.08;
}

.featured-copy p {
  margin: 16px 0 0;
  color: #333842;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}

.video-shell-link {
  display: grid;
  place-items: stretch;
}

.poster-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.project-placeholder {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 4%;
  width: 100%;
  height: 100%;
  padding: 12%;
  background:
    linear-gradient(135deg, rgba(0, 50, 155, .1), rgba(255, 65, 65, .08)),
    #f2f5fb;
}

.project-placeholder::before {
  position: absolute;
  left: 10%;
  top: 10%;
  color: rgba(0, 50, 155, .7);
  content: "Future project";
  font-size: clamp(.72rem, .9vw, .88rem);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.project-placeholder span {
  display: block;
  background: rgba(0, 50, 155, .32);
}

.project-placeholder span:nth-child(1) { height: 44%; }
.project-placeholder span:nth-child(2) { height: 68%; }
.project-placeholder span:nth-child(3) { height: 52%; background: rgba(255, 65, 65, .38); }
.project-placeholder span:nth-child(4) { height: 82%; }

.focus-band {
  position: relative;
  overflow: hidden;
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.focus-band .wrap {
  position: relative;
  z-index: 1;
}

.focus-band .editorial-intro > div:first-child {
  position: relative;
}

.focus-band .editorial-label {
  position: absolute;
  top: calc(-1.1em - 16px);
  left: 0;
}

.focus-artwork {
  position: absolute;
  inset: 0 auto 0 -22%;
  height: 100%;
  opacity: .18;
  pointer-events: none;
}

.focus-artwork svg {
  width: auto;
  height: 100%;
  min-width: min(860px, 72vw);
  display: block;
}

.focus-layout {
  display: grid;
  grid-template-columns: minmax(210px, .45fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.focus-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.focus-list li {
  padding-inline-start: clamp(18px, 2.6vw, 34px);
  border-inline-start: 2px solid rgba(0, 50, 155, .22);
  color: var(--blue);
  font-size: clamp(1.35rem, 3vw, 2.95rem);
  font-weight: 360;
  line-height: 1.08;
}

.js .focus-list li {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .focus-list li.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .focus-list li:nth-child(2) {
  transition-delay: 80ms;
}

.js .focus-list li:nth-child(3) {
  transition-delay: 160ms;
}

.js .focus-list li:nth-child(4) {
  transition-delay: 240ms;
}

.philosophy {
  position: relative;
  overflow: hidden;
  background: white;
  border-block: 1px solid var(--line);
  color: var(--blue);
}

.philosophy .wrap {
  position: relative;
  z-index: 1;
}

.philosophy-artwork {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(78vw, 1040px);
  opacity: .52;
  pointer-events: none;
}

.philosophy-artwork svg {
  width: 100%;
  height: 100%;
  display: block;
}

.philosophy-lines path {
  vector-effect: non-scaling-stroke;
  animation: artwork-pulse 5s ease-in-out infinite;
}

.philosophy-lines path:nth-child(2) {
  animation-delay: -1.35s;
}

.philosophy-lines path:nth-child(3) {
  animation-delay: -2.7s;
}

.philosophy-lines path:nth-child(4) {
  animation-delay: -3.9s;
}

.philosophy-head {
  max-width: 760px;
}

.philosophy-head p {
  max-width: 650px;
  margin: clamp(18px, 2vw, 24px) 0 0;
  color: #333842;
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.62;
}

.philosophy .editorial-label {
  color: var(--red);
  font-size: clamp(.72rem, .9vw, .86rem);
  margin-bottom: 16px;
}

.philosophy-card-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(28px, 4vw, 52px);
}

.philosophy-card-list article {
  position: relative;
  min-height: 112px;
  padding: 15px 18px 16px;
  border: 1px solid rgba(217, 221, 229, .92);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(6px);
}

.philosophy-card-list article::before {
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  content: "";
}

.philosophy-card-list h3 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(.98rem, 1.14vw, 1.12rem);
  line-height: 1.14;
}

.philosophy-card-list p {
  margin: 8px 0 0;
  color: #44505f;
  font-size: clamp(.82rem, .9vw, .92rem);
  line-height: 1.4;
}

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

.intro-rule {
  display: block;
  width: 3px;
  height: min(100%, 260px);
  background: linear-gradient(var(--blue), var(--red));
}

.intro-copy {
  max-width: 820px;
  font-size: clamp(1.18rem, 1.9vw, 1.52rem);
}

.intro-paragraphs {
  margin-top: 0;
}

.intro-paragraphs p {
  margin: 0;
}

.intro-paragraphs p + p {
  margin-top: clamp(16px, 2vw, 24px);
}

.intro-paragraphs .intro-emphasis {
  color: var(--blue);
  font-weight: 650;
}

.philosophy-focus-cards {
  margin-top: clamp(18px, 2.4vw, 28px);
}

.brand-thread {
  display: block;
  width: 3px;
  height: clamp(78px, 10vw, 142px);
  background: linear-gradient(var(--blue), var(--red));
}

.serving-head {
  display: flex;
  align-items: end;
  justify-content: flex-start;
  gap: 24px;
}

.serving-head .brand-thread {
  display: none;
}

.serving-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4.4vw, 56px);
  margin-top: clamp(26px, 4vw, 48px);
}

.serving-item {
  position: relative;
  padding: 26px 0 0 clamp(0px, 1vw, 12px);
  border-top: 2px solid rgba(0, 50, 155, .25);
  color: #272b33;
  font-size: clamp(1.18rem, 2.05vw, 1.68rem);
  line-height: 1.45;
}

.serving-item::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 64px;
  height: 2px;
  background: var(--red);
  content: "";
  opacity: .72;
}

.production-band {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: white;
}

.production-band .wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.production-band h2 {
  margin: 0;
  color: white;
  font-size: clamp(1.95rem, 3.6vw, 3.85rem);
  font-weight: 360;
  line-height: 1.05;
}

.production-band p {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.7;
}

.production-band .text-link {
  color: white;
  background-image: linear-gradient(90deg, #fff, var(--red));
}

.production-band .editorial-label {
  color: rgba(255, 255, 255, .8);
  font-size: clamp(.72rem, .9vw, .86rem);
  margin-bottom: clamp(20px, 2.3vw, 32px);
}

.production-artwork {
  position: absolute;
  inset: -64% -6% -78% 2%;
  z-index: 0;
  opacity: .41;
  filter: brightness(0) invert(1);
  mix-blend-mode: screen;
  pointer-events: none;
}

.production-artwork svg {
  width: min(1320px, 112vw);
  height: auto;
}

.partnership-signal {
  display: grid;
  align-items: end;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
  min-height: clamp(130px, 16vw, 210px);
  opacity: .82;
}

.partnership-signal span {
  display: block;
  min-height: 40px;
  border-inline-start: 2px solid rgba(255, 255, 255, .5);
  background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .02));
}

.partnership-signal span:nth-child(1) { height: 52%; }
.partnership-signal span:nth-child(2) { height: 82%; }
.partnership-signal span:nth-child(3) { height: 64%; border-color: rgba(255, 65, 65, .75); }
.partnership-signal span:nth-child(4) { height: 100%; }
.partnership-signal span:nth-child(5) { height: 72%; }

.closing {
  text-align: center;
  padding-block: clamp(38px, 5.8vw, 76px);
}

.closing p {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.65rem, 3.35vw, 3.25rem);
  font-weight: 360;
  line-height: 1.04;
}

.site-footer {
  padding: clamp(46px, 6vw, 76px) 0;
  background: #11151c;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(240px, .7fr);
  gap: 36px;
}

.footer-title {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

address {
  font-style: normal;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 24px;
}

.site-footer address,
.footer-meta {
  font-size: clamp(.92rem, 1vw, 1rem);
  line-height: 1.7;
}

.footer-links a,
.contact-lines a {
  color: rgba(255, 255, 255, .86);
  background-image: linear-gradient(90deg, #fff, var(--red));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  padding-bottom: 2px;
  text-decoration: none;
}

.footer-meta {
  color: rgba(255, 255, 255, .68);
}

.page-hero {
  padding: clamp(42px, 5.6vw, 74px) 0 clamp(24px, 3.4vw, 40px);
}

.page-hero h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2.25rem, 4.6vw, 4.4rem);
  font-weight: 360;
  line-height: 1;
}

.page-intro {
  max-width: 720px;
  margin: clamp(18px, 2.2vw, 28px) 0 0;
  color: #333842;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.68;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4.5vw, 62px);
}

.project-card {
  display: block;
  color: var(--blue);
  text-decoration: none;
}

.project-card-image::after {
  display: none;
}

.project-card-title {
  position: absolute;
  left: clamp(18px, 2.5vw, 30px);
  bottom: clamp(16px, 2.3vw, 28px);
  z-index: 2;
  color: white;
  font-size: clamp(1.28rem, 2.3vw, 2.15rem);
  font-weight: 420;
  line-height: 1.05;
}

.project-card img {
  transition: transform 220ms ease;
}

.project-card .video-shell:hover img,
.project-card .video-shell:focus-visible img {
  transform: scale(1.025);
}

.project-card-editorial {
  display: grid;
  gap: 18px;
  color: var(--ink);
}

.project-card-editorial .project-card-title {
  display: none;
}

.project-card-copy {
  max-width: 640px;
}

.project-card-copy h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  font-weight: 430;
  line-height: 1.12;
}

.project-card-copy p {
  margin: 10px 0 0;
  color: #44505f;
  font-size: 1rem;
  line-height: 1.58;
}

.project-card-copy .project-advisory {
  color: var(--red);
  font-weight: 800;
}

.project-credits {
  display: grid;
  gap: 4px;
  margin: 14px 0 0;
  color: #59606b;
  font-size: .88rem;
  line-height: 1.42;
}

.project-credits div {
  display: flex;
  flex-wrap: wrap;
  gap: 0 .35em;
}

.project-credits dt {
  color: var(--blue);
  font-weight: 800;
}

.project-credits dd {
  margin: 0;
}

.project-card-copy .text-link {
  margin-top: 14px;
}

.about-page,
.contact-page {
  min-height: 56vh;
}

.contact-card {
  margin-top: 28px;
  padding: clamp(20px, 3vw, 32px);
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--blue), var(--red)) 1;
  background: var(--soft);
  color: var(--ink);
}

.contact-card a {
  color: var(--blue);
  background-image: linear-gradient(90deg, var(--blue), var(--red));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  padding-bottom: 2px;
  text-decoration: none;
}

.project-hero {
  padding: clamp(34px, 5.4vw, 68px) 0 clamp(24px, 3.4vw, 40px);
  background:
    linear-gradient(180deg, #fff 0%, #fff 62%, #f8f9fb 62%, #f8f9fb 100%);
}

.project-title-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(20px, 4vw, 56px);
  margin-bottom: clamp(22px, 4vw, 46px);
}

.project-title-block h1 {
  margin: 0;
  padding-inline-start: clamp(0px, 4vw, 56px);
}

.project-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(270px, .42fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}

.project-copy {
  padding-top: clamp(0px, 2vw, 22px);
}

.project-copy p {
  max-width: 520px;
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  color: var(--muted);
  font-size: .9rem;
}

.notice {
  margin: 24px 0 0;
  padding: 14px 16px;
  border-inline-start: 3px solid var(--red);
  background: #fff4f4;
  color: #5a2626;
}

.project-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 28px);
  padding: clamp(26px, 4vw, 48px) 0 clamp(40px, 6vw, 70px);
  border-top: 1px solid var(--line);
}

.project-nav-card {
  display: flex;
  min-height: clamp(116px, 14vw, 164px);
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 30px);
  border-top: 3px solid rgba(0, 50, 155, .26);
  color: var(--blue);
  background: #f8f9fb;
  text-decoration: none;
}

.project-nav-card span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-nav-card strong {
  font-size: clamp(1.08rem, 1.55vw, 1.55rem);
  font-weight: 430;
  line-height: 1.12;
}

.project-nav-card:hover,
.project-nav-card:focus-visible {
  border-top-color: var(--red);
}

.project-nav-card.is-empty {
  visibility: hidden;
}

.freeman-page {
  --blue: var(--freeman-blue);
}

.freeman-hero {
  overflow: hidden;
  padding: clamp(64px, 9vw, 122px) 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(9, 104, 173, .08), transparent 28%),
    linear-gradient(180deg, #fff, #f7fbfe);
  border-bottom: 1px solid #d9e7f0;
}

.freeman-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 66px);
}

.freeman-hero h1 {
  color: #0b376b;
  text-transform: uppercase;
  letter-spacing: .04em;
}

@media (min-width: 861px) {
  .freeman-hero h1 {
    padding-left: 0;
    text-indent: 0;
  }
}

.freeman-art {
  position: relative;
  min-width: 0;
}

.freeman-art svg {
  width: min(100%, 780px);
  height: auto;
  overflow: visible;
}

.freeman-waves path {
  stroke-width: 1.35;
  vector-effect: non-scaling-stroke;
}

.visual-note {
  position: absolute;
  right: 0;
  bottom: 8%;
  max-width: 250px;
  margin: 0;
  color: var(--freeman-blue);
  font-size: clamp(.82rem, 1.1vw, .96rem);
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.8;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--freeman-green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.freeman-hero .lede {
  max-width: 740px;
  color: #244663;
  font-size: clamp(1.16rem, 2vw, 1.5rem);
  line-height: 1.72;
}

.freeman-hero .eyebrow {
  font-size: clamp(.9rem, 1.15vw, 1.05rem);
  letter-spacing: .14em;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--freeman-green);
  background: var(--freeman-green);
  color: white;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.secondary {
  border-color: #0b376b;
  background: white;
  color: #0b376b;
}

.freeman-section {
  padding: clamp(58px, 7vw, 96px) 0;
}

.freeman-section.soft {
  background: #f7fbfe;
  border-block: 1px solid #d9e7f0;
}

.freeman-grid,
.freeman-cards,
.freeman-steps {
  display: grid;
  gap: 24px;
}

.freeman-heading-group {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.freeman-heading-group.compact {
  align-items: center;
  margin-bottom: 14px;
}

.freeman-heading-group.compact .eyebrow {
  margin-bottom: 0;
}

.freeman-icon {
  flex: 0 0 auto;
  width: 78px;
  height: 58px;
}

.freeman-icon.wide {
  width: 112px;
}

.freeman-grid {
  grid-template-columns: minmax(230px, .68fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
}

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

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

.freeman-card,
.freeman-step {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border: 1px solid #d9e7f0;
  border-top: 4px solid var(--freeman-green);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 48px rgba(11, 55, 107, .08);
}

.freeman-card-icon {
  display: flex;
  justify-content: flex-end;
  min-height: 58px;
  margin-bottom: 12px;
}

.freeman-card-icon .freeman-icon {
  width: 58px;
  height: 48px;
}

.freeman-card h3,
.freeman-step h3 {
  margin: 0 0 10px;
  color: #0b376b;
  font-size: 1.08rem;
}

.freeman-card p,
.freeman-step p {
  margin: 0;
  color: #38576f;
}

.freeman-quote {
  max-width: 980px;
  margin: 0 0 34px;
  color: #0b376b;
  font-size: clamp(1.58rem, 2.7vw, 2.75rem);
  font-weight: 380;
  line-height: 1.12;
}

#audiences .freeman-cards,
#process .freeman-steps {
  margin-top: 34px;
}

.freeman-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(62px, 8vw, 104px) 0;
  background: linear-gradient(180deg, #fbfdff, #e8f5fc);
  border-top: 1px solid #d9e7f0;
  text-align: center;
}

.freeman-cta .wrap {
  position: relative;
  z-index: 2;
}

.freeman-footer-waves {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: min(24vw, 245px);
  pointer-events: none;
}

.freeman-footer-waves svg {
  display: block;
  width: 100%;
  height: 100%;
}

.freeman-cta h2 {
  max-width: 930px;
  margin-inline: auto;
  color: #0b376b;
}

.freeman-cta p {
  max-width: 740px;
  margin-inline: auto;
}

.freeman-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(560px, 100%);
  min-height: 66px;
  margin-top: clamp(28px, 4vw, 44px);
  padding: 0 30px;
  border: 2px solid #0b376b;
  background: rgba(255, 255, 255, .72);
  color: #0b376b;
  font-size: clamp(.9rem, 1.2vw, 1.12rem);
  font-weight: 800;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.freeman-cta-button:hover,
.freeman-cta-button:focus-visible {
  border-color: var(--freeman-green);
  color: var(--freeman-blue);
}

.freeman-legal {
  max-width: 1180px;
  margin: clamp(34px, 4.5vw, 54px) auto 0;
  color: #5e7f98;
  font-size: clamp(.82rem, 1vw, .95rem);
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .header-inner {
    gap: 20px;
    min-height: clamp(132px, 15vw, 178px);
  }

  .logo-link {
    width: clamp(300px, 34vw, 420px);
  }

  .site-header.is-scrolled .logo {
    transform: translateY(-50%) scale(.56);
  }

  .primary-nav {
    gap: clamp(12px, 2vw, 24px);
    font-size: .72rem;
  }

  .hero-grid {
    min-height: clamp(390px, 48vw, 510px);
  }

  .hero-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: 820px;
    padding-top: clamp(44px, 5.5vw, 72px);
  }

  .hero-copy h1 {
    max-width: 820px;
  }

  .hero .subhead {
    max-width: 660px;
  }

  .hero-serving {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: end;
    margin-top: clamp(34px, 6vw, 72px);
  }

  .hero-serving article {
    min-height: 0;
    padding: 22px 24px;
  }

  .hero-serving h2 {
    font-size: clamp(1.05rem, 2vw, 1.42rem);
  }

  .hero-serving p {
    font-size: clamp(.95rem, 1.55vw, 1.14rem);
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 150px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 78px;
  }

  .logo-link {
    width: clamp(260px, 48vw, 360px);
  }

  .site-header.is-scrolled .logo {
    transform: translateY(-50%) scale(.61);
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 22px;
    background: white;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 15px 0;
  }

  .primary-nav a::after {
    bottom: .65rem;
  }

  .hero-grid,
  .video-feature,
  .video-feature.secondary,
  .featured-panel,
  .featured-panel:nth-child(even),
  .editorial-intro,
  .freeman-hero-grid,
  .focus-layout,
  .intro-grid,
  .production-band .wrap,
  .project-hero-grid,
  .freeman-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-rows: auto auto;
    min-height: 0;
    align-items: start;
  }

  .hero-copy,
  .hero-serving,
  .hero-artwork {
    grid-column: 1;
  }

  .video-feature.secondary .video-copy,
  .video-feature.secondary .video-shell,
  .featured-panel:nth-child(even) .video-shell {
    order: initial;
  }

  .featured-panel {
    gap: 20px;
  }

.featured-panel + .featured-panel {
    margin-top: clamp(6px, 2.4vw, 14px);
    padding-top: clamp(12px, 3.5vw, 22px);
    border-top: 1px solid rgba(217, 221, 229, .95);
  }

  .featured-panel .video-shell {
    width: min(75vw, 640px);
    margin-inline: auto;
  }

  .video-feature:not(.secondary) .video-shell {
    margin-inline-start: 0;
  }

  .editorial-lines {
    height: 190px;
  }

  .hero-artwork {
    grid-area: 1 / 1;
    align-self: stretch;
    display: flex;
    align-items: start;
    margin-inline: 0;
    max-height: none;
    overflow: hidden;
    opacity: .78;
    pointer-events: none;
  }

  .hero-artwork svg {
    width: min(126%, 680px);
    transform: none;
  }

  .hero-copy {
    grid-area: 1 / 1;
    position: relative;
    z-index: 1;
    align-self: start;
    padding-top: 34px;
  }

  .hero-serving {
    grid-area: 2 / 1;
    margin: 8px 0 0;
  }

  .hero-serving-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-serving article {
    min-height: auto;
    padding: 13px 14px;
  }

  .philosophy-artwork {
    width: 118vw;
    opacity: .42;
  }

  .focus-artwork {
    inset: 0 auto 0 -28%;
  }

  .focus-artwork svg {
    min-width: 720px;
  }

  .philosophy-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-title-block {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }

  .project-title-block h1 {
    padding-inline-start: 0;
  }

  .project-title-block .brand-thread {
    height: 66px;
  }

  .projects-grid,
  .serving-grid,
  .editorial-cards,
  .editorial-cards.cards-four,
  .freeman-cards,
  .freeman-steps {
    grid-template-columns: 1fr;
  }

  .project-nav {
    grid-template-columns: 1fr;
  }

  .project-nav-card.is-empty {
    display: none;
  }

  .freeman-art {
    min-height: 260px;
  }

  .visual-note {
    position: static;
    max-width: none;
    margin-top: -28px;
    text-align: center;
  }
}

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

  .logo-link {
    width: 220px;
  }

  .site-header.is-scrolled .logo {
    transform: translateY(-50%) scale(.72);
  }

  .header-inner {
    gap: 16px;
    min-height: 124px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 76px;
  }

  .hero {
    padding: 0 0 28px;
  }

  .hero-grid {
    min-height: 0;
    gap: 0;
  }

  .hero-copy {
    align-self: start;
    padding-top: 82px;
  }

  .hero .subhead {
    margin-top: 18px;
  }

  .hero-artwork {
    margin-inline: 0;
  }

  .hero-artwork svg {
    width: 122%;
    transform: translate(0, -4px);
  }

  .focus-artwork {
    inset: 0 auto 0 -54%;
    opacity: .1;
    height: 100%;
  }

  .focus-artwork svg {
    width: auto;
    min-width: 620px;
    height: 100%;
  }

  .production-artwork {
    inset: -12% -70% -40% -22%;
    opacity: .24;
  }

  .philosophy-artwork {
    width: 150vw;
    opacity: .34;
  }

  .philosophy-card-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .philosophy-card-list article {
    min-height: auto;
    padding: 13px 14px;
  }

  .hero-serving-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-serving .editorial-label {
    margin-bottom: 10px;
  }

  .hero-serving article {
    padding: 11px 12px;
  }

  .hero-serving p {
    font-size: .78rem;
  }

  .hero h1,
  .page-hero h1,
  .project-hero h1,
  .freeman-hero h1 {
    font-size: clamp(2.12rem, 10.5vw, 3.05rem);
  }

  .project-hero h1 {
    font-size: clamp(1.95rem, 9.5vw, 2.72rem);
  }

  .freeman-hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.05rem);
    overflow-wrap: normal;
  }

  .focus-list li {
    font-size: clamp(1.22rem, 8vw, 2rem);
  }

  .freeman-heading-group {
    gap: 14px;
  }

  .freeman-icon {
    width: 58px;
    height: 44px;
  }

  .freeman-icon.wide {
    width: 78px;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    padding-block: 38px;
  }

  .footer-links {
    gap: 10px 16px;
  }

  .site-footer address,
  .footer-meta {
    font-size: .86rem;
  }
}
