:root {
  --ink: #0b0b12;
  --paper: #edf6f9;
  --white: #fff;
  --blue: #006d77;
  --blue-dark: #004e55;
  --aqua: #83c5be;
  --coral: #e29578;
  --lavender: #ffddd2;
  --muted: #77756f;
  --line: rgba(11, 11, 18, 0.18);
  --shell: min(92vw, 1440px);
  --header-h: 112px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a[href],
select {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--coral);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  height: var(--header-h);
  padding: 0 4vw;
  border-bottom: 1px solid transparent;
  transition: height 0.45s var(--ease), background 0.35s, border-color 0.35s;
}

.site-header.is-scrolled {
  height: 76px;
  border-color: rgba(11, 11, 18, 0.1);
  background: rgba(237, 246, 249, 0.9);
  backdrop-filter: blur(18px);
}

/* backdrop-filter makes the header a containing block, which would trap the
   fixed nav drawer inside the header instead of the viewport */
body.menu-open .site-header {
  background: var(--paper);
  backdrop-filter: none;
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: auto;
  height: 78px;
}

.brand img {
  width: auto;
  height: 100%;
  max-height: 78px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 46px);
}

.main-nav a {
  position: relative;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

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

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  padding: 12px 18px;
  border: 1px solid var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

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

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

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.hero {
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--paper);
}

.hero::before {
  position: absolute;
  top: 20%;
  right: 0;
  width: clamp(90px, 12vw, 190px);
  height: 46%;
  background: var(--aqua);
  content: "";
  opacity: 0.34;
}

.hero::after {
  position: absolute;
  top: 20%;
  right: clamp(90px, 12vw, 190px);
  width: clamp(12px, 1.5vw, 24px);
  height: 46%;
  background: var(--coral);
  content: "";
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 10vh, 120px) 0 clamp(80px, 10vh, 120px);
}

.hero__eyebrow {
  display: flex;
  justify-content: space-between;
  width: min(100%, 1160px);
  margin: 0 0 clamp(36px, 5vh, 64px);
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__title {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  max-width: none;
  margin: 0;
  font-family: "Tenor Sans", serif;
  font-size: clamp(4rem, 8.5vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.hero-line {
  display: block;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateY(70px);
}

.page-ready .hero-line {
  opacity: 1;
  clip-path: inset(0);
  transform: translateY(0);
  transition: clip-path 1s var(--ease), transform 1s var(--ease), opacity 0.4s;
}

.page-ready .hero-line--two { transition-delay: 0.11s; }
.page-ready .hero-line--three { transition-delay: 0.22s; }

.hero-line--one em,
.hero-line--three i {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
}

.hero-line--one em {
  font-size: 0.5em;
  font-style: normal;
  letter-spacing: -0.04em;
}

.hero-line--two {
  margin-left: 0;
}

.hero-line--two b {
  display: inline-block;
  min-width: 4.4em;
  color: var(--blue);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.075em;
  transition: opacity 0.25s, transform 0.25s;
}

.hero-line--two b.is-changing {
  opacity: 0;
  transform: translateY(15px);
}

.hero-line--three {
  margin-left: 0;
  margin-top: 0.08em;
  font-size: 0.76em;
}

.hero-line--three i {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--ink);
}

.hero__footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  width: min(100%, 1160px);
  margin: clamp(38px, 6vh, 70px) 0 0;
}

.hero__footer p {
  width: min(100%, 530px);
  margin: 0;
  color: #3e3d3a;
  font-size: clamp(0.95rem, 1.15vw, 1.12rem);
}

.hero-intro {
  opacity: 0;
  transform: translateY(20px);
}

.page-ready .hero-intro {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s 0.55s, transform 0.8s 0.55s var(--ease);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 0.3s var(--ease);
}

.text-link:hover svg { transform: rotate(-45deg); }

.hero__signature {
  position: absolute;
  right: 3vw;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 20px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__signature span:not(:last-child)::after {
  margin-left: 20px;
  color: var(--coral);
  content: "+";
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--coral);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 38px;
  width: max-content;
  padding: 17px 0;
  animation: tickerMove 28s linear infinite;
  font-family: "Tenor Sans", serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.ticker__track i {
  font-size: 0.7em;
  font-style: normal;
}

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

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.services {
  padding: clamp(90px, 12vw, 180px) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) 2fr;
  gap: 5vw;
  margin-bottom: clamp(60px, 8vw, 120px);
}

.kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-intro h2,
.team__heading h2,
.values__header h2 {
  margin: 0;
  font-family: "Tenor Sans", serif;
  font-size: clamp(2.8rem, 6.3vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.section-intro h2 span,
.team__heading h2 span {
  color: var(--coral);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
}

.section-intro > div > p {
  width: min(100%, 620px);
  margin: 30px 0 0 auto;
  color: rgba(255, 255, 255, 0.62);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: clamp(28px, 3vw, 48px);
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.45s var(--ease);
}

.service-card::before {
  position: absolute;
  inset: 0;
  background: var(--blue);
  content: "";
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
}

.service-card:hover::before { transform: translateY(0); }

.service-card > * { position: relative; z-index: 1; }

.service-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 70px;
}

.service-card__top span {
  font-family: "Tenor Sans", serif;
  font-size: 0.8rem;
}

.service-card__top svg {
  width: 66px;
  height: 66px;
  fill: none;
  stroke: var(--aqua);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 0.5s var(--ease), stroke 0.3s;
}

.service-card:hover .service-card__top svg {
  stroke: var(--white);
  transform: rotate(-8deg) scale(1.1);
}

.service-card h3 {
  margin: 0 0 16px;
  font-family: "Tenor Sans", serif;
  font-size: clamp(1.6rem, 2.1vw, 2.4rem);
  font-weight: 400;
}

.service-card p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50px;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 850px;
}

.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7vw;
  overflow: hidden;
  background: var(--blue);
}

