@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

:root {
  --ink: #0a0a0a;
  --ink-soft: #121212;
  --paper: #f0eee7;
  --paper-bright: #f7f5ef;
  --acid: #d9ff43;
  --orange: #ff5a36;
  --white: #fff;
  --line: rgba(10, 10, 10, 0.18);
  --line-light: rgba(255, 255, 255, 0.24);
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Italiana", Georgia, serif;
  --pad: clamp(24px, 5vw, 80px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--orange) var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

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

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

button {
  color: inherit;
  font: inherit;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-content: center;
  justify-items: center;
  background: var(--ink);
  color: var(--paper);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.page-loader.loaded {
  visibility: hidden;
  opacity: 0;
}

.loader-mark {
  font-family: var(--serif);
  font-size: clamp(72px, 10vw, 150px);
  line-height: 1;
}

.loader-line {
  width: min(260px, 65vw);
  height: 1px;
  margin-top: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform-origin: left;
  animation: load-line 1.4s cubic-bezier(.77, 0, .18, 1) both;
}

.page-loader p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@keyframes load-line {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.cursor-glow {
  position: fixed;
  z-index: 12;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(217, 255, 67, 0.09), transparent 67%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 88px;
  padding: 0 var(--pad);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: height 0.35s ease, background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.site-header.scrolled {
  height: 70px;
  color: var(--ink);
  border-color: var(--line);
  background: rgba(240, 238, 231, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  justify-self: start;
}

.brand-mark {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 13px;
}

.brand-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 38px;
  justify-self: center;
}

.desktop-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  justify-self: end;
  padding: 11px 17px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--acid);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease;
}

.header-cta:hover {
  color: var(--white);
  background: transparent;
}

.site-header.scrolled .header-cta:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 0.35s ease;
}

.menu-toggle.active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 130px var(--pad) 36px;
  color: var(--paper);
  background: var(--ink);
  opacity: 0;
  transform: translateY(-20px);
  transition: visibility 0.45s, opacity 0.45s ease, transform 0.45s ease;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: clamp(48px, 14vw, 84px);
  line-height: 1;
}

.mobile-menu nav span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.mobile-menu-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.section-pad {
  padding-right: var(--pad);
  padding-left: var(--pad);
}

.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #161616;
}

.hero-media,
.impact-bg {
  position: absolute;
  inset: -7%;
}

