:root {
  --black: #050505;
  --ink: #111;
  --muted: #5d625f;
  --line: rgba(0, 0, 0, 0.12);
  --mint: #dff8df;
  --mint-2: #d7f4ee;
  --paper: #f7f7f4;
  --white: #fff;
  --container: 1360px;
  --page-gutter: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-weight: 300;
  letter-spacing: -0.035em;
}

body.modal-open {
  overflow: hidden;
}

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

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

.wrap,
.panel {
  width: min(var(--container), calc(100% - var(--page-gutter)));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 24px 18px 0;
  overflow: hidden;
  background: #050505;
  color: #fff;
}

.hero-bg,
.hero-bg span {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
}

.hero-bg span {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0;
  animation: heroFade 24s infinite;
}

.hero-bg span:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1603993097397-89c963e325c7?auto=format&fit=crop&w=2400&q=85");
}

.hero-bg span:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?auto=format&fit=crop&w=2400&q=85");
  animation-delay: 6s;
}

.hero-bg span:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1628348068343-c6a848d2b6dd?auto=format&fit=crop&w=2400&q=85");
  animation-delay: 12s;
}

.hero-bg span:nth-child(4) {
  background-image: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=2400&q=85");
  animation-delay: 18s;
}

@keyframes heroFade {
  0%,
  100% {
    opacity: 0;
  }

  8%,
  25% {
    opacity: 1;
  }

  33% {
    opacity: 0;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
  opacity: 0.7;
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  width: min(1420px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 16px 0 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #0a0a0a;
  letter-spacing: -0.02em;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.brand {
  font-size: 22px;
  font-weight: 600;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 42px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
}

.nav-dot {
  justify-self: end;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 46px;
  padding: 11px 16px 11px 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-dot:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.26);
  background: #f7f7f4;
}

.nav-dot span,
.text-link span,
.footer-hero span,
.contact-submit span {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 13px;
  height: 8px;
  border-radius: 0;
  background: transparent;
  vertical-align: middle;
  flex: 0 0 auto;
}

.nav-dot span::before,
.text-link span::before,
.footer-hero span::before,
.contact-submit span::before {
  content: "";
  position: absolute;
  right: 1px;
  width: 5px;
  height: 5px;
  border-top: 1.4px solid currentColor;
  border-right: 1.4px solid currentColor;
  transform: rotate(45deg);
}

.nav-dot span::after,
.text-link span::after,
.footer-hero span::after,
.contact-submit span::after {
  content: "";
  position: absolute;
  right: 2px;
  width: 11px;
  height: 1.4px;
  background: currentColor;
  transform: none;
}

.nav-toggle {
  display: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0;
  text-align: center;
}

.kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.98;
  font-weight: 300;
}

.hero-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-links a {
  min-width: 146px;
  padding: 14px 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 15px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.side-button {
  position: absolute;
  z-index: 2;
  right: 12px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: transparent;
}

.showcase-chapter {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 38%, rgba(230, 255, 217, 0.95), transparent 30%),
    radial-gradient(circle at 72% 66%, rgba(207, 241, 255, 0.86), transparent 36%),
    linear-gradient(180deg, #fff 0%, #fbfffa 22%, #eaffef 55%, #e7fbff 100%);
}

.showcase-chapter::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), transparent 18%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.35), transparent 26%);
}

.showcase-chapter > * {
  position: relative;
  z-index: 1;
}

.intro {
  padding: 200px 0 140px;
  text-align: center;
}

.intro h2 {
  width: min(780px, 100%);
  margin: 0 auto;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 0.98;
  font-weight: 300;
}

.brand-wall h2 {
  width: min(720px, 100%);
  margin: 0 auto;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  font-weight: 300;
}

strong {
  font-weight: 650;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  min-height: 44px;
  padding: 12px 17px 12px 21px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.text-link:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.3);
  background: #fff;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  padding: 0 0 150px;
}

.work-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  object-position: top center;
  transition: transform 260ms ease, filter 260ms ease;
}

.work-card {
  display: block;
}

.work-card:hover img {
  transform: translateY(-3px);
  filter: saturate(1.04) contrast(1.02);
}

