:root {
  --ivory: #f2f0ea;
  --ink: #111111;
  --navy: #061a2c;
  --cyan: #08c7c9;
  --green: #adf532;
  --line: rgba(17, 17, 17, 0.2);
  --sans: "Helvetica Neue", "Nimbus Sans L", Arial, sans-serif;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

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

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
}

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

.shell {
  width: min(100%, 1800px);
  margin-inline: auto;
  padding-inline: clamp(20px, 2.4vw, 40px);
}

.section-pad {
  padding-top: clamp(110px, 14vw, 240px);
  padding-bottom: clamp(110px, 14vw, 240px);
}

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

.display-italic,
em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--green);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 50%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  mix-blend-mode: difference;
  transform: translateX(-50%);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.wordmark {
  position: relative;
  font-size: clamp(1.28rem, 1.5vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.07em;
}

.wordmark > span,
.footer-word > span,
.case-hero h1 > span {
  color: var(--green);
}

.desktop-nav {
  display: flex;
  gap: clamp(22px, 2.4vw, 42px);
  align-items: center;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 450ms cubic-bezier(0.76, 0, 0.24, 1);
}

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

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 450ms cubic-bezier(0.76, 0, 0.24, 1);
}

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

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

.mobile-menu {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 110px 20px 26px;
  background: var(--navy);
  color: var(--ivory);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 700ms cubic-bezier(0.76, 0, 0.24, 1), visibility 700ms;
}

.mobile-menu.is-open {
  visibility: visible;
  clip-path: inset(0);
}

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

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-family: var(--serif);
  font-size: clamp(3.3rem, 16vw, 6.5rem);
  font-style: italic;
  line-height: 1;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 500ms ease, transform 700ms cubic-bezier(0.76, 0, 0.24, 1);
  transition-delay: calc(var(--i) * 60ms + 160ms);
}

.mobile-menu.is-open nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu nav a span {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.12em;
}