.hero-media img,
.impact-bg img {
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-media img {
  object-position: 50% 38%;
  transform: scale(1.03);
  animation: hero-settle 2.2s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes hero-settle {
  from { transform: scale(1.15); filter: saturate(0.5); }
  to { transform: scale(1.03); filter: saturate(0.82); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.61) 0%, rgba(0, 0, 0, 0.08) 57%, rgba(0, 0, 0, 0.32) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 48%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 126px var(--pad) 48px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 19%;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-title {
  position: absolute;
  top: 49%;
  left: var(--pad);
  width: calc(100% - (var(--pad) * 2));
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(110px, 17.4vw, 285px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.57;
  transform: translateY(-50%);
}

.title-line {
  display: block;
  opacity: 0;
  animation: title-up 1.1s cubic-bezier(.16, 1, .3, 1) forwards;
}

.title-line-two {
  padding-left: 32%;
  font-style: italic;
  animation-delay: 0.13s;
}

@keyframes title-up {
  from { opacity: 0; transform: translateY(100px) skewY(3deg); }
  to { opacity: 1; transform: none; }
}

.hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-right: 4%;
}

.hero-bottom > p {
  width: min(350px, 30vw);
  margin: 0 0 4px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-secondary {
  padding: 9px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.hero-secondary span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.hero-secondary:hover {
  color: var(--acid);
  border-color: var(--acid);
}

.hero-secondary:hover span {
  transform: translate(3px, -3px);
}

.circle-link {
  display: flex;
  width: 106px;
  height: 106px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-size: 10px;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.circle-link svg {
  display: none;
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.circle-link:hover {
  color: var(--ink);
  border-color: var(--acid);
  background: var(--acid);
}

.hero-proof {
  position: absolute;
  right: var(--pad);
  bottom: 195px;
  z-index: 3;
  display: flex;
  width: 190px;
  flex-direction: column;
  align-items: flex-end;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-proof .proof-label,
.hero-proof > span:last-child {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof strong {
  margin: 2px 0 0;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
}

.hero-proof > span:last-child {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
  text-transform: none;
}

.hero-side {
  position: absolute;
  top: 51%;
  right: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right;
}

.hero-side span {
  width: 52px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.hero-side span::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  content: "";
  animation: scroll-line 2s ease infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  color: var(--ink);
  background: var(--acid);
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding: 0 28px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 58px);
  line-height: 1;
}

.marquee i {
  font-size: 18px;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
  padding-top: clamp(100px, 12vw, 190px);
  padding-bottom: clamp(100px, 12vw, 190px);
  background: var(--paper);
}

.section-index {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  font-size: 9px;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-index span:first-child {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  letter-spacing: 0;
}

.section-index span:last-child {
  padding-top: 7px;
}

.section-index.light {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 28px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.manifesto-copy h2,
.section-heading h2,
.impact-heading h2,
.services-head h2,
.about-copy h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.manifesto-copy h2 {
  max-width: 1050px;
  font-size: clamp(54px, 8vw, 128px);
}

em {
  font-weight: 400;
}

.manifesto-note {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11%;
  align-items: end;
  margin-top: 70px;
  padding-left: 28%;
}

.manifesto-note p {
  margin: 0;
  color: rgba(10, 10, 10, 0.66);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  max-width: 260px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 0.3s ease;
}

.text-link:hover span {
  transform: translate(4px, -4px);
}

.work {
  padding-top: 120px;
  padding-bottom: 160px;
  color: var(--paper);
  background: var(--ink);
}

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

.section-heading h2 {
  font-size: clamp(70px, 10vw, 150px);
}

.work-filters {
  display: flex;
  gap: 8px;
  padding-bottom: 12px;
}

.filter-btn {
  padding: 9px 17px;
  border: 1px solid var(--line-light);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--ink);
  border-color: var(--acid);
  background: var(--acid);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(48px, 8vw, 120px) clamp(20px, 3vw, 46px);
  align-items: start;
}

.project {
  min-width: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.project.hidden {
  display: none;
}

.project-featured {
  grid-column: 1 / span 8;
}

.project-tall {
  grid-column: 9 / span 4;
  padding-top: 180px;
}

.project-standard {
  grid-column: 1 / span 4;
  padding-top: 80px;
}

.project-wide {
  grid-column: 5 / span 8;
}

.project-image {
  position: relative;
  overflow: hidden;
  background: #1f1f1f;
}

.project-featured .project-image { aspect-ratio: 1.42; }
.project-tall .project-image { aspect-ratio: 0.73; }
.project-standard .project-image { aspect-ratio: 0.82; }
.project-wide .project-image { aspect-ratio: 1.48; }

.project-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.32));
  content: "";
  opacity: 0;
  transition: opacity 0.45s ease;
}

.project-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84);
  transition: transform 0.9s cubic-bezier(.16, 1, .3, 1), filter 0.6s ease;
}

.project-link:hover img {
  filter: saturate(1.08);
  transform: scale(1.055);
}

.project-link:hover .project-image::after {
  opacity: 1;
}

.project-view {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--acid);
  font-size: 9px;
  letter-spacing: 0.1em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.project-link:hover .project-view {
  opacity: 1;
  transform: none;
}

.project-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
}

.project-meta > div {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.project-meta span,
.project-meta p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-meta h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 39px);
  font-weight: 400;
  line-height: 1;
}

.project-meta p {
  margin: 0;
  text-align: right;
}

.impact {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: var(--white);
}

.impact-bg {
  inset: -9%;
}

.impact-bg img {
  object-position: center;
}

.impact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 18, 20, 0.8), rgba(8, 8, 8, 0.22)), linear-gradient(0deg, rgba(0, 0, 0, 0.4), transparent 55%);
}

.impact-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
  padding-top: 105px;
  padding-bottom: 90px;
}

.impact-heading {
  max-width: 900px;
}

.impact-heading h2 {
  font-size: clamp(65px, 9vw, 140px);
}