.work-card h3 {
  margin: 14px 0 6px;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 500;
}

.work-card p {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.work-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.work-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 11px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: #101010;
  font-size: 11px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.work-grid-action {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.projects-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(239, 255, 236, 0.94), rgba(229, 249, 255, 0.96)),
    #fbfcfb;
}

.projects-page main {
  overflow: hidden;
}

.project-detail-page {
  overflow-x: hidden;
}

.projects-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, calc(100% - 72px));
  min-height: 76px;
  margin: 24px auto 0;
  padding: 0 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06);
}

.projects-nav .brand {
  color: #111;
}

.projects-nav div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.projects-nav a:not(.brand) {
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.projects-nav a:not(.brand):hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.24);
  background: rgba(255, 255, 255, 0.78);
}

.mobile-main-link {
  display: none;
}

.projects-hero {
  width: min(1240px, calc(100% - 72px));
  margin: 76px auto 64px;
}

.projects-hero .kicker,
.project-detail-hero .kicker {
  color: var(--muted);
}

.projects-hero h1,
.project-detail-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(44px, 5.4vw, 86px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.065em;
}

.projects-hero p,
.project-detail-hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.projects-list {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  padding-bottom: 120px;
}

.projects-list .work-grid {
  gap: 54px 36px;
  padding-bottom: 0;
}

.projects-page .work-card {
  position: relative;
  padding-bottom: 4px;
}

.projects-page .work-card img {
  aspect-ratio: 1.48 / 1;
  border-radius: 0;
  background: #f5f7f3;
  object-position: top center;
  transition: filter 260ms ease, transform 260ms ease;
}

.projects-page .work-card:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: translateY(-3px);
}

.projects-page .work-card h3 {
  transition: transform 220ms ease;
}

.projects-page .work-card:hover h3 {
  transform: translateX(4px);
}

.project-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 70px;
  align-items: center;
  width: min(1240px, calc(100% - 72px));
  margin: 76px auto 80px;
}

.project-detail-hero > div,
.project-section,
.project-split article,
.project-more {
  min-width: 0;
}

.project-detail-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  object-position: top center;
}

