:root {
  --ink: #f7f2e9;
  --muted: #aaa49d;
  --ground: #121110;
  --panel: #1a1817;
  --line: rgba(247, 242, 233, 0.14);
  --orange: #ff6b35;
  --mint: #a8e6cf;
  --violet: #c9b5ff;
  --blue: #87c6ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 9%, rgba(255, 164, 92, 0.16), transparent 28rem),
    radial-gradient(circle at 7% 34%, rgba(168, 230, 207, 0.045), transparent 26rem),
    var(--ground);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: relative;
  z-index: 10;
  width: min(1440px, calc(100% - 64px));
  height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -0.04em; }
.brand-mark {
  width: 31px; height: 31px; border-radius: 50%; display: grid; place-items: center;
  background: var(--orange); color: #15110f; font-family: Georgia, serif; font-style: italic;
}
.site-header nav { display: flex; gap: 34px; font-size: 13px; color: var(--muted); }
.site-header nav a, .header-contact { transition: color .2s ease; }
.site-header nav a:hover, .header-contact:hover { color: var(--orange); }
.header-contact { justify-self: end; display: flex; gap: 8px; font-size: 13px; font-weight: 700; }

.hero {
  position: relative;
  isolation: isolate;
  width: min(1440px, calc(100% - 64px));
  min-height: 690px;
  margin: 0 auto;
  padding: 84px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(400px, .88fr);
  align-items: center;
  gap: 72px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2; opacity: .34;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}
