:root {
  --ink: #0a0c12;
  --paper: #f4f1e9;
  --muted: #77756e;
  --line: rgba(10, 12, 18, 0.15);
  --acid: #d7ff3f;
  --violet: #8c6bff;
  --orange: #ff7a45;
  --cyan: #56d6e7;
  --display: 'Arial Narrow', 'Avenir Next Condensed', Arial, sans-serif;
  --body: Inter, 'Avenir Next', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); }
a { color: inherit; }
button, input { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; background: var(--acid); padding: 12px 18px; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 16px; }
.noise { position: fixed; inset: 0; pointer-events: none; z-index: 20; opacity: .03; 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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }

.site-header { height: 84px; display: flex; align-items: center; justify-content: space-between; padding: 0 4vw; border-bottom: 1px solid var(--line); position: relative; z-index: 10; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-family: var(--display); font-weight: 700; }
.brand-mark { display: grid; place-items: center; width: 36px; height: 36px; background: var(--ink); color: var(--acid); border-radius: 50%; font-size: 12px; letter-spacing: -.04em; }
nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
nav a { text-decoration: none; }
nav a:not(.nav-cta):hover { opacity: .55; }
.nav-cta { padding: 11px 16px; background: var(--ink); color: #fff; border-radius: 100px; }
.nav-cta span { color: var(--acid); margin-left: 6px; }

.hero { min-height: 720px; padding: 115px 7vw 72px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.eyebrow { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 30px; }
.eyebrow span { width: 9px; height: 9px; background: var(--violet); border-radius: 50%; box-shadow: 0 0 0 5px rgba(140,107,255,.16); }
.hero h1 { font: 600 clamp(58px, 9.2vw, 142px)/.84 var(--display); letter-spacing: -.075em; margin: 0; max-width: 1180px; position: relative; z-index: 2; }
.hero h1 em { font-style: normal; color: transparent; -webkit-text-stroke: 2px var(--ink); }
.hero-copy { max-width: 630px; font-size: clamp(18px, 2vw, 23px); line-height: 1.5; margin: 44px 0 30px; color: #484944; position: relative; z-index: 2; }
.hero-actions { display: flex; gap: 12px; position: relative; z-index: 3; }
.button { border: 1px solid var(--ink); border-radius: 100px; min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; text-decoration: none; font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-3px); box-shadow: 0 7px 0 var(--ink); }
.button-primary { background: var(--acid); }
.button-quiet { background: transparent; }
.hero-stats { display: flex; gap: 58px; position: absolute; right: 7vw; bottom: 72px; z-index: 2; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font: 600 42px/1 var(--display); letter-spacing: -.05em; }
.hero-stats span { font-size: 12px; color: var(--muted); margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; }
.orbit { position: absolute; border: 1px solid rgba(10,12,18,.17); border-radius: 50%; display: grid; place-items: center; animation: float 7s ease-in-out infinite; }
.orbit span { display: grid; place-items: center; width: 74px; height: 74px; background: var(--violet); border-radius: 50%; font: 700 17px var(--display); transform: rotate(8deg); }
.orbit-one { width: 360px; height: 360px; right: -80px; top: 55px; transform: rotate(-12deg); }
.orbit-one:after { content: ''; position: absolute; width: 18px; height: 18px; background: var(--acid); border-radius: 50%; left: 45px; bottom: 50px; }
.orbit-two { width: 210px; height: 210px; right: 24vw; top: 410px; animation-delay: -3s; }
.orbit-two span { width: 52px; height: 52px; background: var(--orange); font-size: 13px; }
@keyframes float { 0%,100% { translate: 0 0; } 50% { translate: 0 -16px; } }

.marquee { overflow: hidden; background: var(--ink); color: white; padding: 18px 0; }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 30px; animation: marquee 28s linear infinite; font: 600 14px var(--display); letter-spacing: .1em; }
.marquee i { color: var(--acid); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.services-section, .featured-section, .projects-section { padding: 110px 4vw; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: end; margin-bottom: 55px; }
.section-heading > div { display: flex; align-items: flex-start; gap: 18px; }
.section-number { border: 1px solid var(--ink); border-radius: 100px; font-size: 11px; padding: 5px 9px; margin-top: 8px; }
.section-heading h2 { font: 600 clamp(38px, 5.5vw, 78px)/.95 var(--display); letter-spacing: -.055em; margin: 0; max-width: 750px; }
.section-heading > p { color: #5c5b55; font-size: 17px; line-height: 1.55; max-width: 480px; justify-self: end; margin: 0; }
.services-section { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.service-card { min-height: 390px; padding: clamp(30px, 4vw, 58px); border: 1px solid var(--ink); display: flex; flex-direction: column; align-items: flex-start; }
.service-card h3 { font: 600 clamp(35px, 4.6vw, 67px)/.98 var(--display); letter-spacing: -.055em; margin: 22px 0; max-width: 680px; }
.service-card p { font-size: 17px; line-height: 1.6; max-width: 620px; margin: 0 0 38px; }
.service-card a { margin-top: auto; display: inline-flex; align-items: center; gap: 28px; border-bottom: 2px solid currentColor; padding: 0 0 7px; text-decoration: none; font-weight: 700; }
.service-card a:hover span { transform: translate(4px,-4px); }
.service-card a span { transition: transform .2s; }
.service-kicker { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.build-service { background: var(--acid); }
.teach-service { background: var(--violet); color: white; }
.direct-email { text-align: center; margin: 34px 0 0; color: var(--muted); }
.direct-email a { color: var(--ink); font-weight: 700; }
.featured-section { background: #101219; color: white; }
.featured-section .section-heading > p { color: #a8a9ae; }
.featured-section .section-number { border-color: rgba(255,255,255,.4); }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.project-card { min-height: 360px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 4px; padding: 0; display: flex; flex-direction: column; text-decoration: none; position: relative; overflow: hidden; transition: transform .25s, border-color .25s, background .25s; }
.project-card:before { content: ''; position: absolute; width: 240px; height: 240px; border-radius: 50%; filter: blur(4px); background: var(--violet); opacity: 0; right: -130px; bottom: -150px; transition: opacity .25s, transform .35s; }
.project-card:hover { transform: translateY(-6px); border-color: var(--acid); background: rgba(255,255,255,.08); }
.project-card:hover:before { opacity: .23; transform: scale(1.35); }
.project-shot { aspect-ratio: 16/9; background: #272a31; overflow: hidden; position: relative; z-index: 1; border-bottom: 1px solid rgba(255,255,255,.14); }
.project-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .4s ease; }
.project-card:hover .project-shot img { transform: scale(1.035); }
.card-arrow { position: absolute; right: 14px; top: 14px; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--acid); color: var(--ink); font-size: 20px; box-shadow: 0 4px 20px rgba(0,0,0,.22); transition: transform .2s; }
.project-card:hover .card-arrow { transform: translate(4px,-4px); }
.card-content { position: relative; z-index: 1; padding: 24px; flex: 1; }
.category-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .65; }
.project-card h3 { font: 600 27px/1.05 var(--display); letter-spacing: -.04em; margin: 11px 0 12px; }
.project-card p { margin: 0; line-height: 1.5; color: #b9bac0; max-width: 360px; }

.projects-section { padding-bottom: 140px; }
.projects-heading { margin-bottom: 42px; }
.collection-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-bottom: 90px; border: 1px solid var(--ink); }
.collection-nav a { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 20px; border-right: 1px solid var(--ink); text-decoration: none; font: 600 14px var(--display); transition: background .2s, color .2s; }
.collection-nav a:last-child { border-right: 0; }
.collection-nav a:hover { background: var(--ink); color: white; }
.collection-nav span { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: var(--acid); color: var(--ink); font-size: 11px; }
.portfolio-group { scroll-margin-top: 24px; margin-bottom: 110px; }
.portfolio-group:last-child { margin-bottom: 0; }
.group-heading { display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; gap: 22px; align-items: start; padding: 0 0 26px; border-bottom: 2px solid var(--ink); }
.group-number { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--acid); font: 700 12px var(--display); }
.group-heading h3 { font: 600 clamp(35px, 4.5vw, 64px)/.95 var(--display); letter-spacing: -.055em; margin: 0 0 12px; }
.group-heading p { max-width: 620px; color: #5d5c56; line-height: 1.55; margin: 0; }
.group-count { padding: 8px 12px; border: 1px solid var(--line); border-radius: 100px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.group-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; padding-top: 14px; }
.group-grid .project-card { min-height: 395px; color: var(--ink); background: white; border: 1px solid var(--line); }
.group-grid .project-card { grid-column: span 2; }
.group-grid .project-card:nth-child(4):nth-last-child(2),
.group-grid .project-card:nth-child(5):last-child { grid-column: span 3; }
.group-grid .project-card:hover { border-color: var(--ink); box-shadow: 0 8px 0 var(--ink); }
.group-grid .project-card:before { background: var(--acid); }
.group-grid .project-shot { border-color: var(--line); }
.group-grid .project-card p { color: #5d5c56; font-size: 14px; }
.group-grid .card-content { display: flex; flex-direction: column; }
.visit-label { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 22px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.visit-label b { font-size: 15px; transition: transform .2s; }
.project-card:hover .visit-label b { transform: translate(3px,-3px); }
.portfolio-group:nth-child(2) .group-number { background: var(--violet); color: white; }
.portfolio-group:nth-child(3) .group-number { background: var(--orange); color: var(--ink); }
.portfolio-group:nth-child(4) .group-number { background: var(--cyan); color: var(--ink); }
.project-tools { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.search-box { width: min(380px, 100%); display: flex; align-items: center; gap: 10px; padding: 0 14px; height: 48px; background: #fff; border: 1px solid var(--line); border-radius: 3px; }
.search-box:focus-within { border-color: var(--ink); box-shadow: 0 0 0 2px var(--acid); }
.search-box svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.search-box input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; }
kbd { font: 600 11px var(--body); border: 1px solid var(--line); border-radius: 3px; padding: 2px 6px; color: var(--muted); }
.filters { display: flex; gap: 7px; overflow-x: auto; scrollbar-width: none; }
.filter { white-space: nowrap; background: transparent; border: 1px solid var(--line); border-radius: 100px; padding: 9px 13px; cursor: pointer; font-size: 12px; }
.filter:hover, .filter.active { background: var(--ink); border-color: var(--ink); color: white; }
.results-copy { margin: 22px 0 16px; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.project-grid .project-card { min-height: 330px; color: var(--ink); border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.project-grid .project-card p { color: #63625d; font-size: 14px; }
.project-grid .project-card:hover { background: white; border-color: var(--line); }
.project-grid .project-card:before { display: none; }
.project-grid .project-shot { border-color: var(--line); }
.empty-state { text-align: center; padding: 90px 20px; border: 1px solid var(--line); }
.empty-state span { font: 600 60px var(--display); color: var(--violet); }
.empty-state h3 { font: 600 28px var(--display); }
.empty-state button { border: 0; border-bottom: 1px solid; background: none; cursor: pointer; padding: 4px 0; }

.closing-section { min-height: 560px; background: var(--violet); color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 20px; position: relative; overflow: hidden; }
.closing-section p { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin: 0 0 18px; position: relative; z-index: 2; }
.closing-section h2 { font: 600 clamp(48px, 8vw, 112px)/.9 var(--display); letter-spacing: -.07em; max-width: 980px; margin: 0 0 42px; position: relative; z-index: 2; }
.button-light { background: white; color: var(--ink); position: relative; z-index: 2; }
.closing-email { color: white; margin-top: 25px; position: relative; z-index: 2; font-weight: 600; }
.closing-orb { position: absolute; width: 480px; height: 480px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; right: -80px; top: -140px; box-shadow: 0 0 0 80px rgba(255,255,255,.045), 0 0 0 160px rgba(255,255,255,.035); }
footer { min-height: 120px; background: var(--ink); color: white; padding: 30px 4vw; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 13px; }
footer p { color: #8f9096; }
footer > a:last-child { color: var(--acid); text-decoration: none; }

@media (max-width: 1050px) {
  .hero { min-height: 760px; }
  .orbit-one { right: -180px; }
  .orbit-two { right: 5vw; }
  .hero-stats { position: relative; right: auto; bottom: auto; margin-top: 60px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: repeat(3, 1fr); }
  .collection-nav { grid-template-columns: repeat(2, 1fr); }
  .collection-nav a:nth-child(2) { border-right: 0; }
  .collection-nav a:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .group-grid { grid-template-columns: repeat(2, 1fr); }
  .group-grid .project-card,
  .group-grid .project-card:nth-child(4):nth-last-child(2),
  .group-grid .project-card:nth-child(5):last-child { grid-column: span 1; }
  .project-tools { align-items: flex-start; flex-direction: column; }
  .filters { width: 100%; }
}

@media (max-width: 700px) {
  .site-header { height: 70px; padding: 0 20px; }
  .brand > span:last-child { font-size: 14px; }
  nav a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 9px 12px; font-size: 12px; }
  .hero { min-height: 720px; padding: 80px 22px 55px; }
  .hero h1 { font-size: clamp(54px, 18vw, 82px); }
  .hero h1 em { -webkit-text-stroke-width: 1.2px; }
  .hero-copy { font-size: 17px; margin-top: 35px; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 320px; }
  .hero-stats { gap: 30px; margin-top: 50px; }
  .hero-stats strong { font-size: 32px; }
  .orbit { opacity: .3; }
  .orbit-one { width: 260px; height: 260px; right: -150px; top: 90px; }
  .orbit-two { display: none; }
  .services-section, .featured-section, .projects-section { padding: 80px 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 38px; }
  .section-heading > p { justify-self: start; }
  .section-heading > div { gap: 10px; }
  .section-number { margin-top: 4px; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-grid .project-card { min-height: 290px; }
  .service-card { min-height: 360px; padding: 30px 24px; }
  .project-grid { grid-template-columns: 1fr; }
  .collection-nav { grid-template-columns: 1fr; margin-bottom: 70px; }
  .collection-nav a { min-height: 58px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .collection-nav a:nth-child(2) { border-right: 0; }
  .collection-nav a:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .collection-nav a:last-child { border-bottom: 0; }
  .portfolio-group { margin-bottom: 80px; }
  .group-heading { grid-template-columns: 44px 1fr; gap: 12px; }
  .group-number { width: 38px; height: 38px; }
  .group-count { grid-column: 2; justify-self: start; }
  .group-grid { grid-template-columns: 1fr; }
  .group-grid .project-card,
  .group-grid .project-card:nth-child(4):nth-last-child(2),
  .group-grid .project-card:nth-child(5):last-child { grid-column: span 1; }
  .group-grid .project-card { min-height: 370px; }
  .project-grid .project-card { min-height: 260px; }
  .closing-section { min-height: 500px; }
  footer { flex-direction: column; align-items: flex-start; padding: 40px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