.project-section {
  width: min(850px, calc(100% - 72px));
  margin: 0 auto;
  padding: 46px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.project-section h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.project-section p {
  max-width: 760px;
  margin: 0;
  color: #3f443f;
  font-size: 16px;
  line-height: 1.62;
  overflow-wrap: break-word;
}

.project-intro {
  padding-top: 0;
  border-top: 0;
}

.project-intro p {
  max-width: 790px;
  color: #202420;
  font-size: clamp(21px, 2.1vw, 31px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.project-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
}

.project-split article {
  min-width: 0;
}

.project-body {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 64px;
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  padding-bottom: 110px;
}

.project-meta {
  display: grid;
  align-content: start;
  gap: 12px;
  position: sticky;
  top: 28px;
}

.project-meta-title {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.project-meta > span {
  display: inline-flex;
  width: max-content;
  min-height: 34px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: #111;
  font-size: 12px;
}

.project-meta .text-link {
  margin-top: 16px;
  justify-self: start;
}

.project-copy {
  display: grid;
  gap: 0;
}

.project-copy article {
  padding: 34px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.project-copy article:first-child {
  padding-top: 0;
  border-top: 0;
}

.project-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 2.8vw, 42px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.project-copy p,
.project-copy li {
  color: #3f443f;
  font-size: 16px;
  line-height: 1.6;
}

.project-lead {
  max-width: 760px;
  color: #171717;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.project-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.project-points div {
  min-height: 142px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
}

.project-points strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.project-points p {
  margin: 0;
  font-size: 14px;
}

.project-next {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.project-scope-strip {
  width: min(1040px, calc(100% - 72px));
  padding: 28px 0;
}

.project-scope-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-scope-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: #111;
  font-size: 12px;
  line-height: 1;
}

.project-showcase {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  padding: 68px 0 96px;
}

.project-showcase-head {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 54px;
  margin-bottom: 30px;
  padding-top: 42px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.project-showcase-head h2 {
  max-width: 820px;
  margin: 0;
  color: #111;
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.project-screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-screen {
  margin: 0;
}

.project-screen a {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.07);
}

.project-screen img {
  display: block;
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  object-position: top center;
  transition: transform 320ms ease, filter 320ms ease;
}

.project-screen:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.018);
}

.project-screen-wide {
  grid-column: auto;
}

.project-screen-tall img {
  aspect-ratio: 1.28 / 1;
}

.project-screen figcaption {
  margin-top: 10px;
  color: #555a55;
  font-size: 13px;
  line-height: 1.3;
}

.project-more {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 54px;
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto 96px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.project-more div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project-more .text-link {
  margin-top: 0;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1440px, calc(100% - 72px));
  margin: 0 auto 28px;
  padding: 26px 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.project-footer div {
  display: flex;
  gap: 18px;
}

.project-footer a {
  color: #111;
  font-size: 13px;
}

.projects-page.reveal-ready .projects-hero,
.projects-page.reveal-ready .project-detail-hero,
.projects-page.reveal-ready .work-card,
.projects-page.reveal-ready .project-cover,
.projects-page.reveal-ready .project-section,
.projects-page.reveal-ready .project-showcase-head,
.projects-page.reveal-ready .project-screen,
.projects-page.reveal-ready .project-more,
.projects-page.reveal-ready .project-footer {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease var(--reveal-delay, 0ms),
    transform 520ms ease var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  .projects-page.reveal-ready .projects-hero,
  .projects-page.reveal-ready .project-detail-hero,
  .projects-page.reveal-ready .work-card,
  .projects-page.reveal-ready .project-cover,
  .projects-page.reveal-ready .project-section,
  .projects-page.reveal-ready .project-showcase-head,
  .projects-page.reveal-ready .project-screen,
  .projects-page.reveal-ready .project-more,
  .projects-page.reveal-ready .project-footer {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.project-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.brand-wall {
  padding: 40px 0 130px;
  text-align: center;
}

.brand-carousel {
  width: min(1220px, 100%);
  margin: 72px auto 0;
  padding: 6px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.brand-grid {
  display: flex;
  width: max-content;
  gap: 22px;
  align-items: center;
  animation: capabilityLoop 72s linear infinite;
}

.brand-grid span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: auto;
  min-height: 44px;
  padding: 12px 24px 12px 18px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  color: rgba(0, 0, 0, 0.82);
  font-size: 14px;
  font-weight: 560;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-grid span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.05);
  flex: 0 0 auto;
}

@keyframes capabilityLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 11px));
  }
}

.case-strip {
  padding: 70px 0 110px;
}

.case-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
  padding: 70px;
  background: #ececec;
}

.case-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.case-card p {
  width: min(560px, 100%);
  margin: 0 0 26px;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.02;
}

.case-card a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #0b0b0b;
  color: #fff;
  font-size: 14px;
}

.case-card a span {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 13px;
  height: 8px;
  border-radius: 0;
  background: transparent;
  flex: 0 0 auto;
}

.case-card a span::before {
  content: "";
  position: absolute;
  right: 1px;
  width: 5px;
  height: 5px;
  border-top: 1.4px solid currentColor;
  border-right: 1.4px solid currentColor;
  transform: rotate(45deg);
}

.case-card a span::after {
  content: "";
  position: absolute;
  right: 2px;
  width: 11px;
  height: 1.4px;
  background: currentColor;
  transform: none;
}

.about-services {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 120px;
  padding: 20px 0 115px;
}

.about-services h2 {
  margin: 0;
  width: auto;
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: 1;
  font-weight: 300;
}

.about-services p {
  width: min(560px, 100%);
  margin: 36px 0 0;
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.45;
}

.about-services ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-services li {
  margin-bottom: 20px;
  font-size: 23px;
  line-height: 1.14;
}

.about-services .text-link {
  grid-column: 2;
  justify-self: start;
  align-self: start;
  margin-top: -99px;
}

.image-band {
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0 0 120px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: carouselLoop 34s linear infinite;
  will-change: transform;
}

.carousel-track img {
  flex: 0 0 430px;
  width: 430px;
  height: 350px;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.92) contrast(0.98);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