.mobile-menu-foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.intro {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
  pointer-events: none;
  animation: intro-exit 1.45s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.intro-mark {
  font-size: clamp(2rem, 5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  animation: intro-mark 1.1s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.intro-mark span {
  color: var(--green);
}

@keyframes intro-exit {
  0%, 58% { clip-path: inset(0); }
  100% { clip-path: inset(0 0 100% 0); visibility: hidden; }
}

@keyframes intro-mark {
  0% { opacity: 0; transform: scale(0.92); }
  35%, 65% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.08); }
}

.mask {
  display: block;
  overflow: hidden;
}

.mask > span {
  display: block;
  transform: translateY(110%);
  animation: reveal-text 900ms var(--delay) cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-up 700ms var(--delay) ease-out forwards;
}

.reveal-media {
  clip-path: inset(0 0 100% 0);
  animation: reveal-media 1s var(--delay) cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes reveal-text {
  to { transform: translateY(0); }
}

@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-media {
  to { clip-path: inset(0); }
}

.hero {
  position: relative;
  min-height: max(780px, 100svh);
  padding-top: 95px;
  padding-bottom: 34px;
  overflow: hidden;
}

.hero-kicker {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-title {
  position: relative;
  z-index: 2;
  margin: 11vh 0 0;
  font-size: clamp(5rem, 11.2vw, 12.5rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.hero-title-offset {
  margin-left: 14.5vw;
  padding-bottom: 0.12em;
}

.hero-title .display-italic {
  font-weight: 400;
  letter-spacing: -0.065em;
}

.hero-media {
  position: absolute;
  z-index: 1;
  top: 24%;
  right: 3vw;
  width: min(31vw, 540px);
  aspect-ratio: 1.25;
  overflow: hidden;
  background: #d9ecfa;
  clip-path: polygon(0 9%, 9% 0, 100% 0, 100% 91%, 91% 100%, 0 100%);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(17, 17, 17, 0.15);
  content: "";
  pointer-events: none;
}

.hero-media img {
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
}

.hero-media:hover img {
  transform: scale(1.025);
}

.hero-bottom {
  position: absolute;
  right: clamp(20px, 2.4vw, 40px);
  bottom: 34px;
  left: clamp(20px, 2.4vw, 40px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: end;
}

.hero-copy {
  grid-column: 1 / span 4;
  max-width: 440px;
  margin: 0;
  font-size: clamp(0.95rem, 1.15vw, 1.2rem);
  line-height: 1.55;
}

.hero-orbit {
  position: relative;
  grid-column: 11 / span 2;
  width: 112px;
  height: 112px;
  justify-self: end;
}

.hero-orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}

.hero-orbit-ring span {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 84px;
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-align: center;
  transform: translateX(-50%);
}

.hero-orbit-arrow {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

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

.statement {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
}

.statement > .eyebrow {
  grid-column: 1 / span 2;
}

.statement-title {
  grid-column: 3 / span 8;
  margin: -0.1em 0 0;
  font-size: clamp(3.5rem, 7.2vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.statement-title em {
  color: #087c80;
}

.statement-copy {
  grid-column: 9 / span 3;
  margin: clamp(70px, 10vw, 180px) 0 0;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.55;
}

.capabilities {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: clamp(22px, 2vw, 36px) 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 3.2vw;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.marquee-track span {
  display: flex;
  gap: 3.2vw;
  align-items: center;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 8.5rem);
  font-style: italic;
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.marquee-track i {
  color: #0f9994;
  font-family: var(--sans);
  font-size: 0.34em;
  font-style: normal;
}

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

.section-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: end;
  margin-bottom: clamp(70px, 10vw, 150px);
}

.section-head > div {
  grid-column: 1 / span 8;
}

.section-head .text-link {
  grid-column: 10 / span 3;
  justify-self: stretch;
}

.section-title {
  margin: 22px 0 0;
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.section-title em {
  color: #087c80;
}

.text-link {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span,
.cta-email span {
  transition: transform 350ms ease;
}

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

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(70px, 10vw, 170px) 18px;
  align-items: start;
}

.project-card {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0 18px;
}

.project-card-1,
.project-card-4 {
  grid-column: 1 / span 8;
}

.project-card-2 {
  grid-column: 8 / span 5;
  margin-top: 18vw;
}

.project-card-3 {
  grid-column: 2 / span 5;
}

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

.project-media {
  position: relative;
  grid-column: 1 / -1;
  aspect-ratio: 1.45;
  overflow: hidden;
  background: var(--navy);
}

.project-card-2 .project-media,
.project-card-3 .project-media {
  aspect-ratio: 0.86;
}

.project-media img,
.case-image img,
.case-frame img {
  object-fit: cover;
  transform: scale(1.045);
  transition: transform 850ms cubic-bezier(0.76, 0, 0.24, 1), filter 850ms ease;
}

.project-media:hover img,
.project-media:focus-visible img {
  transform: scale(1.085);
}

.tone-light { background: #dcecf8; }
.tone-dark { background: #222; }
.tone-tech { background: #061f33; }
.tone-glow { background: #030806; }

.project-index {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--ink);
  font-size: 0.63rem;
  font-weight: 700;
}

.project-meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 2fr 3fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 16px 0 12px;
  border-bottom: 1px solid var(--line);
}

.project-meta h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.project-meta p,
.project-meta > span {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-statement {
  grid-column: 3 / span 4;
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.55rem);
  font-style: italic;
  line-height: 1.25;
}

.services-section {
  background: var(--navy);
}

.section-head.inverted .section-title em {
  color: var(--green);
}

.section-intro {
  grid-column: 10 / span 3;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 1.8rem);
  font-style: italic;
  line-height: 1.2;
}

.service-list {
  border-top: 1px solid rgba(255,255,255,0.3);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 4fr 4fr auto;
  gap: 18px;
  align-items: baseline;
  min-height: 130px;
  padding: 30px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  outline: none;
  transition: color 400ms ease, padding 500ms cubic-bezier(0.76, 0, 0.24, 1);
}

.service-row::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--green);
  content: "";
  transform: translateY(101%);
  transition: transform 500ms cubic-bezier(0.76, 0, 0.24, 1);
}

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

.service-row:hover,
.service-row:focus-visible {
  color: var(--ink);
  padding-inline: 18px;
}

.service-row:hover::before,
.service-row:focus-visible::before {
  transform: translateY(0);
}

.service-number {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.service-row > p {
  max-width: 430px;
  margin: 0;
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
}

.service-plus {
  font-size: 1.8rem;
  transition: transform 450ms ease;
}

.service-row:hover .service-plus,
.service-row:focus-visible .service-plus {
  transform: rotate(45deg);
}

.service-detail {
  grid-column: 2 / span 3;
  display: flex;
  gap: 16px 28px;
  max-height: 0;
  flex-wrap: wrap;
  overflow: hidden;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0;
  text-transform: uppercase;
  transition: max-height 500ms ease, opacity 400ms ease, padding 500ms ease;
}

.service-row:hover .service-detail,
.service-row:focus-visible .service-detail {
  max-height: 80px;
  padding-top: 22px;
  opacity: 1;
}

.process-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.process-visual {
  grid-column: 1 / span 6;
}

.process-sticky {
  position: sticky;
  top: 110px;
}

.living-form {
  position: relative;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  margin-top: 35px;
}

.living-form svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: breathe 7s ease-in-out infinite;
}

.living-line {
  fill: none;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.living-line-one {
  stroke: var(--ink);
  stroke-dasharray: 12 8;
  animation: line-flow 18s linear infinite;
}

.living-line-two {
  stroke: #069999;
  stroke-dasharray: 4 5;
  animation: line-flow 13s linear infinite reverse;
}

.living-line-three {
  fill: rgba(173,245,50,0.12);
  stroke: var(--green);
}

.living-form-glow {
  position: absolute;
  z-index: 0;
  top: 25%;
  left: 23%;
  width: 54%;
  height: 54%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(173,245,50,0.42), rgba(8,199,201,0.18) 38%, transparent 70%);
  filter: blur(22px);
  animation: pulse-glow 5s ease-in-out infinite;
}

.living-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 30px 12px rgba(173,245,50,0.28);
  transform: translate(-50%, -50%);
}

@keyframes line-flow {
  to { stroke-dashoffset: -200; }
}

@keyframes breathe {
  0%, 100% { transform: scale(0.97) rotate(-1deg); }
  50% { transform: scale(1.025) rotate(1deg); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.55; transform: scale(0.88); }
  50% { opacity: 1; transform: scale(1.08); }
}

.process-copy {
  grid-column: 7 / span 6;
}

.process-copy .section-title {
  margin-top: 0;
  margin-bottom: 90px;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 5fr;
  gap: 18px;
  min-height: 270px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.process-step > span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 6rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.process-step p {
  max-width: 460px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.brand-moment {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-content: center;
  overflow: hidden;
  padding: 7vw 3vw;
  background: var(--navy);
}

.brand-moment p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(4.4rem, 11vw, 13rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.72;
  text-transform: uppercase;
}

.brand-moment p:nth-of-type(2),
.brand-moment p:nth-of-type(4) {
  margin-left: 22vw;
  color: var(--green);
  font-weight: 400;
  text-transform: none;
}

.brand-moment-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(72vw, 1000px);
  aspect-ratio: 1;
  border: 1px solid rgba(173,245,50,0.25);
  border-radius: 50%;
  box-shadow: 0 0 160px 60px rgba(8,199,201,0.18) inset, 0 0 220px rgba(173,245,50,0.12);
  transform: translate(-50%, -50%);
  animation: breathe 9s ease-in-out infinite;
}

.studio-preview > .eyebrow {
  margin-bottom: 50px;
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.studio-grid h2 {
  grid-column: 1 / span 9;
  margin: 0;
  font-size: clamp(3.2rem, 6.6vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.studio-grid h2 em {
  color: #087c80;
}

.studio-grid > div {
  grid-column: 9 / span 4;
  margin-top: 120px;
}

.studio-grid > div > p {
  margin: 0 0 44px;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.6;
}

.final-cta {
  display: grid;
  min-height: 94svh;
  align-content: center;
  background: var(--ink);
}

.final-cta h2 {
  margin: 40px 0 70px;
  font-size: clamp(5rem, 12vw, 14rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.final-cta h2 em {
  color: var(--green);
}

.cta-email {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  font-size: clamp(1rem, 2vw, 2rem);
}

.site-footer {
  padding: 90px 0 26px;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.22);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding-bottom: 100px;
}

.footer-top > div:first-child {
  grid-column: 1 / span 5;
}

.footer-top nav {
  grid-column: 8 / span 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
}

.footer-services {
  grid-column: 10 / span 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
}

.footer-email {
  display: inline-block;
  margin: 26px 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 4rem);
  font-style: italic;
  line-height: 1;
}

.footer-top p:last-child {
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
}

.footer-word {
  overflow: hidden;
  font-size: clamp(5rem, 15.5vw, 18rem);
  font-weight: 800;
  letter-spacing: -0.095em;
  line-height: 0.68;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.custom-cursor {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  display: grid;
  width: 9px;
  height: 9px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
  transition: width 350ms cubic-bezier(0.76, 0, 0.24, 1), height 350ms cubic-bezier(0.76, 0, 0.24, 1), opacity 250ms ease;
}

.custom-cursor.is-visible {
  opacity: 1;
}

.custom-cursor.is-active {
  width: 82px;
  height: 82px;
  margin: -36px 0 0 -36px;
}

.custom-cursor span {
  max-width: 60px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.subpage {
  padding-top: 1px;
}

.page-hero {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  min-height: 92svh;
  align-content: end;
  padding-bottom: 50px;
}

.page-hero .eyebrow {
  grid-column: 1 / span 3;
  margin-bottom: 24px;
}

.page-hero h1 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: clamp(6.5rem, 18vw, 22rem);
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.66;
}

.studio-page .page-hero h1 {
  font-size: clamp(5rem, 11vw, 14rem);
  line-height: 0.8;
}

.page-hero > p:last-child {
  grid-column: 9 / span 4;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  font-style: italic;
  line-height: 1.25;
}

.work-archive {
  padding-top: 65px;
  padding-bottom: 180px;
  border-top: 1px solid var(--line);
}

.archive-filters {
  display: flex;
  gap: 10px 28px;
  margin-bottom: 100px;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.archive-filters span:first-child {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
}

.project-grid-archive .project-card:nth-child(4n+2) {
  margin-top: 12vw;
}

.case-hero {
  min-height: 92svh;
  padding-top: 140px;
  padding-bottom: 60px;
}

.case-hero h1 {
  margin: 13vh 0 30px;
  font-size: clamp(6rem, 16vw, 20rem);
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.68;
}

.case-intro {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: start;
}

.case-intro > p {
  grid-column: 1 / span 6;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 4rem);
  font-style: italic;
  line-height: 1.1;
}

.case-intro dl {
  grid-column: 9 / span 4;
  margin: 0;
  border-top: 1px solid var(--line);
}

.case-intro dl div {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
}

.case-intro dt {
  color: rgba(17,17,17,0.58);
}

.case-intro dd {
  margin: 0;
}

.case-image {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.case-story {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.case-story .eyebrow {
  grid-column: 1 / span 2;
}

.case-story h2 {
  grid-column: 3 / span 8;
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.case-story > p:last-child {
  grid-column: 9 / span 3;
  margin: 90px 0 0;
  line-height: 1.6;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12vw 18px;
  padding-bottom: 15vw;
}

.case-frame {
  position: relative;
  grid-column: 1 / span 10;
  aspect-ratio: 1.5;
  overflow: hidden;
}

.case-frame-small {
  grid-column: 7 / span 6;
  aspect-ratio: 0.95;
}

.case-quote {
  grid-column: 2 / span 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(2rem, 5vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.06em;
}

.case-quote em {
  color: #087c80;
}

.next-project {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 72svh;
  padding: 7vw 3vw;
  background: var(--navy);
}

.next-project .eyebrow {
  grid-column: 1 / -1;
}

.next-project strong {
  font-size: clamp(5rem, 14vw, 17rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.next-project > span:last-child {
  font-size: clamp(3rem, 7vw, 8rem);
}

.studio-manifesto {
  background: var(--navy);
}

.studio-manifesto h2 {
  max-width: 1500px;
  margin: 55px 0 0;
  font-size: clamp(3.5rem, 7.5vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.studio-manifesto h2 em {
  color: var(--green);
}

.studio-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.studio-values article {
  min-height: 430px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.studio-values article > span,
.studio-process article > span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.studio-values h2 {
  margin: 100px 0 22px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 5rem);
  font-style: italic;
  font-weight: 400;
}

.studio-values p {
  max-width: 290px;
  margin: 0;
  line-height: 1.6;
}

.studio-capabilities {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.studio-capabilities > .eyebrow {
  grid-column: 1 / span 2;
}

.studio-capabilities > div {
  grid-column: 3 / -1;
}

.studio-capabilities article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.studio-capabilities article:last-child {
  border-bottom: 1px solid var(--line);
}

.studio-capabilities h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.studio-capabilities p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.studio-process {
  border-top: 1px solid var(--line);
}

.studio-process > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 70px;
}

.studio-process article {
  min-height: 330px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.studio-process article:last-child {
  border-right: 0;
}

.studio-process h2 {
  margin: 80px 0 20px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 5rem);
  font-style: italic;
  font-weight: 400;
}

.studio-process p {
  margin: 0;
  line-height: 1.6;
}

.studio-contact {
  display: grid;
  min-height: 85svh;
  align-content: center;
  background: var(--ink);
}

.studio-contact > p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-contact h2 {
  max-width: 1400px;
  margin: 40px 0 90px;
  font-size: clamp(3.8rem, 8.5vw, 10rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.studio-contact h2 em {
  color: var(--green);
}

.studio-contact .text-link {
  max-width: 420px;
}

.contact-page {
  min-height: 100svh;
  padding-top: 1px;
  background: var(--navy);
}

.contact-inner {
  display: grid;
  min-height: 100svh;
  align-content: end;
  padding-top: 130px;
  padding-bottom: 45px;
}

.contact-inner h1 {
  margin: 7vh 0 8vh;
  font-size: clamp(4.8rem, 11.8vw, 14rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.contact-inner h1 em {
  color: var(--green);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-bottom: 70px;
}

.contact-details > div:first-child {
  grid-column: 1 / span 5;
}

.contact-details > div:last-child {
  grid-column: 8 / span 4;
}

.contact-details span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.5);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details a {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 4.5rem);
  font-style: italic;
}

.contact-details p {
  max-width: 370px;
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
}

.contact-line {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  font-size: clamp(1.2rem, 2vw, 2.4rem);
}

.not-found {
  display: grid;
  min-height: 95svh;
  align-content: center;
}

.not-found h1 {
  margin: 45px 0 80px;
  font-size: clamp(4.5rem, 10vw, 12rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.85;
}

.not-found .text-link {
  max-width: 380px;
}

/* Premium interaction layer */
.site-header {
  isolation: isolate;
  color: var(--ivory);
  mix-blend-mode: normal;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(6,26,44,0.9);
  backdrop-filter: blur(14px);
  content: "";
  transform: translateX(-50%);
}

.header-logo {
  position: relative;
  display: block;
  width: 152px;
  height: 70px;
  overflow: hidden;
}

.header-logo img {
  position: absolute;
  top: -49px;
  left: -54px;
  width: 260px;
  max-width: none;
  height: auto;
}

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 12px rgba(173,245,50,0.7);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-noise {
  position: fixed;
  z-index: 140;
  inset: 0;
  opacity: 0.025;
  background-image:
    repeating-radial-gradient(circle at 17% 29%, rgba(0,0,0,0.9) 0 0.35px, transparent 0.45px 3px),
    repeating-radial-gradient(circle at 71% 63%, rgba(255,255,255,0.7) 0 0.3px, transparent 0.45px 4px);
  background-size: 7px 7px, 9px 9px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.mobile-menu-foot > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-phone,
.footer-whatsapp {
  display: block;
  width: max-content;
  margin-bottom: 7px;
  font-size: 0.82rem;
}

.footer-phone {
  margin-top: -3px;
}

.footer-whatsapp {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  z-index: 70;
  right: 22px;
  bottom: 20px;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 9px;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid rgba(17,17,17,0.16);
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 350ms cubic-bezier(0.76, 0, 0.24, 1), background 300ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: var(--cyan);
  transform: translateY(-4px);
}

.whatsapp-float span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 800;
}

.whatsapp-float i {
  font-style: normal;
}

.work-section {
  padding-bottom: clamp(100px, 11vw, 180px);
}

.work-section-head {
  align-items: stretch;
  margin-bottom: clamp(45px, 5.5vw, 85px);
}

.work-section-head > div {
  grid-column: 1 / span 8;
}

.work-side {
  grid-column: 10 / span 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 55px;
}

.section-head .work-side .text-link {
  grid-column: auto;
}

.work-index {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.work-index strong {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 6rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.7;
}

.work-index p {
  margin: 0;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-align: right;
  text-transform: uppercase;
}

.work-flowline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: clamp(36px, 4vw, 64px);
  padding: 12px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: clamp(0.8rem, 1.25vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-flowline span:nth-of-type(2) {
  text-align: center;
}

.work-flowline span:last-child {
  text-align: right;
}

.work-flowline i {
  color: #087c80;
  font-style: normal;
}

.project-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(18px, 2.6vw, 46px);
  align-items: start;
}

.project-column {
  display: flex;
  flex-direction: column;
  gap: clamp(44px, 5vw, 82px);
}

.project-columns .project-card,
.project-columns .project-card-1,
.project-columns .project-card-2,
.project-columns .project-card-3,
.project-columns .project-card-4 {
  display: grid;
  width: 100%;
  margin: 0;
}

.project-columns .project-media {
  aspect-ratio: 1.28;
}

.project-columns .project-column:last-child .project-media {
  aspect-ratio: 1.02;
}

.project-media::before {
  position: absolute;
  z-index: 2;
  top: -40%;
  left: -75%;
  width: 52%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-18deg);
  transition: left 950ms cubic-bezier(0.76, 0, 0.24, 1);
}

.project-media::after {
  position: absolute;
  z-index: 1;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(1,8,12,0.45));
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 550ms ease;
}

.project-media:hover::before,
.project-media:focus-visible::before {
  left: 130%;
}

.project-media:hover::after,
.project-media:focus-visible::after {
  opacity: 1;
}

.project-hover-title {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 42px;
  left: 18px;
  color: white;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.4vw, 5.8rem);
  font-style: italic;
  letter-spacing: -0.06em;
  line-height: 0.8;
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 450ms ease, transform 650ms cubic-bezier(0.76, 0, 0.24, 1);
}

.project-media:hover .project-hover-title,
.project-media:focus-visible .project-hover-title {
  opacity: 1;
  transform: translateY(0);
}

.project-media-info {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 15px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(12px);
  transition: opacity 400ms 80ms ease, transform 500ms 80ms ease;
}

.project-media:hover .project-media-info,
.project-media:focus-visible .project-media-info {
  opacity: 1;
  transform: translateY(0);
}

.project-columns .project-statement {
  grid-column: 2 / span 5;
  width: auto;
  margin-top: 14px;
}

.work-page-hero {
  min-height: 82svh;
}

.work-page-hero h1 {
  line-height: 0.58;
}

.work-hero-bottom {
  grid-column: 7 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  margin-top: 22px;
}

.work-hero-bottom > p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 2.25rem);
  font-style: italic;
  line-height: 1.2;
}

.work-hero-bottom dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.work-hero-bottom dl div {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.64rem;
  letter-spacing: 0.05em;
}

.work-hero-bottom dd {
  margin: 0;
}

.work-reel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: clamp(280px, 38vw, 600px);
  overflow: hidden;
  background: var(--navy);
}

.work-reel-item {
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.work-reel-item:last-child {
  border-right: 0;
}

.work-reel-item img {
  object-fit: cover;
  filter: saturate(0.72) brightness(0.82);
  transform: scale(1.04);
  transition: filter 650ms ease, transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
}

.work-reel-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgba(0,0,0,0.62));
  content: "";
}

.work-reel-item:hover img,
.work-reel-item:focus-visible img {
  filter: saturate(1.1) brightness(1);
  transform: scale(1.1);
}

.work-reel-item > span {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  left: 14px;
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-manifesto {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 25px;
  align-items: center;
  padding: 26px clamp(20px, 2.4vw, 40px);
  overflow: hidden;
  background: var(--green);
  color: var(--ink);
  font-size: clamp(1.1rem, 2.4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.work-manifesto span:nth-of-type(2) {
  text-align: center;
}

.work-manifesto span:last-child {
  text-align: right;
}

.work-manifesto i {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.work-archive {
  padding-top: clamp(70px, 8vw, 125px);
  padding-bottom: clamp(110px, 12vw, 190px);
}

.archive-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: clamp(60px, 7vw, 110px);
}

.archive-head .archive-filters {
  grid-column: 1 / span 6;
  margin: 0;
}

.archive-head > p {
  grid-column: 9 / span 4;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.35vw, 1.45rem);
  font-style: italic;
  line-height: 1.35;
}

.clients-section {
  overflow: hidden;
  padding-bottom: clamp(80px, 10vw, 150px);
  border-top: 1px solid var(--line);
}

.clients-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 75px;
}

.clients-head .eyebrow {
  grid-column: 1 / span 2;
  align-self: start;
}

.clients-head h2 {
  grid-column: 3 / span 7;
  margin: 0;
  font-size: clamp(3.8rem, 7.5vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.clients-head h2 em {
  color: #087c80;
}

.clients-head > p:last-child {
  grid-column: 10 / span 3;
  margin: 0;
  line-height: 1.55;
}

.clients-ribbon {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.clients-ribbon > div {
  display: flex;
  width: max-content;
  animation: client-marquee 34s linear infinite;
}

.clients-ribbon span {
  display: flex;
  gap: 34px;
  align-items: center;
  padding: 23px 17px 24px;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 4.6rem);
  font-style: italic;
}

.clients-ribbon i {
  color: #087c80;
  font-family: var(--sans);
  font-size: 0.27em;
  font-style: normal;
}

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

.testimonials-section {
  background: var(--navy);
}

.testimonials-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-bottom: clamp(65px, 8vw, 125px);
}

.testimonials-head .eyebrow {
  grid-column: 1 / span 2;
}

.testimonials-head h2 {
  grid-column: 3 / span 9;
  margin: 0;
  font-size: clamp(3.4rem, 6.5vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.testimonials-head h2 em {
  color: var(--green);
}

.testimonial-list {
  border-top: 1px solid rgba(255,255,255,0.28);
}

.testimonial-list blockquote {
  display: grid;
  grid-template-columns: 1fr 7fr 3fr;
  gap: 18px;
  align-items: start;
  margin: 0;
  padding: clamp(28px, 3.4vw, 55px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.28);
}

.testimonial-list blockquote > span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.testimonial-list blockquote > p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3.8rem);
  font-style: italic;
  line-height: 1.12;
}

.testimonial-list footer {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.69rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonial-list footer span {
  color: rgba(255,255,255,0.55);
}

.blog-section-head {
  margin-bottom: clamp(55px, 7vw, 105px);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.article-card {
  grid-column: span 4;
}

.article-card:nth-child(2) {
  margin-top: clamp(35px, 5vw, 80px);
}

.article-image {
  position: relative;
  display: block;
  aspect-ratio: 1.08;
  overflow: hidden;
  background: var(--navy);
}

.article-image img,
.featured-article-image img,
.blog-list-image img,
.article-hero-image img {
  object-fit: cover;
  transition: transform 850ms cubic-bezier(0.76, 0, 0.24, 1), filter 650ms ease;
}

.article-image:hover img,
.article-image:focus-visible img,
.featured-article-image:hover img,
.featured-article-image:focus-visible img {
  filter: saturate(1.1);
  transform: scale(1.055);
}

.article-image > span {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory);
  font-size: 0.6rem;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 3.2rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.cta-whatsapp {
  width: max-content;
  margin-top: 22px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-hero {
  min-height: 82svh;
}

.blog-hero-bottom {
  grid-column: 7 / -1;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-top: 24px;
}

.blog-hero-bottom p {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2.25rem);
  font-style: italic;
  line-height: 1.2;
}

.blog-hero-bottom > span {
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.featured-article {
  display: grid;
  grid-template-columns: 7fr 5fr;
  min-height: 78svh;
  background: var(--navy);
}

.featured-article-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.featured-article-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(45px, 6vw, 110px);
}

.featured-article-copy .article-meta {
  border-color: rgba(255,255,255,0.28);
}

.featured-article-copy h2 {
  margin: 55px 0 30px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.4vw, 7rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.featured-article-copy > p {
  max-width: 480px;
  margin: 0 0 60px;
  line-height: 1.6;
}

.blog-index {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.blog-index-head {
  grid-column: 1 / span 4;
}

.blog-index-head h2 {
  margin: 50px 0 0;
  font-size: clamp(3.2rem, 5.5vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.blog-index-head h2 em {
  color: #087c80;
}

.blog-list {
  grid-column: 5 / -1;
  border-top: 1px solid var(--line);
}

.blog-list article {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 2fr 5fr auto;
  gap: 18px;
  align-items: center;
  min-height: 180px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.blog-list-index {
  font-size: 0.64rem;
  letter-spacing: 0.1em;
}

.blog-list .article-meta {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border: 0;
}

.blog-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.8rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.blog-list-image {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 60px;
  width: min(20vw, 330px);
  aspect-ratio: 1.35;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-45%) rotate(2deg) scale(0.92);
  transition: opacity 350ms ease, transform 550ms cubic-bezier(0.76, 0, 0.24, 1);
}

.blog-list article:hover .blog-list-image,
.blog-list article:focus-within .blog-list-image {
  opacity: 1;
  transform: translateY(-50%) rotate(-2deg) scale(1);
}

.blog-list-arrow {
  font-size: 1.4rem;
}

.article-hero {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  min-height: 92svh;
  align-content: end;
  padding-top: 130px;
  padding-bottom: 65px;
}

.article-hero .article-meta {
  grid-column: 1 / span 3;
  border: 0;
}

.article-hero h1 {
  grid-column: 1 / span 10;
  margin: 12vh 0 45px;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 9vw, 11rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.87;
}

.article-hero > p {
  grid-column: 8 / span 5;
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.4rem);
  line-height: 1.55;
}

.article-hero-image {
  position: relative;
  height: 88svh;
  overflow: hidden;
  background: var(--navy);
}

.article-body {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.article-body aside {
  grid-column: 1 / span 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.article-body > div {
  grid-column: 4 / span 7;
}

.article-body p {
  margin: 0 0 42px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.9rem);
  line-height: 1.35;
}

.dropcap {
  float: left;
  margin: -0.14em 0.12em 0 0;
  color: #087c80;
  font-size: 4.2em;
  line-height: 0.9;
}

.article-body blockquote {
  margin: 90px 0 0;
  padding: 35px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.next-article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  min-height: 68svh;
  align-content: center;
  align-items: end;
  padding: 7vw 3vw;
  background: var(--navy);
}

.next-article .eyebrow {
  grid-column: 1 / -1;
}

.next-article strong {
  max-width: 1300px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 8.5rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.next-article > span:last-child {
  font-size: clamp(2rem, 5vw, 6rem);
}

.contact-details > div:first-child {
  grid-column: 1 / span 4;
}

.contact-details > div:nth-child(2) {
  grid-column: 5 / span 4;
}

.contact-details > div:last-child {
  grid-column: 9 / span 4;
}

.contact-details a {
  font-size: clamp(1.35rem, 2.35vw, 3.1rem);
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-line-whatsapp {
  color: var(--green);
}

.custom-cursor i {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(173,245,50,0.55);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 300ms ease, transform 500ms cubic-bezier(0.76, 0, 0.24, 1);
}

.custom-cursor.is-active i {
  opacity: 1;
  transform: scale(1);
}

@supports (animation-timeline: view()) {
  .project-card,
  .service-row,
  .process-step,
  .article-card,
  .testimonial-list blockquote {
    animation: content-enter linear both;
    animation-timeline: view();
    animation-range: entry 4% cover 24%;
  }
}

@keyframes content-enter {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (pointer: fine) {
  a,
  button,
  [data-cursor] {
    cursor: none;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .hero-title {
    margin-top: 17vh;
    font-size: clamp(5rem, 13vw, 8rem);
  }

  .hero-media {
    top: 43%;
    width: 40vw;
  }

  .statement-title {
    grid-column: 3 / -1;
  }

  .project-card-1,
  .project-card-4 {
    grid-column: 1 / span 9;
  }

  .project-card-2 {
    grid-column: 7 / span 6;
  }

  .project-card-3 {
    grid-column: 1 / span 6;
  }

  .service-row {
    grid-template-columns: 1fr 4fr 5fr auto;
  }

  .studio-values,
  .studio-process > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .studio-values article {
    min-height: 340px;
  }

  .studio-process article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .shell {
    padding-inline: 18px;
  }

  .section-pad {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .site-header {
    height: 64px;
  }

  .wordmark {
    font-size: 1.35rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: 78px;
    padding-bottom: 18px;
  }

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

  .hero-title {
    margin-top: 11vh;
    font-size: clamp(4.15rem, 20vw, 6.7rem);
    line-height: 0.82;
  }

  .hero-title-offset {
    margin-left: 0;
  }

  .hero-media {
    top: auto;
    right: 18px;
    bottom: 22%;
    width: 55vw;
    max-width: 320px;
  }

  .hero-bottom {
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

  .hero-copy {
    width: 70%;
    font-size: 0.86rem;
  }

  .hero-orbit {
    width: 72px;
    height: 72px;
  }

  .hero-orbit-ring span {
    display: none;
  }

  .statement {
    display: block;
  }

  .statement-title {
    margin: 55px 0 0;
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .statement-copy {
    width: 78%;
    margin: 70px 0 0 auto;
  }

  .marquee-track span {
    font-size: 3.5rem;
  }

  .section-head {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 70px;
  }

  .section-head .text-link {
    width: 100%;
    margin-top: 35px;
  }

  .section-title {
    font-size: clamp(3.7rem, 16vw, 5.5rem);
  }

  .project-grid {
    display: block;
  }

  .project-card,
  .project-card-1,
  .project-card-2,
  .project-card-3,
  .project-card-4 {
    display: block;
    margin: 0 0 82px;
  }

  .project-card-2 .project-media,
  .project-card-3 .project-media {
    aspect-ratio: 1.1;
  }

  .project-meta {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .project-meta h3 {
    font-size: 2rem;
  }

  .project-meta p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 8px;
  }

  .project-statement {
    width: 82%;
    margin-left: auto;
  }

  .section-intro {
    max-width: 260px;
    margin: 36px 0 0 auto;
  }

  .service-row {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    min-height: 0;
    padding: 24px 0;
  }

  .service-row h3 {
    font-size: 2.5rem;
  }

  .service-row > p {
    grid-column: 2 / -1;
    margin-top: 22px;
  }

  .service-detail {
    grid-column: 2 / -1;
  }

  .process-section {
    display: block;
  }

  .process-sticky {
    position: relative;
    top: auto;
  }

  .living-form {
    width: 100%;
    max-width: 430px;
    margin: 25px auto 65px;
  }

  .process-copy .section-title {
    margin-bottom: 70px;
  }

  .process-step {
    min-height: 235px;
  }

  .brand-moment {
    min-height: 76svh;
    padding-inline: 18px;
  }

  .brand-moment p {
    font-size: clamp(3.7rem, 17vw, 6rem);
    line-height: 0.82;
  }

  .brand-moment p:nth-of-type(2),
  .brand-moment p:nth-of-type(4) {
    margin-left: 14vw;
  }

  .studio-grid {
    display: block;
  }

  .studio-grid h2 {
    font-size: clamp(3rem, 13.5vw, 4.8rem);
  }

  .studio-grid > div {
    width: 82%;
    margin: 80px 0 0 auto;
  }

  .final-cta {
    min-height: 82svh;
  }

  .final-cta h2 {
    margin: 35px 0 65px;
    font-size: clamp(4.2rem, 19vw, 6.5rem);
    line-height: 0.78;
  }

  .cta-email {
    font-size: 0.95rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 60px 20px;
    padding-bottom: 80px;
  }

  .footer-top > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-top nav,
  .footer-services {
    grid-column: auto;
  }

  .footer-email {
    font-size: 1.8rem;
  }

  .footer-word {
    font-size: 20vw;
  }

  .footer-bottom {
    align-items: flex-end;
    gap: 20px;
  }

  .footer-bottom span:last-child {
    max-width: 130px;
    text-align: right;
  }

  .custom-cursor {
    display: none;
  }

  .page-hero {
    display: block;
    min-height: 82svh;
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .page-hero h1 {
    margin-top: 30vh;
    font-size: 31vw;
  }

  .studio-page .page-hero h1 {
    margin-top: 20vh;
    font-size: 16vw;
  }

  .page-hero > p:last-child {
    width: 78%;
    margin: 60px 0 0 auto;
  }

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

  .archive-filters {
    gap: 10px 18px;
    overflow-x: auto;
    margin-bottom: 65px;
    white-space: nowrap;
  }

  .case-hero {
    min-height: 90svh;
    padding-top: 110px;
  }

  .case-hero h1 {
    margin: 20vh 0 55px;
    font-size: 22vw;
  }

  .case-intro {
    display: block;
  }

  .case-intro > p {
    margin-bottom: 55px;
    font-size: 1.75rem;
  }

  .case-image {
    height: 70svh;
  }

  .case-story {
    display: block;
  }

  .case-story h2 {
    margin: 45px 0 70px;
    font-size: 3.3rem;
  }

  .case-story > p:last-child {
    width: 78%;
    margin: 0 0 0 auto;
  }

  .case-gallery {
    display: block;
    padding-bottom: 100px;
  }

  .case-frame {
    aspect-ratio: 1.1;
    margin-bottom: 90px;
  }

  .case-frame-small {
    width: 75%;
    margin: 90px 0 0 auto;
    aspect-ratio: 0.9;
  }

  .case-quote {
    gap: 8px;
    font-size: 7vw;
  }

  .next-project {
    min-height: 58svh;
    padding-inline: 18px;
  }

  .next-project strong {
    font-size: 20vw;
  }

  .studio-manifesto h2 {
    margin-top: 45px;
    font-size: 3.3rem;
  }

  .studio-values,
  .studio-process > div {
    grid-template-columns: 1fr;
  }

  .studio-values {
    gap: 60px;
  }

  .studio-values article {
    min-height: 0;
  }

  .studio-values h2 {
    margin-top: 60px;
  }

  .studio-capabilities {
    display: block;
  }

  .studio-capabilities > .eyebrow {
    margin-bottom: 65px;
  }

  .studio-capabilities article {
    display: block;
  }

  .studio-capabilities h2 {
    margin-bottom: 16px;
  }

  .studio-process article {
    min-height: 290px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .studio-contact {
    min-height: 75svh;
  }

  .studio-contact h2 {
    font-size: 3.8rem;
  }

  .contact-inner {
    min-height: 95svh;
    padding-top: 110px;
  }

  .contact-inner h1 {
    margin: 12vh 0 10vh;
    font-size: 17vw;
  }

  .contact-details {
    display: block;
  }

  .contact-details > div {
    margin-bottom: 44px;
  }

  .contact-details a {
    font-size: 1.75rem;
  }
}

/* Visible portfolio photography */
.portfolio-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.35vw, 22px);
  margin-top: clamp(44px, 6vw, 88px);
}

.portfolio-visual-card {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1.414;
  overflow: hidden;
  border-radius: 16px;
  background: var(--navy);
  box-shadow: 0 18px 55px rgba(6, 31, 51, 0.1);
}

.portfolio-visual-card::after {
  position: absolute;
  z-index: 1;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(2, 12, 20, 0.82));
  content: "";
  transition: opacity 450ms ease;
}

.portfolio-visual-card img {
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1.01);
  transition: filter 650ms ease, transform 850ms cubic-bezier(0.76, 0, 0.24, 1);
}

.portfolio-visual-card:hover img,
.portfolio-visual-card:focus-visible img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.055);
}

.portfolio-visual-number,
.portfolio-visual-card > i,
.portfolio-visual-caption {
  position: absolute;
  z-index: 2;
  color: #fff;
}

.portfolio-visual-number {
  top: 14px;
  left: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(4, 19, 31, 0.36);
  font-size: 0.58rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.portfolio-visual-caption {
  right: 52px;
  bottom: 17px;
  left: 17px;
  display: grid;
  gap: 4px;
}

.portfolio-visual-caption strong {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 2rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.portfolio-visual-caption small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-visual-card > i {
  right: 17px;
  bottom: 18px;
  font-style: normal;
  transition: transform 350ms ease;
}

.portfolio-visual-card:hover > i,
.portfolio-visual-card:focus-visible > i {
  transform: translate(3px, -3px);
}

.work-reel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  height: auto;
  padding: 14px;
}

.work-reel-item,
.work-reel-item:last-child {
  aspect-ratio: 1.414;
  border: 0;
  border-radius: 14px;
}

.work-reel-item > span {
  display: grid;
  gap: 5px;
}

.work-reel-item > span strong {
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.work-reel-item > span small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

@media (max-width: 960px) {
  .portfolio-visual-grid,
  .work-reel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .portfolio-visual-grid,
  .work-reel {
    grid-template-columns: 1fr;
  }

  .work-reel {
    gap: 10px;
    padding: 10px;
  }

  .portfolio-visual-card,
  .work-reel-item {
    aspect-ratio: 1.414;
  }
}

/* Extended services: clear choices for brand, growth and automation. */
.service-cta-actions {
  display: grid;
  gap: 10px;
  width: 100%;
}

.service-cta-actions .button-link {
  width: 100%;
}

.service-row:hover .service-detail,
.service-row:focus-visible .service-detail {
  max-height: 120px;
}

.work-services {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 82px;
  background:
    radial-gradient(circle at 88% 8%, rgba(8, 199, 201, 0.18), transparent 30%),
    radial-gradient(circle at 12% 92%, rgba(173, 245, 50, 0.1), transparent 28%),
    var(--navy);
}

.work-services .shell {
  position: relative;
  z-index: 1;
}

.work-services-head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  margin-bottom: clamp(58px, 7vw, 105px);
}

.work-services-head > div:first-child {
  grid-column: 1 / span 8;
}

.work-services-head > div:last-child {
  grid-column: 9 / -1;
  padding-bottom: 8px;
}

.work-services-head h2 {
  max-width: 1080px;
  margin: 28px 0 0;
  font-size: clamp(3rem, 5.5vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.work-services-head h2 em {
  color: var(--green);
}

.work-services-head > div:last-child > p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.65;
}

.work-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.work-service-card {
  min-height: 590px;
  padding: clamp(28px, 3vw, 46px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 450ms ease, transform 450ms cubic-bezier(0.76, 0, 0.24, 1);
}

.work-service-card:nth-child(even) {
  border-right: 0;
}

.work-service-card:hover {
  background: rgba(255, 255, 255, 0.055);
}

.work-service-card header {
  display: flex;
  min-height: 58px;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.work-service-card header > span {
  color: var(--green);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.work-service-card header strong {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.55;
  text-align: right;
  text-transform: uppercase;
}

.work-service-card h3 {
  margin: clamp(62px, 7vw, 108px) 0 28px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 3.7vw, 4.3rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  transition: color 350ms ease;
}

.work-service-card:hover h3 {
  color: var(--green);
}

.work-service-description {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.65;
}

.work-service-need {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) 1fr;
  gap: 26px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.work-service-need span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.work-service-need p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.work-service-card li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.work-service-paths {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  margin-top: clamp(72px, 8vw, 120px);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.work-service-paths > div,
.work-service-paths > a {
  min-height: 190px;
  padding: 28px;
}

.work-service-paths > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.work-service-paths > div h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
}

.work-service-paths > a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 350ms ease, color 350ms ease;
}

.work-service-paths > a:hover,
.work-service-paths > a:focus-visible {
  background: var(--green);
  color: var(--ink);
}

.work-service-paths > a strong {
  max-width: 240px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.7vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}

.work-service-paths > a small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.work-service-paths > a:hover small,
.work-service-paths > a:focus-visible small {
  color: rgba(17, 17, 17, 0.62);
}

.work-service-paths > a > span {
  position: absolute;
  top: 26px;
  right: 26px;
  color: var(--green);
}

.work-service-paths > a:hover > span,
.work-service-paths > a:focus-visible > span {
  color: var(--ink);
}

/* Studio experience without a public employment timeline. */
.studio-experience {
  background:
    radial-gradient(circle at 12% 82%, rgba(173, 245, 50, 0.11), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(8, 199, 201, 0.14), transparent 28%),
    var(--navy);
}

.studio-experience-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.studio-experience-head {
  grid-column: 1 / span 7;
}

.studio-experience-head h2 {
  max-width: 900px;
  margin: 30px 0 0;
  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.studio-experience-head h2 em {
  color: var(--green);
}

.studio-experience-copy {
  grid-column: 9 / -1;
  padding-top: 6px;
}

.studio-experience-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.studio-experience-copy > p:first-child {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.9vw, 2rem);
  font-style: italic;
  line-height: 1.38;
}

.studio-experience-copy > p + p {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.studio-experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.studio-experience-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .work-services-head,
  .studio-experience-layout {
    display: block;
  }

  .work-services-head > div:last-child,
  .studio-experience-copy {
    max-width: 720px;
    margin: 42px 0 0 auto;
  }

  .work-service-paths {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-service-paths > div {
    grid-column: 1 / -1;
    min-height: 130px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .work-service-paths > a:first-of-type {
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .service-cta-actions {
    margin-top: 28px;
  }

  .section-inline-cta .service-cta-actions .button-link {
    margin-top: 0;
  }

  .work-services-head h2,
  .studio-experience-head h2 {
    font-size: clamp(2.7rem, 12vw, 3.8rem);
  }

  .work-services-head > div:last-child,
  .studio-experience-copy {
    width: 92%;
    margin-top: 38px;
  }

  .work-services-grid {
    grid-template-columns: 1fr;
  }

  .work-service-card,
  .work-service-card:nth-child(even) {
    min-height: 0;
    padding: 30px 20px 38px;
    border-right: 0;
  }

  .work-service-card header {
    gap: 18px;
  }

  .work-service-card header strong {
    max-width: 240px;
  }

  .work-service-card h3 {
    margin-top: 58px;
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .work-service-need {
    display: block;
  }

  .work-service-need p {
    margin-top: 12px;
  }

  .work-service-paths {
    grid-template-columns: 1fr;
  }

  .work-service-paths > div,
  .work-service-paths > a {
    grid-column: auto;
    min-height: 150px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .work-service-paths > a:last-child {
    border-bottom: 0;
  }
}

/* Editorial photography: keep the visual focus on the hands, tools and process. */
.editorial-photo-portrait img {
  object-position: center 66%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .intro {
    display: none;
  }

  .mask > span,
  .reveal-up {
    opacity: 1;
    transform: none;
  }
}

/* Image-rich narrative and high-density content */
.image-reveal {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy);
  isolation: isolate;
}

.image-reveal::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 52%, rgba(173, 245, 50, 0.08));
  content: "";
  pointer-events: none;
}

.image-reveal img {
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05);
  transform: scale(1.025);
  transition: filter 700ms ease, transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.image-reveal:hover img {
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.065);
}

.statement-visual {
  grid-column: 3 / -1;
  aspect-ratio: 2.25;
  margin-top: clamp(48px, 6vw, 88px);
}

.statement-visual figcaption,
.services-visual figcaption,
.studio-preview-image figcaption,
.founder-visual figcaption,
.studio-process-image figcaption,
.article-inline-image figcaption {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.statement-visual::before,
.services-visual::before,
.studio-preview-image::before,
.founder-visual::before,
.studio-process-image::before,
.article-inline-image::before {
  position: absolute;
  z-index: 1;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(2, 11, 18, 0.68));
  content: "";
  pointer-events: none;
}

.services-visual {
  aspect-ratio: 2.7;
  margin-bottom: clamp(48px, 6vw, 82px);
}

.services-visual img {
  object-position: center 54%;
}

.brand-moment-image,
.studio-contact-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.62) contrast(1.12);
  transform: scale(1.04);
}

.brand-moment-shade,
.studio-contact-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 17, 29, 0.9), rgba(4, 17, 29, 0.32)),
    linear-gradient(0deg, rgba(4, 17, 29, 0.74), transparent 55%);
  pointer-events: none;
}

.brand-moment-glow {
  z-index: 1;
}

.studio-preview-image {
  grid-column: 1 / span 7;
  aspect-ratio: 1.58;
  margin-top: clamp(45px, 5vw, 72px);
}

.studio-preview-image img {
  object-position: center 58%;
}

.studio-grid > div {
  align-self: end;
  margin-top: clamp(50px, 6vw, 90px);
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(45px, 7vw, 120px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.founder-visual {
  aspect-ratio: 0.83;
  max-height: 760px;
}

.founder-visual img {
  object-position: center 52%;
}

.founder-section blockquote {
  margin: 0;
}

.founder-section blockquote h2 {
  max-width: 920px;
  margin: clamp(36px, 5vw, 72px) 0 clamp(38px, 5vw, 68px);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.65rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.founder-section blockquote footer {
  display: flex;
  gap: 8px;
  flex-direction: column;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-section blockquote footer span {
  color: rgba(17, 17, 17, 0.56);
}

.faq-section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid var(--line);
}

.faq-intro {
  grid-column: 1 / span 5;
}

.faq-intro h2 {
  margin: 26px 0 32px;
  font-size: clamp(2.9rem, 4.6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.faq-intro h2 em {
  color: #087c80;
}

.faq-intro > p:last-of-type {
  max-width: 520px;
  margin: 0;
  line-height: 1.65;
}

.faq-visual {
  aspect-ratio: 1.3;
  margin-top: clamp(40px, 5vw, 70px);
}

.faq-visual img {
  object-position: center 54%;
}

.faq-list {
  grid-column: 7 / -1;
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 104px;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary > span {
  color: rgba(17, 17, 17, 0.45);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.faq-list summary strong {
  max-width: 680px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.faq-list summary i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #087c80;
  font-size: 1.1rem;
  font-style: normal;
  transition: background 300ms ease, color 300ms ease, transform 400ms cubic-bezier(0.76, 0, 0.24, 1);
}

.faq-list details[open] summary i {
  background: var(--green);
  color: var(--ink);
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 630px;
  margin: -4px 54px 0 66px;
  padding: 0 0 32px;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.65;
}

.work-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(35px, 5vw, 80px);
  align-items: center;
  padding-top: clamp(72px, 8vw, 125px);
  padding-bottom: clamp(72px, 8vw, 125px);
  border-bottom: 1px solid var(--line);
}

.work-spotlight-image {
  aspect-ratio: 1.55;
}

.work-spotlight-copy h2 {
  margin: 28px 0 30px;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.2vw, 3.75rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.work-spotlight-copy > p:last-child {
  max-width: 460px;
  margin: 0;
  line-height: 1.65;
}

.studio-manifesto-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(42px, 6vw, 100px);
  align-items: center;
}

.studio-manifesto-layout h2 {
  margin-top: 44px;
}

.studio-manifesto-image {
  aspect-ratio: 0.9;
  max-height: 720px;
}

.studio-manifesto-image img {
  object-position: center 52%;
}

.studio-capabilities-side {
  grid-column: 1 / span 3;
  position: sticky;
  top: 110px;
  align-self: start;
}

.studio-capabilities-side .eyebrow {
  margin-bottom: 34px;
}

.studio-capabilities-image {
  aspect-ratio: 0.92;
}

.studio-capabilities > div {
  grid-column: 5 / -1;
}

.studio-process-image {
  aspect-ratio: 2.35;
  margin-top: clamp(48px, 6vw, 86px);
}

.studio-process-image img {
  object-position: center 58%;
}

.studio-process-image figcaption {
  justify-content: space-around;
}

.studio-contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.studio-contact > p,
.studio-contact > h2,
.studio-contact > a {
  position: relative;
  z-index: 2;
}

.article-inline-image {
  aspect-ratio: 1.5;
  margin: clamp(42px, 5vw, 72px) 0;
}

.article-inline-image img {
  object-position: center 54%;
}

.article-paragraph-block:last-of-type > p {
  margin-bottom: 0;
}

@supports (animation-timeline: view()) {
  .statement-visual,
  .services-visual,
  .studio-preview-image,
  .founder-visual,
  .founder-section blockquote,
  .faq-visual,
  .faq-list details,
  .work-spotlight-image,
  .work-spotlight-copy,
  .studio-manifesto-image,
  .studio-capabilities-image,
  .studio-process-image,
  .article-inline-image {
    animation: content-enter linear both;
    animation-timeline: view();
    animation-range: entry 2% cover 24%;
  }
}

@media (max-width: 960px) {
  .founder-section,
  .work-spotlight,
  .studio-manifesto-layout {
    grid-template-columns: 1fr 1fr;
  }

  .faq-intro {
    grid-column: 1 / span 5;
  }

  .faq-list {
    grid-column: 6 / -1;
  }

  .studio-capabilities-side {
    grid-column: 1 / span 4;
  }

  .studio-capabilities > div {
    grid-column: 5 / -1;
  }
}

@media (max-width: 760px) {
  .statement-visual,
  .services-visual,
  .studio-preview-image,
  .studio-process-image,
  .article-inline-image {
    aspect-ratio: 1.15;
  }

  .statement-visual {
    margin-top: 52px;
  }

  .statement-visual figcaption,
  .services-visual figcaption,
  .studio-preview-image figcaption,
  .founder-visual figcaption,
  .studio-process-image figcaption,
  .article-inline-image figcaption {
    right: 13px;
    bottom: 12px;
    left: 13px;
    font-size: 0.52rem;
  }

  .services-visual {
    margin-bottom: 48px;
  }

  .studio-grid {
    display: block;
  }

  .studio-preview-image {
    margin-top: 44px;
  }

  .studio-grid > div {
    margin-top: 44px;
  }

  .founder-section,
  .faq-section,
  .work-spotlight,
  .studio-manifesto-layout {
    display: block;
  }

  .founder-visual {
    aspect-ratio: 0.92;
    margin-bottom: 55px;
  }

  .founder-section blockquote h2 {
    margin: 34px 0 42px;
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .faq-intro {
    margin-bottom: 62px;
  }

  .faq-intro h2 {
    font-size: clamp(2.6rem, 11vw, 3.4rem);
  }

  .faq-visual {
    aspect-ratio: 1.15;
    margin-top: 38px;
  }

  .faq-list summary {
    min-height: 88px;
    grid-template-columns: 32px 1fr auto;
    gap: 10px;
  }

  .faq-list summary strong {
    font-size: 1.35rem;
  }

  .faq-list details > p {
    margin: 0 44px 0 42px;
    padding-bottom: 28px;
  }

  .work-spotlight {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .work-spotlight-image {
    aspect-ratio: 1.1;
    margin-bottom: 46px;
  }

  .work-spotlight-copy h2 {
    font-size: 2.25rem;
  }

  .studio-manifesto-image {
    aspect-ratio: 1.05;
    margin-top: 52px;
  }

  .studio-capabilities {
    display: block;
  }

  .studio-capabilities-side {
    position: static;
    margin-bottom: 58px;
  }

  .studio-capabilities-image {
    aspect-ratio: 1.2;
  }

  .studio-process-image figcaption {
    gap: 8px;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-reveal img {
    transition: none;
  }
}

@media (max-width: 960px) {
  .work-side {
    grid-column: 9 / span 4;
  }

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

  .work-hero-bottom,
  .blog-hero-bottom {
    grid-column: 5 / -1;
  }

  .work-reel {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .work-reel-item {
    aspect-ratio: 1.55;
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }

  .clients-head h2 {
    grid-column: 3 / span 8;
  }

  .clients-head > p:last-child {
    grid-column: 9 / span 4;
    margin-top: 80px;
  }

  .testimonial-list blockquote {
    grid-template-columns: 0.7fr 7fr 3fr;
  }

  .featured-article {
    grid-template-columns: 1fr 1fr;
  }

  .blog-index-head {
    grid-column: 1 / span 5;
  }

  .blog-list {
    grid-column: 6 / -1;
  }

  .blog-list article {
    grid-template-columns: 0.5fr 1.5fr 4fr auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 66px;
  }

  .header-logo {
    width: 136px;
    height: 64px;
  }

  .header-logo img {
    top: -43px;
    left: -48px;
    width: 230px;
  }

  .site-noise {
    opacity: 0.015;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: 8px;
  }

  .whatsapp-float strong,
  .whatsapp-float i {
    display: none;
  }

  .whatsapp-float span {
    width: 30px;
    height: 30px;
  }

  .work-section-head {
    margin-bottom: 45px;
  }

  .work-section-head .work-side {
    width: 100%;
    gap: 35px;
  }

  .work-index strong {
    font-size: 4rem;
  }

  .work-flowline {
    gap: 8px;
    margin-bottom: 22px;
    font-size: 0.61rem;
    letter-spacing: 0.07em;
  }

  .project-columns {
    display: block;
  }

  .project-column {
    gap: 0;
  }

  .project-columns .project-card {
    margin-bottom: 62px;
  }

  .project-columns .project-media,
  .project-columns .project-column:last-child .project-media {
    aspect-ratio: 1.18;
  }

  .project-hover-title,
  .project-media-info {
    display: none;
  }

  .work-page-hero,
  .blog-hero {
    min-height: 78svh;
  }

  .work-page-hero h1,
  .blog-hero h1 {
    margin-top: 19vh;
  }

  .work-hero-bottom,
  .blog-hero-bottom {
    display: block;
    margin-top: 55px;
  }

  .work-hero-bottom > p,
  .blog-hero-bottom > p {
    width: 80%;
    margin: 0 0 42px auto;
    font-size: 1.35rem;
  }

  .work-reel {
    grid-template-columns: 1fr 1fr;
  }

  .work-reel-item {
    aspect-ratio: 0.9;
  }

  .work-reel-item > span {
    font-size: 0.52rem;
  }

  .work-manifesto {
    gap: 8px;
    padding: 18px;
    font-size: 0.68rem;
    letter-spacing: 0;
  }

  .archive-head {
    display: block;
    margin-bottom: 52px;
  }

  .archive-head > p {
    width: 78%;
    margin: 44px 0 0 auto;
  }

  .clients-head {
    display: block;
    margin-bottom: 55px;
  }

  .clients-head h2 {
    margin-top: 45px;
    font-size: 3.8rem;
  }

  .clients-head > p:last-child {
    width: 78%;
    margin: 55px 0 0 auto;
  }

  .clients-ribbon span {
    gap: 24px;
    padding: 18px 12px;
    font-size: 2.4rem;
  }

  .testimonials-head {
    display: block;
    margin-bottom: 55px;
  }

  .testimonials-head h2 {
    margin-top: 45px;
    font-size: 3.4rem;
  }

  .testimonial-list blockquote {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
  }

  .testimonial-list blockquote > p {
    font-size: 1.8rem;
  }

  .testimonial-list footer {
    grid-column: 2;
    margin-top: 26px;
  }

  .article-grid {
    display: block;
  }

  .article-card,
  .article-card:nth-child(2) {
    margin: 0 0 70px;
  }

  .article-image {
    aspect-ratio: 1.2;
  }

  .contact-details a {
    font-size: 1.7rem;
  }

  .contact-actions {
    display: block;
  }

  .contact-actions .contact-line {
    margin-bottom: 14px;
  }

  .featured-article {
    display: block;
  }

  .featured-article-image {
    display: block;
    min-height: 62svh;
  }

  .featured-article-copy {
    padding: 70px 18px 85px;
  }

  .featured-article-copy h2 {
    margin-top: 45px;
    font-size: 3.6rem;
  }

  .blog-index {
    display: block;
  }

  .blog-index-head {
    margin-bottom: 85px;
  }

  .blog-index-head h2 {
    font-size: 3.8rem;
  }

  .blog-list article {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    min-height: 0;
    padding: 30px 0;
  }

  .blog-list .article-meta {
    grid-column: 2;
  }

  .blog-list h3 {
    grid-column: 2 / -1;
    margin-top: 18px;
    font-size: 2.1rem;
  }

  .blog-list-image {
    display: none;
  }

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

  .article-hero {
    display: block;
    min-height: 86svh;
    padding-top: 120px;
  }

  .article-hero h1 {
    margin: 20vh 0 55px;
    font-size: 15vw;
  }

  .article-hero > p {
    width: 82%;
    margin-left: auto;
  }

  .article-hero-image {
    height: 68svh;
  }

  .article-body {
    display: block;
  }

  .article-body aside {
    margin-bottom: 70px;
  }

  .article-body p {
    font-size: 1.55rem;
  }

  .article-body blockquote {
    margin-top: 70px;
    font-size: 2.3rem;
  }

  .next-article {
    min-height: 58svh;
    padding-inline: 18px;
  }

  .next-article strong {
    font-size: 3.4rem;
  }
}

/* Full-bleed imagery, useful process map and tighter editorial rhythm */
.section-pad {
  padding-top: clamp(78px, 8vw, 142px);
  padding-bottom: clamp(78px, 8vw, 142px);
}

.section-head {
  margin-bottom: clamp(50px, 6vw, 92px);
}

.statement-copy {
  margin-top: clamp(44px, 6vw, 92px);
}

.full-image-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
  color: #fff;
}

.hero-background {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.035);
  animation: hero-drift 14s ease-out both;
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 13, 23, 0.84) 0%, rgba(3, 13, 23, 0.46) 48%, rgba(3, 13, 23, 0.2) 100%),
    linear-gradient(0deg, rgba(3, 13, 23, 0.78) 0%, transparent 56%);
  pointer-events: none;
}

.hero-shade::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 52%, rgba(173, 245, 50, 0.09));
  content: "";
}

.hero-layer {
  position: relative;
  z-index: 2;
}

@keyframes hero-drift {
  from { transform: scale(1.09); }
  to { transform: scale(1.035); }
}

.hero.full-image-hero {
  min-height: clamp(690px, 92svh, 990px);
  padding: 0;
}

.hero-content {
  min-height: inherit;
  padding-top: 95px;
  padding-bottom: 34px;
}

.hero-kicker,
.hero-title,
.hero-copy {
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.28);
}

.hero-title {
  margin-top: clamp(120px, 16vh, 190px);
}

.hero-orbit-ring {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(6, 26, 44, 0.18);
  backdrop-filter: blur(8px);
}

.page-hero.full-image-hero {
  display: block;
  min-height: 82svh;
  padding: 0;
}

.page-hero-content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  min-height: inherit;
  align-content: end;
  padding-top: 130px;
  padding-bottom: 50px;
}

.page-hero h1,
.page-hero .eyebrow,
.page-hero-content > p,
.work-hero-bottom,
.blog-hero-bottom {
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.34);
}

.page-hero-content > p:last-child {
  grid-column: 9 / span 4;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  font-style: italic;
  line-height: 1.25;
}

.work-hero-bottom dl,
.blog-hero-bottom p {
  border-color: rgba(255, 255, 255, 0.46);
}

.work-hero-bottom dl div {
  border-color: rgba(255, 255, 255, 0.34);
}

.case-hero.full-image-hero {
  min-height: 88svh;
  padding: 0;
}

.case-hero-content {
  min-height: inherit;
  padding-top: 125px;
  padding-bottom: 52px;
}

.case-hero h1 {
  margin: clamp(75px, 11vh, 125px) 0 30px;
  text-shadow: 0 3px 34px rgba(0, 0, 0, 0.32);
}

.case-intro dl {
  border-color: rgba(255, 255, 255, 0.48);
}

.case-intro dl div {
  border-color: rgba(255, 255, 255, 0.34);
}

.case-intro dt {
  color: rgba(255, 255, 255, 0.66);
}

.article-hero.full-image-hero {
  display: block;
  min-height: 86svh;
  padding: 0;
}

.article-hero-content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  min-height: inherit;
  align-content: end;
  padding-top: 125px;
  padding-bottom: 58px;
}

.article-hero-content h1 {
  margin: clamp(72px, 9vh, 115px) 0 38px;
  text-shadow: 0 3px 32px rgba(0, 0, 0, 0.34);
}

.article-hero-content > p {
  grid-column: 8 / span 5;
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.4rem);
  line-height: 1.55;
}

.article-hero .article-meta {
  border-color: rgba(255, 255, 255, 0.42);
}

.contact-page.full-image-hero,
.contact-inner {
  min-height: 100svh;
}

.hero-shade-contact {
  background:
    linear-gradient(90deg, rgba(3, 13, 23, 0.91) 0%, rgba(3, 13, 23, 0.7) 58%, rgba(3, 13, 23, 0.42) 100%),
    linear-gradient(0deg, rgba(3, 13, 23, 0.88), transparent 62%);
}

.contact-inner h1 {
  margin: clamp(50px, 6vh, 85px) 0 clamp(45px, 6vh, 80px);
  text-shadow: 0 3px 34px rgba(0, 0, 0, 0.34);
}

.not-found.full-image-hero {
  min-height: 100svh;
}

.not-found-content {
  display: grid;
  min-height: inherit;
  align-content: center;
  padding-top: 110px;
  padding-bottom: 70px;
}

.not-found-content .text-link {
  max-width: 380px;
}

.process-map {
  position: relative;
  width: min(43vw, 650px);
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 88% 8%, rgba(173, 245, 50, 0.23), transparent 30%),
    linear-gradient(145deg, #061a2c, #0a2c3d);
  color: #fff;
  box-shadow: 0 24px 75px rgba(6, 26, 44, 0.2);
}

.process-map::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  pointer-events: none;
}

.process-map-head,
.process-map-result {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 22px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-map-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.process-map-head small {
  color: var(--green);
  font-size: inherit;
}

.process-map ol {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-map li {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 18px;
  min-height: 92px;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 350ms ease, padding 450ms cubic-bezier(0.76, 0, 0.24, 1);
}

.process-map li:hover {
  padding-left: 30px;
  background: rgba(173, 245, 50, 0.1);
}

.process-map-index {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: var(--green);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.process-map-stage {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.process-map-stage strong {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 3.15rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.process-map-stage small {
  max-width: 120px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.process-map-arrow {
  color: var(--cyan);
  font-size: 1.1rem;
}

.process-map-result {
  align-items: end;
  background: var(--green);
  color: var(--ink);
}

.process-map-result strong {
  max-width: 255px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: right;
  text-transform: none;
}

.process-copy .section-title {
  margin-bottom: 58px;
}

.process-step {
  min-height: 215px;
}

.brand-moment {
  min-height: 82svh;
}

.studio-grid > div {
  margin-top: 76px;
}

.studio-values article {
  min-height: 300px;
}

.studio-values h2 {
  margin-top: 58px;
}

.studio-process > div {
  margin-top: 48px;
}

.studio-process article {
  min-height: 255px;
}

.studio-process h2 {
  margin-top: 50px;
}

.studio-contact,
.final-cta {
  min-height: 76svh;
}

.final-cta h2 {
  margin: 34px 0 55px;
}

.work-archive {
  padding-bottom: clamp(85px, 9vw, 145px);
}

.archive-head {
  margin-bottom: clamp(48px, 5vw, 78px);
}

.project-column {
  gap: clamp(34px, 4vw, 62px);
}

.clients-head,
.testimonials-head {
  margin-bottom: clamp(50px, 6vw, 88px);
}

.article-body blockquote {
  margin-top: 62px;
}

.next-project,
.next-article {
  min-height: 58svh;
}

@media (max-width: 960px) {
  .process-map {
    width: min(45vw, 560px);
  }

  .process-map-stage {
    display: block;
  }

  .process-map-stage small {
    display: block;
    max-width: none;
    margin-top: 3px;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .hero.full-image-hero {
    min-height: 92svh;
  }

  .hero-content {
    padding-top: 78px;
    padding-bottom: 18px;
  }

  .hero-title {
    margin-top: 14vh;
  }

  .hero-bottom {
    bottom: 22px;
  }

  .hero-copy {
    width: 78%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 13, 23, 0.76), rgba(3, 13, 23, 0.24)),
      linear-gradient(0deg, rgba(3, 13, 23, 0.9) 0%, transparent 70%);
  }

  .page-hero.full-image-hero {
    min-height: 76svh;
  }

  .page-hero-content {
    display: block;
    min-height: inherit;
    padding-top: 110px;
    padding-bottom: 36px;
  }

  .page-hero h1,
  .work-page-hero h1,
  .blog-hero h1 {
    margin-top: 21vh;
  }

  .studio-page .page-hero h1 {
    margin-top: 13vh;
  }

  .page-hero-content > p:last-child {
    width: 84%;
    margin: 38px 0 0 auto;
  }

  .work-hero-bottom,
  .blog-hero-bottom {
    margin-top: 38px;
  }

  .work-hero-bottom > p,
  .blog-hero-bottom > p {
    margin-bottom: 28px;
  }

  .case-hero.full-image-hero,
  .article-hero.full-image-hero {
    min-height: 82svh;
  }

  .case-hero-content,
  .article-hero-content {
    min-height: inherit;
    padding-top: 105px;
    padding-bottom: 38px;
  }

  .case-hero h1 {
    margin: 15vh 0 38px;
  }

  .article-hero-content {
    display: block;
  }

  .article-hero-content h1 {
    margin: 14vh 0 38px;
  }

  .article-hero-content > p {
    width: 86%;
    margin-left: auto;
  }

  .contact-inner h1 {
    margin: 40px 0 48px;
  }

  .contact-details {
    margin-bottom: 42px;
  }

  .process-section {
    display: block;
  }

  .process-visual {
    margin-bottom: 72px;
  }

  .process-sticky {
    position: static;
  }

  .process-map {
    width: 100%;
    margin-top: 26px;
  }

  .process-map-head,
  .process-map-result,
  .process-map li {
    padding-inline: 16px;
  }

  .process-map li {
    grid-template-columns: 44px 1fr auto;
    gap: 12px;
    min-height: 82px;
  }

  .process-map-stage strong {
    font-size: 1.85rem;
  }

  .process-map-result strong {
    max-width: 210px;
  }

  .process-step {
    min-height: 185px;
  }

  .brand-moment {
    min-height: 68svh;
  }

  .studio-grid > div {
    margin-top: 52px;
  }

  .studio-values article,
  .studio-process article {
    min-height: 240px;
  }

  .studio-contact,
  .final-cta {
    min-height: 66svh;
  }

  .next-project,
  .next-article {
    min-height: 52svh;
  }
}

/* Transparent brand lockup */
.site-header {
  color: var(--navy);
}

.site-header::before {
  border-bottom-color: rgba(6, 26, 44, 0.13);
  background: rgba(242, 240, 234, 0.92);
  box-shadow: 0 8px 32px rgba(6, 26, 44, 0.08);
}

.header-logo {
  position: relative;
  display: block;
  width: clamp(220px, 18vw, 284px);
  height: 72px;
  overflow: visible;
}

.header-logo img {
  position: static;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 760px) {
  .header-logo {
    width: min(220px, calc(100vw - 96px));
    height: 62px;
  }
}

/* Balanced editorial scale, cohesive imagery and proof section */
body {
  font-size: 16px;
  line-height: 1.55;
}

.section-pad {
  padding-top: clamp(68px, 7vw, 116px);
  padding-bottom: clamp(68px, 7vw, 116px);
}

.mobile-menu nav a {
  font-size: clamp(2.7rem, 10vw, 4.5rem);
}

.intro-mark {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.hero.full-image-hero {
  min-height: clamp(650px, 86svh, 900px);
}

.hero-title {
  max-width: 1120px;
  margin-top: clamp(112px, 15vh, 165px);
  font-size: clamp(4rem, 7.1vw, 7.5rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.hero-title-offset {
  margin-left: min(10vw, 150px);
}

.hero-copy {
  max-width: 500px;
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
}

.statement-title {
  font-size: clamp(2.8rem, 4.8vw, 5.5rem);
  line-height: 1;
}

.statement-copy {
  font-size: clamp(0.98rem, 1vw, 1.08rem);
}

.marquee-track span {
  font-size: clamp(2.5rem, 4.5vw, 5rem);
}

.section-title {
  font-size: clamp(2.9rem, 4.8vw, 5.4rem);
  line-height: 0.95;
}

.section-intro {
  font-size: clamp(1.05rem, 1.35vw, 1.42rem);
}

.project-meta h3 {
  font-size: clamp(1.45rem, 2vw, 2.45rem);
}

.project-statement,
.project-columns .project-statement {
  font-size: clamp(1rem, 1.15vw, 1.25rem);
}

.project-hover-title {
  font-size: clamp(2rem, 3.25vw, 4rem);
}

.service-row h3 {
  font-size: clamp(2rem, 3.5vw, 4rem);
}

.process-step h3 {
  font-size: clamp(2.1rem, 3.6vw, 4rem);
}

.process-map-stage strong {
  font-size: clamp(1.55rem, 2.2vw, 2.45rem);
}

.brand-moment p {
  font-size: clamp(3.2rem, 6.3vw, 7rem);
  line-height: 0.83;
}

.studio-grid h2 {
  font-size: clamp(2.7rem, 4.35vw, 5rem);
  line-height: 1;
}

.testimonials-head h2 {
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  line-height: 0.98;
}

.testimonial-list blockquote > p {
  font-size: clamp(1.45rem, 2.1vw, 2.45rem);
  line-height: 1.22;
}

.article-card h3 {
  font-size: clamp(1.45rem, 2vw, 2.35rem);
  line-height: 1.12;
}

.final-cta h2 {
  font-size: clamp(3.5rem, 6.5vw, 7rem);
  line-height: 0.86;
}

.footer-email {
  font-size: clamp(1.55rem, 2.2vw, 2.6rem);
}

.footer-word {
  font-size: clamp(4.5rem, 10.5vw, 8.5rem);
  line-height: 0.76;
}

.page-hero.full-image-hero {
  min-height: 76svh;
}

.page-hero h1,
.work-page-hero h1,
.blog-hero h1 {
  font-size: clamp(4rem, 7.2vw, 7.5rem);
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.studio-page .page-hero h1 {
  font-size: clamp(3.6rem, 6.2vw, 6.8rem);
  line-height: 0.94;
}

.page-hero-content > p:last-child,
.work-hero-bottom > p,
.blog-hero-bottom p {
  font-size: clamp(1.05rem, 1.4vw, 1.55rem);
}

.case-hero.full-image-hero,
.article-hero.full-image-hero {
  min-height: 78svh;
}

.case-hero h1 {
  font-size: clamp(3.8rem, 7.2vw, 7.6rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.case-intro > p {
  font-size: clamp(1.45rem, 2.1vw, 2.45rem);
  line-height: 1.18;
}

.case-story h2 {
  font-size: clamp(2.25rem, 3.6vw, 4.2rem);
  line-height: 1.05;
}

.case-quote {
  font-size: clamp(2.6rem, 5vw, 5.5rem);
}

.next-project strong {
  font-size: clamp(3.4rem, 7.2vw, 7.5rem);
  line-height: 0.88;
}

.studio-manifesto h2 {
  font-size: clamp(2.8rem, 4.8vw, 5.5rem);
  line-height: 1;
}

.studio-values h2 {
  font-size: clamp(2.1rem, 3vw, 3.4rem);
}

.studio-capabilities h2 {
  font-size: clamp(2.1rem, 3.5vw, 4rem);
}

.studio-process h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.studio-contact h2 {
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 0.95;
}

.contact-inner h1 {
  font-size: clamp(3.6rem, 6.2vw, 6.8rem);
  line-height: 0.88;
}

.contact-details a {
  font-size: clamp(1.2rem, 1.8vw, 2.1rem);
}

.contact-line {
  font-size: clamp(1rem, 1.25vw, 1.35rem);
}

.not-found h1 {
  font-size: clamp(3.4rem, 6.5vw, 7rem);
}

.featured-article-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  line-height: 1;
}

.blog-index-head h2 {
  font-size: clamp(2.7rem, 4vw, 4.6rem);
  line-height: 0.98;
}

.blog-list h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.7rem);
  line-height: 1.08;
}

.article-hero h1,
.article-hero-content h1 {
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  line-height: 0.98;
}

.article-body p {
  font-size: clamp(1.15rem, 1.45vw, 1.6rem);
  line-height: 1.5;
}

.article-body blockquote {
  font-size: clamp(1.9rem, 3vw, 3.4rem);
  line-height: 1.08;
}

.next-article strong {
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  line-height: 1;
}

/* Reference-inspired proof and client section */
.proof-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 78%, rgba(8, 199, 201, 0.14), transparent 32%),
    linear-gradient(145deg, #071019 0%, #0a1722 52%, #061a2c 100%);
}

.proof-lines {
  position: absolute;
  right: -4%;
  bottom: -10%;
  width: 56%;
  height: 62%;
  background: repeating-linear-gradient(90deg, rgba(173, 245, 50, 0.18) 0 1px, transparent 1px 8px);
  mask-image: linear-gradient(135deg, transparent 4%, #000 80%);
  opacity: 0.46;
  transform: perspective(620px) rotateY(-10deg) rotateZ(-3deg);
  animation: proof-lines-drift 9s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes proof-lines-drift {
  to { transform: perspective(620px) rotateY(-6deg) rotateZ(-1deg) translate3d(18px, -8px, 0); opacity: 0.65; }
}

.proof-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(60px, 8vw, 140px);
  align-items: start;
}

.proof-copy h2 {
  max-width: 720px;
  margin: 28px 0 30px;
  font-size: clamp(3rem, 4.7vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.proof-copy h2 em {
  color: var(--green);
}

.proof-copy > p:last-of-type {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.65;
}

.proof-cta {
  display: flex;
  width: min(100%, 330px);
  justify-content: space-between;
  align-items: center;
  margin-top: 38px;
  padding: 17px 20px;
  border: 1px solid rgba(173, 245, 50, 0.78);
  border-radius: 999px;
  background: linear-gradient(105deg, var(--green), #6af0b8);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.proof-cta:hover,
.proof-cta:focus-visible {
  box-shadow: 0 14px 38px rgba(173, 245, 50, 0.2);
  transform: translateY(-3px);
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin: 0;
}

.proof-metrics > div {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 24px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.proof-metrics dd {
  order: -1;
  margin: 0 0 10px;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4vw, 4.4rem);
  font-style: italic;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.proof-metrics dt {
  max-width: 230px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.78rem, 0.9vw, 0.96rem);
  line-height: 1.4;
}

.proof-clients {
  position: relative;
  z-index: 2;
  margin-top: clamp(70px, 8vw, 125px);
}

.proof-clients-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 22px;
}

.proof-clients-head > span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-client {
  position: relative;
  display: grid;
  min-height: 128px;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
  transition: transform 450ms cubic-bezier(0.76, 0, 0.24, 1), border-color 350ms ease, background 350ms ease;
}

.proof-client::before {
  position: absolute;
  top: -80%;
  left: -55%;
  width: 42%;
  height: 250%;
  background: linear-gradient(90deg, transparent, rgba(173, 245, 50, 0.16), transparent);
  content: "";
  transform: rotate(18deg);
  transition: left 800ms cubic-bezier(0.76, 0, 0.24, 1);
}

.proof-client:hover {
  border-color: rgba(173, 245, 50, 0.42);
  background: rgba(255, 255, 255, 0.085);
  transform: translateY(-5px);
}

.proof-client:hover::before {
  left: 130%;
}

.proof-client > span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.proof-client strong {
  position: relative;
  z-index: 1;
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  text-align: center;
}

.proof-client:nth-child(even) strong {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.55vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
}

.proof-client i {
  color: var(--green);
  font-style: normal;
  transition: transform 350ms ease;
}

.proof-client:hover i {
  transform: translate(3px, -3px);
}

/* Consistent image language */
.hero-image-morocco {
  object-position: center 58%;
}

.hero-image-blog {
  object-position: center 72%;
  filter: saturate(0.68) contrast(1.08);
}

.hero-image-ribbon {
  object-position: center 48%;
  filter: saturate(0.9) contrast(1.05);
}

.hero-image-contact {
  object-position: center 54%;
  filter: saturate(0.72) brightness(0.78) contrast(1.08);
}

.hero-image-materials {
  object-position: 56% 46%;
  filter: saturate(0.82) contrast(1.06);
}

.hero-image-project,
.hero-image-article {
  object-position: center 52%;
  filter: saturate(0.8) contrast(1.08);
}

.project-media,
.article-image,
.featured-article-image,
.case-frame {
  border-radius: 16px;
}

.project-media img,
.work-reel-item img,
.article-image img,
.featured-article-image img,
.blog-list-image img,
.case-frame img {
  filter: saturate(0.86) contrast(1.04);
}

.project-media:hover img,
.project-media:focus-visible img,
.article-image:hover img,
.article-image:focus-visible img,
.featured-article-image:hover img,
.featured-article-image:focus-visible img {
  filter: saturate(1.02) contrast(1.02);
}

.work-reel-item::after {
  background: linear-gradient(180deg, rgba(6, 26, 44, 0.08), rgba(6, 26, 44, 0.72));
}

@supports (animation-timeline: view()) {
  .proof-copy,
  .proof-metrics > div,
  .proof-client,
  .studio-values article,
  .studio-process article {
    animation: content-enter linear both;
    animation-timeline: view();
    animation-range: entry 2% cover 24%;
  }
}

@media (max-width: 980px) {
  .proof-layout {
    display: block;
  }

  .proof-copy {
    max-width: 720px;
  }

  .proof-metrics {
    margin-top: 65px;
  }

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

@media (max-width: 760px) {
  .section-pad {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .hero.full-image-hero {
    min-height: 82svh;
  }

  .hero-title {
    margin-top: 13vh;
    font-size: clamp(3.3rem, 16.5vw, 4.5rem);
    line-height: 0.94;
  }

  .hero-title-offset {
    margin-left: 0;
  }

  .hero-copy {
    width: 82%;
  }

  .statement-title,
  .section-title {
    font-size: clamp(2.55rem, 11vw, 3.45rem);
    line-height: 1;
  }

  .marquee-track span {
    font-size: 2.65rem;
  }

  .page-hero.full-image-hero {
    min-height: 72svh;
  }

  .page-hero h1,
  .work-page-hero h1,
  .blog-hero h1,
  .studio-page .page-hero h1 {
    margin-top: 14vh;
    font-size: clamp(3.25rem, 14vw, 4.35rem);
    line-height: 0.95;
  }

  .case-hero.full-image-hero,
  .article-hero.full-image-hero {
    min-height: 76svh;
  }

  .case-hero h1,
  .article-hero h1,
  .article-hero-content h1 {
    margin-top: 12vh;
    font-size: clamp(3rem, 13vw, 4.1rem);
    line-height: 0.98;
  }

  .case-intro > p {
    font-size: 1.35rem;
  }

  .case-quote {
    gap: 8px;
    font-size: clamp(1.05rem, 4.5vw, 1.35rem);
    letter-spacing: -0.03em;
  }

  .brand-moment p {
    font-size: clamp(2.75rem, 12vw, 4rem);
    line-height: 0.88;
  }

  .studio-grid h2,
  .testimonials-head h2,
  .studio-manifesto h2 {
    font-size: clamp(2.45rem, 10.5vw, 3.3rem);
  }

  .testimonial-list blockquote > p {
    font-size: 1.45rem;
  }

  .final-cta h2,
  .studio-contact h2,
  .contact-inner h1 {
    font-size: clamp(3rem, 13vw, 4.2rem);
    line-height: 0.94;
  }

  .footer-word {
    font-size: 16vw;
  }

  .proof-copy h2 {
    font-size: clamp(2.75rem, 11.5vw, 3.7rem);
  }

  .proof-metrics {
    gap: 0 16px;
    margin-top: 55px;
  }

  .proof-metrics > div {
    min-height: 142px;
    padding-inline: 4px;
  }

  .proof-metrics dd {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }

  .proof-clients {
    margin-top: 65px;
  }

  .proof-clients-head {
    display: block;
  }

  .proof-clients-head > span {
    display: block;
    margin-top: 12px;
  }

  .proof-client-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .proof-client {
    min-height: 96px;
  }

  .featured-article-copy h2,
  .blog-index-head h2 {
    font-size: clamp(2.5rem, 10.5vw, 3.4rem);
  }

  .blog-list h3,
  .article-card h3 {
    font-size: 1.65rem;
  }

  .article-body p {
    font-size: 1.15rem;
  }

  .article-body blockquote {
    font-size: 2rem;
  }

  .next-project strong,
  .next-article strong {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof-lines,
  .hero-background {
    animation: none;
  }

  .proof-client,
  .proof-cta,
  .project-media img,
  .article-image img,
  .featured-article-image img {
    transition-duration: 0.01ms;
  }
}

/* Portfolio content, conversion paths and forms */
.button-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 300ms ease, background 300ms ease, border-color 300ms ease, color 300ms ease, box-shadow 300ms ease;
}

.button-link:hover,
.button-link:focus-visible {
  transform: translateY(-3px);
}

.button-link-primary {
  border-color: var(--green);
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(173, 245, 50, 0.14);
}

.button-link-primary:hover,
.button-link-primary:focus-visible {
  box-shadow: 0 16px 40px rgba(173, 245, 50, 0.24);
}

.button-link-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(3, 13, 23, 0.2);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button-link-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.hero-copy-stack {
  grid-column: 1 / span 6;
}

.hero-copy-stack .hero-copy {
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.section-inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 28px;
  align-items: center;
  margin-top: clamp(48px, 6vw, 90px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.section-inline-cta > p {
  max-width: 700px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2.5rem);
  font-style: italic;
  line-height: 1.18;
}

.section-inline-cta.inverted {
  border-color: rgba(255, 255, 255, 0.22);
}

.section-inline-cta .text-link,
.section-inline-cta .button-link {
  width: 100%;
}

.founder-section blockquote > .button-link {
  margin-top: 34px;
}

.experience-section {
  background:
    radial-gradient(circle at 78% 24%, rgba(8, 199, 201, 0.18), transparent 34%),
    var(--navy);
}

.experience-head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  margin-bottom: clamp(54px, 7vw, 105px);
}

.experience-head .eyebrow {
  grid-column: 1 / span 3;
}

.experience-head h2 {
  grid-column: 4 / -1;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.experience-head h2 em {
  color: var(--green);
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.experience-list article {
  min-height: 320px;
  padding: 26px clamp(18px, 2.4vw, 38px) 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.experience-list article:last-child {
  border-right: 0;
}

.experience-list article > span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.experience-list h3 {
  margin: clamp(54px, 6vw, 92px) 0 24px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 3.3rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.experience-list p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.faq-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-top: 30px;
}

.faq-cta > p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
}

.work-hero-copy > p {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.8rem);
  font-style: italic;
  line-height: 1.2;
}

.work-hero-copy .button-link {
  width: min(100%, 300px);
}

.work-reel {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.work-spotlight-copy .text-link {
  margin-top: 36px;
}

.case-gallery {
  gap: clamp(34px, 5vw, 78px) 18px;
  padding-bottom: clamp(78px, 10vw, 150px);
}

.case-gallery .case-frame {
  grid-column: 1 / span 10;
  aspect-ratio: 1.414;
}

.case-gallery .case-frame:nth-child(even) {
  grid-column: 3 / -1;
}

.case-gallery .case-frame img {
  object-fit: cover;
}

.case-gallery .case-quote {
  grid-column: 2 / span 10;
  margin-top: clamp(20px, 3vw, 50px);
}

.project-conversion {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid var(--line);
}

.project-conversion > .eyebrow {
  grid-column: 1 / span 2;
}

.project-conversion h2 {
  grid-column: 3 / span 7;
  margin: 0;
  font-size: clamp(2.7rem, 4.8vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.project-conversion h2 em {
  color: #087c80;
}

.project-conversion > div {
  grid-column: 10 / -1;
  align-self: end;
}

.project-conversion > div p {
  margin: 0 0 32px;
  line-height: 1.65;
}

.studio-process-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 30px;
  align-items: end;
  margin-top: 38px;
}

.studio-process-cta p {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  font-style: italic;
}

.studio-journey {
  background:
    radial-gradient(circle at 12% 82%, rgba(173, 245, 50, 0.11), transparent 30%),
    var(--navy);
}

.studio-journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(50px, 7vw, 115px);
}

.studio-journey-head h2 {
  max-width: 680px;
  margin: 32px 0 0;
  font-size: clamp(2.7rem, 4.4vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.studio-journey-head h2 em {
  color: var(--green);
}

.studio-journey-list {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.studio-journey-list article {
  display: grid;
  grid-template-columns: 44px 150px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.studio-journey-list article > span,
.studio-journey-list time {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.studio-journey-list h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.studio-journey-list p {
  grid-column: 3;
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

/* Contact form */
.contact-page {
  background: var(--paper);
  color: var(--ink);
}

.contact-hero {
  min-height: 100svh;
}

.contact-form-section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  border-top: 1px solid var(--line);
}

.contact-form-intro {
  grid-column: 1 / span 5;
}

.contact-form-intro h2 {
  margin: 28px 0 34px;
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.contact-form-intro h2 em {
  color: #087c80;
}

.contact-form-intro > p:last-of-type {
  max-width: 500px;
  margin: 0;
  line-height: 1.65;
}

.contact-form-visual {
  aspect-ratio: 1.4;
  margin-top: 48px;
}

.contact-form-visual img {
  object-position: center;
}

.contact-form-panel {
  grid-column: 7 / -1;
}

.project-form {
  padding: clamp(28px, 4vw, 56px);
  border-radius: 20px;
  background: var(--ink);
  color: #fff;
}

.project-form-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
  margin-bottom: 42px;
}

.project-form-head > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.64rem;
}

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

.project-form label,
.project-form-select {
  display: grid;
  gap: 10px;
}

.project-form label > span,
.project-form-select > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-form [data-slot="input"],
.project-form [data-slot="textarea"],
.project-form [data-slot="select-trigger"] {
  width: 100%;
  height: 54px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  font-size: 1rem;
}

.project-form [data-slot="textarea"] {
  min-height: 150px;
  padding-top: 16px;
  resize: vertical;
}

.project-form [data-slot="input"]::placeholder,
.project-form [data-slot="textarea"]::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.project-form-message {
  grid-column: 1 / -1;
}

.project-form-submit {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
}

.project-form-submit [data-slot="button"],
.newsletter-form [data-slot="button"] {
  min-height: 50px;
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-form-submit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

.project-form-submit a {
  color: var(--green);
}

.form-status {
  min-height: 1.4em;
  margin: 18px 0 0;
  color: var(--green);
  font-size: 0.68rem;
}

.contact-response-note {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  margin-top: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-response-note span {
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-response-note p {
  margin: 0;
  line-height: 1.6;
}

/* Newsletter footer */
.footer-top > .footer-contact {
  grid-column: 1 / span 3;
}

.footer-top nav {
  grid-column: 4 / span 2;
}

.footer-services {
  grid-column: 6 / span 2;
}

.footer-newsletter {
  grid-column: 8 / -1;
}

.footer-newsletter h2 {
  max-width: 620px;
  margin: 24px 0 30px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 3.3rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.footer-newsletter h2 em {
  color: var(--green);
}

.newsletter-form > label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter-form [data-slot="input"] {
  height: 50px;
  border-color: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  box-shadow: none;
}

.newsletter-form [data-slot="input"]::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.newsletter-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
  line-height: 1.5;
}

.footer-newsletter .form-status {
  margin-top: 8px;
}

@supports (animation-timeline: view()) {
  .experience-list article,
  .section-inline-cta,
  .project-conversion,
  .contact-form-intro,
  .contact-form-panel {
    animation: content-enter linear both;
    animation-timeline: view();
    animation-range: entry 2% cover 24%;
  }
}

@media (max-width: 960px) {
  .footer-top > .footer-contact {
    grid-column: 1 / span 5;
  }

  .footer-top nav {
    grid-column: 6 / span 2;
  }

  .footer-services {
    grid-column: 8 / span 5;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
    margin-top: 54px;
  }

  .contact-form-intro {
    grid-column: 1 / span 5;
  }

  .contact-form-panel {
    grid-column: 6 / -1;
  }

  .work-reel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .studio-journey-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .hero-copy-stack {
    grid-column: 1 / span 10;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-actions .button-link {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.58rem;
  }

  .section-inline-cta,
  .studio-process-cta {
    display: block;
  }

  .section-inline-cta .button-link,
  .section-inline-cta .text-link,
  .studio-process-cta .text-link {
    margin-top: 28px;
  }

  .experience-head,
  .project-conversion,
  .contact-form-section,
  .studio-journey-layout {
    display: block;
  }

  .studio-journey-head {
    margin-bottom: 54px;
  }

  .studio-journey-list article {
    grid-template-columns: 36px 1fr;
  }

  .studio-journey-list h3,
  .studio-journey-list p {
    grid-column: 2;
  }

  .experience-head h2 {
    margin-top: 28px;
    font-size: clamp(2.6rem, 11vw, 3.6rem);
  }

  .experience-list {
    display: block;
  }

  .experience-list article {
    min-height: 0;
    padding: 24px 0 38px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .experience-list h3 {
    margin: 38px 0 18px;
  }

  .faq-cta {
    display: block;
  }

  .faq-cta .button-link {
    width: 100%;
    margin-top: 20px;
  }

  .work-hero-bottom {
    display: block;
  }

  .work-hero-copy {
    width: 88%;
    margin: 0 0 42px auto;
  }

  .work-hero-copy > p {
    font-size: 1.25rem;
  }

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

  .case-gallery .case-frame,
  .case-gallery .case-frame:nth-child(even),
  .case-gallery .case-quote {
    grid-column: 1 / -1;
  }

  .case-gallery .case-frame {
    aspect-ratio: 1.414;
  }

  .project-conversion h2 {
    margin: 28px 0 34px;
    font-size: clamp(2.4rem, 10vw, 3.3rem);
  }

  .contact-form-intro {
    margin-bottom: 58px;
  }

  .contact-form-intro h2 {
    font-size: clamp(2.8rem, 12vw, 3.7rem);
  }

  .project-form {
    padding: 26px 20px;
  }

  .project-form-head,
  .project-form-submit {
    display: block;
  }

  .project-form-head > span {
    display: block;
    margin-top: 12px;
  }

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

  .project-form-submit [data-slot="button"] {
    width: 100%;
  }

  .project-form-submit p {
    margin-top: 18px;
  }

  .footer-top > .footer-contact,
  .footer-top nav,
  .footer-services,
  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .footer-top nav,
  .footer-services {
    margin-top: 38px;
  }

  .footer-newsletter {
    margin-top: 54px;
  }

  .newsletter-form > div {
    grid-template-columns: 1fr;
  }

  .newsletter-form [data-slot="button"] {
    width: 100%;
  }
}

/* Keep portfolio images large enough to read on every viewport. */
.work-reel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  height: auto;
  padding: 14px;
}

.work-reel-item,
.work-reel-item:last-child {
  aspect-ratio: 1.414;
  border: 0;
  border-radius: 14px;
}

@media (max-width: 960px) {
  .work-reel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .work-reel {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .work-reel-item {
    aspect-ratio: 1.414;
  }
}

/* Portfolio proof directly after the homepage hero. */
.home-photo-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  padding: 2px;
  overflow: hidden;
  background: var(--navy);
}

.home-photo-strip-item {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1.414;
  overflow: hidden;
  background: #071b2c;
}

.home-photo-strip-item::after {
  position: absolute;
  z-index: 1;
  inset: 38% 0 0;
  background: linear-gradient(180deg, transparent, rgba(2, 12, 20, 0.82));
  content: "";
}

.home-photo-strip-item img {
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
  transform: scale(1.015);
  transition: filter 650ms ease, transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
}

.home-photo-strip-item:hover img,
.home-photo-strip-item:focus-visible img {
  filter: saturate(1.1) contrast(1.02);
  transform: scale(1.07);
}

.home-photo-strip-index,
.home-photo-strip-caption,
.home-photo-strip-item > i {
  position: absolute;
  z-index: 2;
  color: #fff;
}

.home-photo-strip-index {
  top: 14px;
  left: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(4, 19, 31, 0.32);
  font-size: 0.57rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.home-photo-strip-caption {
  right: 50px;
  bottom: 17px;
  left: 17px;
  display: grid;
  gap: 4px;
}

.home-photo-strip-caption strong {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 2.1rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.home-photo-strip-caption small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-photo-strip-item > i {
  right: 17px;
  bottom: 18px;
  color: var(--green);
  font-style: normal;
  transition: transform 350ms ease;
}

.home-photo-strip-item:hover > i,
.home-photo-strip-item:focus-visible > i {
  transform: translate(3px, -3px);
}

.home-photo-strip-hint {
  display: none;
}

@media (max-width: 620px) {
  .home-photo-strip {
    grid-template-columns: none;
    grid-auto-columns: 88vw;
    grid-auto-flow: column;
    gap: 3px;
    padding: 3px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .home-photo-strip::-webkit-scrollbar {
    display: none;
  }

  .home-photo-strip-item {
    min-height: 245px;
    scroll-snap-align: start;
  }

  .home-photo-strip-hint {
    position: sticky;
    z-index: 4;
    right: 10px;
    bottom: 10px;
    display: block;
    align-self: end;
    width: max-content;
    margin: 0 10px 10px -155px;
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--green);
    color: var(--ink);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
}

/* Mobile composition: keep every hero block in document flow. */
@media (max-width: 760px) {
  .home-hero.full-image-hero {
    min-height: max(720px, 100svh);
  }

  .home-hero .hero-content {
    display: flex;
    min-height: inherit;
    flex-direction: column;
    padding-top: 82px;
    padding-bottom: 26px;
  }

  .home-hero .hero-kicker {
    width: 100%;
    margin-top: 0;
  }

  .home-hero .hero-title {
    width: 100%;
    max-width: none;
    margin: clamp(52px, 8svh, 76px) 0 0;
    font-size: clamp(3.2rem, 15vw, 4rem);
    letter-spacing: -0.055em;
    line-height: 0.92;
  }

  .home-hero .hero-title-offset {
    margin-left: 0;
    padding-bottom: 0.16em;
  }

  .home-hero .hero-bottom {
    position: static;
    display: block;
    width: 100%;
    margin-top: auto;
    padding-top: clamp(38px, 6svh, 56px);
  }

  .home-hero .hero-copy-stack,
  .home-hero .hero-copy {
    width: 100%;
    max-width: 34rem;
  }

  .home-hero .hero-copy {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .home-hero .hero-actions {
    display: grid;
    width: min(100%, 360px);
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 22px;
  }

  .home-hero .hero-actions .button-link,
  .button-link {
    justify-content: center;
    text-align: center;
  }

  .home-hero .hero-orbit {
    display: none;
  }

  .page-hero-content > p:last-child,
  .work-hero-copy {
    width: 100%;
    max-width: 36rem;
    margin-right: 0;
    margin-left: 0;
  }

  .section-head,
  .work-services-head,
  .archive-head,
  .proof-clients-head {
    align-items: flex-start;
  }

  .section-intro,
  .work-services-head > div:last-child,
  .archive-head > p,
  .work-spotlight-copy,
  .studio-experience-copy,
  .faq-intro > p {
    width: 100%;
    max-width: none;
  }

  .work-service-paths a {
    grid-template-columns: 1fr;
    gap: 5px;
    align-items: start;
  }

  .contact-line {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .home-hero.full-image-hero {
    min-height: max(700px, 100svh);
  }

  .home-hero .hero-title {
    margin-top: clamp(46px, 7svh, 64px);
    font-size: clamp(3rem, 14.5vw, 3.65rem);
  }
}

/* Dense, living homepage composition and a site-wide rhythm without dead space. */
.section-pad {
  padding-top: clamp(48px, 4.8vw, 80px);
  padding-bottom: clamp(48px, 4.8vw, 80px);
}

.section-head {
  margin-bottom: clamp(34px, 3.8vw, 58px);
}

.statement.shell {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto auto 1fr;
  gap: 18px;
  align-items: start;
  padding-top: clamp(50px, 5vw, 84px);
  padding-bottom: clamp(50px, 5vw, 84px);
  overflow: hidden;
}

.statement.shell > .eyebrow {
  grid-column: 1 / span 5;
  grid-row: 1;
}

.statement.shell > .statement-title {
  grid-column: 1 / span 6;
  grid-row: 2;
  max-width: 760px;
  margin: clamp(26px, 3vw, 46px) 0 0;
  font-size: clamp(2.45rem, 3.8vw, 4.2rem);
  line-height: 1.01;
}

.statement.shell > .statement-copy {
  grid-column: 1 / span 5;
  grid-row: 3;
  max-width: 590px;
  margin: clamp(22px, 2.3vw, 34px) 0 0;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.65;
}

.statement-values {
  grid-column: 1 / span 5;
  grid-row: 4;
  align-self: end;
  margin: clamp(30px, 3.5vw, 52px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.statement-values li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 10px 12px 10px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 320ms ease, background 320ms ease;
}

.statement-values li:hover {
  padding-left: 12px;
  background: rgba(173, 245, 50, 0.18);
}

.statement-values span {
  color: #087c80;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.statement-values strong {
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  font-weight: 600;
}

.statement.shell > .statement-visual {
  grid-column: 7 / -1;
  grid-row: 1 / 5;
  align-self: stretch;
  min-height: clamp(440px, 43vw, 680px);
  aspect-ratio: auto;
  margin: 0;
  border-radius: 22px;
}

.statement-visual::after {
  position: absolute;
  z-index: 2;
  top: -20%;
  bottom: -20%;
  left: -42%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(173, 245, 50, 0.18), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-14deg);
  animation: statement-light 8s ease-in-out infinite;
}

@keyframes statement-light {
  0%, 30% { left: -42%; opacity: 0; }
  48% { opacity: 1; }
  70%, 100% { left: 120%; opacity: 0; }
}

.work-section {
  padding-top: clamp(50px, 5vw, 84px);
  padding-bottom: clamp(56px, 5.5vw, 92px);
}

.work-section-head {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: stretch;
  margin-bottom: clamp(24px, 2.6vw, 40px);
  padding-bottom: 0;
  border-bottom: 0;
}

.work-section-head > .work-section-heading {
  grid-column: 1;
  align-self: center;
}

.work-section-head > .work-side {
  grid-column: 2;
}

.work-section-heading .section-title {
  max-width: 680px;
  font-size: clamp(2.45rem, 3.7vw, 4.15rem);
}

.work-side {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: clamp(380px, 35vw, 520px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 24px 70px rgba(5, 24, 35, 0.18);
}

.work-side::after {
  position: absolute;
  z-index: 1;
  top: -72px;
  right: -72px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(173, 245, 50, 0.42);
  border-radius: 50%;
  content: "";
  animation: work-orbit 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes work-orbit {
  to { transform: translate(-24px, 20px) scale(1.12); }
}

.work-side-image {
  z-index: -2;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  transform: scale(1.02);
  transition: filter 700ms ease, transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.work-side:hover .work-side-image {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.075);
}

.work-side-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 13, 23, 0.1), rgba(3, 13, 23, 0.9)),
    linear-gradient(105deg, rgba(3, 13, 23, 0.72), transparent 72%);
}

.work-side-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  padding: clamp(24px, 3vw, 42px);
}

.work-side-intro {
  grid-template-columns: minmax(86px, auto) 1fr;
  gap: clamp(20px, 2.4vw, 34px);
  align-items: end;
}

.work-side-count strong {
  color: var(--green);
}

.work-side-count small {
  color: rgba(255, 255, 255, 0.62);
}

.work-side-intro > p {
  max-width: 520px;
  color: #fff;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.34);
}

.work-disciplines {
  border-color: rgba(255, 255, 255, 0.24);
}

.work-disciplines span {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(3, 13, 23, 0.26);
  color: #fff;
  backdrop-filter: blur(8px);
}

.work-side .button-link {
  width: min(100%, 340px);
  align-self: flex-start;
}

.portfolio-visual-grid {
  margin-top: 0;
}

/* Compact recurring sections so visual content follows the message immediately. */
.services-visual {
  margin-bottom: clamp(34px, 3.8vw, 54px);
}

.service-row {
  min-height: 112px;
}

.process-step {
  min-height: 168px;
}

.brand-moment {
  min-height: 68svh;
}

.studio-preview-image,
.studio-grid > div,
.faq-visual,
.contact-form-visual {
  margin-top: clamp(32px, 3.8vw, 54px);
}

.studio-values article,
.studio-process article {
  min-height: 0;
}

.studio-contact,
.final-cta {
  min-height: 60svh;
}

.work-services-head,
.experience-head {
  margin-bottom: clamp(42px, 4.8vw, 72px);
}

.work-service-paths {
  margin-top: clamp(46px, 5vw, 78px);
}

.work-service-paths > div,
.work-service-paths > a {
  min-height: 158px;
}

.proof-metrics > div {
  min-height: 142px;
}

.proof-clients {
  margin-top: clamp(48px, 5vw, 78px);
}

.work-spotlight {
  padding-top: clamp(50px, 5vw, 82px);
  padding-bottom: clamp(50px, 5vw, 82px);
}

.work-archive {
  padding-bottom: clamp(62px, 6vw, 96px);
}

.archive-head {
  margin-bottom: clamp(36px, 4vw, 58px);
}

.work-download {
  margin-top: clamp(52px, 5.5vw, 88px);
}

.next-project,
.next-article {
  min-height: 44svh;
}

@media (max-width: 980px) {
  .statement.shell > .statement-title {
    grid-column: 1 / span 6;
  }

  .statement.shell > .statement-copy,
  .statement-values {
    grid-column: 1 / span 6;
  }

  .statement.shell > .statement-visual {
    grid-column: 7 / -1;
  }

  .work-section-head {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 26px;
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .statement.shell {
    display: block;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .statement.shell > .statement-title {
    margin-top: 22px;
  }

  .statement.shell > .statement-copy {
    width: 100%;
    margin: 20px 0 0;
  }

  .statement-values {
    margin-top: 28px;
  }

  .statement.shell > .statement-visual {
    min-height: 0;
    aspect-ratio: 1.16;
    margin-top: 28px;
    border-radius: 16px;
  }

  .work-section-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .work-section-head > .work-section-heading,
  .work-section-head > .work-side {
    grid-column: 1;
  }

  .work-side {
    width: 100%;
    min-height: 440px;
  }

  .work-side-content {
    padding: 22px 18px;
  }

  .work-side .button-link {
    width: 100%;
  }

  .service-row {
    min-height: 0;
  }

  .process-step {
    min-height: 0;
  }

  .brand-moment,
  .studio-contact,
  .final-cta {
    min-height: 56svh;
  }

  .next-project,
  .next-article {
    min-height: 38svh;
  }
}

@media (max-width: 420px) {
  .work-side {
    min-height: 470px;
  }

  .work-side-intro {
    grid-template-columns: 1fr;
  }
}

/* Balanced final contact composition and footer alignment. */
.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(34px, 4.5vw, 78px);
  align-content: initial;
  align-items: stretch;
  min-height: 0;
  padding-top: clamp(58px, 6vw, 94px);
  padding-bottom: clamp(58px, 6vw, 94px);
}

.final-cta-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.final-cta h2 {
  margin: clamp(24px, 3vw, 42px) 0 0;
  font-size: clamp(4rem, 6.4vw, 7.6rem);
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.final-cta-lead {
  max-width: 560px;
  margin: clamp(28px, 3vw, 44px) 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.98rem, 1.15vw, 1.16rem);
  line-height: 1.62;
}

.final-cta-contact {
  margin-top: clamp(30px, 3.5vw, 52px);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.final-cta-contact .cta-email,
.final-cta-contact .cta-whatsapp {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(96px, 0.34fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 17px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--ivory);
  text-transform: none;
  transition: color 260ms ease, padding-left 260ms ease;
}

.final-cta-contact .cta-email:hover,
.final-cta-contact .cta-email:focus-visible,
.final-cta-contact .cta-whatsapp:hover,
.final-cta-contact .cta-whatsapp:focus-visible {
  padding-left: 10px;
  color: var(--green);
}

.final-cta-contact small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.final-cta-contact strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: clamp(0.96rem, 1.3vw, 1.28rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.final-cta-visual {
  position: relative;
  min-height: clamp(390px, 34vw, 560px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: var(--navy);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.final-cta-visual::after {
  position: absolute;
  inset: 38% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(3, 13, 23, 0.9));
  content: "";
  pointer-events: none;
}

.final-cta-visual img {
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.final-cta-visual:hover img {
  transform: scale(1.035);
}

.final-cta-visual figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 2.5vw, 38px);
  bottom: clamp(20px, 2.5vw, 34px);
  left: clamp(20px, 2.5vw, 38px);
  display: grid;
  gap: 8px;
}

.final-cta-visual figcaption span {
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.final-cta-visual figcaption strong {
  max-width: 620px;
  color: #fff;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 500;
  line-height: 1.35;
}

.site-footer {
  padding-top: clamp(62px, 6vw, 92px);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(230px, 1.05fr) minmax(110px, 0.5fr) minmax(190px, 0.78fr) minmax(360px, 1.55fr);
  column-gap: clamp(26px, 3vw, 54px);
  row-gap: 42px;
  align-items: start;
  padding-bottom: clamp(68px, 7vw, 108px);
}

.footer-top > .footer-contact,
.footer-top > nav,
.footer-top > .footer-services,
.footer-top > .footer-newsletter {
  grid-column: auto;
  align-self: start;
  min-width: 0;
  margin-top: 0;
}

.footer-top > nav,
.footer-top > .footer-services {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-column-label {
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact .footer-email {
  max-width: 100%;
  margin-top: 26px;
  overflow-wrap: anywhere;
  font-size: clamp(1.65rem, 2.25vw, 2.7rem);
}

.footer-newsletter h2 {
  margin-top: 25px;
  font-size: clamp(1.9rem, 2.45vw, 3rem);
}

.newsletter-form > div {
  grid-template-columns: minmax(0, 1fr) auto;
}

.newsletter-form [data-slot="input"] {
  min-width: 0;
}

@media (max-width: 1080px) {
  .footer-top {
    grid-template-columns: minmax(220px, 1fr) minmax(120px, 0.52fr) minmax(200px, 0.8fr);
  }

  .footer-top > .footer-newsletter {
    grid-column: 1 / -1;
    margin-top: 6px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer-newsletter h2 {
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  .final-cta {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: 0;
  }

  .final-cta-copy {
    padding-top: 4px;
  }

  .final-cta h2 {
    font-size: clamp(4rem, 13vw, 6.5rem);
  }

  .final-cta-visual {
    min-height: 0;
    aspect-ratio: 1.45;
  }
}

@media (max-width: 760px) {
  .final-cta {
    gap: 32px;
    min-height: 0;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .final-cta h2 {
    margin-top: 22px;
    font-size: clamp(3.55rem, 18vw, 5.2rem);
  }

  .final-cta-lead {
    margin-top: 25px;
  }

  .final-cta-contact {
    margin-top: 30px;
  }

  .final-cta-visual {
    aspect-ratio: 1.08;
    border-radius: 18px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 62px;
  }

  .footer-top > .footer-contact,
  .footer-top > nav,
  .footer-top > .footer-services,
  .footer-top > .footer-newsletter {
    grid-column: 1;
    margin-top: 0;
  }

  .footer-top > nav,
  .footer-top > .footer-services,
  .footer-top > .footer-newsletter {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer-newsletter h2 {
    max-width: 520px;
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .newsletter-form > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .final-cta-contact .cta-email,
  .final-cta-contact .cta-whatsapp {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 15px 0;
  }

  .final-cta-contact .cta-email:hover,
  .final-cta-contact .cta-email:focus-visible,
  .final-cta-contact .cta-whatsapp:hover,
  .final-cta-contact .cta-whatsapp:focus-visible {
    padding-left: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .statement-visual::after,
  .work-side::after {
    animation: none;
  }

  .work-side-image {
    transition: none;
  }
}

/* Transparent header at rest, solid black navigation after movement. */
.site-header {
  color: #fff;
}

.site-header::before {
  border-bottom-color: transparent;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  backdrop-filter: blur(0);
  transition: opacity 280ms ease, background 280ms ease, border-color 280ms ease, box-shadow 280ms ease, backdrop-filter 280ms ease;
}

.site-header.is-scrolled::before,
.site-header.is-menu-open::before {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  opacity: 1;
  backdrop-filter: blur(16px);
}

/* Isolate Radix Select from global editorial effects and Safari line clamping. */
.project-form .project-select-trigger {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  min-width: 0;
  padding-inline: 2px;
  text-align: left;
  text-shadow: none;
}

.project-form .project-select-trigger [data-slot="select-value"] {
  display: block !important;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-box-orient: initial !important;
  -webkit-line-clamp: unset !important;
}

.project-select-content {
  z-index: 220 !important;
  width: var(--radix-select-trigger-width);
  min-width: var(--radix-select-trigger-width) !important;
  max-height: min(330px, var(--radix-select-content-available-height)) !important;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 12px !important;
  background: #07131d !important;
  color: #fff !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38) !important;
}

.project-select-content [data-radix-select-viewport] {
  width: 100%;
  min-width: 100%;
  height: auto !important;
  max-height: 300px;
  padding: 0 !important;
}

.project-select-item {
  min-height: 42px;
  padding: 10px 38px 10px 12px !important;
  border-radius: 8px !important;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 0.88rem !important;
  line-height: 1.35;
  white-space: normal;
}

.project-select-item[data-highlighted],
.project-select-item[data-state="checked"] {
  background: var(--green) !important;
  color: var(--ink) !important;
}

.project-select-item [data-slot="select-item-indicator"] {
  color: currentColor;
}

/* Downloadable portfolio: a compact final proof point on the Work page. */
.work-download {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
  margin-top: clamp(72px, 9vw, 138px);
  padding: clamp(34px, 5vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 8%, rgba(164, 255, 22, 0.2), transparent 34%),
    linear-gradient(135deg, #07131d 0%, #0a2025 58%, #102a22 100%);
  color: #fff;
  box-shadow: 0 28px 80px rgba(1, 18, 26, 0.18);
}

.work-download::before {
  position: absolute;
  z-index: -1;
  right: -0.08em;
  bottom: -0.34em;
  color: rgba(255, 255, 255, 0.035);
  content: "50";
  font-size: clamp(13rem, 25vw, 28rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 1;
  pointer-events: none;
}

.work-download .eyebrow {
  color: var(--green);
}

.work-download-copy {
  max-width: 800px;
}

.work-download-copy h2 {
  max-width: 780px;
  margin: 28px 0 26px;
  font-size: clamp(2.35rem, 4.7vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.work-download-copy h2 em {
  color: var(--green);
}

.work-download-copy > p:last-child {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.65;
}

.work-download-action {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(5, 18, 25, 0.58);
  backdrop-filter: blur(14px);
}

.work-download-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
}

.work-download-meta div {
  min-width: 0;
}

.work-download-meta dt {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-download-meta dd {
  margin: 0;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.work-download-action .button-link {
  width: 100%;
  min-height: 58px;
  justify-content: center;
  text-align: center;
}

.work-download-action small {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 900px) {
  .work-download {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .work-download-action {
    width: min(100%, 520px);
  }
}

@media (max-width: 560px) {
  .work-download {
    margin-top: 64px;
    padding: 26px 20px;
    border-radius: 18px;
  }

  .work-download-copy h2 {
    margin: 22px 0 20px;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1;
  }

  .work-download-action {
    padding: 20px 16px;
  }

  .work-download-meta {
    gap: 10px;
  }

  .work-download-action .button-link {
    min-height: 54px;
    padding-inline: 16px;
    font-size: 0.7rem;
  }
}

/* Editorial scale and denser layouts: readable hierarchy without oversized text. */
body {
  font-size: 16px;
  line-height: 1.6;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.section-pad {
  padding-top: clamp(60px, 5.8vw, 96px);
  padding-bottom: clamp(60px, 5.8vw, 96px);
}

.section-head {
  margin-bottom: clamp(38px, 4.4vw, 68px);
}

.hero-title {
  max-width: 980px;
  font-size: clamp(3.75rem, 6.35vw, 6.6rem);
  line-height: 0.92;
}

.statement-title,
.section-title {
  font-size: clamp(2.45rem, 4.05vw, 4.45rem);
  line-height: 1;
}

.statement-copy,
.section-intro,
.page-hero-content > p:last-child {
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
}

.capabilities {
  padding: clamp(14px, 1.35vw, 22px) 0;
}

.marquee-track {
  gap: 2.2vw;
  animation-duration: 40s;
}

.marquee-track span {
  gap: 2.2vw;
  font-size: clamp(1.8rem, 2.8vw, 3.1rem);
  line-height: 1;
}

.service-row h3,
.process-step h3 {
  font-size: clamp(1.85rem, 2.8vw, 3.15rem);
  line-height: 1.05;
}

.process-step {
  min-height: 190px;
}

.brand-moment p {
  font-size: clamp(2.8rem, 5.2vw, 5.6rem);
  line-height: 0.9;
}

.studio-grid h2,
.studio-manifesto h2,
.studio-manifesto-layout h2,
.studio-experience-head h2,
.proof-copy h2,
.experience-head h2,
.faq-intro h2,
.contact-form-intro h2,
.work-services-head h2 {
  font-size: clamp(2.45rem, 4vw, 4.45rem);
  line-height: 1;
}

.founder-section blockquote h2,
.work-spotlight-copy h2 {
  font-size: clamp(1.8rem, 2.65vw, 3rem);
  line-height: 1.2;
}

.studio-values h2,
.studio-capabilities h2,
.studio-process h2,
.experience-list h3,
.work-service-card h3 {
  font-size: clamp(1.75rem, 2.65vw, 3rem);
  line-height: 1.05;
}

.studio-contact h2,
.final-cta h2,
.project-conversion h2,
.work-download-copy h2 {
  font-size: clamp(2.7rem, 4.8vw, 5.2rem);
  line-height: 0.98;
}

.page-hero h1,
.work-page-hero h1,
.blog-hero h1,
.studio-page .page-hero h1,
.contact-inner h1,
.case-hero h1 {
  font-size: clamp(3.25rem, 5.6vw, 5.9rem);
  line-height: 0.94;
}

.section-inline-cta {
  margin-top: clamp(40px, 4.5vw, 68px);
}

.section-inline-cta > p {
  font-size: clamp(1.15rem, 1.6vw, 1.75rem);
  line-height: 1.3;
}

.work-service-card {
  min-height: 0;
}

.work-service-card h3 {
  margin: clamp(38px, 4vw, 62px) 0 22px;
}

.experience-list article {
  min-height: 270px;
}

.experience-list h3 {
  margin: clamp(38px, 4vw, 60px) 0 20px;
}

/* Homepage work presentation: useful information replaces empty display space. */
.work-section {
  padding-bottom: clamp(68px, 6.5vw, 108px);
}

.work-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
  margin-bottom: clamp(38px, 4.5vw, 70px);
  padding-bottom: clamp(38px, 4.5vw, 66px);
  border-bottom: 1px solid var(--line);
}

.work-section-heading {
  grid-column: auto;
}

.work-section-heading .section-title {
  max-width: 820px;
  margin-top: 24px;
  font-size: clamp(2.65rem, 4.2vw, 4.7rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.work-section-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(0.98rem, 1.12vw, 1.12rem);
  line-height: 1.65;
}

.work-side {
  grid-column: auto;
  display: grid;
  gap: 24px;
  justify-content: stretch;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.38);
}

.work-side-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 2.6vw, 38px);
  align-items: start;
}

.work-side-count {
  display: grid;
  min-width: 86px;
  gap: 4px;
}

.work-side-count strong {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.5vw, 3.7rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.work-side-count small {
  color: rgba(17, 17, 17, 0.52);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-side-intro > p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.45vw, 1.4rem);
  font-style: italic;
  line-height: 1.4;
}

.work-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.work-disciplines span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.work-side .button-link {
  width: 100%;
  justify-content: center;
}

/* Blog: calm editorial reading scale and a tighter vertical rhythm. */
.blog-hero.full-image-hero {
  min-height: 68svh;
}

.blog-hero h1 {
  font-size: clamp(3.2rem, 5.2vw, 5.3rem);
}

.blog-hero-bottom p {
  font-size: clamp(1rem, 1.25vw, 1.3rem);
  line-height: 1.4;
}

.featured-article {
  min-height: 62svh;
}

.featured-article-image {
  min-height: 500px;
}

.featured-article-copy {
  padding: clamp(38px, 4.5vw, 72px);
}

.featured-article-copy h2 {
  margin: 38px 0 24px;
  font-size: clamp(2.15rem, 3.25vw, 3.6rem);
  line-height: 1.04;
}

.featured-article-copy > p {
  margin-bottom: 38px;
}

.blog-index-head h2 {
  margin-top: 34px;
  font-size: clamp(2.2rem, 3.35vw, 3.65rem);
  line-height: 1.02;
}

.blog-list article {
  min-height: 148px;
  padding: 20px 0;
}

.blog-list h3,
.article-card h3 {
  font-size: clamp(1.35rem, 1.8vw, 2.1rem);
  line-height: 1.14;
}

.article-hero.full-image-hero {
  min-height: 72svh;
}

.article-hero h1,
.article-hero-content h1 {
  max-width: 1180px;
  margin: clamp(58px, 7vh, 88px) 0 30px;
  font-size: clamp(2.7rem, 4.35vw, 4.7rem);
  line-height: 1.02;
}

.article-hero-content > p {
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
}

.article-body > div {
  grid-column: 4 / span 8;
  max-width: 880px;
}

.article-body p {
  margin-bottom: 34px;
  font-size: clamp(1.08rem, 1.24vw, 1.3rem);
  line-height: 1.65;
}

.article-body blockquote {
  margin-top: 58px;
  font-size: clamp(1.6rem, 2.35vw, 2.6rem);
  line-height: 1.16;
}

.next-article {
  min-height: 46svh;
}

.next-article strong {
  font-size: clamp(2.35rem, 4vw, 4.3rem);
  line-height: 1.05;
}

.testimonials-head h2 {
  font-size: clamp(2.45rem, 3.9vw, 4.35rem);
}

.project-hover-title {
  font-size: clamp(1.9rem, 2.8vw, 3.25rem);
}

.case-quote {
  font-size: clamp(2.15rem, 3.8vw, 4.25rem);
}

.next-project strong {
  font-size: clamp(2.65rem, 4.8vw, 5rem);
}

.not-found h1 {
  font-size: clamp(3rem, 5.2vw, 5.6rem);
}

.footer-word {
  font-size: clamp(4rem, 8.5vw, 7rem);
}

@media (max-width: 900px) {
  .work-section-head {
    grid-template-columns: 1fr;
  }

  .work-side {
    width: min(100%, 680px);
  }

  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-article-image {
    min-height: 0;
    aspect-ratio: 1.5;
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .home-hero .hero-title {
    font-size: clamp(2.85rem, 13.4vw, 3.55rem);
    line-height: 0.96;
  }

  .statement-title,
  .section-title,
  .work-section-heading .section-title {
    font-size: clamp(2.2rem, 9.8vw, 3rem);
    line-height: 1.02;
  }

  .marquee-track span {
    font-size: 1.8rem;
  }

  .page-hero h1,
  .work-page-hero h1,
  .blog-hero h1,
  .studio-page .page-hero h1,
  .contact-inner h1,
  .case-hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.6rem);
    line-height: 0.98;
  }

  .studio-grid h2,
  .studio-manifesto h2,
  .studio-experience-head h2,
  .proof-copy h2,
  .experience-head h2,
  .faq-intro h2,
  .contact-form-intro h2,
  .work-services-head h2 {
    font-size: clamp(2.15rem, 9.4vw, 2.85rem);
  }

  .studio-contact h2,
  .final-cta h2,
  .project-conversion h2,
  .work-download-copy h2 {
    font-size: clamp(2.4rem, 10.5vw, 3.25rem);
  }

  .work-section-head {
    gap: 30px;
    margin-bottom: 34px;
    padding-bottom: 34px;
  }

  .work-section-lead {
    margin-top: 20px;
  }

  .work-side {
    gap: 20px;
    padding: 22px 18px;
  }

  .work-side-intro {
    grid-template-columns: 74px 1fr;
    gap: 16px;
  }

  .work-side-count {
    min-width: 0;
  }

  .work-side-count strong {
    font-size: 2.5rem;
  }

  .work-side-intro > p {
    font-size: 1.05rem;
  }

  .blog-hero.full-image-hero,
  .article-hero.full-image-hero {
    min-height: 66svh;
  }

  .blog-hero h1 {
    font-size: clamp(2.7rem, 11.5vw, 3.4rem);
  }

  .featured-article-copy h2,
  .blog-index-head h2 {
    font-size: clamp(2rem, 8.8vw, 2.65rem);
  }

  .blog-list h3,
  .article-card h3 {
    font-size: 1.4rem;
  }

  .article-hero h1,
  .article-hero-content h1 {
    margin-top: 9vh;
    font-size: clamp(2.35rem, 10.4vw, 3.15rem);
  }

  .article-body p {
    font-size: 1.05rem;
  }

  .article-body blockquote {
    font-size: 1.65rem;
  }

  .next-article {
    min-height: 40svh;
  }

  .next-article strong {
    font-size: clamp(2.2rem, 9.5vw, 3rem);
  }

  .testimonials-head h2 {
    font-size: clamp(2.15rem, 9.4vw, 2.85rem);
  }

  .case-quote {
    font-size: clamp(1.7rem, 7.5vw, 2.3rem);
  }

  .next-project strong,
  .not-found h1 {
    font-size: clamp(2.4rem, 10.5vw, 3.3rem);
  }

  .footer-word {
    font-size: 14vw;
  }
}

@media (max-width: 420px) {
  .work-side-intro {
    grid-template-columns: 1fr;
  }

  .work-side-count {
    grid-template-columns: auto 1fr;
    align-items: end;
  }

  .work-side-count small {
    padding-bottom: 4px;
  }
}

/* Final cascade repair: keep the dense living layout above legacy overrides. */
.section-pad {
  padding-top: clamp(48px, 4.8vw, 80px);
  padding-bottom: clamp(48px, 4.8vw, 80px);
}

.section-head {
  margin-bottom: clamp(34px, 3.8vw, 58px);
}

.work-section {
  padding-top: clamp(50px, 5vw, 84px);
  padding-bottom: clamp(56px, 5.5vw, 92px);
}

.work-section-head {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: stretch;
  margin-bottom: clamp(24px, 2.6vw, 40px);
  padding-bottom: 0;
  border-bottom: 0;
}

.work-section-head > .work-section-heading {
  grid-column: 1;
  align-self: center;
}

.work-section-head > .work-side {
  grid-column: 2;
}

.work-section-heading .section-title {
  max-width: 680px;
  font-size: clamp(2.45rem, 3.7vw, 4.15rem);
}

.work-side {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: clamp(380px, 35vw, 520px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 24px 70px rgba(5, 24, 35, 0.18);
}

.work-side-intro {
  grid-template-columns: minmax(86px, auto) 1fr;
  gap: clamp(20px, 2.4vw, 34px);
  align-items: end;
}

.work-side-count strong {
  color: var(--green);
}

.work-side-count small {
  color: rgba(255, 255, 255, 0.62);
}

.work-side-intro > p {
  max-width: 520px;
  color: #fff;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.34);
}

.work-disciplines {
  border-color: rgba(255, 255, 255, 0.24);
}

.work-disciplines span {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(3, 13, 23, 0.26);
  color: #fff;
  backdrop-filter: blur(8px);
}

.work-side .button-link {
  width: min(100%, 340px);
  align-self: flex-start;
}

.portfolio-visual-grid {
  margin-top: 0;
}

.services-visual {
  margin-bottom: clamp(34px, 3.8vw, 54px);
}

.service-row {
  min-height: 112px;
}

.process-step {
  min-height: 168px;
}

.brand-moment {
  min-height: 68svh;
}

.studio-preview-image,
.studio-grid > div,
.faq-visual,
.contact-form-visual {
  margin-top: clamp(32px, 3.8vw, 54px);
}

.studio-values article,
.studio-process article {
  min-height: 0;
}

.studio-contact,
.final-cta {
  min-height: 60svh;
}

.work-services-head,
.experience-head {
  margin-bottom: clamp(42px, 4.8vw, 72px);
}

.work-service-paths {
  margin-top: clamp(46px, 5vw, 78px);
}

.work-service-paths > div,
.work-service-paths > a {
  min-height: 158px;
}

.proof-metrics > div {
  min-height: 142px;
}

.proof-clients {
  margin-top: clamp(48px, 5vw, 78px);
}

.work-spotlight {
  padding-top: clamp(50px, 5vw, 82px);
  padding-bottom: clamp(50px, 5vw, 82px);
}

.work-archive {
  padding-bottom: clamp(62px, 6vw, 96px);
}

.archive-head {
  margin-bottom: clamp(36px, 4vw, 58px);
}

.work-download {
  margin-top: clamp(52px, 5.5vw, 88px);
}

.next-project,
.next-article {
  min-height: 44svh;
}

@media (max-width: 900px) {
  .statement.shell {
    display: block;
  }

  .statement.shell > .statement-title {
    margin-top: 24px;
  }

  .statement.shell > .statement-copy {
    width: 100%;
    margin: 20px 0 0;
  }

  .statement-values {
    margin-top: 28px;
  }

  .statement.shell > .statement-visual {
    min-height: 0;
    aspect-ratio: 1.5;
    margin-top: 28px;
  }

  .work-section-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .work-section-head > .work-section-heading,
  .work-section-head > .work-side {
    grid-column: 1;
  }

  .work-side {
    width: 100%;
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .statement.shell {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .statement.shell > .statement-visual {
    aspect-ratio: 1.16;
    border-radius: 16px;
  }

  .work-side {
    min-height: 440px;
  }

  .work-side-content {
    padding: 22px 18px;
  }

  .work-side .button-link {
    width: 100%;
  }

  .service-row,
  .process-step {
    min-height: 0;
  }

  .brand-moment,
  .studio-contact,
  .final-cta {
    min-height: 56svh;
  }

  .next-project,
  .next-article {
    min-height: 38svh;
  }
}

@media (max-width: 420px) {
  .work-side {
    min-height: 470px;
  }

  .work-side-intro {
    grid-template-columns: 1fr;
  }
}