.about__visual::before,
.about__visual::after {
  position: absolute;
  width: 45%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  content: "";
}

.about__visual::before { top: -15%; left: -15%; }
.about__visual::after { right: -8%; bottom: -18%; }

.about__image-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  padding: 6%;
  background: var(--paper);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
  transform: rotate(-3deg);
  transition: transform 0.7s var(--ease);
}

.about__visual:hover .about__image-wrap { transform: rotate(0deg) scale(1.03); }

.about__stamp {
  position: absolute;
  top: 9%;
  right: 7%;
  z-index: 2;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--ink);
  transform: rotate(9deg);
}

.about__stamp span {
  align-self: end;
  font-family: "Tenor Sans", serif;
  font-size: 2rem;
}

.about__stamp small {
  align-self: start;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about__caption {
  position: absolute;
  bottom: 5%;
  left: 7%;
  z-index: 2;
  margin: 0;
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 140px);
}

.about__content h2 {
  margin: 28px 0 40px;
  font-family: "Tenor Sans", serif;
  font-size: clamp(2.7rem, 5vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.about__content h2 em {
  color: var(--blue);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}

.about__content > p:not(.kicker) {
  max-width: 620px;
  margin: 0 0 18px;
  color: #4b4a46;
}

.about__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 42px 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about__metrics strong,
.about__metrics span { display: block; }
.about__metrics strong { font-family: "Tenor Sans", serif; font-size: clamp(2rem, 3vw, 3.4rem); font-weight: 400; }
.about__metrics span { color: var(--muted); font-size: 0.72rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 310px);
  min-height: 58px;
  padding: 0 18px 0 24px;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
}

.button__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  transition: transform 0.35s var(--ease), background 0.35s, color 0.35s;
}

.button:hover .button__icon { transform: rotate(45deg); }
.button--dark { background: var(--ink); color: var(--white); }
.button--dark .button__icon { background: var(--coral); color: var(--ink); }
.button--dark:hover { background: var(--blue); }

.projects {
  padding: clamp(90px, 12vw, 180px) 0;
  background: var(--white);
}

.section-intro--light > div > p { color: var(--muted); }
.section-intro--light h2 span { color: var(--blue); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: clamp(34px, 4vw, 58px) clamp(20px, 2.4vw, 36px);
}

.project-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  cursor: pointer;
}

.project-card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
}

.project-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(360px, 34vw, 500px);
  padding: clamp(28px, 4vw, 62px);
  overflow: hidden;
}

.project-card__media--blue { background: var(--aqua); }
.project-card__media--coral { background: var(--coral); }
.project-card__media--ink { background: var(--ink); }
.project-card__media--lavender { background: var(--lavender); }

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 25px rgba(0, 0, 0, 0.24));
  transform: scale(1.03);
  transition: transform 0.8s var(--ease);
}

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