.eyebrow { margin: 0; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 1px; background: var(--orange); }
.hero h1 { max-width: 780px; margin: 25px 0 30px; font-size: clamp(58px, 7.2vw, 114px); line-height: .88; letter-spacing: -.07em; font-weight: 760; }
.hero h1 em { color: var(--orange); font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }
.hero-lede { max-width: 610px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { min-height: 50px; padding: 0 20px; display: inline-flex; align-items: center; gap: 18px; border: 1px solid var(--line); font-size: 13px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); border-color: var(--orange); color: #17110f; }
.button-quiet:hover { background: rgba(255,255,255,.05); }

.server-orbit { position: relative; width: min(100%, 520px); aspect-ratio: 1; margin-left: auto; display: grid; place-items: center; }
.server-orbit::before { content: ""; position: absolute; width: 72%; height: 72%; border-radius: 50%; background: rgba(255,107,53,.08); filter: blur(6px); }
.room-glow {
  position: absolute; inset: 7% 8% 4% 13%; overflow: hidden; border: 1px solid rgba(247,242,233,.08);
  background:
    linear-gradient(90deg, transparent 48%, rgba(247,242,233,.07) 49%, rgba(247,242,233,.07) 51%, transparent 52%),
    linear-gradient(transparent 57%, rgba(247,242,233,.07) 58%, rgba(247,242,233,.07) 59%, transparent 60%);
  clip-path: polygon(50% 0, 100% 27%, 100% 100%, 0 100%, 0 27%);
  opacity: .52;
}
.room-glow::before {
  content: ""; position: absolute; width: 30%; aspect-ratio: .76; right: 15%; bottom: 12%;
  background: linear-gradient(145deg, rgba(255,187,120,.9), rgba(255,107,53,.38));
  box-shadow: 0 0 70px rgba(255,137,66,.38); animation: window-breathe 5s ease-in-out infinite;
}
.orbit { position: absolute; border: 1px solid var(--line); border-radius: 50%; animation: spin 28s linear infinite; }
.orbit::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 20px rgba(255,107,53,.8); }
.orbit-one { inset: 5%; }
.orbit-one::after { top: 15%; left: 10%; }
.orbit-two { inset: 18%; animation-direction: reverse; animation-duration: 19s; }
.orbit-two::after { bottom: 3%; right: 27%; background: var(--mint); box-shadow: 0 0 20px rgba(168,230,207,.7); }
.server-card { position: relative; z-index: 2; width: 52%; aspect-ratio: .82; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.2); background: linear-gradient(145deg, #2b2623, #171514); box-shadow: 0 35px 70px rgba(0,0,0,.42); transform: rotate(5deg); }
.server-card-top { display: flex; align-items: center; gap: 8px; color: var(--muted); font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; text-transform: uppercase; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(168,230,207,.1); animation: pulse 2s ease-out infinite; }
.server-year { margin-left: auto; }
.server-monogram { font: 700 clamp(72px, 9vw, 132px)/.75 Georgia, serif; letter-spacing: -.12em; color: var(--orange); }
.server-card p { margin: 0; font: 11px/1.55 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; text-transform: uppercase; }
.orbit-label { position: absolute; padding: 7px 10px; border: 1px solid var(--line); background: rgba(18,17,16,.86); color: var(--muted); font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; text-transform: uppercase; }
.label-cloud { top: 12%; right: 8%; }
.label-mail { left: 0; top: 38%; }
.label-vault { right: 2%; bottom: 24%; }
.label-chat { left: 14%; bottom: 8%; }
.home-note {
  position: absolute; z-index: 4; right: -2%; bottom: -5%; width: 245px; padding: 17px 18px 16px;
  border: 1px solid rgba(23,17,15,.18); background: #efe3cb; color: #231a16;
  box-shadow: 0 17px 38px rgba(0,0,0,.24); transform: rotate(-2.4deg);
}
.home-note::before {
  content: ""; position: absolute; width: 56px; height: 15px; left: 50%; top: -8px; transform: translateX(-50%) rotate(1deg);
  background: rgba(222,188,139,.72); box-shadow: 0 1px 2px rgba(0,0,0,.12);
}
.home-note span { display: block; margin-bottom: 9px; color: #8c5f3e; font: 800 9px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; text-transform: uppercase; }
.home-note strong { display: block; font: italic 600 17px/1.2 Georgia, 'Times New Roman', serif; }
.home-note small { display: block; margin-top: 9px; color: #76675e; font-size: 10px; }

.signal-strip { overflow: hidden; border-block: 1px solid var(--line); background: var(--orange); color: #17110f; }
.signal-strip div { width: max-content; padding: 12px 0; display: flex; gap: 28px; align-items: center; font-size: 11px; font-weight: 900; letter-spacing: .14em; animation: marquee 22s linear infinite; }
.signal-strip i { font-style: normal; }

.services { width: min(1440px, calc(100% - 64px)); margin: 0 auto; padding: 110px 0 126px; }
.section-heading { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 40px; align-items: end; margin-bottom: 54px; }
.section-heading h2 { margin: 0; font-size: clamp(42px, 5vw, 72px); line-height: .96; letter-spacing: -.055em; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.service-card { min-height: 390px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-right: 0; transition: transform .25s ease, background .25s ease, color .25s ease; }
.service-card:last-child { border-right: 1px solid var(--line); }
.service-card:hover { transform: translateY(-8px); color: #17110f; }
.service-card.mint:hover { background: var(--mint); }
.service-card.orange:hover { background: var(--orange); }
.service-card.violet:hover { background: var(--violet); }
.service-card.blue:hover { background: var(--blue); }
.service-topline { display: flex; justify-content: space-between; color: var(--muted); font: 11px ui-monospace, SFMono-Regular, Menlo, monospace; }
.service-card:hover .service-topline { color: rgba(23,17,15,.6); }
.service-arrow { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 17px; }
.service-eyebrow { margin: 0 0 12px; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.service-card:hover .service-eyebrow { color: rgba(23,17,15,.65); }
.service-card h3 { margin: 0 0 18px; font-size: 32px; letter-spacing: -.045em; }
.service-card div > p:last-child { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-card:hover div > p:last-child { color: rgba(23,17,15,.72); }

.home-rhythm {
  width: min(1440px, calc(100% - 64px)); margin: 0 auto; padding: 18px 0 126px;
  display: grid; grid-template-columns: .82fr 1.18fr; gap: 8vw; align-items: end;
}
.rhythm-intro h2 { margin: 25px 0 28px; font-size: clamp(42px, 5.4vw, 78px); line-height: .96; letter-spacing: -.06em; }
.rhythm-intro h2 em { color: var(--orange); font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }
.rhythm-intro > p:last-child { max-width: 590px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.rhythm-scenes { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.rhythm-scenes article { min-height: 355px; padding: 21px 19px 24px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.rhythm-scenes article:first-child { border-left: 1px solid var(--line); }
.scene-time { color: #756f69; font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .11em; text-transform: uppercase; }
.scene-mark { position: relative; height: 112px; margin: 36px 0 31px; color: var(--orange); }
.scene-photo i { position: absolute; width: 63px; height: 76px; border: 1px solid currentColor; background: #1d1a18; transform: rotate(-7deg); }
.scene-photo i:nth-child(2) { left: 28px; top: 4px; transform: rotate(5deg); color: var(--mint); }
.scene-photo i:nth-child(3) { left: 15px; top: 18px; transform: rotate(-1deg); background: linear-gradient(145deg, #413227, #191716); color: var(--ink); }
.scene-photo i:nth-child(3)::after { content: ""; position: absolute; width: 18px; height: 18px; border-radius: 50%; right: 7px; top: 7px; background: var(--orange); box-shadow: -21px 37px 0 10px rgba(168,230,207,.18); }
.scene-letter { width: 106px; height: 75px; margin-top: 44px; border: 1px solid var(--orange); }
.scene-letter::before, .scene-letter::after { content: ""; position: absolute; top: 0; width: 1px; height: 64px; background: var(--orange); transform-origin: top; }
.scene-letter::before { left: 0; transform: rotate(-56deg); }
.scene-letter::after { right: 0; transform: rotate(56deg); }
.scene-letter i { position: absolute; right: -9px; top: -10px; width: 22px; height: 22px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 7px rgba(255,107,53,.1); }
.scene-night { width: 112px; height: 82px; border-bottom: 1px solid #514a45; }
.scene-night::before { content: ""; position: absolute; width: 62px; height: 62px; border: 1px solid var(--blue); border-radius: 50%; left: 13px; top: 3px; }
.scene-night::after { content: ""; position: absolute; width: 60px; height: 60px; border-radius: 50%; left: 37px; top: -6px; background: var(--ground); }
.scene-night i { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: var(--ink); }
.scene-night i:nth-child(1) { left: 95px; top: 9px; }
.scene-night i:nth-child(2) { left: 4px; top: 22px; }
.scene-night i:nth-child(3) { left: 102px; top: 50px; background: var(--orange); }
.rhythm-scenes h3 { margin: auto 0 12px; font-size: 20px; line-height: 1.12; letter-spacing: -.035em; }
.rhythm-scenes p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.story { border-top: 1px solid var(--line); background: #171514; }
.story-intro { width: min(1440px, calc(100% - 64px)); margin: 0 auto; padding: 110px 0 82px; display: grid; grid-template-columns: .75fr 1.55fr .7fr; gap: 52px; align-items: start; }
.story-intro h2 { margin: -8px 0 0; font-size: clamp(38px, 4.6vw, 70px); line-height: 1.02; letter-spacing: -.055em; }
.story-intro > p:last-child { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.timeline { width: min(1440px, calc(100% - 64px)); margin: 0 auto; padding-bottom: 120px; display: grid; grid-template-columns: repeat(4, 1fr); }
.timeline article { min-height: 310px; padding: 24px 24px 28px; display: flex; flex-direction: column; border: 1px solid var(--line); border-right: 0; }
.timeline article:last-child { border-right: 1px solid var(--line); }
.timeline time { color: var(--orange); font: 11px ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .1em; }
.timeline article > div { margin-top: auto; }
.timeline article div span { display: block; margin-bottom: 12px; color: #67615d; font: 10px ui-monospace, SFMono-Regular, Menlo, monospace; }
.timeline h3 { margin: 0 0 14px; font-size: 23px; letter-spacing: -.035em; }
.timeline p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.principles { width: min(1440px, calc(100% - 64px)); margin: 0 auto; padding: 118px 0; display: grid; grid-template-columns: .9fr 1.1fr; gap: 12vw; }
.principles-title h2 { margin: 25px 0 0; font-size: clamp(46px, 5.7vw, 84px); line-height: .96; letter-spacing: -.06em; }
.principle-list article { position: relative; padding: 32px 0 32px 58px; border-top: 1px solid var(--line); }
.principle-list article:last-child { border-bottom: 1px solid var(--line); }
.principle-list article > span { position: absolute; left: 0; top: 37px; color: var(--orange); font: 11px ui-monospace, SFMono-Regular, Menlo, monospace; }
.principle-list h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.025em; }
.principle-list p { margin: 0; max-width: 560px; color: var(--muted); font-size: 14px; line-height: 1.65; }

.contact { position: relative; overflow: hidden; min-height: 560px; padding: 104px max(32px, calc((100vw - 1440px) / 2)); background: var(--orange); color: #17110f; text-align: center; }
.contact::before, .contact::after { content: "159"; position: absolute; font: 900 340px/.75 Georgia, serif; letter-spacing: -.12em; color: rgba(23,17,15,.07); pointer-events: none; }
.contact::before { left: -80px; bottom: -80px; }
.contact::after { right: -70px; top: -50px; transform: rotate(180deg); }
.contact-kicker { margin: 0 0 30px; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.contact h2 { position: relative; margin: 0; font-size: clamp(58px, 7.5vw, 112px); line-height: .85; letter-spacing: -.07em; }
.contact h2 em { font-family: Georgia, serif; font-weight: 400; }
.contact > p:not(.contact-kicker) { position: relative; margin: 30px auto 0; max-width: 560px; font-size: 16px; line-height: 1.65; }
.contact-actions { position: relative; margin-top: 36px; display: flex; align-items: center; justify-content: center; gap: 26px; }
.contact-button { border-color: #17110f; background: #17110f; color: var(--ink); }
.matrix-link { padding-block: 8px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 800; }

footer { width: min(1440px, calc(100% - 64px)); min-height: 112px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; }
footer p { margin: 0; color: var(--muted); font-size: 12px; }
footer > a:last-child { justify-self: end; color: var(--muted); font-size: 12px; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(168,230,207,0); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes window-breathe { 50% { opacity: .72; box-shadow: 0 0 48px rgba(255,137,66,.24); } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 72px; }
  .server-orbit { width: min(100%, 480px); margin: -10px auto 0; }
  .section-heading { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: 1px solid var(--line); }
  .service-card { min-height: 330px; }
  .story-intro { grid-template-columns: 1fr; gap: 28px; }
  .home-rhythm { grid-template-columns: 1fr; gap: 64px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline article:nth-child(2) { border-right: 1px solid var(--line); }
  .principles { grid-template-columns: 1fr; gap: 64px; }
  footer { grid-template-columns: 1fr auto; }
  footer p { display: none; }
}

@media (max-width: 620px) {
  .site-header, .hero, .services, .home-rhythm, .story-intro, .timeline, .principles, footer { width: min(100% - 36px, 1440px); }
  .site-header { height: 74px; }
  .header-contact { font-size: 0; }
  .header-contact span { font-size: 18px; }
  .hero { padding: 58px 0 70px; gap: 48px; }
  .hero h1 { font-size: clamp(52px, 17vw, 78px); }
  .hero-lede { font-size: 16px; }
  .server-orbit { width: 112%; margin-left: -6%; }
  .home-note { right: 5%; bottom: -9%; width: 220px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(2) { border-right: 1px solid var(--line); border-bottom: 0; min-height: 300px; }
  .service-card:last-child { border-bottom: 1px solid var(--line); }
  .services { padding: 78px 0 88px; }
  .home-rhythm { padding-bottom: 88px; gap: 50px; }
  .rhythm-scenes { grid-template-columns: 1fr; border-top: 0; }
  .rhythm-scenes article { min-height: 260px; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .rhythm-scenes article:last-child { border-bottom: 1px solid var(--line); }
  .scene-mark { margin-block: 25px 20px; }
  .story-intro { padding: 80px 0 58px; }
  .timeline { grid-template-columns: 1fr; padding-bottom: 82px; }
  .timeline article, .timeline article:nth-child(2) { min-height: 255px; border-right: 1px solid var(--line); border-bottom: 0; }
  .timeline article:last-child { border-bottom: 1px solid var(--line); }
  .principles { padding: 82px 0; }
  .contact { min-height: 520px; padding-block: 84px; }
  .contact-actions { flex-direction: column; }
}

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

/* Project story */
.story {
  padding-bottom: 120px;
}

.story .timeline {
  padding-bottom: 72px;
}

.project-story {
  position: relative;
  isolation: isolate;
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 15%, rgba(255,107,53,.09), transparent 21rem),
    #1c1917;
}

.project-story::before {
  content: "LOCAL / 06:11";
  position: absolute;
  z-index: -1;
  right: 32px;
  top: 28px;
  color: rgba(247,242,233,.04);
  font: 800 64px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: -.08em;
}

.project-story-copy {
  padding: 58px 60px 54px;
  border-right: 1px solid var(--line);
}

.project-year {
  margin: 56px 0 14px;
  color: var(--orange);
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .14em;
}

.project-story h3 {
  max-width: 680px;
  margin: 0 0 28px;
  font-size: clamp(46px, 5vw, 74px);
  line-height: .92;
  letter-spacing: -.06em;
}

.project-story h3 em {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.project-story-copy > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.project-route {
  position: relative;
  min-height: 470px;
  padding: 62px 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.route-track {
  margin-bottom: auto;
  padding-top: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.route-node {
  display: grid;
  justify-items: center;
  gap: 11px;
  color: var(--muted);
  font: 9px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.route-node > i {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  border: 1px solid currentColor;
  background: #211d1a;
}

.source-node > i {
  color: var(--orange);
  border-radius: 50% 50% 15px 15px;
}

.source-node > i::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 14px;
  top: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: currentColor;
  box-shadow: inset 0 0 0 8px #211d1a;
}

.source-node > i::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 1px;
  left: 15px;
  bottom: 9px;
  background: currentColor;
}

.middle-node > i {
  color: var(--mint);
  border-radius: 8px;
}

.middle-node > i::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 10px;
  top: 11px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    10px 0 0 currentColor,
    20px 0 0 currentColor,
    30px 0 0 currentColor;
}

.middle-node > i::after {
  content: "";
  position: absolute;
  inset: 29px 9px 9px;
  border-top: 1px solid currentColor;
}

.archive-node > i {
  color: var(--blue);
  border-radius: 4px;
}

.archive-node > i::before {
  content: "";
  position: absolute;
  inset: 10px 8px;
  border-block: 1px solid currentColor;
  box-shadow:
    0 10px 0 -1px currentColor,
    0 20px 0 -1px currentColor;
}

.route-line {
  height: 1px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #514a45;
}

.route-line i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  animation: route-signal 2.4s ease-in-out infinite;
}

.route-line i:nth-child(2) {
  animation-delay: .35s;
}

.route-line i:nth-child(3) {
  animation-delay: .7s;
}

.external-denied {
  position: absolute;
  right: 48px;
  top: 38px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #817972;
  font: 9px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.external-denied i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid #a6523d;
  border-radius: 50%;
  color: #dc7056;
  font: 18px/1 sans-serif;
}

.project-route > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.project-route code {
  padding: 2px 6px;
  background: rgba(255,255,255,.06);
  color: var(--ink);
  font-size: .9em;
}

.project-steps {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.project-steps li {
  padding: 25px 29px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 5px 10px;
  border-right: 1px solid var(--line);
}

.project-steps li:last-child {
  border-right: 0;
}

.project-steps li > span {
  grid-row: 1 / 3;
  padding-top: 3px;
  color: var(--orange);
  font: 10px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.project-steps strong {
  font-size: 14px;
}

.project-steps small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

@keyframes route-signal {
  50% {
    background: var(--mint);
    box-shadow: 0 0 11px rgba(168,230,207,.7);
  }
}

@media (max-width: 980px) {
  .project-story {
    grid-template-columns: 1fr;
  }

  .project-story-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .story {
    padding-bottom: 82px;
  }

  .story .timeline {
    padding-bottom: 52px;
  }

  .project-story {
    width: min(100% - 36px, 1440px);
  }

  .project-story-copy,
  .project-route {
    padding: 38px 24px;
  }

  .project-year {
    margin-top: 40px;
  }

  .project-route {
    min-height: 410px;
  }

  .route-track {
    padding-top: 78px;
    gap: 7px;
  }

  .route-node > i {
    width: 44px;
    height: 48px;
  }

  .external-denied {
    right: 24px;
    top: 25px;
  }

  .project-steps {
    grid-template-columns: 1fr;
  }

  .project-steps li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-steps li:last-child {
    border-bottom: 0;
  }
}

/* Project story */
.story {
  padding-bottom: 120px;
}

.story .timeline {
  padding-bottom: 72px;
}

.project-story {
  position: relative;
  isolation: isolate;
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 15%, rgba(255,107,53,.09), transparent 21rem),
    #1c1917;
}

.project-story::before {
  content: "LOCAL / 06:11";
  position: absolute;
  z-index: -1;
  right: 32px;
  top: 28px;
  color: rgba(247,242,233,.04);
  font: 800 64px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: -.08em;
}

.project-story-copy {
  padding: 58px 60px 54px;
  border-right: 1px solid var(--line);
}

.project-year {
  margin: 56px 0 14px;
  color: var(--orange);
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .14em;
}

.project-story h3 {
  max-width: 680px;
  margin: 0 0 28px;
  font-size: clamp(46px, 5vw, 74px);
  line-height: .92;
  letter-spacing: -.06em;
}

.project-story h3 em {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.project-story-copy > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.project-route {
  position: relative;
  min-height: 470px;
  padding: 62px 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.route-track {
  margin-bottom: auto;
  padding-top: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.route-node {
  display: grid;
  justify-items: center;
  gap: 11px;
  color: var(--muted);
  font: 9px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.route-node > i {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  border: 1px solid currentColor;
  background: #211d1a;
}

.source-node > i {
  color: var(--orange);
  border-radius: 50% 50% 15px 15px;
}

.source-node > i::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 14px;
  top: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: currentColor;
  box-shadow: inset 0 0 0 8px #211d1a;
}

.source-node > i::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 1px;
  left: 15px;
  bottom: 9px;
  background: currentColor;
}

.middle-node > i {
  color: var(--mint);
  border-radius: 8px;
}

.middle-node > i::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 10px;
  top: 11px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    10px 0 0 currentColor,
    20px 0 0 currentColor,
    30px 0 0 currentColor;
}

.middle-node > i::after {
  content: "";
  position: absolute;
  inset: 29px 9px 9px;
  border-top: 1px solid currentColor;
}

.archive-node > i {
  color: var(--blue);
  border-radius: 4px;
}

.archive-node > i::before {
  content: "";
  position: absolute;
  inset: 10px 8px;
  border-block: 1px solid currentColor;
  box-shadow:
    0 10px 0 -1px currentColor,
    0 20px 0 -1px currentColor;
}

.route-line {
  height: 1px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #514a45;
}

.route-line i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  animation: route-signal 2.4s ease-in-out infinite;
}

.route-line i:nth-child(2) {
  animation-delay: .35s;
}

.route-line i:nth-child(3) {
  animation-delay: .7s;
}

.external-denied {
  position: absolute;
  right: 48px;
  top: 38px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #817972;
  font: 9px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.external-denied i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid #a6523d;
  border-radius: 50%;
  color: #dc7056;
  font: 18px/1 sans-serif;
}

.project-route > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.project-route code {
  padding: 2px 6px;
  background: rgba(255,255,255,.06);
  color: var(--ink);
  font-size: .9em;
}

.project-steps {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.project-steps li {
  padding: 25px 29px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 5px 10px;
  border-right: 1px solid var(--line);
}

.project-steps li:last-child {
  border-right: 0;
}

.project-steps li > span {
  grid-row: 1 / 3;
  padding-top: 3px;
  color: var(--orange);
  font: 10px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.project-steps strong {
  font-size: 14px;
}

.project-steps small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

@keyframes route-signal {
  50% {
    background: var(--mint);
    box-shadow: 0 0 11px rgba(168,230,207,.7);
  }
}

@media (max-width: 980px) {
  .project-story {
    grid-template-columns: 1fr;
  }

  .project-story-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .story {
    padding-bottom: 82px;
  }

  .story .timeline {
    padding-bottom: 52px;
  }

  .project-story {
    width: min(100% - 36px, 1440px);
  }

  .project-story-copy,
  .project-route {
    padding: 38px 24px;
  }

  .project-year {
    margin-top: 40px;
  }

  .project-route {
    min-height: 410px;
  }

  .route-track {
    padding-top: 78px;
    gap: 7px;
  }

  .route-node > i {
    width: 44px;
    height: 48px;
  }

  .external-denied {
    right: 24px;
    top: 25px;
  }

  .project-steps {
    grid-template-columns: 1fr;
  }

  .project-steps li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-steps li:last-child {
    border-bottom: 0;
  }
}

/* Mobile readability */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (max-width: 620px) {
  .eyebrow,
  .service-eyebrow,
  .scene-time,
  .timeline time,
  .contact-kicker {
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-lede,
  .section-heading > p:last-child,
  .rhythm-intro > p:last-child,
  .story-intro > p:last-child,
  .principle-list p,
  .project-story-copy > p:last-child {
    font-size: 16px;
    line-height: 1.72;
  }

  .service-card div > p:last-child,
  .rhythm-scenes p,
  .timeline p,
  .project-route > p,
  .camera-route > p {
    font-size: 16px;
    line-height: 1.68;
  }

  .service-card h3 {
    font-size: 34px;
  }

  .rhythm-scenes h3,
  .timeline h3 {
    font-size: 24px;
    line-height: 1.18;
  }

  .service-topline,
  .timeline article div span {
    font-size: 12px;
  }

  .project-steps strong {
    font-size: 16px;
    line-height: 1.35;
  }

  .project-steps small {
    font-size: 14px;
    line-height: 1.55;
  }

  .project-steps li > span {
    font-size: 12px;
  }

  .home-note strong {
    font-size: 18px;
    line-height: 1.25;
  }

  .home-note small {
    font-size: 13px;
    line-height: 1.4;
  }

  .button,
  .matrix-link {
    font-size: 15px;
  }

  footer > a:last-child,
  footer p {
    font-size: 13px;
  }
}
