:root {
  --ink: #171714;
  --paper: #f1efe8;
  --paper-deep: #e6e2d8;
  --acid: #d9ff45;
  --coral: #ff684d;
  --line: rgba(23, 23, 20, .2);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: .055;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

a { color: inherit; }
button { font: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 17px 3.2vw;
  border-bottom: 1px solid rgba(241, 239, 232, .12);
  background: rgba(23, 23, 20, .9);
  color: var(--paper);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: inherit;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px transparent;
}

.brand-mark::after {
  display: block;
  width: 4px;
  height: 4px;
  margin: 5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}

.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  padding: 10px 15px;
  border: 1px solid currentColor;
  border-radius: 100px;
}

.nav-cta span { margin-left: 9px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 100svh;
  background: var(--ink);
  color: var(--paper);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 5vw 70px 7vw;
}

.eyebrow,
.section-label {
  margin: 0 0 42px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  display: inline-block;
  width: 30px;
  height: 1px;
  margin: 0 12px 3px 0;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(4rem, 7.8vw, 8.5rem);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .84;
}

.hero h1 em,
.contact h2 em {
  color: var(--acid);
  font-family: var(--serif);
  font-weight: 400;
}

.hero-intro {
  max-width: 510px;
  margin: 48px 0 35px;
  color: rgba(241, 239, 232, .68);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.text-link {
  display: inline-flex;
  gap: 40px;
  align-items: center;
  align-self: flex-start;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(241, 239, 232, .5);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateY(5px); }

.hero-art {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--coral);
}

.art-grid {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(23,23,20,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,23,20,.35) 1px, transparent 1px);
  background-size: 12.5% 12.5%;
  animation: grid-drift 18s linear infinite;
  will-change: background-position;
}

.orbit,
.focus-ring,
.contact-orbit {
  position: absolute;
  border: 1px solid rgba(23, 23, 20, .55);
  border-radius: 50%;
}

.orbit-one {
  top: 15%;
  left: -31%;
  width: 105%;
  aspect-ratio: 1;
  animation: orbit-drift-one 12s ease-in-out infinite alternate;
}

.orbit-two {
  top: 27%;
  left: -18%;
  width: 78%;
  aspect-ratio: 1;
  animation: orbit-drift-two 15s ease-in-out infinite alternate;
}

.focus-ring {
  top: 50%;
  left: 50%;
  display: grid;
  width: min(24vw, 360px);
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  place-items: center;
  transform: translate(-50%, -50%);
  animation: focus-drift 9s ease-in-out infinite alternate;
  will-change: transform;
}

.focus-ring::before,
.focus-ring::after {
  position: absolute;
  background: var(--ink);
  content: "";
}

.focus-ring::before { width: 140%; height: 1px; }
.focus-ring::after { width: 1px; height: 140%; }

.focus-dot {
  z-index: 1;
  width: 24%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 12px var(--coral), 0 0 0 13px var(--ink);
  animation: focus-pulse 4.5s ease-in-out infinite;
}

@keyframes grid-drift {
  to { background-position: 12.5% 12.5%; }
}

@keyframes orbit-drift-one {
  from { transform: translate3d(-1.5%, -1%, 0) scale(.985); }
  to { transform: translate3d(2%, 1.5%, 0) scale(1.018); }
}

@keyframes orbit-drift-two {
  from { transform: translate3d(1.5%, -1.5%, 0) scale(1.015); }
  to { transform: translate3d(-2%, 2%, 0) scale(.985); }
}

@keyframes focus-drift {
  from { transform: translate(-50%, -50%) rotate(-1.5deg); }
  to { transform: translate(-48.5%, -51.5%) rotate(2deg); }
}

@keyframes focus-pulse {
  50% { transform: scale(.9); }
}

.art-label {
  position: absolute;
  z-index: 2;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.art-label-top { top: 100px; right: 28px; }
.art-label-bottom { right: 28px; bottom: 40px; }

.art-number {
  position: absolute;
  bottom: -8vw;
  left: -1vw;
  color: rgba(23,23,20,.12);
  font-family: var(--serif);
  font-size: 34vw;
  line-height: 1;
}

.hero-index {
  position: absolute;
  bottom: 24px;
  left: 3.2vw;
  margin: 0;
  color: rgba(241,239,232,.45);
  font-size: .62rem;
  letter-spacing: .16em;
}

.section-pad { padding: 130px 7vw; }

.statement {
  display: grid;
  grid-template-columns: 30% 70%;
  min-height: 75vh;
  align-items: start;
}

.statement-copy h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.3vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
}

.statement-copy > p {
  max-width: 510px;
  margin: 55px 0 0 auto;
  color: rgba(23,23,20,.65);
  font-size: 1.08rem;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 25px 0;
  animation: ticker 24s linear infinite;
}

.marquee span {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-style: italic;
  white-space: nowrap;
}

.marquee i {
  margin: 0 40px;
  color: var(--coral);
  font-size: 1rem;
}

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

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 75px;
}