.project-card__view {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 10px 14px;
  background: var(--paper);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s var(--ease);
}

.project-card:hover .project-card__view { opacity: 1; transform: translateY(0); }

.project-card__caption {
  min-height: 118px;
  padding: 20px 0 8px;
  border-bottom: 1px solid var(--line);
}
.project-card__caption span { color: var(--muted); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }
.project-card__caption h3 { margin: 8px 0 0; font-family: "Tenor Sans", serif; font-size: clamp(1.5rem, 2vw, 2.35rem); font-weight: 400; line-height: 1.08; }

.project-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 16px;
}

.project-card__links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.project-card__links a:hover,
.project-card__links a:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
}

.project-card--multi .project-card__media img {
  transition: transform 0.7s var(--ease);
}

.project-card--multi:hover .project-card__media img {
  transform: scale(0.96);
}

.values {
  padding: clamp(90px, 12vw, 180px) 0;
  border-top: 1px solid var(--line);
}

.values__header {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) 2fr;
  gap: 5vw;
  margin-bottom: 80px;
}

.values__header h2 em {
  color: var(--coral);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}

.values__list { border-top: 1px solid var(--ink); }

.value-row {
  display: grid;
  grid-template-columns: 70px 1fr 1.4fr 50px;
  align-items: center;
  gap: 30px;
  min-height: 150px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s var(--ease), background 0.3s;
}

.value-row:hover { padding-inline: 24px; background: var(--lavender); }
.value-row > span { font-family: "Tenor Sans", serif; }
.value-row h3 { margin: 0; font-family: "Tenor Sans", serif; font-size: clamp(1.5rem, 2.2vw, 2.7rem); font-weight: 400; }
.value-row p { margin: 0; color: var(--muted); }
.value-row i { font-size: 1.7rem; font-style: normal; transition: transform 0.35s var(--ease); }
.value-row:hover i { transform: rotate(45deg); }

.team { padding: clamp(90px, 12vw, 180px) 0; overflow: hidden; }
.team__heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 70px; }
.team__heading .kicker { margin-bottom: 30px; }
.team__nav { display: flex; gap: 8px; }
.team__nav button {
  width: 55px;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s, color 0.3s;
}
.team__nav button:hover { background: var(--coral); color: var(--ink); }

.team-track {
  display: flex;
  gap: 22px;
  width: 100%;
  padding: 0 4vw 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--coral) rgba(255, 255, 255, 0.1);
  scrollbar-width: thin;
}

.team-card {
  flex: 0 0 min(330px, 82vw);
  padding: 0 0 26px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  scroll-snap-align: start;
}

.team-card__image {
  position: relative;
  display: grid;
  width: 100%;
  height: 420px;
  margin-bottom: 20px;
  place-items: center;
  overflow: hidden;
  background: #1b1b25;
}

.team-card__image::after {
  position: absolute;
  inset: 0;
  border: 0 solid var(--coral);
  content: "";
  transition: border-width 0.35s var(--ease);
}