@keyframes carouselLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.world-panel {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 118px 32px 120px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(222, 249, 223, 0.98) 0%, rgba(245, 255, 248, 0.96) 38%, rgba(221, 246, 255, 0.92) 100%),
    #f7fff8;
  color: var(--ink);
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04);
}

.world-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.world-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), transparent 20%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.62), transparent 28%);
  pointer-events: none;
}

.world-panel > * {
  position: relative;
  z-index: 1;
}

.world-content {
  display: grid;
  grid-template-columns: minmax(0, 65fr) minmax(0, 35fr);
  gap: 80px;
  align-items: start;
  width: min(var(--container), 100%);
  margin: 0 auto 76px;
  text-align: left;
}

.world-content h2 {
  width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.1vw, 70px);
  line-height: 0.92;
  font-weight: 300;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.world-content .kicker {
  align-self: start;
  grid-column: 1 / -1;
  width: max-content;
  margin-top: 40px;
  margin-bottom: -30px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(0, 0, 0, 0.62);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.world-content p {
  color: rgba(0, 0, 0, 0.62);
  font-size: 15px;
  line-height: 1.45;
}

.world-copy {
  justify-self: end;
  width: min(460px, 100%);
  text-align: right;
}

.world-copy p {
  margin: 8px 0 0;
}

.world-copy .text-link {
  margin-top: 26px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(var(--container), 100%);
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 34px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.08);
}

.location-grid article {
  min-height: 230px;
  padding: 28px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.52)),
    rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
}

.location-grid article span {
  display: block;
  margin-bottom: 54px;
  color: rgba(0, 0, 0, 0.35);
  font-size: 12px;
  font-weight: 500;
}

.location-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.location-grid p {
  margin: 0;
  color: rgba(0, 0, 0, 0.56);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.accordion {
  padding: 100px 0 140px;
}

.accordion details {
  border-top: 1px solid var(--line);
}

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

.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 0;
  cursor: pointer;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
  font-weight: 300;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion p {
  width: min(760px, 100%);
  margin: -12px 0 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.footer {
  padding: 96px 54px 28px;
  background: #050505;
  color: #fff;
}

.footer-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: min(var(--container), 100%);
  margin: 0 auto 120px;
}

.footer-hero h2 {
  margin: 0;
  width: min(620px, 100%);
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.footer-hero a {
  align-self: start;
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 17px;
  letter-spacing: -0.025em;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  width: min(var(--container), 100%);
  margin: 0 auto 80px;
}

.footer-grid h3 {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 520;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  letter-spacing: -0.025em;
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  letter-spacing: -0.025em;
}

.footer-bottom span:nth-child(1) {
  justify-self: start;
}

.footer-bottom span:nth-child(2) {
  justify-self: center;
}

.footer-bottom span:nth-child(3) {
  justify-self: end;
}

.capabilities-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.capabilities-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-panel {
  width: min(880px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(225, 255, 220, 0.85), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(215, 244, 255, 0.75), transparent 34%),
    #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.modal-panel h2 {
  margin: 0 0 30px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 0.98;
  font-weight: 300;
}

.modal-close {
  float: right;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  min-height: 44px;
  padding: 11px 18px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
}

.modal-capability-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 32px;
}

.modal-capability-grid span {
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  width: min(980px, 100%);
  max-height: min(780px, calc(100vh - 48px));
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 10%, rgba(222, 249, 223, 0.95), transparent 38%),
    radial-gradient(circle at 95% 92%, rgba(221, 246, 255, 0.92), transparent 38%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}

.contact-close {
  position: absolute;
  top: 26px;
  right: 26px;
  min-height: 42px;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
}

.contact-intro {
  align-self: end;
  padding-right: 12px;
}

.contact-intro .kicker {
  display: inline-flex;
  width: max-content;
  margin: 0 0 24px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: rgba(0, 0, 0, 0.62);
  font-size: 11px;
}

.contact-intro h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.96;
  font-weight: 300;
  letter-spacing: -0.06em;
}