.section-note {
  max-width: 290px;
  margin: 0;
  color: rgba(23,23,20,.55);
  font-size: .9rem;
}

.service-list { border-top: 1px solid var(--ink); }

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 9% 31% 42% 18%;
  min-height: 190px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding .35s ease, background .35s ease;
}

.service-item:hover {
  padding-right: 25px;
  padding-left: 25px;
  background: var(--acid);
}

.service-number {
  align-self: start;
  font-size: .65rem;
  font-weight: 700;
}

.service-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.3vw, 4rem);
  font-weight: 400;
  letter-spacing: -.04em;
}

.service-item p {
  max-width: 390px;
  margin: 0;
  color: rgba(23,23,20,.65);
}

.service-icon {
  justify-self: end;
  width: 64px;
}

.service-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.about {
  display: grid;
  grid-template-columns: 44% 56%;
  background: var(--ink);
  color: var(--paper);
}

.about-art {
  position: relative;
  display: grid;
  min-height: 790px;
  overflow: hidden;
  background: var(--acid);
  color: var(--ink);
  place-items: center;
}

.network-caption {
  position: absolute;
  bottom: 45px;
  left: 45px;
  display: flex;
  flex-direction: column;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.8;
  text-transform: uppercase;
}

.network-caption span::before {
  display: inline-block;
  width: 14px;
  height: 1px;
  margin: 0 8px 3px 0;
  background: currentColor;
  content: "";
}

.image-network {
  width: min(88%, 650px);
  height: auto;
  overflow: visible;
  animation: network-float 12s ease-in-out infinite alternate;
}

.network-links path {
  fill: none;
  stroke: rgba(23, 23, 20, .48);
  stroke-width: 1.35;
  vector-effect: non-scaling-stroke;
}

.network-signals path {
  fill: none;
  stroke: var(--coral);
  stroke-width: 2.5;
  stroke-dasharray: .055 .945;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  animation: signal-travel 6s linear infinite;
}

.network-signals path:nth-child(2) { animation-delay: -2s; }
.network-signals path:nth-child(3) { animation-delay: -4s; }

.network-nodes .node {
  fill: var(--ink);
  stroke: var(--acid);
  stroke-width: 6;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  animation: node-breathe 4s ease-in-out infinite alternate;
}

.network-nodes .node:nth-child(2n) { animation-delay: -1.2s; }
.network-nodes .node:nth-child(3n) { animation-delay: -2.4s; }

.network-nodes .node-core {
  fill: var(--coral);
  stroke: var(--ink);
  stroke-width: 2;
  animation: core-pulse 3.8s ease-in-out infinite;
}

.about-art::before,
.about-art::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.about-art::before {
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(23,23,20,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,23,20,.35) 1px, transparent 1px);
  background-size: 70px 70px;
}

.about-art::after {
  top: 40px;
  right: 40px;
  width: 9px;
  height: 9px;
  background: var(--coral);
  box-shadow: 18px 0 0 var(--ink), 36px 0 0 rgba(23,23,20,.35);
}

@keyframes network-float {
  from { transform: translate3d(-1.5%, 1%, 0) rotate(-.8deg); }
  to { transform: translate3d(1.5%, -1%, 0) rotate(.8deg); }
}

@keyframes signal-travel {
  to { stroke-dashoffset: 0; }
}

@keyframes node-breathe {
  to { transform: scale(1.22); }
}

@keyframes core-pulse {
  50% { transform: scale(1.25); }
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy h2,
.process h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .95;
}

.about-copy > p:not(.section-label) {
  max-width: 570px;
  margin: 50px 0 65px;
  color: rgba(241,239,232,.65);
  font-size: 1.05rem;
}

.principles { border-top: 1px solid rgba(241,239,232,.2); }

.principles div {
  display: grid;
  grid-template-columns: 55px 1fr;
  padding: 15px 0;
  border-bottom: 1px solid rgba(241,239,232,.2);
  font-size: .78rem;
}

.principles strong { color: var(--acid); font-size: .6rem; }

