:root {
  --bg: #07070a;
  --bg-soft: #0e0e13;
  --text: #f4f1ea;
  --muted: #9a9aa5;
  --line: rgba(255, 255, 255, .14);
  --lime: #c9ff2f;
  --violet: #7546ff;
  --orange: #ff5c35;
  --cyan: #00e7ff;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Space Grotesk", system-ui, sans-serif;
  --pad: clamp(20px, 4vw, 68px);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
::selection { color: #000; background: var(--lime); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }

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

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 150;
  border-radius: 50%;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}
.cursor--dot { width: 7px; height: 7px; background: white; }
.cursor--ring { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.9); transition: width .25s, height .25s, background .25s; }
.cursor--ring.is-hover { width: 70px; height: 70px; background: rgba(255,255,255,.14); }

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  align-content: end;
  gap: 22px;
  padding: var(--pad);
  background: #050507;
  transition: transform .9s cubic-bezier(.76,0,.24,1) .15s;
}
.loader.is-hidden { transform: translateY(-105%); }
.loader__counter { font: 700 clamp(80px, 15vw, 220px)/.8 var(--display); letter-spacing: -.08em; }
.loader__line { height: 2px; background: #222; overflow: hidden; }
.loader__line span { display: block; width: 0; height: 100%; background: var(--lime); }

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(7,7,10,.85), transparent);
  backdrop-filter: blur(0px);
  transition: padding .3s, background .3s, backdrop-filter .3s;
}
.header.is-scrolled { padding-top: 14px; padding-bottom: 14px; background: rgba(7,7,10,.72); backdrop-filter: blur(16px); }
.logo { display: inline-flex; align-items: center; gap: 7px; font: 700 18px/1 var(--display); letter-spacing: -.04em; }
.logo i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 18px var(--lime); }
.nav { display: flex; gap: clamp(20px, 3vw, 48px); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.nav a { position: relative; padding: 6px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 1px; margin: 7px auto; background: white; transition: transform .3s; }
.menu-toggle.is-active span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle.is-active span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 90; display: flex; flex-direction: column; justify-content: center; padding: 100px var(--pad) 40px; background: #0a0a0f; transform: translateY(-105%); transition: transform .65s cubic-bezier(.76,0,.24,1); }
.mobile-menu.is-open { transform: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { display: flex; align-items: baseline; gap: 15px; padding: 12px 0; font: 600 clamp(42px, 13vw, 72px)/1 var(--display); letter-spacing: -.06em; border-bottom: 1px solid var(--line); }
.mobile-menu nav span { font: 500 11px/1 var(--sans); color: var(--lime); letter-spacing: .1em; }
.mobile-menu__meta { display: flex; justify-content: space-between; gap: 20px; margin-top: 36px; color: var(--muted); font-size: 13px; }

.section-pad { padding-left: var(--pad); padding-right: var(--pad); }
.hero { position: relative; min-height: 100svh; padding-top: 108px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; }
#webgl-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; pointer-events: none; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .23; pointer-events: none; }
.hero__glow--one { width: 36vw; height: 36vw; right: -10vw; top: 12%; background: var(--violet); animation: float 7s ease-in-out infinite; }
.hero__glow--two { width: 24vw; height: 24vw; left: 18%; bottom: 0; background: var(--orange); animation: float 9s ease-in-out infinite reverse; }
@keyframes float { 50% { transform: translate3d(0,-25px,0) scale(1.08); } }
.hero__top { position: relative; z-index: 2; display: flex; align-items: flex-start; justify-content: space-between; }
.eyebrow, .kicker { margin: 0; font-size: 12px; font-weight: 700; line-height: 1.2; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 9px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 14px var(--lime); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { opacity: .35; } }
.hero__location { margin: 0; color: var(--muted); font-size: 11px; text-align: right; text-transform: uppercase; letter-spacing: .11em; }
.hero__content { position: relative; z-index: 2; margin-top: auto; padding-top: 8vh; }
.hero__title { margin: 0; font: 700 clamp(56px, 10.5vw, 176px)/.77 var(--display); letter-spacing: -.075em; text-transform: uppercase; }
.title-line { display: block; overflow: hidden; }
.title-line > span { display: block; transform: translateY(115%); }
.title-line--indent { padding-left: 10vw; }
.title-line--accent { color: var(--lime); font-style: italic; padding-left: 2vw; }
.hero__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; padding: clamp(32px, 5vw, 70px) 0 55px; }
.hero__intro { max-width: 510px; margin: 0 0 0 21vw; color: #c4c4ca; font-size: clamp(16px, 1.35vw, 22px); line-height: 1.5; }
.round-cta { width: 110px; height: 110px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; align-content: center; gap: 9px; transition: background .3s, color .3s, border-color .3s; }
.round-cta:hover { color: #07070a; background: var(--lime); border-color: var(--lime); }
.round-cta svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.round-cta span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.hero__marquee { position: relative; z-index: 2; margin: 0 calc(var(--pad) * -1); padding: 15px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee-track { display: flex; align-items: center; width: max-content; animation: marquee 22s linear infinite; font: 600 13px/1 var(--display); letter-spacing: .1em; }
.marquee-track span { padding: 0 28px; }
.marquee-track i { color: var(--lime); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.work { padding-top: clamp(100px, 13vw, 190px); padding-bottom: clamp(100px, 13vw, 190px); }
.section-head { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(280px,.7fr); gap: 50px; align-items: end; margin-bottom: clamp(50px, 7vw, 100px); }
.kicker { color: var(--lime); margin-bottom: 20px; }
.section-head h2, .about h2, .contact h2 { margin: 0; font: 600 clamp(54px, 8vw, 126px)/.88 var(--display); letter-spacing: -.07em; text-transform: uppercase; }
.section-head h2 em, .about h2 em, .contact h2 em { color: var(--muted); font-weight: 500; }
.section-head__aside { display: grid; gap: 28px; }
.section-head__aside > p, .section-head__note { max-width: 440px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 11px; text-transform: uppercase; letter-spacing: .09em; cursor: pointer; transition: .25s; }
.filter:hover, .filter.is-active { color: #060608; border-color: var(--lime); background: var(--lime); }
.projects { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(36px, 6vw, 92px) clamp(18px, 3vw, 48px); }
.project { min-width: 0; transition: opacity .35s, transform .35s; }
.project.is-hidden { display: none; }
.project--wide { grid-column: 1 / -1; }
.project__visual { position: relative; min-height: clamp(420px, 52vw, 770px); overflow: hidden; border-radius: var(--radius); isolation: isolate; }
.project:not(.project--wide) .project__visual { min-height: clamp(460px, 55vw, 690px); }
.project__visual::after { content: ""; position: absolute; inset: 0; z-index: 20; background: linear-gradient(to top, rgba(0,0,0,.25), transparent 35%); pointer-events: none; }
.project__visual > * { transition: transform .7s cubic-bezier(.2,.75,.25,1); }
.project__link:hover .project__visual > :not(.project__index):not(.project__view) { transform: scale(1.035); }
.project__index, .project__view { position: absolute; z-index: 30; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.project__index { left: 22px; top: 22px; }
.project__view { right: 22px; bottom: 22px; padding: 12px 14px; border-radius: 999px; background: rgba(0,0,0,.72); backdrop-filter: blur(12px); transform: translateY(12px); opacity: 0; transition: .3s; }
.project__link:hover .project__view { transform: none; opacity: 1; }
.project__meta { display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; padding: 20px 4px 0; }
.project__meta h3 { margin: 0; font: 600 clamp(26px, 3vw, 46px)/1 var(--display); letter-spacing: -.045em; }
.project__meta p { margin: 0; color: var(--muted); font-size: 13px; }
.project__meta span { grid-row: 1 / 3; grid-column: 2; color: var(--muted); font-size: 12px; }
.visual--afterdark { display: grid; place-items: center; background: radial-gradient(circle at 50% 80%, #5014ff 0, #1b0737 23%, #09070e 65%); }
.visual-grid { position: absolute; inset: -10%; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 55px 55px; transform: perspective(700px) rotateX(62deg) translateY(35%); transform-origin: bottom; mask-image: linear-gradient(to top, black, transparent 80%); }
.orb { position: absolute; border-radius: 50%; filter: blur(3px); }
.orb--one { width: 35%; aspect-ratio: 1; background: linear-gradient(145deg, #ff5a36, #7c26ff 65%, #031bff); box-shadow: 0 0 100px rgba(109,40,255,.5); }
.orb--two { width: 13%; aspect-ratio: 1; right: 16%; top: 17%; background: #d6ff31; box-shadow: 0 0 65px rgba(201,255,47,.55); }
.visual-word { position: relative; z-index: 4; margin: 0; font: 700 clamp(70px, 12vw, 190px)/.72 var(--display); letter-spacing: -.09em; text-align: center; mix-blend-mode: difference; }
.visual--sillage { background: #e7dfd1; color: #19150f; display: grid; place-items: center; }
.visual--sillage::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(100deg, transparent 0 23px, rgba(30,20,10,.04) 24px 25px); }
.sillage-ring { position: absolute; width: 66%; aspect-ratio: 1; border: 1px solid rgba(20,15,10,.25); border-radius: 50%; box-shadow: 0 0 0 35px rgba(20,15,10,.025), 0 0 0 70px rgba(20,15,10,.02); }
.sillage-ring::after { content: ""; position: absolute; width: 44%; aspect-ratio: .68; left: 28%; top: 15%; border-radius: 48% 48% 20% 20%; background: linear-gradient(90deg, #2b241c, #77654e 42%, #1c1712); box-shadow: inset 18px 0 25px rgba(255,255,255,.16), 0 35px 45px rgba(35,22,10,.25); }
.sillage-logo { position: absolute; top: 10%; margin: 0; font: 600 clamp(24px, 4vw, 52px)/1 var(--display); letter-spacing: .25em; }
.sillage-copy { position: absolute; left: 7%; bottom: 8%; margin: 0; font: 600 clamp(28px, 4vw, 58px)/.9 var(--display); letter-spacing: -.05em; }
.visual--neura { background: #d8ff36; color: #0a0a0a; overflow: hidden; }
.neura-sphere { position: absolute; width: 76%; aspect-ratio: 1; right: -26%; top: -12%; border-radius: 50%; background: radial-gradient(circle at 35% 28%, #fff 0 2%, #7cf0ff 8%, #7546ff 32%, #111 62%, #030303 72%); box-shadow: -30px 30px 80px rgba(0,0,0,.28); }
.neura-sphere::after { content: ""; position: absolute; inset: 4%; border-radius: inherit; background: repeating-radial-gradient(circle at 44% 40%, transparent 0 7px, rgba(255,255,255,.2) 8px 9px); opacity: .5; }
.neura-ui { position: absolute; left: 7%; top: 9%; bottom: 8%; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; }
.neura-ui span, .neura-ui small { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.neura-ui strong { font: 700 clamp(50px, 7vw, 105px)/.82 var(--display); letter-spacing: -.075em; text-transform: uppercase; }
.visual--signal { background: #ff633f; display: grid; place-items: center; }
.signal-noise { position: absolute; inset: 0; opacity: .36; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='x'%3E%3CfeTurbulence type='turbulence' baseFrequency='.7' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23x)'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.signal-shape { position: absolute; width: 54%; aspect-ratio: 1; background: #151219; clip-path: polygon(50% 0, 63% 33%, 100% 22%, 73% 50%, 100% 78%, 63% 67%, 50% 100%, 37% 67%, 0 78%, 27% 50%, 0 22%, 37% 33%); animation: spin 18s linear infinite; }
@keyframes spin { to { rotate: 360deg; } }
.signal-title { position: relative; z-index: 3; margin: 0; font: 700 clamp(86px, 16vw, 240px)/.68 var(--display); letter-spacing: -.09em; text-align: center; mix-blend-mode: difference; }
.signal-caption { position: absolute; right: 6%; top: 8%; font-size: 11px; line-height: 1.5; text-transform: uppercase; letter-spacing: .1em; text-align: right; }

.statement { padding-top: clamp(80px, 11vw, 160px); padding-bottom: clamp(100px, 15vw, 220px); border-top: 1px solid var(--line); }
.statement__line { overflow: hidden; font: 600 clamp(55px, 10vw, 150px)/.93 var(--display); letter-spacing: -.075em; text-transform: uppercase; }
.statement__line span { display: block; }
.statement__line--accent { color: var(--lime); font-style: italic; padding-left: 12vw; }
.statement__line--right { text-align: right; }
.statement__foot { display: flex; align-items: flex-start; justify-content: space-between; margin-top: 60px; }
.statement__foot p { margin: 0 0 0 35vw; color: var(--muted); font-size: clamp(16px, 1.5vw, 23px); line-height: 1.45; }
.scribble svg { width: 180px; fill: none; stroke: var(--lime); stroke-width: 2; stroke-linecap: round; }

.about { display: grid; grid-template-columns: minmax(300px,.85fr) minmax(420px,1.15fr); gap: clamp(50px, 9vw, 150px); align-items: center; padding-top: clamp(100px, 12vw, 180px); padding-bottom: clamp(100px, 12vw, 180px); background: var(--bg-soft); }
.portrait-card { position: relative; min-height: 680px; border-radius: var(--radius); overflow: hidden; background: linear-gradient(150deg, #1b1923, #09090d 70%); }
.portrait-card::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.15) 1px, transparent 1px); background-size: 22px 22px; mask-image: linear-gradient(to bottom, black, transparent); }
.portrait-card__halo { position: absolute; width: 85%; aspect-ratio: 1; left: 7%; top: 13%; border-radius: 50%; background: conic-gradient(from 30deg, var(--violet), var(--orange), var(--lime), var(--violet)); filter: blur(35px); opacity: .65; }
.portrait-card__face { position: absolute; inset: 12% 10% 0; filter: drop-shadow(0 25px 30px rgba(0,0,0,.55)); }
.face-head { position: absolute; width: 43%; aspect-ratio: .78; left: 30%; top: 13%; border-radius: 45% 45% 40% 40%; background: linear-gradient(110deg, #342f3d, #111017 52%, #4a3b53); }
.face-head::before { content: ""; position: absolute; width: 110%; height: 36%; left: -5%; top: -12%; border-radius: 60% 60% 25% 25%; background: #08080b; transform: rotate(-7deg); }
.face-head::after { content: ""; position: absolute; width: 82%; height: 18%; left: 9%; top: 43%; border: 2px solid rgba(201,255,47,.65); border-radius: 50%; box-shadow: 0 0 25px rgba(201,255,47,.25); }
.face-body { position: absolute; width: 90%; height: 58%; left: 5%; bottom: -12%; border-radius: 48% 48% 0 0; background: linear-gradient(100deg, #15131b, #3e3049 48%, #111017); clip-path: polygon(15% 0, 85% 0, 100% 100%, 0 100%); }
.portrait-card__stamp { position: absolute; right: 25px; top: 30px; color: var(--lime); font: 700 11px/1.05 var(--display); letter-spacing: .06em; transform: rotate(8deg); }
.portrait-card__label { position: absolute; left: 24px; bottom: 22px; color: #b8b8c0; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.about__content h2 { font-size: clamp(50px, 6.4vw, 104px); }
.about__copy { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 45px; }
.about__copy p { margin: 0; color: #b7b7c0; font-size: 15px; line-height: 1.7; }
.about__copy strong { color: var(--text); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 55px 0; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats div { display: flex; align-items: flex-end; gap: 10px; }
.stats strong { font: 600 clamp(42px, 5vw, 72px)/.8 var(--display); letter-spacing: -.06em; }
.stats strong::after { content: "+"; color: var(--lime); font-size: .45em; vertical-align: top; }
.stats span { color: var(--muted); font-size: 10px; line-height: 1.3; text-transform: uppercase; letter-spacing: .09em; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--text); font-weight: 700; }
.text-link i { color: var(--lime); font-style: normal; }

.services { padding-top: clamp(100px, 13vw, 190px); padding-bottom: clamp(100px, 13vw, 190px); }
.service-list { border-top: 1px solid var(--line); }
.service { position: relative; display: grid; grid-template-columns: 60px 1.1fr .9fr 90px; gap: 25px; align-items: center; padding: 35px 0; border-bottom: 1px solid var(--line); overflow: hidden; transition: padding .3s; }
.service::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--lime); transform: translateY(102%); transition: transform .45s cubic-bezier(.2,.75,.25,1); }
.service:hover { color: #060608; padding-left: 20px; padding-right: 20px; }
.service:hover::before { transform: none; }
.service__num { color: var(--muted); font-size: 11px; font-weight: 700; }
.service:hover .service__num, .service:hover p { color: rgba(0,0,0,.62); }
.service h3 { margin: 0; font: 600 clamp(28px, 4vw, 58px)/1 var(--display); letter-spacing: -.05em; }
.service p { max-width: 400px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.service__tags { display: flex; gap: 7px; flex-wrap: wrap; }
.service__tags span { padding: 8px 11px; border: 1px solid currentColor; border-radius: 999px; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.service > i { justify-self: end; font: 400 36px/1 var(--sans); font-style: normal; transition: transform .3s; }
.service:hover > i { transform: rotate(45deg); }

.contact { position: relative; padding-top: clamp(100px, 13vw, 190px); overflow: hidden; background: #0d0d12; }
.contact__orb { position: absolute; width: 55vw; aspect-ratio: 1; right: -20vw; top: 2%; border-radius: 50%; background: radial-gradient(circle at 35% 32%, #d6ff31, #6738ff 32%, transparent 67%); filter: blur(25px); opacity: .35; animation: float 8s ease-in-out infinite; }
.contact h2 { position: relative; max-width: 1200px; font-size: clamp(50px, 8vw, 126px); }
.contact__email { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 65px; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font: 500 clamp(25px, 5vw, 70px)/1 var(--display); letter-spacing: -.05em; }
.contact__email i { color: var(--lime); font-style: normal; }
.contact-form { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 980px; margin-top: 80px; }
.field { display: grid; gap: 10px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.field input, .field textarea { width: 100%; padding: 15px 0; color: var(--text); border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: 0; background: transparent; resize: vertical; transition: border-color .25s; }
.field input:focus, .field textarea:focus { border-color: var(--lime); }
.field input::placeholder, .field textarea::placeholder { color: #5f5f68; }
.submit { grid-column: 1 / -1; width: max-content; display: inline-flex; align-items: center; gap: 18px; margin-top: 10px; padding: 18px 24px; color: #08080a; border: 0; border-radius: 999px; background: var(--lime); font-weight: 700; cursor: pointer; }
.submit i { font-style: normal; transition: transform .25s; }
.submit:hover i { transform: rotate(45deg); }
.form-status { grid-column: 1 / -1; min-height: 20px; margin: 0; color: var(--lime); font-size: 13px; }
.footer { position: relative; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: end; margin-top: 130px; padding: 42px 0; border-top: 1px solid var(--line); }
.footer p { margin: 16px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; text-transform: uppercase; letter-spacing: .07em; }
.footer__links { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.footer__links a:hover { color: var(--lime); }
.footer .footer__made { justify-self: end; text-align: right; }
.toast { position: fixed; right: 24px; bottom: 24px; z-index: 130; padding: 16px 20px; color: #07070a; border-radius: 12px; background: var(--lime); font-size: 13px; font-weight: 700; transform: translateY(150%); transition: transform .45s cubic-bezier(.2,.75,.25,1); }
.toast.is-visible { transform: none; }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .cursor { display: none; }
  .nav { display: none; }
  .menu-toggle { display: block; }
  .hero__intro { margin-left: 7vw; }
  .section-head { grid-template-columns: 1fr; }
  .section-head__aside { grid-template-columns: 1fr 1fr; align-items: end; }
  .about { grid-template-columns: 1fr; }
  .portrait-card { min-height: 70vw; }
  .about__visual { max-width: 680px; }
  .service { grid-template-columns: 45px 1fr 60px; }
  .service p { grid-column: 2; }
  .service__tags { grid-column: 2; }
  .service > i { grid-column: 3; grid-row: 1 / 4; }
}

@media (max-width: 700px) {
  :root { --radius: 20px; }
  .header { padding-top: 18px; }
  .hero { padding-top: 90px; }
  .hero__location { display: none; }
  .hero__content { padding-top: 15vh; }
  .hero__title { font-size: clamp(48px, 17vw, 78px); line-height: .82; }
  .title-line--indent { padding-left: 0; }
  .hero__bottom { align-items: flex-end; padding-bottom: 35px; }
  .hero__intro { margin: 0; max-width: 72%; font-size: 14px; }
  .round-cta { width: 78px; height: 78px; }
  .round-cta span { display: none; }
  .section-head__aside { grid-template-columns: 1fr; }
  .projects { grid-template-columns: 1fr; }
  .project--wide { grid-column: auto; }
  .project__visual, .project:not(.project--wide) .project__visual { min-height: 125vw; }
  .visual--afterdark .visual-word { font-size: 24vw; }
  .signal-title { font-size: 25vw; }
  .statement__line { font-size: 14vw; }
  .statement__line--accent { padding-left: 4vw; }
  .statement__foot p { margin-left: 0; }
  .scribble { display: none; }
  .about { gap: 60px; }
  .portrait-card { min-height: 125vw; }
  .about__copy { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stats div { justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 17px; }
  .stats div:last-child { border-bottom: 0; }
  .service { grid-template-columns: 35px 1fr 34px; padding: 28px 0; }
  .service h3 { font-size: 29px; }
  .service__tags { display: none; }
  .contact__email { font-size: clamp(20px, 6vw, 34px); overflow-wrap: anywhere; }
  .contact-form { grid-template-columns: 1fr; }
  .field--full, .submit, .form-status { grid-column: auto; }
  .footer { grid-template-columns: 1fr; }
  .footer__links { justify-content: flex-start; }
  .footer .footer__made { justify-self: start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .cursor, .loader { display: none; }
  .title-line > span { transform: none; }
  .reveal { opacity: 1; transform: none; }
}
