:root {
  --ink: #070707;
  --paper: #f1f0eb;
  --muted: #a4a29d;
  --line: rgba(241, 240, 235, .16);
  --accent: #ff4d00;
  --pad: clamp(20px, 4vw, 64px);
  --max: 1480px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

@font-face {
  font-family: "Neon";
  src: url("../fonts/Neon-Light.woff2") format("woff2");
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
::selection { color: var(--ink); background: var(--accent); }

.skip {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-180%);
}
.skip:focus { transform: none; }

.shell { width: min(100%, var(--max)); margin-inline: auto; padding-inline: var(--pad); }
.neon { font-family: "Neon", Arial, sans-serif; font-weight: 300; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow::before { width: 32px; height: 2px; background: var(--accent); content: ""; }
.orange { color: var(--accent); }

.nav {
  position: relative;
  z-index: 10;
  height: 112px;
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}
.nav__brand { font-size: clamp(20px, 2vw, 28px); letter-spacing: .28em; }
.nav__links { display: flex; gap: clamp(20px, 3vw, 52px); }
.nav__links a,
.nav__back {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s ease;
}
.nav__links a:hover, .nav__back:hover { color: var(--accent); }
.nav__back { justify-self: end; }

.hero {
  position: relative;
  min-height: calc(100svh - 112px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  position: absolute;
  inset: 0;
  opacity: .32;
  background:
    radial-gradient(circle at 72% 40%, rgba(255,77,0,.55), transparent 20%),
    repeating-linear-gradient(90deg, transparent 0 9.9%, rgba(255,255,255,.035) 10% 10.1%);
  content: "";
}
.hero__ghost {
  position: absolute;
  top: 3%;
  right: -2vw;
  color: transparent;
  font-size: clamp(170px, 32vw, 580px);
  line-height: .75;
  letter-spacing: -.09em;
  -webkit-text-stroke: 1px rgba(241,240,235,.11);
  user-select: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 32%);
  gap: clamp(40px, 7vw, 120px);
  align-items: end;
  padding-block: clamp(70px, 10vw, 150px) 56px;
}
.hero h1 {
  max-width: 1100px;
  margin: 22px 0 0;
  font-size: clamp(72px, 12.6vw, 210px);
  line-height: .78;
  letter-spacing: -.075em;
}
.hero__side { padding-bottom: 14px; }
.hero__side p {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.55;
}
.hero__meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--paper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ticker { overflow: hidden; border-bottom: 1px solid var(--line); }
.ticker__track {
  display: flex;
  width: max-content;
  padding-block: 17px;
  animation: ticker 24s linear infinite;
}
.ticker span { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.ticker b { margin-inline: 28px; color: var(--accent); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding-block: clamp(90px, 12vw, 180px); border-bottom: 1px solid var(--line); }
.section__head {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 32px;
  align-items: start;
  margin-bottom: clamp(60px, 8vw, 120px);
}
.section h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(48px, 8vw, 126px);
  line-height: .88;
  letter-spacing: -.065em;
}

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 2vw, 28px);
}
.portrait-card { grid-column: span 3; }
.portrait-card:nth-child(even) { margin-top: clamp(60px, 8vw, 120px); }
.portrait {
  position: relative;
  min-height: clamp(420px, 47vw, 720px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 70% 25%, rgba(255,77,0,.82), transparent 18%),
    linear-gradient(145deg, #292929 0 32%, #111 32% 66%, #d9d7d0 66%);
}
.portrait::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: .34;
  background-image: repeating-linear-gradient(0deg, transparent 0 3px, #000 4px);
  content: "";
}
.portrait::after {
  position: absolute;
  right: -8%;
  bottom: -5%;
  color: rgba(241,240,235,.9);
  font-size: clamp(170px, 18vw, 300px);
  font-weight: 900;
  line-height: .7;
  letter-spacing: -.1em;
  content: attr(data-number);
  transition: transform .6s var(--ease), color .6s var(--ease);
}
.portrait-card:hover .portrait::after { color: var(--accent); transform: translate(-4%, -5%); }
.portrait-card h3 { margin: 20px 0 6px; font-size: clamp(23px, 2.2vw, 36px); letter-spacing: -.04em; }
.portrait-card p { margin: 0; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.disciplines { border-top: 1px solid var(--line); }
.discipline {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 90px 1fr minmax(220px, 34%);
  gap: 28px;
  align-items: center;
  min-height: 150px;
  padding: 28px 20px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: color .35s ease;
}
.discipline::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--paper);
  transform: translateY(102%);
  transition: transform .55s var(--ease);
  content: "";
}
.discipline:hover { color: var(--ink); }
.discipline:hover::before { transform: none; }
.discipline__n { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .14em; }
.discipline h3 { margin: 0; font-size: clamp(34px, 5vw, 78px); line-height: .9; letter-spacing: -.055em; }
.discipline p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.45; }
.discipline:hover p { color: #494949; }

.quote { padding-block: clamp(100px, 16vw, 240px); text-align: center; }
.quote blockquote { max-width: 1300px; margin: 0 auto; font-size: clamp(52px, 8.3vw, 132px); line-height: .9; letter-spacing: -.06em; }
.quote cite { display: block; margin-top: 40px; color: var(--muted); font-size: 11px; font-style: normal; letter-spacing: .18em; text-transform: uppercase; }

.contact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 13vw, 190px) 48px;
  background: var(--accent);
  color: var(--ink);
}
.contact__top { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; }
.contact h2 { max-width: 1100px; margin: 0; font-size: clamp(64px, 11vw, 180px); line-height: .8; letter-spacing: -.075em; }
.contact__link {
  flex: none;
  display: grid;
  place-items: center;
  width: clamp(120px, 15vw, 210px);
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}
.contact__link:hover { color: var(--paper); background: var(--ink); transform: rotate(-8deg); }
.contact__foot { display: flex; justify-content: space-between; gap: 30px; margin-top: 90px; padding-top: 22px; border-top: 1px solid rgba(7,7,7,.35); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

/* Personal portfolio */
.personal .hero::before { background: radial-gradient(circle at 76% 45%, rgba(255,77,0,.7), transparent 18%), repeating-linear-gradient(90deg, transparent 0 9.9%, rgba(255,255,255,.035) 10% 10.1%); }
.personal .hero h1 { font-size: clamp(70px, 12.1vw, 195px); }
.signature { display: block; margin-top: 20px; color: var(--accent); font-size: clamp(26px, 4vw, 62px); letter-spacing: .03em; }
.statement-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: clamp(50px, 10vw, 150px); align-items: end; }
.statement-grid p:first-child { margin: 0; font-size: clamp(40px, 6.4vw, 96px); line-height: .98; letter-spacing: -.055em; }
.statement-grid p:last-child { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.6; }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.work {
  position: relative;
  min-height: clamp(390px, 49vw, 720px);
  padding: clamp(24px, 3vw, 44px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.work:nth-child(even) { border-right: 0; }
.work::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--work-bg, linear-gradient(135deg, #1d1d1d, #050505));
  content: "";
  transition: transform .8s var(--ease);
}
.work::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .5;
  background: repeating-linear-gradient(0deg, transparent 0 4px, rgba(0,0,0,.45) 5px);
  content: "";
}
.work:hover::before { transform: scale(1.06); }
.work__top { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.work h3 { position: absolute; left: clamp(24px, 3vw, 44px); bottom: clamp(24px, 3vw, 44px); max-width: 80%; margin: 0; font-size: clamp(46px, 6vw, 92px); line-height: .86; letter-spacing: -.06em; }
.work--one { --work-bg: radial-gradient(circle at 65% 35%, #ff4d00 0 8%, transparent 9%), linear-gradient(130deg, #262626 0 48%, #0b0b0b 48%); }
.work--two { --work-bg: linear-gradient(30deg, transparent 0 46%, #f1f0eb 46% 52%, transparent 52%), linear-gradient(150deg, #080808, #373737); }
.work--three { --work-bg: radial-gradient(circle at 25% 30%, #f1f0eb 0 13%, transparent 13.5%), linear-gradient(120deg, #ff4d00 0 34%, #111 34%); }
.work--four { --work-bg: repeating-linear-gradient(90deg, #111 0 9%, #ff4d00 9% 11%, #111 11% 20%); }

@media (max-width: 900px) {
  .nav { height: 90px; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__links { display: none; }
  .hero { min-height: calc(100svh - 90px); }
  .hero__inner, .section__head { grid-template-columns: 1fr; }
  .hero__side { max-width: 580px; }
  .portrait-card { grid-column: span 6; }
  .portrait-card:nth-child(even) { margin-top: 40px; }
  .discipline { grid-template-columns: 56px 1fr; }
  .discipline p { grid-column: 2; }
  .statement-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .nav__back { font-size: 10px; }
  .hero h1, .personal .hero h1 { font-size: clamp(62px, 20vw, 102px); }
  .portrait-grid, .work-grid { display: block; }
  .portrait-card, .portrait-card:nth-child(even) { margin: 0 0 56px; }
  .portrait { min-height: 118vw; }
  .discipline { grid-template-columns: 38px 1fr; padding-inline: 0; }
  .contact__top { display: block; }
  .contact__link { margin-top: 48px; }
  .contact__foot { flex-direction: column; }
  .work { min-height: 125vw; border-right: 0; }
}

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