@font-face {
  font-family: Manrope;
  src: url("../assets/fonts/manrope-variable.ttf") format("truetype");
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --color-bg: #0c0c0c;
  --color-text: #f2f2f2;
  --color-text-muted: #9d9d9d;
  --color-accent: #ededed;
  --color-border: #333333;
  --font-sans: Manrope, Arial, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --gutter: clamp(22px, 4.3vw, 80px);
  --section-space: clamp(84px, 9vw, 150px);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font: 400 16px/1.65 var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
body.dialog-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 6px;
}
img {
  max-width: 100%;
  display: block;
}
button {
  border: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
h2 {
  font-size: clamp(42px, 5.2vw, 80px);
  line-height: 1.1;
  letter-spacing: -0.06em;
}
h3 {
  letter-spacing: -0.035em;
}
.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.055em;
}
.accent {
  color: var(--color-accent);
}
.dim {
  color: #696969;
}
.micro,
.eyebrow {
  font-size: 12px;
  line-height: 1.5;
}
.micro {
  letter-spacing: 0.025em;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 600;
}
.section-pad {
  padding-inline: var(--gutter);
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 10px 20px;
  background: var(--color-accent);
  color: var(--color-bg);
  z-index: 200;
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: translateY(0);
}
.header {
  height: 90px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-border);
  background: rgba(12, 12, 12, 0.92);
}
.wordmark {
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.09em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.brand-star {
  font-size: 32px;
  color: var(--color-accent);
  letter-spacing: 0;
}
.desktop-nav {
  display: flex;
  gap: 30px;
}
.desktop-nav a {
  font-size: 13px;
  display: flex;
  gap: 5px;
  align-items: center;
  transition: color 150ms ease;
}
.desktop-nav a span {
  font-size: 10px;
  color: #747474;
  align-self: flex-start;
}
.header-cta {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 28px;
  border: 1px solid #575757;
  padding: 10px 17px;
  border-radius: 30px;
  transition:
    background 180ms ease,
    color 180ms ease;
}
.header-cta > span {
  font-size: 19px;
}
.menu-toggle {
  display: none;
}
.hero {
  min-height: 780px;
  height: 100svh;
  max-height: 1120px;
  padding: 124px var(--gutter) 24px;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: radial-gradient(ellipse at 78% 55%, #28282866, transparent 44%);
}
.hero-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.hero-top .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow i {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
}
.hero-edition {
  color: var(--color-text-muted);
}
.hero-body {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
  min-height: 0;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: 69%;
  pointer-events: none;
}
.hero-copy a {
  pointer-events: auto;
}
.hero h1 {
  font-size: clamp(55px, 6.6vw, 108px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.085;
}
.hero h1 > span {
  display: block;
  white-space: nowrap;
}
.title-dot {
  color: var(--color-text);
}
.hero-description {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.75;
  color: #b9b9b9;
  max-width: 465px;
  margin-top: 32px;
}
.hero-description strong {
  font-weight: 500;
  color: var(--color-text);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  gap: 34px;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 16px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 650;
  transition:
    transform 160ms var(--ease-out),
    background 180ms ease;
}
.button > span {
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}
.button-lime {
  background: var(--color-accent);
  color: var(--color-bg);
}
.button-dark {
  background: var(--color-bg);
  color: var(--color-text);
}
.button:active,
button:active {
  transform: scale(0.97);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  border-bottom: 1px solid #555555;
  padding-block: 8px;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}
.text-link > span {
  font-size: 21px;
  line-height: 1;
}
.hero-art {
  position: absolute;
  right: -7%;
  top: -2%;
  width: 60%;
  height: 100%;
  z-index: 1;
}
.hero-art .sculpture-render {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 700ms ease;
}
.hero-art.has-render .sculpture-render {
  opacity: 1;
}
.art-halo {
  position: absolute;
  inset: 15% 5%;
  border-radius: 50%;
  background: radial-gradient(ellipse, #c7c7c70c, transparent 70%);
}
.art-fallback {
  font-size: clamp(230px, 36vw, 560px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.1em;
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  color: #ededed22;
}
.art-fallback span {
  position: absolute;
  top: 10%;
  right: 15%;
  font-size: 0.4em;
  color: var(--color-accent);
}
.has-render .art-fallback {
  display: none;
}
.art-coordinate {
  position: absolute;
  top: 9%;
  right: 19%;
  color: #8a8a8a;
}
.art-caption {
  position: absolute;
  bottom: 14%;
  right: 8%;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #c5c5c5;
  z-index: 2;
}
.crosshair {
  color: var(--color-accent);
  font-size: 26px;
  font-weight: 300;
}
.art-caption-line {
  width: 45px;
  height: 1px;
  background: #636363;
}
.motion-toggle {
  position: absolute;
  bottom: 5%;
  right: 19%;
  background: transparent;
  padding: 8px;
  color: #a1a1a1;
  z-index: 3;
}
.motion-toggle span {
  margin-right: 8px;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: 23px;
  color: #a8a8a8;
  gap: 20px;
}
.hero-bottom .dim {
  margin-inline: 10px;
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 25px;
}
.scroll-cue > span {
  color: var(--color-accent);
  font-size: 23px;
  line-height: 1;
}
.hero-index {
  color: #6f6f6f;
}
.clients {
  padding-block: 38px 45px;
  border-block: 1px solid var(--color-border);
  background: #151515;
}
.clients > .eyebrow {
  text-align: center;
  font-size: 10px;
  color: #979797;
}
.client-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  color: #b1b1b1;
}
.client-logos > span {
  white-space: nowrap;
}
.client-iceberry {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.06em;
  position: relative;
}
.client-flower {
  position: absolute;
  right: 0;
  top: -13px;
  font-size: 14px;
}
.client-petro {
  font-family: Georgia, serif;
  font-size: 17px;
  letter-spacing: 0.025em;
  text-align: center;
}
.client-petro small {
  display: block;
  font-size: 10px;
  line-height: 1;
}
.client-smart {
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-size: 25px;
}
.client-smart > span {
  display: block;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.22em;
}
.client-lamiya {
  font-family: Georgia, serif;
  font-size: 25px;
  letter-spacing: 0.12em;
}
.client-skr {
  font-family: Georgia, serif;
  font-size: 26px;
  letter-spacing: -0.05em;
}
.client-skr small {
  font: 600 11px var(--font-sans);
  letter-spacing: 0.14em;
}
.client-olluco {
  font-size: 18px;
  letter-spacing: 0.08em;
}
.work {
  padding-block: var(--section-space) 80px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  margin-bottom: 48px;
}
.section-label {
  display: block;
  color: var(--color-text-muted);
  margin-bottom: 27px;
}
.section-intro {
  font-size: 15px;
  color: #a3a3a3;
  line-height: 1.8;
  padding-bottom: 6px;
}
.work-filters {
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 24px;
  margin-bottom: 35px;
}
.filter {
  font-size: 13px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  padding: 10px 20px;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}
.filter.active {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}
.filter sup {
  font-size: 10px;
  margin-left: 4px;
}
.work-count {
  margin-left: auto;
  color: #929292;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 28px;
  align-items: start;
}
.project-card[hidden] {
  display: none;
}
.project-offset {
  margin-top: 85px;
}
.is-filtered .project-offset {
  margin-top: 0;
}
.project-image {
  position: relative;
  width: 100%;
  display: block;
  aspect-ratio: 1.19;
  overflow: hidden;
  background: #242424;
  border: 0;
  padding: 0;
  text-align: left;
  border-radius: 3px;
}
.project-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.iceberry-image {
  background: #c8c8c8;
}
.iceberry-image > img {
  object-fit: contain;
  background: radial-gradient(ellipse, #cacaca, #a0a0a0);
  transform: scale(1.01);
}
.lamiya-image img {
  object-position: 50% 58%;
}
.olluco-image img {
  object-position: 50% 52%;
}
.skr-image img {
  object-position: 50% 47%;
}
.petro-image {
  background: #b3b3b3;
}
.petro-image img {
  object-fit: contain;
}
.project-category {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(12, 12, 12, 0.66);
  color: #f2f2f2;
  padding: 7px 12px;
  border-radius: 30px;
  font-size: 11px;
  backdrop-filter: blur(8px);
}
.project-open {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  background: var(--color-text);
  color: var(--color-bg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
  transition:
    transform 200ms var(--ease-out),
    background 180ms ease;
}
.project-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 20px;
  gap: 16px;
}
.project-meta h3 {
  font-size: 25px;
  line-height: 1.3;
  font-weight: 500;
}
.project-meta p {
  font-size: 13px;
  color: #a1a1a1;
  margin-top: 5px;
}
.project-meta > .micro {
  color: #767676;
  padding-top: 5px;
}
.personal-image {
  background: #ededed;
  color: #171717;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.personal-monogram {
  position: relative;
  font-size: clamp(120px, 16vw, 240px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.14em;
  margin-left: -25px;
}
.personal-monogram > .serif {
  margin-left: -0.18em;
}
.monogram-star {
  font-size: 50px;
  position: absolute;
  top: 15px;
  right: -50px;
  letter-spacing: 0;
}
.personal-name {
  font-size: 14px;
  letter-spacing: 0.3em;
}
.work-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--color-border);
  padding-top: 25px;
  margin-top: 56px;
}
.work-footer > p {
  font-size: 14px;
  color: var(--color-text-muted);
}
.approach {
  height: 220vh;
  background: #ededed;
  color: #141414;
  position: relative;
}
.approach-sticky {
  position: sticky;
  top: 0;
  min-height: 720px;
  height: 100svh;
  max-height: 1100px;
  overflow: hidden;
  padding-top: 44px;
  padding-bottom: 45px;
  display: flex;
  flex-direction: column;
}
.approach-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.approach h2 {
  font-size: clamp(56px, 7.7vw, 120px);
  margin-top: 48px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.07em;
}
.approach-counter {
  font-variant-numeric: tabular-nums;
}
.approach-orbit {
  position: absolute;
  right: 9%;
  top: 13%;
  height: 350px;
  width: 350px;
  perspective: 800px;
  transform-style: preserve-3d;
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid #4b4b4b88;
  border-radius: 50%;
  box-shadow: 0 0 0 10px #76767608;
  transform-style: preserve-3d;
}
.ring-one {
  transform: rotateX(64deg) rotateZ(-25deg);
}
.ring-two {
  transform: rotateY(70deg) rotateZ(15deg);
}
.ring-three {
  transform: rotateX(25deg) rotateY(35deg);
}
.orbit-core {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  font-size: 120px;
  font-weight: 650;
  letter-spacing: -0.1em;
  transform: rotate(-16deg);
}
.orbit-core > span {
  position: absolute;
  right: 95px;
  top: 75px;
  font-size: 45px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: auto;
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.process-step {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #5a5a5a55;
  opacity: 0.75;
  transition:
    opacity 250ms ease,
    border-color 250ms ease;
}
.process-step.is-active {
  opacity: 1;
  border-top-color: #202020;
}
.step-number {
  font-size: 12px;
  padding-top: 8px;
  white-space: nowrap;
}
.process-step h3 {
  font-size: 27px;
  margin-bottom: 12px;
}
.process-step p {
  max-width: 320px;
  font-size: 14px;
  line-height: 1.8;
}
.approach-track {
  height: 3px;
  background: #81818133;
  margin-top: 38px;
  overflow: hidden;
}
.approach-track > span {
  display: block;
  height: 100%;
  background: #202020;
  transform: scaleX(0.03);
  transform-origin: left;
}
.services {
  padding-block: var(--section-space);
}
.service-list {
  border-top: 1px solid var(--color-border);
}
.service-item {
  border-bottom: 1px solid var(--color-border);
}
.service-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 29px 0;
}
.service-item summary::-webkit-details-marker {
  display: none;
}
.service-number {
  color: #7c7c7c;
  width: 45px;
  flex-shrink: 0;
}
.service-item h3 {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.35;
}
.service-plus {
  margin-left: auto;
  height: 36px;
  width: 36px;
  position: relative;
  flex-shrink: 0;
}
.service-plus::before,
.service-plus::after {
  content: "";
  height: 1px;
  width: 20px;
  background: #bcbcbc;
  position: absolute;
  top: 50%;
  left: 8px;
}
.service-plus::after {
  transform: rotate(90deg);
}
.service-item[open] .service-plus::after {
  transform: rotate(0deg);
}
.service-item[open] h3 {
  color: var(--color-accent);
}
.service-content {
  padding: 0 64px 32px 69px;
  max-width: 900px;
}
.service-content > p {
  color: #b3b3b3;
  max-width: 610px;
  font-size: 16px;
}
.service-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 23px 0 14px;
}
.service-deliverables span {
  border: 1px solid #3e3e3e;
  border-radius: 30px;
  padding: 5px 13px;
  font-size: 12px;
  color: #adadad;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(45px, 8vw, 120px);
  padding-block: 0 var(--section-space);
  align-items: center;
}
.about-photo {
  position: relative;
  max-height: 760px;
  overflow: hidden;
  border-radius: 3px;
  background: #2b2b2b;
}
.about-photo img {
  width: 100%;
  height: 100%;
  max-height: 760px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 30%;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 65% 0 0;
  background: linear-gradient(transparent, #00000099);
}
.photo-label {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 1;
}
.photo-mark {
  position: absolute;
  right: 25px;
  bottom: 12px;
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -0.12em;
  z-index: 1;
  color: var(--color-accent);
}
.about-copy h2 {
  font-size: clamp(38px, 4.7vw, 70px);
}
.about-copy > p {
  font-size: 15px;
  color: #acacac;
  margin-top: 22px;
  max-width: 450px;
}
.about-copy > .about-lead {
  color: var(--color-text);
  font-size: 20px;
  margin-top: 30px;
}
.about-copy > .text-link {
  margin-top: 30px;
}
.reel {
  padding-bottom: var(--section-space);
}
.reel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  color: #979797;
}
.reel-frame {
  aspect-ratio: 2.25;
  position: relative;
  background: #181818;
  border-radius: 3px;
  overflow: hidden;
}
.reel video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.reel-play {
  position: absolute;
  inset: 0;
  background: #0c0c0c66;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.play-disc {
  height: 70px;
  width: 70px;
  background: var(--color-accent);
  color: var(--color-bg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  padding-left: 4px;
}
.reel-play > #reel-title {
  font-size: clamp(28px, 4vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.reel-play > .micro {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.reel-play[hidden] {
  display: none;
}
.contact {
  background: var(--color-accent);
  color: #141414;
  padding-block: 40px 70px;
  overflow: hidden;
}
.contact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-star {
  font-size: 60px;
  line-height: 1;
}
.contact h2 {
  font-size: clamp(62px, 10vw, 160px);
  line-height: 1.02;
  letter-spacing: -0.07em;
  position: relative;
  margin-block: 27px 62px;
}
.contact-arrow {
  font-family: Arial, sans-serif;
  position: absolute;
  right: 0;
  top: 5%;
  font-size: 1.2em;
  line-height: 1;
}
.contact-bottom {
  display: flex;
  justify-content: space-between;
  gap: 55px;
  padding-top: 30px;
  border-top: 1px solid #6e6e6e55;
  align-items: flex-start;
}
.contact-bottom > p {
  font-size: 20px;
  line-height: 1.7;
}
.contact-action {
  width: min(100%, 390px);
}
.contact-action label {
  display: block;
  font-weight: 600;
}
.contact-action select {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #8a8a8a;
  background: transparent;
  color: #141414;
  padding: 13px 0;
  margin-bottom: 18px;
  border-radius: 0;
  font-size: 15px;
  cursor: pointer;
}
.contact-action .button {
  width: 100%;
}
.contact-note {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: #535353;
  font-size: 11px;
}
.contact a:focus-visible,
.contact select:focus-visible {
  outline-color: #1d1d1d;
}
.footer {
  padding-block: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer > .micro {
  color: #909090;
  font-size: 11px;
}
.footer .wordmark {
  font-size: 24px;
}
.footer .brand-star {
  font-size: 27px;
}
.footer-top {
  margin-left: auto;
}
.mobile-nav[hidden] {
  display: none;
}
.project-dialog {
  color: var(--color-text);
  background: #1a1a1a;
  border: 1px solid #454545;
  width: calc(100% - 64px);
  max-width: 1120px;
  max-height: 90svh;
  padding: 0;
  overflow: auto;
  border-radius: 8px;
}
.project-dialog::backdrop {
  background: #070707dd;
  backdrop-filter: blur(8px);
}
.dialog-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #141414eb;
  border: 1px solid #646464;
  color: #ffffff;
  border-radius: 50%;
  z-index: 2;
  font-size: 19px;
}
.dialog-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.dialog-visual {
  background: #2c2c2c;
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dialog-visual > img {
  width: 100%;
  height: 100%;
  max-height: 75svh;
  object-fit: contain;
}
.dialog-image-controls {
  position: absolute;
  bottom: 18px;
  inset-inline: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.dialog-image-controls > button {
  background: #171717dd;
  border: 1px solid #575757;
  border-radius: 50%;
  height: 42px;
  width: 42px;
  font-size: 20px;
}
.dialog-image-controls > span {
  background: #171717dd;
  border-radius: 30px;
  padding: 8px 15px;
}
.dialog-image-controls[hidden] {
  display: none;
}
.dialog-copy {
  padding: 70px 35px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dialog-copy h2 {
  font-size: clamp(36px, 4vw, 60px);
  margin-top: 13px;
  margin-bottom: 25px;
}
.dialog-copy > .eyebrow {
  color: var(--color-accent);
  font-size: 10px;
}
.dialog-label {
  color: #909090;
  text-transform: uppercase;
  margin-bottom: 8px;
  margin-top: 15px;
}
.dialog-copy > p {
  font-size: 15px;
  color: #c5c5c5;
}
.dialog-copy .button {
  margin-top: 30px;
  font-size: 12px;
  gap: 12px;
  min-height: 52px;
  padding-inline: 16px;
}
.result-item {
  border-top: 1px solid #4b4b4b;
  padding-block: 12px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.result-item strong {
  font-size: 30px;
  font-weight: 500;
  color: var(--color-accent);
  white-space: nowrap;
}
.result-item span {
  font-size: 12px;
  color: #b9b9b9;
}
.result-note {
  font-size: 11px;
  color: #999999;
  margin-top: 12px;
}
#dialog-results {
  margin-top: 22px;
  width: 100%;
}
#dialog-results:empty {
  display: none;
}
[data-reveal] {
  opacity: 1;
  transform: none;
}
.motion-ready [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}
.motion-ready [data-reveal] {
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover,
  .text-link:hover {
    color: var(--color-accent);
  }
  .header-cta:hover {
    background: var(--color-text);
    color: var(--color-bg);
  }
  .button-lime:hover {
    background: #ffffff;
  }
  .button-dark:hover {
    background: #353535;
  }
  .project-image:hover > img {
    transform: scale(1.04);
  }
  .project-image:hover .project-open {
    transform: rotate(45deg);
    background: var(--color-accent);
  }
  .filter:not(.active):hover {
    border-color: #b2b2b2;
  }
  .service-item summary:hover h3 {
    color: var(--color-accent);
  }
}
@media (min-width: 1700px) {
  .hero-art {
    right: -2%;
    width: 57%;
  }
  .hero h1 {
    font-size: 110px;
  }
  .section-pad,
  .hero,
  .header {
    padding-inline: max(var(--gutter), calc((100vw - 1560px) / 2));
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 17px;
  }
  .header-cta {
    gap: 12px;
  }
  .hero {
    min-height: 740px;
  }
  .hero h1 {
    font-size: 6.8vw;
  }
  .hero-art {
    right: -12%;
    width: 67%;
  }
  .hero-copy {
    width: 73%;
  }
  .hero-description {
    max-width: 340px;
  }
  .hero-edition {
    display: none;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .button {
    gap: 20px;
    padding-inline: 18px;
  }
  .client-logos {
    gap: 20px;
  }
  .client-logos > span {
    font-size: 20px;
  }
  .client-skr small {
    display: block;
    text-align: center;
  }
  .approach-orbit {
    right: 2%;
    width: 290px;
    height: 290px;
  }
  .orbit-core > span {
    top: 45px;
    right: 65px;
  }
  .about {
    gap: 40px;
  }
  .about-copy h2 {
    font-size: 4.8vw;
  }
  .process-steps {
    gap: 23px;
  }
  .process-step {
    gap: 10px;
  }
  .process-step h3 {
    font-size: 23px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 30px;
  }
  .header {
    height: 76px;
  }
  .wordmark {
    font-size: 25px;
  }
  .desktop-nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
    margin-right: 22px;
    font-size: 11px;
    padding: 7px 12px;
    gap: 14px;
  }
  .header-cta > span {
    font-size: 17px;
  }
  .menu-toggle {
    display: flex;
    width: 32px;
    height: 40px;
    padding: 10px 1px;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
  .menu-toggle > span {
    height: 1px;
    width: 27px;
    display: block;
    background: var(--color-text);
    transition: transform 200ms var(--ease-out);
  }
  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] > span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .mobile-nav {
    position: absolute;
    inset: 76px 0 auto;
    background: #191919;
    padding: 20px var(--gutter) 28px;
    border-bottom: 1px solid #4b4b4b;
  }
  .mobile-nav > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 23px;
    padding: 12px 0;
    border-bottom: 1px solid #363636;
  }
  .mobile-nav > a > span {
    font-size: 12px;
    color: #929292;
  }
  .mobile-nav > a:last-child {
    color: var(--color-accent);
    font-size: 18px;
  }
  .hero {
    padding-top: 101px;
    padding-bottom: 20px;
    height: auto;
    min-height: 900px;
    max-height: none;
  }
  .hero-top .eyebrow {
    font-size: 10px;
    letter-spacing: 0.07em;
    gap: 7px;
  }
  .hero-body {
    display: block;
    flex: 1;
  }
  .hero-copy {
    width: 100%;
    padding-top: 36px;
  }
  .hero h1 {
    font-size: clamp(40px, 8.4vw, 64px);
    letter-spacing: -0.065em;
    line-height: 1.1;
  }
  .hero-description {
    margin-top: 23px;
    font-size: 14px;
    max-width: 340px;
    line-height: 1.75;
  }
  .hero-actions {
    gap: 20px;
    margin-top: 24px;
  }
  .button {
    min-height: 52px;
    font-size: 12px;
    padding: 14px 18px;
  }
  .hero-actions .button {
    gap: 20px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    gap: 10px;
  }
  .hero-art {
    top: 340px;
    right: -10%;
    width: 110%;
    height: 385px;
    pointer-events: none;
  }
  .hero-art button {
    pointer-events: auto;
  }
  .art-coordinate {
    top: 8%;
    right: 11%;
    font-size: 10px;
  }
  .art-caption {
    right: 11%;
    bottom: 11%;
    font-size: 10px;
  }
  .art-caption-line {
    width: 30px;
  }
  .art-fallback {
    font-size: 300px;
  }
  .motion-toggle {
    bottom: 0;
    right: 12%;
    font-size: 10px;
  }
  .hero-bottom {
    margin-top: 400px;
    padding-top: 20px;
    gap: 15px;
  }
  .hero-bottom > .micro:first-child {
    font-size: 10px;
    max-width: 155px;
    line-height: 1.8;
  }
  .hero-bottom .dim {
    margin-inline: 3px;
  }
  .scroll-cue {
    font-size: 10px;
    gap: 10px;
  }
  .hero-index {
    display: none;
  }
  .clients {
    padding-block: 30px 35px;
  }
  .clients > .eyebrow {
    font-size: 10px;
  }
  .client-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 18px;
    text-align: center;
    margin-top: 30px;
  }
  .client-logos > span {
    font-size: 18px;
  }
  .client-smart > span {
    font-size: 10px;
  }
  .client-petro small {
    font-size: 8px;
  }
  .client-flower {
    right: 5px;
    top: -12px;
    font-size: 12px;
  }
  .client-olluco {
    font-size: 12px !important;
    letter-spacing: 0.03em;
  }
  .client-skr small {
    font-size: 8px;
  }
  .client-lamiya {
    font-size: 17px !important;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  h2 {
    font-size: clamp(38px, 8vw, 58px);
  }
  .section-label {
    font-size: 10px;
    margin-bottom: 23px;
  }
  .section-intro {
    margin-top: 24px;
    font-size: 14px;
  }
  .work {
    padding-bottom: 60px;
  }
  .work-filters {
    gap: 6px;
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
  .filter {
    padding: 8px 13px;
    font-size: 11px;
  }
  .work-count {
    font-size: 10px;
  }
  .project-grid {
    gap: 32px 16px;
  }
  .project-offset {
    margin-top: 45px;
  }
  .project-image {
    aspect-ratio: 0.77;
  }
  .project-category {
    top: 10px;
    left: 10px;
    right: 10px;
    font-size: 8px;
    padding: 5px 7px;
    text-align: center;
    line-height: 1.3;
  }
  .project-open {
    height: 33px;
    width: 33px;
    right: 10px;
    bottom: 10px;
    font-size: 20px;
  }
  .project-meta {
    padding-top: 12px;
    gap: 8px;
  }
  .project-meta h3 {
    font-size: 19px;
  }
  .project-meta p {
    font-size: 11px;
    line-height: 1.6;
  }
  .project-meta > .micro {
    font-size: 10px;
  }
  .personal-monogram {
    font-size: 25vw;
    margin-left: -14px;
  }
  .monogram-star {
    font-size: 25px;
    right: -24px;
    top: 0;
  }
  .personal-name {
    font-size: 8px;
    letter-spacing: 0.2em;
  }
  .work-footer {
    display: block;
    margin-top: 36px;
    padding-top: 22px;
  }
  .work-footer > p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  .work-footer .text-link {
    font-size: 12px;
  }
  .approach {
    height: auto;
  }
  .approach-sticky {
    position: relative;
    min-height: 0;
    height: auto;
    max-height: none;
    padding-block: 30px 38px;
  }
  .approach-top > .eyebrow {
    font-size: 10px;
  }
  .approach-counter {
    font-size: 10px;
  }
  .approach h2 {
    font-size: clamp(44px, 10vw, 70px);
    margin-top: 38px;
  }
  .approach-orbit {
    width: 210px;
    height: 210px;
    top: 220px;
    right: calc(50% - 105px);
  }
  .orbit-core {
    font-size: 85px;
  }
  .orbit-core > span {
    font-size: 34px;
    right: 50px;
    top: 36px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 250px;
  }
  .process-step {
    gap: 22px;
    padding-block: 22px;
    opacity: 1;
  }
  .process-step h3 {
    font-size: 25px;
    margin-bottom: 7px;
  }
  .process-step p {
    max-width: none;
    font-size: 14px;
  }
  .step-number {
    font-size: 11px;
  }
  .approach-track {
    display: none;
  }
  .services {
    padding-block: 80px;
  }
  .service-item summary {
    padding-block: 23px;
    gap: 12px;
  }
  .service-number {
    width: 22px;
    font-size: 10px;
  }
  .service-item h3 {
    font-size: clamp(20px, 4.5vw, 31px);
  }
  .service-plus {
    width: 24px;
    height: 24px;
  }
  .service-plus::before,
  .service-plus::after {
    left: 3px;
    width: 18px;
  }
  .service-content {
    padding: 0 0 28px 34px;
  }
  .service-content > p {
    font-size: 14px;
  }
  .service-deliverables span {
    font-size: 10px;
    padding: 4px 10px;
  }
  .service-content .text-link {
    font-size: 12px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 80px;
  }
  .about-photo {
    max-height: 580px;
  }
  .about-photo img {
    aspect-ratio: 0.95;
    max-height: 580px;
    object-position: center 35%;
  }
  .about-copy h2 {
    font-size: clamp(38px, 9vw, 62px);
  }
  .about-copy > .about-lead {
    font-size: 19px;
    margin-top: 25px;
  }
  .about-copy > p {
    font-size: 15px;
  }
  .about-copy > .text-link {
    font-size: 13px;
    margin-top: 25px;
  }
  .reel {
    padding-bottom: 80px;
  }
  .reel-top .eyebrow {
    font-size: 10px;
  }
  .reel-top .micro {
    font-size: 10px;
  }
  .reel-frame {
    aspect-ratio: 1.15;
  }
  .reel-play {
    gap: 20px;
  }
  .play-disc {
    width: 56px;
    height: 56px;
    font-size: 16px;
  }
  .reel-play > #reel-title {
    font-size: 32px;
  }
  .contact {
    padding-block: 30px 44px;
  }
  .contact-top > .eyebrow {
    font-size: 10px;
  }
  .contact-star {
    font-size: 38px;
  }
  .contact h2 {
    font-size: clamp(49px, 10.3vw, 80px);
    margin-block: 30px 36px;
  }
  .contact-arrow {
    font-size: 0.9em;
    top: -3px;
    right: 0;
  }
  .contact-bottom {
    display: block;
    padding-top: 25px;
  }
  .contact-bottom > p {
    font-size: 17px;
  }
  .contact-action {
    margin-top: 30px;
    width: 100%;
  }
  .contact-action .button {
    font-size: 13px;
  }
  .footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
  }
  .footer .wordmark {
    font-size: 25px;
  }
  .footer > .micro:nth-child(2) {
    grid-row: 2;
    grid-column: 1;
    font-size: 10px;
  }
  .footer-top {
    font-size: 10px !important;
  }
  .footer > .micro:last-child {
    grid-row: 2;
    grid-column: 2;
    font-size: 10px;
  }
  .project-dialog {
    width: calc(100% - 24px);
    max-height: 92svh;
  }
  .dialog-layout {
    grid-template-columns: 1fr;
  }
  .dialog-visual {
    min-height: 280px;
    max-height: 44svh;
  }
  .dialog-visual > img {
    max-height: 44svh;
  }
  .dialog-copy {
    padding: 28px 23px 30px;
  }
  .dialog-copy h2 {
    font-size: 36px;
  }
  .dialog-copy > p {
    font-size: 14px;
  }
  .dialog-copy .button {
    width: 100%;
  }
  .dialog-close {
    width: 39px;
    height: 39px;
    top: 10px;
    right: 10px;
  }
  .result-item strong {
    font-size: 26px;
  }
}
@media (max-width: 380px) {
  .header-cta {
    margin-right: 14px;
    font-size: 10px;
    gap: 8px;
  }
  .hero h1 {
    font-size: 8.1vw;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding-inline: 13px;
    gap: 13px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    gap: 7px;
  }
  .filter {
    font-size: 10px;
    padding-inline: 10px;
  }
  .work-count {
    font-size: 10px;
  }
  .service-item h3 {
    font-size: 19px;
  }
  .contact h2 {
    font-size: 10vw;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal],
  .motion-ready [data-reveal]:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
  .approach {
    height: auto;
  }
  .approach-sticky {
    position: relative;
    height: auto;
    min-height: 740px;
  }
  .process-step {
    opacity: 1;
  }
  .approach-track {
    display: none;
  }
  .motion-toggle {
    display: none;
  }
  .hero-art .sculpture-render {
    transition: none;
  }
  @media (max-width: 760px) {
    .approach-sticky {
      min-height: 0;
    }
  }
}

/* Final image treatment and graceful 3D fallback. */
.art-fallback {
  display: block;
  inset: 0;
  pointer-events: none;
}
.art-fallback img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-art:not(.has-render):not(.hero-art-emblem) .motion-toggle {
  display: none;
}
.lamiya-image {
  background: radial-gradient(ellipse at 50% 35%, #5a5a5a, #272727);
}
.lamiya-image > img {
  object-fit: contain;
  padding: 8%;
  mix-blend-mode: screen;
}
.skr-image {
  background: #060606;
}
.skr-image > img {
  object-fit: contain;
  padding: 8%;
}
@media (max-width: 760px) {
  .hero-actions .button,
  .hero-actions .text-link {
    white-space: nowrap;
    flex-shrink: 0;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .button {
    padding-inline: 16px;
    gap: 15px;
  }
  .hero-actions .text-link {
    gap: 12px;
    font-size: 11px;
  }
  .process-step {
    opacity: 1;
  }
}
@media (max-width: 380px) {
  .hero-actions {
    gap: 12px;
  }
  .hero-actions .button {
    padding-inline: 12px;
    gap: 12px;
  }
  .hero-actions .text-link {
    gap: 7px;
    font-size: 10px;
  }
}
.more-projects {
  margin-top: 45px;
  border-block: 1px solid var(--color-border);
}
.more-projects > summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 23px 0;
  cursor: pointer;
  font-size: 18px;
}
.more-projects > summary::-webkit-details-marker {
  display: none;
}
.more-projects > summary > .micro {
  color: var(--color-text-muted);
}
.more-projects > summary > .micro > span {
  font-size: 22px;
  margin-left: 15px;
}
.more-project-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 36px;
  padding-bottom: 20px;
}
.more-project-list > button {
  background: transparent;
  border-top: 1px solid var(--color-border);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}
.more-project-list > button > span:first-child {
  font-size: 18px;
}
.more-project-list small {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 5px;
}
.more-project-list > button > span:last-child {
  font-size: 24px;
  color: var(--color-accent);
}
/* Readable metadata and comfortable touch targets. */
.clients > .eyebrow,
.project-category,
.contact-note,
.reel-play > .micro,
.footer > .micro,
.dialog-copy > .eyebrow,
.result-note {
  font-size: 12px;
}
.project-meta p {
  font-size: 14px;
}
.hero-actions .text-link {
  font-size: 14px;
}
.reel-top .eyebrow,
.reel-top .micro {
  font-size: 12px;
}
@media (max-width: 760px) {
  .hero-top .eyebrow,
  .section-label,
  .approach-top > .eyebrow,
  .contact-top > .eyebrow {
    font-size: 11px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-actions .button {
    font-size: 13px;
  }
  .hero-actions .text-link {
    font-size: 13px;
  }
  .hero-art {
    top: 365px;
  }
  .hero-bottom > .micro:first-child,
  .scroll-cue,
  .filter,
  .work-count,
  .project-meta > .micro,
  .service-number,
  .service-deliverables span,
  .contact-action label,
  .footer > .micro,
  .footer-top,
  .footer > .micro:nth-child(2),
  .footer > .micro:last-child {
    font-size: 12px !important;
  }
  .hero-bottom > .micro:first-child {
    max-width: 190px;
  }
  .hero-bottom {
    margin-top: 420px;
  }
  .scroll-cue {
    max-width: 125px;
  }
  .art-coordinate,
  .art-caption,
  .motion-toggle {
    font-size: 12px;
  }
  .clients > .eyebrow {
    font-size: 11px;
  }
  .project-meta p {
    font-size: 13px;
  }
  .approach-counter,
  .reel-top .eyebrow,
  .reel-top .micro {
    font-size: 12px;
  }
  .more-project-list {
    grid-template-columns: 1fr;
  }
  .work-filters {
    flex-wrap: wrap;
  }
  .work-count {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .hero-actions {
    gap: 22px;
  }
}
@media (max-width: 600px) {
  .project-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .project-offset {
    margin-top: 0;
  }
  .project-image {
    aspect-ratio: 1.12;
  }
  .project-category {
    inset: 14px auto auto 14px;
    font-size: 11px;
    padding: 7px 11px;
  }
  .project-meta h3 {
    font-size: 23px;
  }
  .project-meta p {
    font-size: 14px;
  }
  .project-open {
    width: 42px;
    height: 42px;
    right: 14px;
    bottom: 14px;
  }
  .personal-monogram {
    font-size: 43vw;
  }
  .monogram-star {
    font-size: 40px;
    right: -40px;
  }
  .personal-name {
    font-size: 12px;
  }
  .hero-bottom > .micro:first-child {
    font-size: 10px !important;
  }
}
@media (max-width: 380px) {
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    font-size: 12px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
}
/* Monochrome art direction and entrance choreography. */
:root {
  --color-bg: #0c0c0c;
  --color-text: #f2f2f2;
  --color-accent: #ededed;
  --color-text-muted: #a0a0a0;
  --color-border: #303030;
}
.hero {
  background: radial-gradient(ellipse at 78% 51%, #28282855, transparent 48%);
}
.hero h1 > .hero-line {
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.hero-line > span {
  display: block;
}
.hero h1 .accent {
  color: #a8a8a8;
}
.title-dot {
  color: #f2f2f2;
}
.hero-art {
  right: -5%;
}
.art-halo {
  background: radial-gradient(ellipse, #ffffff06, transparent 65%);
}
.hero-art .sculpture-render {
  transition: opacity 600ms ease;
}
.has-render .art-fallback {
  display: block;
  opacity: 0;
  transition: opacity 600ms ease;
}
.intro {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: #0c0c0c;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  pointer-events: none;
}
.intro-pending .intro {
  display: flex;
}
.intro-word {
  overflow: hidden;
  padding: 10px;
}
.intro-word > span {
  display: block;
  font-size: clamp(60px, 9vw, 140px);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 1.2;
}
.intro-star {
  display: inline-block;
  font-size: 0.7em;
  vertical-align: top;
  margin-left: 0.08em;
  letter-spacing: 0;
}
.intro-rule {
  width: 110px;
  height: 1px;
  background: #666;
  margin-top: 24px;
  transform-origin: left;
}
.intro-label {
  margin-top: 20px;
  font-size: 10px;
  letter-spacing: 0.35em;
  color: #888;
}
.intro-pending .hero-copy,
.intro-pending .hero-art,
.intro-pending .hero-top,
.intro-pending .hero-bottom {
  opacity: 0;
}
.button > span,
.text-link > span,
.header-cta > span {
  transition: transform 220ms var(--ease-out);
}
.project-dialog {
  will-change: transform, opacity;
}
.client-logos > * {
  min-width: 0;
}
.process-step {
  transition:
    opacity 350ms ease,
    border-color 350ms ease;
}
.process-step.is-active .step-number {
  font-weight: 700;
}
.about-photo img {
  filter: grayscale(1);
}
.photo-mark {
  color: #fff;
}
.approach,
.contact,
.personal-image {
  background: #e6e6e3;
  color: #141414;
}
.service-item[open] h3 {
  color: #fff;
}
.approach-orbit {
  will-change: transform;
}
.project-image {
  perspective: 900px;
}
.service-content {
  transform-origin: top center;
}
.motion-ready .section-heading[data-reveal] {
  transition-duration: 800ms;
}
.lamiya-image {
  background: radial-gradient(ellipse at 50% 35%, #5d5d5d, #202020);
}
.project-category {
  background: #111c;
}
.dialog-close {
  background: #111e;
}
@media (hover: hover) and (pointer: fine) {
  .button:hover > span,
  .header-cta:hover > span,
  .text-link:hover > span {
    transform: translate(3px, -3px);
  }
  .project-image:hover > img {
    transform: scale(1.035);
  }
  .button-lime:hover {
    background: #fff;
  }
  .button-dark:hover {
    background: #303030;
  }
  .project-image:hover .project-open {
    background: #fff;
  }
}
@media (max-width: 760px) {
  .client-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 12px;
  }
  .client-smart {
    font-size: 18px;
  }
  .client-smart > span {
    letter-spacing: 0.12em;
  }
  .client-petro {
    font-size: 13px !important;
  }
  .client-olluco {
    font-size: 10px !important;
  }
  .hero-art {
    right: -10%;
  }
  .intro-word > span {
    font-size: 19vw;
  }
}
@media (prefers-reduced-motion: reduce) {
  .intro {
    display: none !important;
  }
  .intro-pending .hero-copy,
  .intro-pending .hero-art,
  .intro-pending .hero-top,
  .intro-pending .hero-bottom {
    opacity: 1;
  }
  .project-dialog {
    will-change: auto;
  }
}
.intro.is-playing {
  display: flex;
}
.motion-paused [data-reveal],
.motion-paused.motion-ready [data-reveal]:not(.is-visible) {
  opacity: 1;
  transform: none;
}
.motion-paused * {
  transition-duration: 0.01ms !important;
}
.approach,
.contact,
.personal-image {
  background: #e6e6e6;
}
.hero-art .art-fallback {
  transition: opacity 600ms ease;
}
.about-photo img {
  will-change: transform;
}

/* Native chrome knot and its matching transparent fallback. */
.hero {
  background-color: var(--color-bg);
}
.hero-art {
  mix-blend-mode: screen;
}
.hero-art .sculpture-render,
.hero-art .art-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translate3d(0, var(--art-y, 0px), 0)
    rotate(var(--art-angle, 0deg)) scale(var(--art-scale, .88));
}
.hero-art .sculpture-render {
  z-index: 1;
  opacity: 0;
}
.hero-art.has-render .sculpture-render {
  opacity: 1;
}
.hero-art .art-fallback {
  z-index: 0;
}
.hero-art.has-render .art-fallback {
  opacity: 0;
}

/* The sculpted signature is rendered as an actual metal mesh, with a static fallback. */
.hero-art-emblem { mix-blend-mode: normal; }
.emblem-stage {
  position: absolute;
  inset: 11% 8% 21%;
  pointer-events: none;
}
.emblem-poster,
.emblem-render {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  transition: opacity 700ms cubic-bezier(.23, 1, .32, 1);
}
.emblem-poster { opacity: 1; }
.emblem-render { opacity: 0; }
.hero-art-emblem.has-render .emblem-render { opacity: 1; }
.hero-art-emblem.has-render .emblem-poster { opacity: 0; }
@media (max-width: 760px) {
  .emblem-stage { inset: 12% 11% 19%; }
}

/* A monochrome galaxy made of words. */
.creative-orbit {
  position: relative;
  padding-top: 100px;
  padding-bottom: 36px;
  background: #090909;
  border-top: 1px solid #282828;
  overflow: hidden;
}
.galaxy-heading { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-end; gap: 35px; }
.galaxy-heading h2 { font-size: clamp(42px, 5vw, 80px); font-weight: 500; letter-spacing: -.055em; line-height: 1.1; margin-top: 25px; }
.galaxy-heading > p { font-size: 13px; color: #979797; line-height: 1.8; margin-bottom: 5px; }
.orbit-stage { position: relative; height: clamp(500px, 52vw, 750px); max-width: 1440px; margin: 12px auto 0; isolation: isolate; }
.word-orbit-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; }
.orbit-coordinate { position: absolute; top: 6%; right: 0; font-size: 9px; letter-spacing: .12em; color: #686868; z-index: 3; }
.orbit-direction { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); color: #a3a3a3; font-size: 10px; letter-spacing: .08em; display: flex; gap: 20px; align-items: center; white-space: nowrap; z-index: 3; }
.orbit-direction > span { color: #777; font-size: 20px; }
.orbit-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-top: 24px; margin-top: 40px; border-top: 1px solid #282828; }
.orbit-bottom > .micro { color: #858585; font-size: 10px; }
.orbit-bottom .text-link { font-size: 12px; border: 0; }
.orbit-static { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, #ffffff1a, transparent 45%); }
.orbit-static > span { position: absolute; color: #aaa; font-size: 20px; }
.orbit-static > span:nth-child(1) { top: 23%; left: 43%; }
.orbit-static > span:nth-child(2) { top: 31%; right: 17%; }
.orbit-static > span:nth-child(3) { top: 49%; right: 15%; }
.orbit-static > span:nth-child(4) { top: 66%; right: 24%; }
.orbit-static > span:nth-child(5) { bottom: 25%; left: 43%; }
.orbit-static > span:nth-child(6) { top: 63%; left: 13%; }
.orbit-static > span:nth-child(7) { top: 49%; left: 10%; }
.orbit-static > span:nth-child(8) { top: 31%; left: 15%; }
.orbit-ready .orbit-static { display: none; }
@media (max-width: 760px) {
  .creative-orbit { padding-top: 62px; padding-bottom: 26px; }
  .galaxy-heading { display: block; }
  .galaxy-heading h2 { font-size: clamp(36px, 8.8vw, 62px); margin-top: 25px; }
  .galaxy-heading > p { font-size: 12px; margin-top: 20px; }
  .orbit-stage { width: calc(100% + 36px); height: 440px; margin: 0 -18px; }
  .orbit-coordinate { right: 18px; top: 9%; font-size: 7px; }
  .orbit-direction { font-size: 8px; gap: 13px; bottom: 0; }
  .orbit-direction > span { font-size: 15px; }
  .orbit-bottom { gap: 16px; align-items: flex-start; padding-top: 22px; margin-top: 26px; }
  .orbit-bottom > .micro { max-width: 135px; font-size: 9px; line-height: 1.8; }
  .orbit-bottom .text-link { font-size: 10px; gap: 8px; }
  .orbit-static > span { font-size: 12px; }
}
/* The supplied eye floats within the core; its rays dissolve into the word cloud. */
.galaxy-core { position: absolute; left: 50%; top: 50%; width: 300px; height: 240px; transform: translate(-50%,-50%); z-index: 3; text-align: center; pointer-events: none; }
.galaxy-eye { position: absolute; left: 50%; top: 50%; width: calc(clamp(290px,29vw,400px) / 1.5); aspect-ratio: 1; transform: translate(-50%,-58%); mix-blend-mode: screen; mask-image: radial-gradient(circle,#000 28%,#000c 44%,transparent 70%); }
.galaxy-eye-shadow { mix-blend-mode: normal; }
.galaxy-eye-art { display: block; width: 100%; height: 100%; filter: grayscale(1) contrast(1.12); animation: eye-breathe 8s ease-in-out infinite alternate; animation-play-state: paused; }
.galaxy-eye-shadow .galaxy-eye-art { animation-name: eye-lid-breathe; filter: none; }
/* Only the aperture closes. The supplied texture and its radial rays keep their shape. */
.galaxy-eye-aperture { transform-box: view-box; transform-origin: 512px 535px; animation: eye-blink 12s cubic-bezier(.77,0,.175,1) infinite; animation-play-state: paused; }
.galaxy-eye-crease { opacity: 0; animation: eye-crease 12s cubic-bezier(.77,0,.175,1) infinite; animation-play-state: paused; }
.is-orbit-active .galaxy-eye-art,
.is-orbit-active .galaxy-eye-aperture,
.is-orbit-active .galaxy-eye-crease,
.is-orbit-active .word-orbit-canvas { animation-play-state: running; }
.galaxy-signature { position: absolute; top: calc(50% + 61px); left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; white-space: nowrap; }
.galaxy-signature::before { content: ''; position: absolute; inset: -20px -38px; z-index: -1; background: radial-gradient(ellipse,#090909ce,transparent 70%); }
.galaxy-core strong { font-size: 39px; font-weight: 600; line-height: 1; letter-spacing: -.065em; text-shadow: 0 2px 20px #000; }
.galaxy-core-label { font-size: 6px; letter-spacing: .19em; color: #a3a3a3; }
@keyframes eye-breathe { from { transform: scale(.98); opacity: .75; } to { transform: scale(1.025); opacity: .96; } }
@keyframes eye-lid-breathe { from { transform: scale(.98); } to { transform: scale(1.025); } }
@keyframes eye-blink {
  0%, 18%, 21%, 72%, 75%, 100% { transform: scaleY(1); }
  18.9167%, 19.25%, 72.9167%, 73.25% { transform: scaleY(.018); }
}
@keyframes eye-crease {
  0%, 18.7%, 19.5%, 72.7%, 73.5%, 100% { opacity: 0; }
  18.9167%, 19.25%, 72.9167%, 73.25% { opacity: .7; }
}
/* Cloud-light waves are painted into the nebula; its gentle scale shares the eye clock. */
.word-orbit-canvas { transform-origin: 50% 50%; animation: galaxy-breathe 12s cubic-bezier(.77,0,.175,1) infinite; animation-play-state: paused; }
@keyframes galaxy-breathe {
  0%, 18%, 25%, 72%, 79%, 100% { transform: scale(1); }
  18.9167%, 72.9167% { transform: scale(.994); }
  22.5%, 76.5% { transform: scale(1.014); }
}
.motion-paused .galaxy-eye *,
.motion-paused .word-orbit-canvas { animation-play-state: paused !important; }
@media(max-width:760px) {
  .galaxy-core { width: 180px; height: 160px; }
  .galaxy-eye { width: 150px; }
  .galaxy-signature { top: calc(50% + 42px); gap: 9px; }
  .galaxy-core strong { font-size: 25px; }
  .galaxy-core-label { font-size: 4.5px; letter-spacing: .12em; }
}
@media(prefers-reduced-motion:reduce) {
  .galaxy-eye-art { animation: none; opacity: .9; }
  .galaxy-eye-aperture { animation: none; transform: none; }
  .galaxy-eye-crease { animation: none; opacity: 0; }
  .word-orbit-canvas { animation: none; transform: none; }
}

/* Supplied symbol, preserved as provided and adapted to the monochrome interface. */
.brand-symbol { width: 31px; height: 31px; object-fit: contain; margin-left: 7px; filter: grayscale(1) invert(1); mix-blend-mode: screen; }

/* Two equal logo groups make a genuinely continuous strip. */
.clients { padding-inline: 0; overflow: hidden; }
.clients-top { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-inline: var(--gutter); margin-bottom: 26px; }
.clients-top .eyebrow { font-size: 10px; color: #979797; }
.clients-motion-toggle { display: none; padding: 5px 0; background: transparent; color: #a3a3a3; font-size: 10px; border-bottom: 1px solid #484848; }
.marquee-ready .clients-motion-toggle { display: inline-flex; }
.clients-marquee { overflow: hidden; mask-image: linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent); }
.clients-track { display: flex; width: max-content; }
.clients .client-logos { display: flex; flex: 0 0 auto; justify-content: space-around; align-items: center; width: max(100vw,1100px); min-width: 0; margin: 0; padding: 18px 42px; gap: 48px; box-sizing: border-box; }
.clients .client-logos > span { flex-shrink: 0; }
.clients.marquee-ready .clients-track { animation: clients-drift 44s linear infinite; animation-play-state: paused; }
.clients.is-running .clients-track { animation-play-state: running; }
.motion-paused .clients-track { animation-play-state: paused !important; }
@keyframes clients-drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.clients:not(.marquee-ready) .clients-track { width: 100%; }
.clients:not(.marquee-ready) .client-logos { width: 100%; flex-wrap: wrap; }
@media (hover: hover) and (pointer: fine) { .clients-marquee:hover .clients-track { animation-play-state: paused; } }

/* Disclosures animate their content and the direction indicator together. */
.service-plus::after { transition: transform 260ms var(--ease-out); }
.service-item[data-accordion-state='closing'] .service-plus::after,
.service-item[data-accordion-state='closed'] .service-plus::after { transform: rotate(90deg); }
.more-projects > summary > .micro > span { display: inline-block; transition: transform 260ms var(--ease-out); }
.more-projects[open] > summary > .micro > span { transform: rotate(45deg); }
.more-projects[data-accordion-state='closing'] > summary > .micro > span { transform: rotate(0); }

/* The video is the entire visual: an edge-to-edge moving image. */
.reel { padding-inline: 0; padding-bottom: 100px; }
.reel-top { margin: 0 var(--gutter) 25px; padding-top: 30px; border-top: 1px solid #333; }
#reel-title { font-size: 10px; font-weight: 400; letter-spacing: .12em; }
.reel-frame { width: 100%; aspect-ratio: 16/9; min-height: 440px; max-height: 900px; border-radius: 0; background: #000; isolation: isolate; }
.reel video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel-controls { position: absolute; right: var(--gutter); bottom: 24px; z-index: 2; display: none; }
.reel-ready .reel-controls { display: flex; }
#reel-toggle { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 40px; padding: 10px 15px; background: #080808b3; border: 1px solid #ffffff24; border-radius: 24px; font-size: 10px; color: #c7c7c7; transition: background 180ms ease,border-color 180ms ease; }
#reel-toggle > span:first-child { font-size: 14px; }
.reel-bottom { display: flex; justify-content: space-between; align-items: center; margin-inline: var(--gutter); padding-top: 20px; gap: 20px; }
.reel-bottom > span { color: #888; font-size: 11px; }
.reel-bottom .text-link { font-size: 12px; border: 0; }
@media(hover:hover) and (pointer:fine) { #reel-toggle:hover { background: #242424; border-color: #888; } }
@media(max-width:760px) {
  .brand-symbol { width: 27px; height: 27px; margin-left: 5px; flex-shrink: 0; }
  .header .wordmark { flex-shrink: 0; }
  .clients-top .eyebrow { font-size: 9px; }
  .clients-motion-toggle { font-size: 9px; }
  .clients .client-logos { width: 1020px; gap: 36px; padding: 15px 32px; }
  .reel { padding-bottom: 65px; }
  .reel-top { padding-top: 22px; margin-bottom: 18px; }
  #reel-title { font-size: 8px; }
  .reel-frame { margin: 0; aspect-ratio: 4/5; min-height: 0; }
  .reel-controls { bottom: 18px; }
  #reel-toggle { font-size: 9px; padding-inline: 12px; }
  .reel-bottom { align-items: flex-start; gap: 16px; }
  .reel-bottom > span { font-size: 9px; max-width: 130px; line-height: 1.6; }
  .reel-bottom .text-link { font-size: 10px; gap: 10px; }
}
@media(max-width:360px) {
  .header .wordmark { font-size: 23px; gap: 4px; }
  .header .brand-symbol { width: 23px; height: 23px; margin-left: 2px; }
  .header-cta { font-size: 9px; padding: 7px 9px; gap: 6px; margin-right: 12px; }
}
@media(prefers-reduced-motion:reduce) {
  .clients.marquee-ready .clients-track { animation: none; width: 100%; }
  .clients .client-logos { width: 100%; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 26px 12px; padding-inline: var(--gutter); }
  .clients .client-logos-copy,.clients-motion-toggle { display: none !important; }
  .service-plus::after,.more-projects > summary > .micro > span { transition: none; }
}

/* Creative method: an editorial workspace, from a brief to a finished visual. */
#approach { height: auto; background: #e9e9e6; color: #171717; }
#approach .approach-sticky { position: relative; top: auto; height: auto; min-height: 0; max-height: none; overflow: visible; display: block; padding-block: 46px 64px; }
#approach .approach-top { padding-bottom: 24px; border-bottom: 1px solid #17171730; }
#approach .approach-top .eyebrow { font-size: 10px; letter-spacing: .09em; }
#approach .approach-counter { color: #656560; font-size: 10px; }
.method-heading { display: grid; grid-template-columns: 1.55fr 1fr; align-items: end; gap: 40px; padding-block: 42px 65px; }
#approach h2 { margin: 0; font-size: clamp(52px,6.25vw,96px); line-height: 1.03; font-weight: 500; letter-spacing: -.065em; }
.method-heading > p { max-width: 300px; justify-self: end; color: #62625e; font-size: 13px; line-height: 1.8; margin-bottom: 7px; }
.method-workspace { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(50px,7vw,110px); align-items: start; }
#approach .process-steps { display: block; margin: 0; padding: 0; }
#approach .method-step { position: relative; min-height: 310px; display: grid; grid-template-columns: 65px 1fr; gap: 24px; padding: 32px 0 46px; border-top: 1px solid #17171728; opacity: 1; }
#approach .step-number { padding: 0; font-size: 54px; line-height: 1; font-weight: 400; letter-spacing: -.085em; color: #222; }
#approach.approach-enhanced .method-step:not(.is-active) .step-number { color: transparent; -webkit-text-stroke: 1px #9b9b94; }
#approach .method-step-label { display: block; font-size: 8px; color: #73736e; letter-spacing: .1em; margin: 1px 0 14px; }
#approach .process-step h3 { font-size: clamp(27px,2.65vw,39px); line-height: 1.1; font-weight: 500; letter-spacing: -.045em; margin: 0 0 17px; }
#approach .process-step p { font-size: 13px; line-height: 1.8; color: #60605a; max-width: 320px; }
.method-output { display: flex; flex-direction: column; gap: 7px; margin-top: 25px; }
.method-output > .micro { font-size: 7px; text-transform: uppercase; letter-spacing: .12em; color: #85857d; }
.method-output > strong { font-size: 12px; font-weight: 500; color: #33332f; }
.method-step-rule { position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: #171717; transform-origin: left; transform: scaleX(1); }
.method-visual { position: sticky; top: 7vh; width: 100%; max-width: 620px; margin: 0 0 0 auto; }
.method-board { position: relative; aspect-ratio: 1.06; overflow: hidden; isolation: isolate; background: #deded8; border: 1px solid #17171725; box-shadow: 0 18px 48px -28px #0005; }
.method-grid { position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(#17171714 1px,transparent 1px),linear-gradient(90deg,#17171714 1px,transparent 1px); background-size: 9.09% 9.09%; }
.method-register { position: absolute; z-index: 2; font-family: monospace; color: #81817a; font-size: 17px; font-weight: 200; }
.method-register-one { left: 17px; top: 14px; }
.method-register-two { right: 17px; bottom: 14px; }
.method-ink { position: absolute; width: 100%; height: 100%; object-fit: contain; inset: 0; opacity: .6; }
.method-finish { position: absolute; inset: 0; background: #151515; opacity: 1; }
.method-finish img { position: absolute; width: 110%; height: 110%; left: 7%; top: -4%; object-fit: contain; filter: invert(1); opacity: .85; transform: rotate(-18deg); }
.method-scene { position: absolute; inset: 0; opacity: 0; padding: 35px; }
.method-scene-form { opacity: 1; color: #ecece7; }
.method-sheet-label { position: absolute; top: 34px; left: 35px; font-size: 7px; letter-spacing: .15em; }
.method-sheet-note { position: absolute; bottom: 30px; left: 35px; font-size: 7px; letter-spacing: .09em; }
.method-node { position: absolute; display: flex; gap: 12px; align-items: center; font-size: 12px; }
.method-node i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #202020; outline: 1px solid #17171738; outline-offset: 6px; }
.method-node-business { left: 15%; top: 26%; transform: rotate(-8deg); }
.method-node-audience { right: 11%; top: 37%; transform: rotate(6deg); }
.method-node-character { left: 45%; top: 60%; transform: rotate(-3deg); }
.method-center-mark { position: absolute; left: 42%; top: 38%; font-weight: 200; font-size: 42px; color: #373731; }
.method-scene-discovery p { position: absolute; left: 35px; bottom: 35px; font-size: clamp(24px,3.8vw,56px); line-height: 1; font-weight: 500; letter-spacing: -.045em; }
.method-scene-idea p { position: absolute; left: 35px; top: 24%; font-size: clamp(48px,5.8vw,86px); line-height: .94; font-weight: 500; letter-spacing: -.065em; text-shadow: 1px 2px 15px #deded8; }
.method-scene-form p { position: absolute; left: 35px; top: 16%; font-size: clamp(35px,4.3vw,63px); line-height: 1; font-weight: 500; letter-spacing: -.045em; }
.method-poster-wordmark { position: absolute; left: 28px; bottom: 52px; font-size: clamp(65px,7.4vw,108px); font-weight: 700; line-height: 1; letter-spacing: -.095em; }
.method-visual figcaption { min-height: 56px; display: flex; justify-content: space-between; align-items: center; gap: 15px; border-bottom: 1px solid #17171728; }
.method-caption-label { font-size: 8px; color: #73736c; letter-spacing: .06em; }
.method-nav { display: none; gap: 4px; }
.approach-enhanced .method-nav { display: flex; }
.method-nav button { width: 36px; height: 36px; font-size: 10px; font-variant-numeric: tabular-nums; background: transparent; border-radius: 50%; border: 1px solid transparent; color: #65655f; transition: border-color 180ms ease,color 180ms ease; }
.method-nav button[aria-current='step'] { border-color: #41413c; color: #111; }
.method-outro { display: flex; justify-content: space-between; align-items: flex-end; gap: 35px; padding-top: 34px; border-top: 1px solid #17171730; }
.method-outro > p { font-size: clamp(27px,3vw,44px); font-weight: 500; letter-spacing: -.035em; line-height: 1.12; }
.method-outro > .text-link { font-size: 12px; border: none; gap: 30px; padding-bottom: 4px; }
.method-mini { display: none; }
@media(hover:hover) and (pointer:fine) { .method-nav button:hover { border-color: #96968d; color: #111; } }
@media(max-height:740px) and (min-width:961px) { .method-visual { position: relative; top: auto; } }
@media(max-width:1100px) and (min-width:961px) {
  .method-workspace { gap: 42px; }
  #approach .method-step { grid-template-columns: 50px 1fr; gap: 18px; }
  #approach .step-number { font-size: 45px; }
  #approach .process-step h3 { font-size: 28px; }
  .method-poster-wordmark { font-size: 80px; }
  .method-sheet-label { font-size: 6px; }
}
@media(max-width:960px) {
  #approach .approach-sticky { padding-block: 32px 42px; }
  #approach .approach-top { padding-bottom: 20px; }
  #approach .approach-top .eyebrow { font-size: 8px; letter-spacing: .04em; }
  #approach .approach-counter { display: none; }
  .method-heading { grid-template-columns: 1fr; gap: 25px; padding-block: 30px 40px; }
  #approach h2 { font-size: clamp(38px,8.6vw,72px); line-height: 1.05; }
  .method-heading > p { justify-self: start; max-width: 350px; font-size: 12px; margin: 0; }
  .method-workspace { display: block; }
  .method-visual { display: none; }
  #approach .method-step { min-height: 0; grid-template-columns: 45px 1fr; column-gap: 18px; row-gap: 22px; padding: 27px 0 33px; }
  #approach .step-number { font-size: 42px; }
  #approach .process-step h3 { font-size: 29px; margin-bottom: 12px; }
  #approach .process-step p { font-size: 13px; max-width: 450px; }
  #approach .method-step-label { font-size: 7px; margin-bottom: 12px; }
  .method-output { margin-top: 20px; }
  .method-output > strong { font-size: 11px; }
  .method-mini { position: relative; grid-column: 1/-1; display: block; height: clamp(160px,46vw,260px); overflow: hidden; background-color: #deded8; border: 1px solid #17171720; }
  .method-mini img { position: absolute; width: 100%; height: 155%; inset: -27% 0 auto; object-fit: contain; }
  .method-mini-discovery { display: flex; align-items: center; justify-content: space-evenly; background-image: linear-gradient(#17171712 1px,transparent 1px),linear-gradient(90deg,#17171712 1px,transparent 1px); background-size: 24px 24px; }
  .method-mini-discovery img { opacity: .12; transform: rotate(-17deg); }
  .method-mini-discovery > span { position: relative; z-index: 1; font-size: 11px; border-bottom: 1px solid #292925; padding-bottom: 6px; }
  .method-mini-discovery > span:nth-child(2) { transform: translateY(-30px); }
  .method-mini-discovery > span:nth-child(3) { transform: translateY(28px); }
  .method-mini-idea img { width: 78%; left: 32%; opacity: .8; transform: rotate(10deg); }
  .method-mini-idea strong { position: absolute; left: 24px; top: 19px; font-size: clamp(33px,9vw,54px); line-height: .92; letter-spacing: -.04em; font-weight: 500; }
  .method-mini-form { background: #151515; color: #ecece7; }
  .method-mini-form img { filter: invert(1); opacity: .75; left: 8%; transform: rotate(-20deg); }
  .method-mini-form strong { position: absolute; left: 20px; bottom: 35px; font-size: clamp(43px,13vw,76px); line-height: 1; letter-spacing: -.09em; }
  .method-mini-form > .micro { position: absolute; bottom: 18px; left: 24px; font-size: 6px; letter-spacing: .1em; }
  .method-outro { padding-top: 29px; gap: 25px; flex-direction: column; align-items: flex-start; }
  .method-outro > p { font-size: 33px; }
  .method-outro > .text-link { font-size: 11px; gap: 30px; }
}
@media(prefers-reduced-motion:reduce) { #approach .method-visual { position: relative; top: auto; } }