.team-card:hover .team-card__image::after { border-width: 10px; }
.team-card__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter 0.5s, transform 0.7s var(--ease); }
.team-card:hover .team-card__image img { filter: grayscale(0); transform: scale(1.04); }
.team-card--initials:nth-child(3) .team-card__image { background: var(--blue); }
.team-card--initials:nth-child(6) .team-card__image { background: var(--coral); color: var(--ink); }
.team-card--initials .team-card__image > span { font-family: "Tenor Sans", serif; font-size: 5rem; }
.team-card__index { float: right; color: rgba(255, 255, 255, 0.45); font-size: 0.65rem; }
.team-card strong { display: block; padding-right: 30px; font-family: "Tenor Sans", serif; font-size: 1.55rem; font-weight: 400; }
.team-card small { display: block; margin-top: 5px; color: var(--coral); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.team-card i { display: block; margin-top: 20px; color: rgba(255, 255, 255, 0.55); font-size: 0.68rem; font-style: normal; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s; }
.team-card:hover i { opacity: 1; transform: translateY(0); }

.contact {
  position: relative;
  padding: clamp(90px, 11vw, 170px) 0 80px;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.contact::before {
  position: absolute;
  top: -18vw;
  right: -12vw;
  width: 50vw;
  height: 50vw;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
}

.contact__headline { position: relative; z-index: 1; margin-bottom: 100px; }
.contact__headline > p { margin: 0 0 30px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.17em; text-transform: uppercase; }
.contact__headline h2 { margin: 0; font-family: "Tenor Sans", serif; font-size: clamp(4rem, 10.8vw, 11.8rem); font-weight: 400; letter-spacing: -0.07em; line-height: 0.76; }
.contact__headline h2 span { color: var(--coral); font-family: "DM Sans", sans-serif; font-weight: 700; }

.contact__body { position: relative; z-index: 1; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 9vw; }
.contact__copy > p { max-width: 480px; margin-top: 0; font-size: 1.15rem; }
.contact__copy > a { display: inline-block; margin: 25px 0 60px; padding-bottom: 6px; border-bottom: 1px solid var(--white); font-family: "Tenor Sans", serif; font-size: clamp(1.25rem, 2vw, 2rem); }
.contact__meta { display: grid; grid-template-columns: 1fr; gap: 25px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.3); color: rgba(255, 255, 255, 0.68); font-size: 0.75rem; }

.contact-form { display: grid; gap: 28px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { position: relative; display: block; }
.contact-form label > span { display: block; margin-bottom: 8px; color: rgba(255, 255, 255, 0.68); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px 0 13px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--white);
  transition: border-color 0.25s;
}
.contact-form select { color-scheme: dark; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--coral); }
.button--light { margin-top: 10px; border-color: var(--white); color: var(--white); }
.button--light .button__icon { background: var(--coral); color: var(--ink); }
.button--light:hover { background: var(--white); color: var(--ink); }
.form-status { min-height: 24px; margin: -15px 0 0; color: var(--paper); font-size: 0.78rem; }