.process .section-heading { align-items: end; }
.process .section-label { margin: 0; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 90px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process-steps li {
  min-height: 270px;
  padding: 25px 30px 25px 0;
  border-right: 1px solid var(--line);
}

.process-steps li:not(:first-child) { padding-left: 30px; }
.process-steps li:last-child { border: 0; }
.process-steps span { font-size: .62rem; font-weight: 700; }
.process-steps h3 { margin: 75px 0 18px; font-size: 1rem; }
.process-steps p { margin: 0; color: rgba(23,23,20,.58); font-size: .85rem; }

.contact {
  position: relative;
  min-height: 80vh;
  padding: 130px 7vw;
  overflow: hidden;
  background: var(--coral);
}

.contact .section-label { position: relative; z-index: 1; }

.contact h2 {
  position: relative;
  z-index: 1;
  margin: 100px 0 75px;
  font-size: clamp(3.8rem, 8vw, 9rem);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .84;
}

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

.contact-link {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  max-width: 700px;
  padding: 18px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: clamp(1.2rem, 2vw, 2rem);
  text-decoration: none;
}

.contact-link span { transition: transform .3s ease; }
.contact-link:hover span { transform: translate(6px, -6px); }

.contact-orbit {
  top: -20%;
  right: -10%;
  width: 63vw;
  border-color: rgba(23,23,20,.25);
  aspect-ratio: 1;
  animation: contact-orbit-drift 13s ease-in-out infinite alternate;
  will-change: transform;
}

.contact-orbit::before,
.contact-orbit::after {
  position: absolute;
  border: 1px solid rgba(23,23,20,.25);
  border-radius: inherit;
  content: "";
}

.contact-orbit::before {
  inset: 15%;
  animation: contact-ring-breathe 8s ease-in-out infinite alternate;
}

.contact-orbit::after {
  inset: 32%;
  background: var(--acid);
  animation: contact-core-pulse 5s ease-in-out infinite;
}

@keyframes contact-orbit-drift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(.985); }
  to { transform: translate3d(2%, 1.5%, 0) scale(1.018); }
}

@keyframes contact-ring-breathe {
  from { transform: scale(.97); opacity: .65; }
  to { transform: scale(1.035); opacity: 1; }
}

@keyframes contact-core-pulse {
  50% { transform: scale(.93); }
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  min-height: 240px;
  padding: 55px 3.2vw;
  background: var(--ink);
  color: var(--paper);
  align-items: start;
}

.site-footer > p {
  margin: 0;
  color: rgba(241,239,232,.45);
  font-family: var(--serif);
  font-size: .9rem;
  font-style: italic;
}

.footer-meta {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  color: rgba(241,239,232,.55);
  font-size: .65rem;
  text-transform: uppercase;
}

.footer-meta a { text-underline-offset: 4px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.25,1);
}

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

@media (max-width: 900px) {
  .site-header { padding: 16px 22px; }
  .menu-toggle {
    z-index: 2;
    display: flex;
    gap: 11px;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  .menu-lines,
  .menu-lines::before {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform .3s ease;
  }
  .menu-lines::before { transform: translateY(5px); }
  .menu-toggle[aria-expanded="true"] .menu-lines { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-lines::before { transform: rotate(-90deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--serif);
    font-size: 2.6rem;
    font-weight: 400;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity .3s ease, transform .3s ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-cta { border: 0; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 77svh; padding: 130px 7vw 65px; }
  .hero-art { min-height: 62svh; }
  .focus-ring { width: 45vw; }
  .hero-index { display: none; }
  .statement { grid-template-columns: 1fr; }
  .statement .section-label { margin-bottom: 65px; }
  .service-item { grid-template-columns: 10% 40% 40% 10%; }
  .about { grid-template-columns: 1fr; }
  .about-art { min-height: 70svh; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps li:nth-child(2) { border-right: 0; }
  .process-steps li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 50px; }
  .footer-meta { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 620px) {
  .section-pad { padding: 95px 22px; }
  .hero-copy { padding-right: 22px; padding-left: 22px; }
  .hero h1 { font-size: clamp(3.8rem, 18vw, 6rem); }
  .hero-intro { margin-top: 38px; }
  .eyebrow, .section-label { margin-bottom: 30px; }
  .statement-copy > p { margin-top: 40px; }
  .section-heading { display: block; margin-bottom: 50px; }
  .section-note { margin-top: 30px; }
  .service-item {
    display: grid;
    grid-template-columns: 45px 1fr 50px;
    min-height: 0;
    gap: 18px 0;
    padding: 30px 0;
  }
  .service-item h3 { font-size: 2rem; }
  .service-item p { grid-column: 2 / 4; }
  .service-icon { grid-column: 3; grid-row: 1; width: 42px; }
  .service-number { grid-column: 1; grid-row: 1; }
  .about-art { min-height: 520px; }
  .about-copy > p:not(.section-label) { margin: 40px 0 55px; }
  .process .section-heading { display: block; }
  .process .section-label { margin-bottom: 35px; }
  .process-steps { grid-template-columns: 1fr; margin-top: 55px; }
  .process-steps li,
  .process-steps li:not(:first-child) {
    display: grid;
    grid-template-columns: 45px 1fr;
    min-height: 0;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .process-steps h3 { margin: 0 0 10px; }
  .process-steps p { grid-column: 2; }
  .contact { min-height: 72vh; padding: 95px 22px; }
  .contact h2 { margin: 80px 0 60px; font-size: 15vw; }
  .contact-link { font-size: 1rem; }
  .contact-orbit { top: 15%; right: -45%; width: 110vw; }
  .site-footer { grid-template-columns: 1fr; padding: 50px 22px; }
  .footer-meta { grid-column: auto; flex-wrap: wrap; gap: 15px 30px; }
}

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