.stat-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 120px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.stat {
  padding: 34px 22px 30px;
  border-right: 1px solid var(--line-light);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(45px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-strip {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
}

.audience-strip div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.audience-strip span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.audience-strip strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.partners {
  padding-top: 70px;
  padding-bottom: 70px;
  color: var(--ink);
  background: var(--acid);
}

.partners .eyebrow {
  margin-bottom: 42px;
  text-align: center;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}

.partner-logos span {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 34px);
  text-align: center;
}

.services {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
  padding-top: 150px;
  padding-bottom: 150px;
  background: var(--paper-bright);
}

.services-head {
  margin-bottom: 100px;
}

.services-head h2 {
  font-size: clamp(70px, 10vw, 150px);
}

.service-list {
  grid-column: 2;
}

.service-item {
  display: grid;
  grid-template-columns: 60px minmax(220px, 1.2fr) 1fr 50px;
  gap: 24px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  transition: padding 0.35s ease, color 0.35s ease, background 0.35s ease;
}

.service-item:last-child {
  border-bottom: 1px solid var(--line);
}

.service-item:hover {
  padding-right: 20px;
  padding-left: 20px;
  color: var(--paper-bright);
  background: var(--ink);
}

.service-number {
  font-size: 9px;
}

.service-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 400;
}

.service-item p {
  max-width: 340px;
  margin: 0;
  color: rgba(10, 10, 10, 0.58);
  font-size: 12px;
  transition: color 0.35s ease;
}

.service-item:hover p {
  color: rgba(255, 255, 255, 0.62);
}

.service-arrow {
  font-size: 25px;
  text-align: right;
  transition: transform 0.35s ease;
}

.service-item:hover .service-arrow {
  transform: translate(6px, -6px);
}

.about {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 950px;
  background: var(--paper);
}

.about-image {
  position: relative;
  min-height: 780px;
  overflow: hidden;
}

.about-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 1s cubic-bezier(.16, 1, .3, 1), filter 0.5s ease;
}

.about-image:hover img {
  filter: saturate(1);
  transform: scale(1.025);
}

.image-stamp {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: grid;
  width: 130px;
  height: 130px;
  place-content: center;
  justify-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  transform: rotate(-8deg);
}

.image-stamp span {
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-stamp strong {
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 400;
  line-height: 1.15;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-copy .section-index {
  margin-bottom: 100px;
}

.about-copy h2 {
  margin-bottom: 55px;
  font-size: clamp(55px, 6.5vw, 105px);
}

.about-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.about-text p {
  margin: 0;
  color: rgba(10, 10, 10, 0.68);
  font-size: 13px;
}

.about-copy blockquote {
  margin: 70px 0 50px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 32px);
  line-height: 1.3;
}

.testimonial {
  position: relative;
  padding-top: 170px;
  padding-bottom: 170px;
  color: var(--paper);
  background: var(--ink);
  text-align: center;
}

.quote-mark {
  color: var(--acid);
  font-family: var(--serif);
  font-size: 100px;
  line-height: 0.5;
}

.testimonial blockquote {
  max-width: 1040px;
  margin: 45px auto 60px;
  font-family: var(--serif);
  font-size: clamp(38px, 5.4vw, 82px);
  line-height: 1.08;
}

.quote-credit {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-credit span:last-child {
  color: rgba(255, 255, 255, 0.48);
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--orange);
}

.contact-inner {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 90px;
}

.contact h2 {
  max-width: 1200px;
  font-size: clamp(80px, 13vw, 205px);
  line-height: 0.8;
}

.contact-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 120px;
  padding-top: 28px;
  border-top: 1px solid rgba(10, 10, 10, 0.45);
}

.contact-email {
  display: flex;
  min-width: min(580px, 55vw);
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: clamp(15px, 1.7vw, 25px);
  transition: color 0.35s ease, background 0.35s ease;
}

.contact-email:hover {
  color: var(--paper);
  background: var(--ink);
}

.contact-row p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-orbit {
  position: absolute;
  top: -125px;
  right: -90px;
  z-index: 1;
  display: grid;
  width: 410px;
  height: 410px;
  place-items: center;
  border: 1px solid rgba(10, 10, 10, 0.22);
  border-radius: 50%;
  animation: orbit-spin 20s linear infinite;
}

.contact-orbit span {
  max-width: 230px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-align: center;
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.dialog {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: visibility 0.4s, opacity 0.4s ease;
}

.dialog.open {
  visibility: visible;
  opacity: 1;
}

.dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.dialog-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  max-height: min(800px, 92vh);
  overflow-y: auto;
  color: var(--paper);
  background: var(--ink-soft);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
  transform: translateY(22px) scale(0.98);
  transition: transform 0.45s cubic-bezier(.2, .7, .2, 1);
}

.dialog.open .dialog-panel {
  transform: none;
}

.dialog-close {
  position: absolute;
  top: 17px;
  right: 20px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(10, 10, 10, 0.4);
  cursor: pointer;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  transition: color 0.25s ease, background 0.25s ease;
}

.dialog-close:hover {
  color: var(--ink);
  background: var(--acid);
}