.site-footer { background: var(--ink); color: var(--white); }
.site-footer__top { display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 50px; padding-block: 65px; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.site-footer__top img { width: 168px; height: auto; }
.site-footer__top p { margin: 0; color: rgba(255, 255, 255, 0.62); }
.site-footer__top > a { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 28px; color: rgba(255, 255, 255, 0.5); font-size: 0.68rem; }
.site-footer__bottom div { display: flex; gap: 24px; }
.site-footer a:hover { color: var(--coral); }

.team-modal {
  width: min(92vw, 720px);
  padding: clamp(35px, 6vw, 75px);
  border: 0;
  background: var(--paper);
  color: var(--ink);
}
.team-modal::backdrop { background: rgba(11, 11, 18, 0.82); backdrop-filter: blur(8px); }
.team-modal__close { position: absolute; top: 18px; right: 20px; width: 42px; height: 42px; border: 1px solid var(--ink); border-radius: 50%; background: none; cursor: pointer; font-size: 1.5rem; }
.team-modal__number { position: absolute; top: 25px; left: 25px; color: var(--blue); font-size: 0.58rem; letter-spacing: 0.16em; }
.team-modal .kicker { margin-top: 35px; color: var(--blue); }
.team-modal h2 { margin: 20px 0 8px; font-family: "Tenor Sans", serif; font-size: clamp(2.3rem, 6vw, 4.8rem); font-weight: 400; letter-spacing: -0.05em; line-height: 0.95; }
.team-modal__role { margin: 0; color: var(--coral); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; }
.team-modal__line { height: 1px; margin: 38px 0; background: var(--line); }
.team-modal strong { display: block; margin-bottom: 18px; font-size: 1.1rem; }
.team-modal > p:last-child { color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(55px);
  transition: opacity 0.8s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
section:target .reveal { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --header-h: 82px; }
  .site-header { grid-template-columns: 1fr auto; height: var(--header-h); }
  .brand { height: 62px; }
  .brand img { max-height: 62px; }
  .header-cta { display: none; }
  .menu-toggle { position: relative; z-index: 1002; display: block; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: flex;
    width: min(72vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2.2vh;
    padding: clamp(40px, 8vw, 64px) clamp(28px, 6vw, 48px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    background-color: #006d77;
    box-shadow: -30px 0 80px rgba(11, 11, 18, 0.24);
    color: var(--white);
    opacity: 1;
    visibility: hidden;
    transform: translateX(100%);
    transition: visibility 0.45s, transform 0.45s var(--ease);
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateX(0); }
  .main-nav a { font-family: "Tenor Sans", serif; font-size: clamp(1.35rem, 4.2vw, 2rem); letter-spacing: 0.02em; }
  .menu-open .menu-toggle { color: var(--white); }
  .menu-open .menu-toggle span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .hero::before,
  .hero::after { opacity: 0.22; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .about__visual { min-height: 680px; }
  .about__content { min-height: 720px; }
  .project-card__media { height: clamp(330px, 40vw, 430px); }
  .contact__body { gap: 5vw; }
}

@media (max-width: 760px) {
  :root { --shell: min(88vw, 620px); }
  .site-header { padding-inline: 6vw; }
  .site-header.is-scrolled { height: 68px; }
  .brand { height: 54px; }
  .brand img { max-height: 54px; }
  .menu-toggle {
    position: fixed;
    top: 18px;
    right: 6vw;
    z-index: 1100;
    display: flex !important;
    opacity: 1;
    visibility: visible;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--ink);
    background: var(--paper);
    color: var(--ink);
  }
  .menu-toggle span { width: 100%; flex: 0 0 2px; }
  .main-nav {
    width: min(78vw, 280px);
    padding: 72px 7vw 48px;
    gap: 1.8vh;
    background-color: #006d77;
  }
  .main-nav a { font-size: clamp(1.2rem, 5.5vw, 1.65rem); }
  .menu-open .menu-toggle { border-color: rgba(255, 255, 255, 0.7); background: transparent; }
  .hero { min-height: max(730px, 100svh); }
  .hero::before { top: auto; right: 0; bottom: 0; width: 36vw; height: 130px; }
  .hero::after { top: auto; right: 36vw; bottom: 0; width: 14px; height: 130px; }
  .hero__content { justify-content: center; padding: 80px 0 130px; }
  .hero__eyebrow { display: block; margin-bottom: 38px; }
  .hero__eyebrow span { display: block; margin-top: 5px; }
  .hero__title { width: 100%; margin: 0; font-size: clamp(3rem, 13.3vw, 4.65rem); line-height: 0.93; }
  .hero-line--one em { display: inline; font-size: 0.58em; }
  .hero-line--two,
  .hero-line--three { margin-left: 0; }
  .hero-line--two b { display: block; min-width: 0; }
  .hero-line--three { margin-top: 0.12em; font-size: 1em; }
  .hero-line--three i { display: block; font-size: 0.76em; letter-spacing: -0.075em; }
  .hero__footer { grid-template-columns: 1fr; gap: 28px; margin-top: 42px; }
  .hero__footer p { max-width: 94%; }
  .text-link { justify-self: start; }
  .hero__signature { right: auto; bottom: 22px; left: 6vw; gap: 8px; }
  .hero__signature span:not(:last-child)::after { margin-left: 8px; }
  .ticker__track { gap: 24px; padding-block: 13px; }
  .section-intro,
  .values__header { grid-template-columns: 1fr; }
  .section-intro > div > p { margin-left: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 370px; }
  .service-card__top { margin-bottom: 45px; }
  .about__visual { min-height: 510px; padding: 14vw 8vw; }
  .about__stamp { top: 6%; right: 5%; width: 90px; height: 90px; }
  .about__stamp span { font-size: 1.5rem; }
  .about__content { min-height: auto; padding: 90px 6vw; }
  .about__metrics { grid-template-columns: 1fr; }
  .about__metrics > div { display: grid; grid-template-columns: 100px 1fr; align-items: center; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card__media { height: 330px; }
  .project-card__caption { min-height: 126px; }
  .project-card__view { opacity: 1; transform: none; }
  .values__header { margin-bottom: 50px; }
  .value-row { grid-template-columns: 38px 1fr 30px; gap: 14px; min-height: 130px; padding-block: 24px; }
  .value-row p { grid-column: 2 / -1; }
  .team__heading { align-items: flex-end; }
  .team__nav { display: none; }
  .team-card__image { height: 390px; }
  .contact__headline { margin-bottom: 70px; }
  .contact__headline h2 { font-size: clamp(3.5rem, 17vw, 6rem); line-height: 0.84; }
  .contact__body { grid-template-columns: 1fr; gap: 80px; }
  .field-row { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 25px; }
  .site-footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal,
  .hero-line,
  .hero-intro { opacity: 1; clip-path: none; transform: none; }
}