.contact-intro p:last-child {
  width: min(300px, 100%);
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 62px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(0, 0, 0, 0.62);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.contact-form small {
  color: rgba(0, 0, 0, 0.42);
  font-size: 11px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 13px 15px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  outline: none;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  letter-spacing: -0.02em;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 128px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(0, 0, 0, 0.38);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}

.field-wide,
.contact-submit,
.form-note {
  grid-column: 1 / -1;
}

.contact-submit {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  margin-top: 6px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  background: #0b0b0b;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-note {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

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

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

@media (max-width: 900px) {
  :root {
    --page-gutter: 36px;
  }

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

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 3px 0;
    background: #000;
  }

  .nav-links,
  .nav-dot {
    display: none;
  }

  body.nav-open .nav-links {
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 24px 18px;
    background: #fff;
  }

  body.nav-open .nav-links a {
    padding: 12px 0;
  }

  .work-grid,
  .about-services,
  .case-card,
  .footer-hero,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .projects-nav,
  .projects-hero,
  .projects-list,
  .project-detail-hero,
  .project-section,
  .project-body,
  .project-showcase,
  .project-more,
  .project-footer {
    width: min(1240px, calc(100% - 36px));
  }

  .projects-nav {
    display: none;
  }

  .mobile-main-link {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 18px 0 0 18px;
    padding: 8px 13px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    color: #111;
    font-size: 12px;
    line-height: 1;
  }

  .projects-hero,
  .project-detail-hero {
    margin-top: 42px;
  }

  .projects-hero h1,
  .project-detail-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .projects-hero p,
  .project-detail-hero p {
    font-size: 15px;
  }

  .project-body {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .project-detail-hero,
  .project-split,
  .project-showcase-head,
  .project-more {
    grid-template-columns: 1fr;
  }

  .project-detail-hero {
    gap: 28px;
    margin-bottom: 54px;
  }

  .project-detail-hero img {
    max-width: 560px;
  }

  .project-section {
    padding: 36px 0;
  }

  .project-screen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-showcase-head {
    gap: 18px;
  }

  .project-screen-wide {
    grid-column: auto;
  }

  .project-screen img,
  .project-screen-tall img {
    aspect-ratio: 1.18 / 1;
  }

  .project-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .project-meta {
    position: static;
  }

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

  .project-next {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-services .text-link {
    grid-column: auto;
    margin-top: 0;
  }

  .carousel-track img {
    flex-basis: 320px;
    width: 320px;
  }

  .world-panel {
    padding: 88px 24px 90px;
  }

  .world-content {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 46px;
  }

  .world-content .kicker {
    grid-column: auto;
  }

  .world-copy {
    justify-self: start;
    text-align: left;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 24px;
  }

  .wrap,
  .panel {
    width: calc(100% - var(--page-gutter));
  }

  body {
    letter-spacing: -0.025em;
  }

  .hero {
    min-height: 70vh;
    min-height: 70svh;
    padding: 10px 8px 0;
  }

  .hero-bg span {
    background-attachment: scroll;
    background-position: center center;
  }

  .nav {
    width: calc(100% - 12px);
    height: 50px;
    padding: 0 18px 0 18px;
  }

  .brand {
    font-size: 16px;
  }

  .project-detail-hero,
  .project-section,
  .project-showcase,
  .project-more,
  .project-footer {
    width: calc(100% - 36px);
  }

  .project-detail-hero {
    margin-top: 48px;
  }

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

  .project-more div,
  .project-footer div {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    width: 30px;
    height: 30px;
    padding: 0;
    justify-self: end;
    border-radius: 50%;
  }

  .nav-toggle span {
    width: 17px;
    height: 1.5px;
    margin: 3px 0;
  }

  .hero-content {
    top: 52%;
    width: calc(100% - 24px);
  }

  .kicker {
    margin-bottom: 10px;
    font-size: 9px;
    line-height: 1.25;
  }

  .hero h1 {
    font-size: clamp(31px, 12vw, 44px);
    line-height: 0.96;
  }

  .hero-links {
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 22px;
  }

  .hero-links a {
    min-width: 92px;
    padding: 10px 12px;
    font-size: 11px;
  }

  .side-button {
    display: none;
  }

  .intro {
    padding: 74px 0 54px;
  }

  .intro h2 {
    font-size: clamp(31px, 11vw, 40px);
    line-height: 1;
  }

  .work-grid {
    gap: 34px;
    padding-bottom: 78px;
  }

  .work-card h3 {
    font-size: 16px;
  }

  .work-card p {
    font-size: 12px;
  }

  .work-card span {
    min-height: 26px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .brand-wall {
    padding: 56px 0 78px;
  }

  .brand-wall h2 {
    font-size: clamp(30px, 10vw, 38px);
  }

  .brand-carousel {
    margin-top: 34px;
  }

  .brand-grid {
    gap: 12px;
  }

  .brand-grid span {
    min-height: 36px;
    padding: 9px 16px 9px 13px;
    font-size: 12px;
  }

  .text-link {
    min-height: 36px;
    padding: 9px 14px 9px 16px;
    font-size: 12px;
  }

  .case-strip {
    padding: 56px 0 68px;
  }

  .case-card {
    padding: 18px;
    gap: 24px;
  }

  .case-card p {
    font-size: clamp(24px, 9vw, 32px);
  }

  .case-card a {
    min-height: 38px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .about-services {
    gap: 34px;
    padding: 22px 0 70px;
  }

  .about-services h2 {
    font-size: clamp(30px, 10vw, 38px);
  }

  .about-services p {
    margin-top: 24px;
    font-size: 13px;
  }

  .about-services li {
    margin-bottom: 13px;
    font-size: 18px;
  }

  .about-services .text-link {
    margin-top: 4px;
  }

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

  .image-band {
    padding-bottom: 70px;
  }

  .carousel-track img {
    flex-basis: 230px;
    width: 230px;
    height: 185px;
  }

  .world-panel {
    padding: 70px 14px 76px;
  }

  .world-content {
    gap: 22px;
  }

  .world-content .kicker {
    margin: 0;
    font-size: 10px;
  }

  .world-content h2 {
    font-size: clamp(34px, 11vw, 44px);
    letter-spacing: -0.055em;
  }

  .world-content p {
    font-size: 13px;
  }

  .world-copy .text-link {
    margin-top: 18px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .location-grid article {
    min-height: auto;
    padding: 22px;
  }

  .location-grid article span {
    margin-bottom: 28px;
  }

  .location-grid h3 {
    font-size: 21px;
  }

  .location-grid p {
    font-size: 13px;
  }

  .accordion {
    padding: 60px 0 76px;
  }

  .accordion summary {
    padding: 24px 0;
    font-size: 20px;
  }

  .accordion p {
    margin: -8px 0 24px;
    font-size: 13px;
  }

  .footer {
    padding: 58px 18px 20px;
  }

  .footer-hero {
    gap: 28px;
    margin-bottom: 56px;
  }

  .footer-hero h2 {
    font-size: clamp(28px, 10vw, 38px);
  }

  .footer-hero a {
    font-size: 12px;
    word-break: break-word;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 26px;
    margin-bottom: 46px;
  }

  .footer-grid h3 {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .footer-grid a {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .footer-bottom {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 14px 18px;
    border-radius: 999px;
    font-size: 9px;
    text-align: center;
  }

  .footer-bottom span:nth-child(1) {
    justify-self: start;
    text-align: left;
  }

  .footer-bottom span:nth-child(2) {
    justify-self: center;
    text-align: center;
  }

  .footer-bottom span:nth-child(3) {
    justify-self: end;
    text-align: right;
  }

  .modal-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .modal-panel h2 {
    font-size: 34px;
  }

  .modal-capability-grid {
    gap: 18px 16px;
  }

  .modal-capability-grid span {
    font-size: 12px;
  }

  .contact-modal {
    padding: 12px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    max-height: calc(100vh - 24px);
    padding: 22px;
    border-radius: 24px;
  }

  .contact-close {
    top: 18px;
    right: 18px;
    min-height: 36px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .contact-intro {
    padding-right: 78px;
  }

  .contact-intro .kicker {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .contact-intro h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .contact-intro p:last-child {
    margin-top: 16px;
    font-size: 13px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 0;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    min-height: 44px;
    border-radius: 16px;
    font-size: 13px;
  }

  .field-wide,
  .contact-submit,
  .form-note {
    grid-column: auto;
  }

  .contact-submit {
    min-height: 44px;
    padding: 11px 18px;
    font-size: 13px;
  }
}