.dialog-layout {
  display: grid;
  grid-template-columns: 45% 55%;
}

.dialog-image {
  min-height: 560px;
  background: #202020;
}

.dialog-image img {
  height: 100%;
  object-fit: cover;
}

.dialog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(35px, 6vw, 80px);
}

.dialog-kicker {
  margin: 0 0 24px;
  color: var(--acid);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dialog-copy h2,
.planner-dialog-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.dialog-description {
  max-width: 420px;
  margin: 35px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.case-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 42px 0 35px;
  padding: 20px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.case-results div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case-results span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-results strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.dialog-action,
.contact-planner-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--paper);
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-align: left;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.dialog-action span,
.contact-planner-link span {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.dialog-action:hover,
.contact-planner-link:hover {
  color: var(--acid);
  border-color: var(--acid);
}

.dialog-action:hover span,
.contact-planner-link:hover span {
  transform: translate(4px, -4px);
}

.planner-dialog-panel {
  width: min(100%, 660px);
  padding: clamp(38px, 6vw, 72px);
}

.planner-dialog-panel h2 {
  font-size: clamp(58px, 8vw, 100px);
}

.planner-intro {
  max-width: 430px;
  margin: 28px 0 42px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.planner-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}

.planner-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.planner-form label:nth-of-type(3),
.planner-form label:nth-of-type(4),
.planner-form .dialog-action,
.planner-note {
  grid-column: 1 / -1;
}

.planner-form input,
.planner-form select,
.planner-form textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  border-radius: 0;
  outline: none;
  color: var(--paper);
  background: transparent;
  font: inherit;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 0.25s ease;
}

.planner-form select option {
  color: var(--ink);
}

.planner-form textarea {
  min-height: 85px;
  resize: vertical;
}

.planner-form input:focus,
.planner-form select:focus,
.planner-form textarea:focus {
  border-color: var(--acid);
}

.planner-submit {
  margin-top: 16px;
}

.planner-note {
  margin: -5px 0 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.contact-options {
  display: flex;
  width: 180px;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

.contact-options p {
  width: auto;
}

.contact-planner-link {
  padding: 0 0 10px;
  border-bottom-color: rgba(10, 10, 10, 0.6);
  color: var(--ink);
}

.contact-planner-link:hover {
  border-color: var(--ink);
}

.instagram-float {
  position: fixed;
  right: clamp(18px, 2.5vw, 36px);
  bottom: clamp(18px, 2.5vw, 36px);
  z-index: 80;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24);
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.instagram-float svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.instagram-float .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.instagram-float:hover {
  color: var(--paper);
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 16px 44px rgba(255, 90, 54, 0.34);
}

.site-footer {
  padding: 60px var(--pad) 26px;
  color: var(--paper);
  background: var(--ink);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-top {
  padding-bottom: 80px;
}

.footer-socials {
  display: flex;
  gap: 34px;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-socials a {
  transition: color 0.25s ease;
}

.footer-socials a:hover {
  color: var(--acid);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.9s cubic-bezier(.2, .7, .2, 1), transform 0.9s cubic-bezier(.2, .7, .2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 1000px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-header.menu-active {
    color: var(--paper);
    background: transparent;
  }

  .manifesto,
  .impact-content,
  .services {
    grid-template-columns: 1fr;
  }

  .manifesto-copy,
  .impact-heading,
  .services-head {
    margin-top: 70px;
  }

  .manifesto-note,
  .stat-grid,
  .audience-strip,
  .service-list {
    grid-column: 1;
  }

  .manifesto-note {
    padding-left: 18%;
  }

  .stat-grid {
    margin-top: 80px;
  }

  .about {
    grid-template-columns: 45% 55%;
  }

  .about-copy .section-index {
    margin-bottom: 65px;
  }

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

@media (max-width: 700px) {
  :root {
    --pad: 20px;
  }

  .site-header {
    height: 70px;
  }

  .brand-name {
    font-size: 12px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 100px;
    padding-bottom: 24px;
  }

  .hero-kicker {
    padding-left: 0;
  }

  .hero-kicker span:last-child {
    display: none;
  }

  .hero-title {
    top: 47%;
    font-size: clamp(80px, 29vw, 128px);
    line-height: 0.7;
  }

  .title-line-two {
    padding-top: 18px;
    padding-left: 12%;
  }

  .hero-bottom {
    align-items: end;
    padding-right: 0;
  }

  .hero-bottom > p {
    width: 54%;
    font-size: 11px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
  }

  .hero-secondary {
    font-size: 8px;
  }

  .circle-link {
    width: 67px;
    height: 67px;
  }

  .circle-link span {
    display: none;
  }

  .circle-link svg {
    display: block;
  }

  .hero-proof {
    right: 20px;
    bottom: 160px;
    width: 138px;
  }

  .hero-proof strong {
    font-size: 42px;
  }

  .hero-side {
    display: none;
  }

  .marquee {
    padding: 13px 0;
  }

  .manifesto {
    gap: 0;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .manifesto-copy {
    margin-top: 65px;
  }

  .manifesto-note {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 50px;
    padding-left: 20%;
  }

  .work {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .section-heading {
    display: block;
    margin-bottom: 50px;
  }

  .work-filters {
    overflow-x: auto;
    margin-top: 35px;
    padding-bottom: 10px;
  }

  .work-grid {
    display: block;
  }

  .project,
  .project-tall,
  .project-standard {
    margin-bottom: 70px;
    padding-top: 0;
  }

  .project-featured .project-image,
  .project-wide .project-image {
    aspect-ratio: 1 / 1.15;
  }

  .project-meta {
    align-items: start;
  }

  .project-meta > div {
    align-items: flex-start;
  }

  .project-meta p {
    max-width: 100px;
    line-height: 1.5;
  }

  .impact {
    min-height: 1020px;
  }

  .impact-content {
    gap: 0;
    padding-top: 80px;
  }

  .impact-heading {
    margin-top: 70px;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 70px;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-light);
  }

  .stat {
    padding: 28px 12px;
  }

  .audience-strip {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .partners {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .partner-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 12px;
  }

  .services {
    gap: 0;
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .services-head {
    margin: 65px 0;
  }

  .service-item {
    grid-template-columns: 35px 1fr 35px;
    gap: 12px;
    padding: 25px 0;
  }

  .service-item p {
    grid-column: 2 / span 2;
    grid-row: 2;
  }

  .service-arrow {
    grid-column: 3;
    grid-row: 1;
  }

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

  .about-image {
    min-height: 650px;
  }

  .about-copy {
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .about-copy h2 {
    font-size: 15vw;
  }

  .about-copy blockquote {
    margin-top: 55px;
  }

  .testimonial {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .testimonial blockquote {
    font-size: 10.5vw;
  }

  .contact-inner {
    padding-top: 110px;
    padding-bottom: 70px;
  }

  .contact h2 {
    font-size: 21vw;
  }

  .contact-row {
    display: block;
    margin-top: 80px;
  }

  .contact-email {
    min-width: 0;
    width: 100%;
    padding: 16px 19px;
  }

  .contact-row p {
    margin-top: 35px;
  }

  .footer-top {
    display: block;
    padding-bottom: 60px;
  }

  .footer-socials {
    flex-wrap: wrap;
    gap: 18px 26px;
    margin-top: 50px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 14px;
  }

  .footer-bottom span:nth-child(2) {
    display: none;
  }

  .mobile-menu-footer {
    display: block;
  }

  .dialog {
    padding: 12px;
  }

  .dialog-layout {
    display: block;
  }

  .dialog-image {
    min-height: 270px;
    max-height: 38vh;
  }

  .dialog-copy {
    padding: 34px 25px 28px;
  }

  .dialog-copy h2,
  .planner-dialog-panel h2 {
    font-size: 54px;
  }

  .dialog-description {
    margin-top: 25px;
  }

  .case-results {
    margin-top: 30px;
  }

  .planner-dialog-panel {
    padding: 36px 25px 30px;
  }

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

  .planner-form label:nth-of-type(3),
  .planner-form label:nth-of-type(4),
  .planner-form .dialog-action,
  .planner-note {
    grid-column: auto;
  }

  .contact-options {
    width: 100%;
    margin-top: 35px;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }

  .project-view {
    display: none;
  }
}

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

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

.login-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  color: var(--paper);
  background: var(--ink);
}

.login-card {
  width: min(430px, 100%);
  padding: 44px;
  border: 1px solid var(--line-light);
  background: var(--ink-soft);
}

.login-card h1 {
  margin-top: 0;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
}

.login-card input,
.login-card button {
  width: 100%;
  margin-top: 10px;
  padding: 13px;
  border: 1px solid var(--line-light);
}

.login-card input {
  color: var(--paper);
  background: transparent;
}

.login-card button {
  color: var(--ink);
  background: var(--acid);
  cursor: pointer;
}
