:root {
  --ink: #15211c;
  --paper: #f4f1e8;
  --paper-bright: #fbfaf6;
  --moss: #234f3d;
  --moss-dark: #102e25;
  --lime: #c7df6b;
  --aqua: #9ddbd5;
  --ocean: #07384a;
  --rust: #bb5b3f;
  --line: rgba(21, 33, 28, 0.18);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", "Avenir Next", Arial, sans-serif;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .16;
  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='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 100;
  padding: 10px 14px; background: var(--ink); color: white;
  transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 15;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 clamp(22px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, min-height .3s;
}
.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(244, 241, 232, .92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 21px; letter-spacing: -.02em; }
.brand i { font-weight: 400; color: var(--rust); }
.brand-mark { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.15; overflow: visible; }
.brand-mark .brand-star { fill: var(--rust); stroke: none; }
.primary-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 44px); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.primary-nav a:not(.nav-cta) { position: relative; }
.primary-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: var(--ink); transition: right .25s; }
.primary-nav a:hover::after { right: 0; }
.nav-cta { padding: 12px 17px; border: 1px solid var(--ink); transition: color .2s, background .2s; }
.nav-cta:hover { background: var(--ink); color: var(--paper); }
.nav-cta span { margin-left: 9px; }
.menu-toggle { display: none; border: 0; background: none; padding: 12px 0 12px 12px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 26px; height: 1px; margin: 6px 0; background: currentColor; transition: transform .25s; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(500px, 1.18fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 20px 0;
  padding: 130px clamp(24px, 5vw, 80px) 30px;
  max-width: 1800px;
  margin: 0 auto;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; padding-right: clamp(20px, 5vw, 80px); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 27px; font-size: 11px; line-height: 1; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; }
.eyebrow span { display: inline-block; width: 26px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
h1 { margin-bottom: 28px; font-size: clamp(58px, 7.1vw, 124px); line-height: .82; letter-spacing: -.065em; }
h1 em, h2 em { font-weight: 400; color: var(--rust); }
.hero-intro { max-width: 580px; margin-bottom: 34px; font-family: var(--serif); font-size: clamp(20px, 1.6vw, 27px); line-height: 1.38; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 25px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 32px; min-width: 206px; padding: 15px 18px; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; border: 1px solid; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.button-dark:hover { background: var(--moss); }
.text-link { font-size: 12px; letter-spacing: .04em; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.text-link span { margin-left: 8px; }
.hero-specimen { position: relative; align-self: center; z-index: 1; }
.hero-specimen::before { content: ""; position: absolute; z-index: -1; width: min(44vw, 630px); aspect-ratio: 1; border: 1px solid rgba(35,79,61,.18); border-radius: 50%; left: 47%; top: 50%; transform: translate(-50%,-50%); }
.hero-specimen::after { content: ""; position: absolute; z-index: -2; width: min(29vw, 400px); aspect-ratio: 1; background: rgba(199,223,107,.35); border-radius: 50%; left: 46%; top: 50%; transform: translate(-50%,-50%); filter: blur(1px); }
.hero-specimen img { width: min(100%, 940px); mix-blend-mode: multiply; transform: translateX(-2%); filter: saturate(.85) contrast(1.05); }
.specimen-number { position: absolute; top: 6%; right: 1%; font-size: 10px; letter-spacing: .18em; writing-mode: vertical-rl; }
.specimen-caption { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0 0; border-top: 1px solid var(--line); font-size: 10px; text-transform: uppercase; letter-spacing: .11em; }
.specimen-caption i { font-family: var(--serif); font-size: 14px; text-transform: none; letter-spacing: 0; }
.hero-meta { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 24px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.hero-orbit { position: absolute; border: 1px solid rgba(21,33,28,.12); border-radius: 50%; pointer-events: none; }
.orbit-a { width: 50vw; height: 15vw; right: -7vw; top: 22%; transform: rotate(-15deg); }
.orbit-b { width: 28vw; height: 8vw; right: 3vw; top: 28%; transform: rotate(21deg); }

.section-pad { max-width: var(--max); margin: 0 auto; padding: clamp(90px, 11vw, 170px) clamp(24px, 5vw, 80px); }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 60px; margin-bottom: clamp(54px, 7vw, 100px); }
.section-heading h2, .process-intro h2 { margin-bottom: 0; font-size: clamp(48px, 6vw, 90px); line-height: .95; letter-spacing: -.045em; }
.section-heading > p { max-width: 430px; margin: 0 0 4px; color: rgba(21,33,28,.72); font-size: 15px; line-height: 1.8; }

.work-section { padding-top: 140px; }
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(22px, 3vw, 50px) 24px; }
.work-card { cursor: zoom-in; outline: none; }
.work-card:focus-visible figure { outline: 2px solid var(--rust); outline-offset: 4px; }
.work-card-wide { grid-column: span 7; }
.work-card-tall { grid-column: span 5; }
.work-card figure { position: relative; margin: 0; overflow: hidden; background: #e8e4d8; }
.work-card-wide figure { aspect-ratio: 1.48 / 1; }
.work-card-tall figure { aspect-ratio: .79 / 1; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s; }
.work-card:hover img { transform: scale(1.025); filter: saturate(1.04); }
.work-card:nth-child(3) img { object-position: 50% 32%; }
.view-mark { position: absolute; right: 16px; bottom: 16px; width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; background: rgba(244,241,232,.9); opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s; }
.work-card:hover .view-mark { opacity: 1; transform: none; }
.work-caption { display: flex; justify-content: space-between; gap: 20px; align-items: flex-end; padding-top: 16px; }
.work-caption span { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--rust); }
.work-caption h3 { margin: 3px 0 0; font-size: 28px; letter-spacing: -.02em; }
.work-caption p { margin: 0 0 4px; color: rgba(21,33,28,.62); font-size: 11px; letter-spacing: .04em; text-align: right; }

.manifesto { position: relative; min-height: 860px; display: grid; place-items: center; overflow: hidden; color: var(--paper); background: #06141a; }
.manifesto-bg, .manifesto-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.manifesto-bg { object-fit: cover; opacity: .76; transform: scale(1.04); }
.manifesto-shade { background: linear-gradient(90deg, rgba(3,15,18,.92) 0%, rgba(3,15,18,.72) 47%, rgba(3,15,18,.22) 100%); }
.manifesto-content { position: relative; z-index: 1; width: min(900px, calc(100% - 48px)); margin-right: min(24vw, 360px); }
.eyebrow-light { color: var(--aqua); }
.manifesto-kicker { margin: 0 0 26px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(244,241,232,.55); }
.manifesto h2 { margin-bottom: 34px; font-size: clamp(58px, 7.5vw, 116px); line-height: .9; letter-spacing: -.055em; }
.manifesto h2 em { color: var(--lime); }
.manifesto-content > p:last-child { max-width: 630px; font-family: var(--serif); font-size: clamp(19px, 1.7vw, 27px); color: rgba(244,241,232,.82); }
.coordinate { position: absolute; z-index: 1; font-size: 9px; letter-spacing: .18em; color: rgba(244,241,232,.45); writing-mode: vertical-rl; }
.coordinate-one { right: 4vw; top: 16%; }
.coordinate-two { right: 7vw; bottom: 14%; }

.services-section { padding-bottom: 120px; }
.services-list { border-top: 1px solid var(--line); }
.service { display: grid; grid-template-columns: 80px 1fr .75fr; gap: 30px; align-items: start; padding: 40px 0 44px; border-bottom: 1px solid var(--line); transition: padding .3s, color .3s; }
.service:hover { padding-left: 14px; color: var(--moss); }
.service-index { font-family: var(--serif); font-size: 15px; color: var(--rust); }
.service-copy h3 { margin: -8px 0 10px; font-size: clamp(34px, 3.3vw, 52px); letter-spacing: -.035em; }
.service-copy p { max-width: 660px; margin: 0; color: rgba(21,33,28,.68); }
.service-tags { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 7px; }
.service-tags span { border: 1px solid var(--line); border-radius: 100px; padding: 7px 11px; font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }

.motion-section { min-height: 820px; display: grid; grid-template-columns: 1.15fr .85fr; background: #0b2928; color: var(--paper); overflow: hidden; }
.motion-stage { position: relative; min-height: 760px; overflow: hidden; border-right: 1px solid rgba(255,255,255,.14); background: radial-gradient(circle at 50% 45%, rgba(34,96,89,.82) 0, rgba(9,39,38,.94) 43%, #061c1d 78%); isolation: isolate; }
.motion-stage::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .23; background-image: linear-gradient(rgba(157,219,213,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(157,219,213,.13) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 84%, transparent); }
.motion-stage::after { content: ""; position: absolute; left: 50%; bottom: 7%; width: 58%; height: 8%; transform: translateX(-50%); border-radius: 50%; background: rgba(0,0,0,.42); filter: blur(22px); opacity: .6; }
.orrery-field { position: absolute; inset: 0; }
.field-ring { position: absolute; left: 50%; top: 47%; border: 1px solid rgba(191,224,210,.22); border-radius: 50%; transform: translate(-50%,-50%); }
.field-ring::after { content: ""; position: absolute; left: 50%; top: -4px; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 20px rgba(199,223,107,.8); }
.field-ring-a { width: 82%; aspect-ratio: 1; animation: field-spin 24s linear infinite; }
.field-ring-b { width: 62%; aspect-ratio: 1; transform: translate(-50%,-50%) rotate(62deg) scaleY(.42); animation: field-spin-flat 17s linear infinite reverse; }
.star { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: rgba(244,241,232,.75); box-shadow: 0 0 10px rgba(244,241,232,.45); animation: star-pulse 4s ease-in-out infinite; }
.star-1 { left: 11%; top: 20%; }.star-2 { left: 24%; top: 70%; animation-delay: -2s; }.star-3 { left: 78%; top: 25%; animation-delay: -1s; }
.star-4 { left: 86%; top: 68%; animation-delay: -3s; }.star-5 { left: 61%; top: 12%; animation-delay: -1.4s; }.star-6 { left: 38%; top: 83%; animation-delay: -.7s; }
.orrery-scene { position: absolute; z-index: 2; left: 50%; top: 50%; width: min(76%, 640px); transform: translate(-50%,-49%); transform-origin: 50% 47%; transform-style: preserve-3d; animation: specimen-spin 30s linear infinite; filter: drop-shadow(0 24px 32px rgba(0,0,0,.35)); }
.orrery-scene img { position: relative; z-index: 2; display: block; width: 100%; max-height: 700px; object-fit: contain; }
.orrery-aura { position: absolute; z-index: 1; left: 50%; top: 38%; width: 34%; aspect-ratio: 1; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle, rgba(255,239,182,.67), rgba(199,223,107,.18) 43%, transparent 72%); filter: blur(11px); animation: aura-breathe 4.8s ease-in-out infinite; }
.motion-label { position: absolute; z-index: 3; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: rgba(244,241,232,.62); }
.motion-label b { margin-right: 7px; color: var(--lime); font-weight: 500; }
.label-a { left: 28px; top: 28px; }.label-b { right: 28px; top: 34%; }.label-c { left: 28px; bottom: 28px; }
.specimen-line { position: absolute; z-index: 3; height: 1px; transform-origin: left center; background: linear-gradient(90deg, rgba(199,223,107,.7), transparent); }
.line-a { left: 98px; top: 33px; width: 20%; transform: rotate(17deg); }.line-b { right: 88px; top: 36%; width: 15%; transform: rotate(160deg); }
.motion-copy { position: relative; align-self: center; padding: clamp(60px, 7vw, 116px); }
.motion-copy::before { content: "✦"; position: absolute; right: 8%; top: 3%; color: rgba(199,223,107,.35); font-size: 76px; font-weight: 200; }
.motion-copy h2 { margin-bottom: 30px; font-size: clamp(58px, 6.5vw, 100px); line-height: .92; letter-spacing: -.05em; }
.motion-copy h2 em { color: var(--lime); }
.motion-copy > p { max-width: 520px; margin-bottom: 38px; color: rgba(244,241,232,.76); font-size: 16px; line-height: 1.8; }
.motion-copy .motion-note { margin: -16px 0 34px; font-family: var(--mono, monospace); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; color: rgba(157,219,213,.58); }
.button-light { color: var(--paper); border-color: rgba(244,241,232,.5); }
.button-light:hover { background: var(--paper); color: var(--ink); }
@keyframes field-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes field-spin-flat { to { transform: translate(-50%,-50%) rotate(422deg) scaleY(.42); } }
@keyframes specimen-spin { from { transform: translate(-50%,-49%) rotate(0deg); } to { transform: translate(-50%,-49%) rotate(360deg); } }
@keyframes aura-breathe { 50% { opacity: .62; transform: translate(-50%,-50%) scale(1.18); } }
@keyframes star-pulse { 50% { opacity: .28; transform: scale(.6); } }

.process-section { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(60px, 10vw, 150px); }
.process-intro { position: sticky; top: 120px; align-self: start; }
.process-intro h2 { margin-bottom: 30px; }
.process-intro h2 em { color: var(--rust); }
.process-intro > p:last-child { max-width: 420px; color: rgba(21,33,28,.7); line-height: 1.8; }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--rust); font-family: var(--serif); }
.process-list h3 { margin-bottom: 8px; font-size: 38px; }
.process-list p { margin: 0; color: rgba(21,33,28,.68); line-height: 1.7; }

.audience-band { display: flex; gap: 26px; overflow: hidden; white-space: nowrap; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(26px, 3vw, 46px); color: var(--moss); }
.audience-band span:first-child { margin-left: -20px; }
.audience-band i { color: var(--rust); font-size: .55em; font-style: normal; align-self: center; }

.contact-section { min-height: 760px; display: grid; grid-template-columns: .9fr 1.1fr; background: var(--lime); overflow: hidden; }
.contact-art { position: relative; overflow: hidden; min-height: 560px; }
.contact-art img { position: absolute; width: 115%; max-width: none; height: 115%; left: -10%; top: -7%; object-fit: cover; mix-blend-mode: multiply; filter: saturate(.75) contrast(1.03); }
.contact-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 75%, var(--lime)); }
.contact-copy { align-self: center; padding: clamp(60px, 8vw, 130px); }
.contact-copy h2 { margin-bottom: 30px; font-size: clamp(60px, 7vw, 112px); line-height: .87; letter-spacing: -.06em; }
.contact-copy h2 em { color: var(--rust); }
.contact-copy > p { max-width: 580px; font-size: 17px; line-height: 1.75; }
.contact-link { display: flex; justify-content: space-between; gap: 30px; max-width: 610px; margin-top: 48px; padding: 17px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font-family: var(--serif); font-size: clamp(20px, 2.2vw, 32px); }
.contact-note { margin-top: 18px; font-size: 9px !important; letter-spacing: .14em; text-transform: uppercase; }
.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding: 30px clamp(24px, 5vw, 80px); background: var(--ink); color: var(--paper); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.site-footer p { margin: 0; }
.site-footer p:last-child { justify-self: end; }
.brand-footer { text-transform: none; font-size: 18px; letter-spacing: 0; }

.lightbox { width: min(94vw, 1500px); max-height: 94vh; border: 0; padding: 0; background: var(--paper-bright); color: var(--ink); box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.lightbox::backdrop { background: rgba(4,16,15,.88); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 84vh; object-fit: contain; }
.lightbox p { margin: 0; padding: 14px 20px; font-family: var(--serif); font-size: 17px; }
.lightbox-close { position: fixed; z-index: 2; right: max(4vw, 20px); top: max(3vh, 18px); width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(4,16,15,.6); color: white; font-size: 28px; line-height: 1; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); transition-delay: calc(var(--delay, 0) * 100ms); }
.reveal[data-delay="1"] { --delay: 1; }
.reveal[data-delay="2"] { --delay: 2; }
.reveal[data-delay="3"] { --delay: 3; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto; padding-top: 128px; }
  .hero-copy { padding-right: 0; }
  .hero-specimen { margin: 15px 0; }
  .hero-specimen::before { width: 70vw; }
  .hero-specimen::after { width: 46vw; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .manifesto-content { margin-right: 0; }
  .motion-section { grid-template-columns: 1fr; }
  .motion-stage { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .process-section { grid-template-columns: 1fr; }
  .process-intro { position: static; }
  .contact-section { grid-template-columns: .8fr 1.2fr; }
}

@media (max-width: 760px) {
  .site-header { min-height: 68px; }
  .menu-toggle { display: block; z-index: 2; }
  .primary-nav { position: fixed; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: center; gap: 26px; padding: 80px 28px; background: var(--paper); font-family: var(--serif); font-size: 32px; text-transform: none; letter-spacing: -.02em; transform: translateY(-102%); transition: transform .45s cubic-bezier(.2,.7,.2,1); }
  .primary-nav.is-open { transform: none; }
  .nav-cta { margin-top: 18px; font-family: var(--sans); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 112px; }
  h1 { font-size: clamp(56px, 17vw, 82px); }
  .hero-meta { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-meta span:last-child { display: none; }
  .work-card-wide, .work-card-tall { grid-column: 1 / -1; }
  .work-card-wide figure, .work-card-tall figure { aspect-ratio: 1.15 / 1; }
  .work-card:nth-child(2) figure, .work-card:nth-child(3) figure { aspect-ratio: .9 / 1; }
  .work-caption { align-items: start; }
  .work-caption p { max-width: 130px; }
  .manifesto { min-height: 720px; }
  .manifesto-shade { background: rgba(3,15,18,.7); }
  .service { grid-template-columns: 42px 1fr; }
  .service-tags { grid-column: 2; justify-content: flex-start; }
  .motion-stage { min-height: 500px; }
  .motion-copy { padding: 80px 28px; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-art { min-height: 430px; }
  .contact-art::after { background: linear-gradient(0deg, var(--lime), transparent 35%); }
  .contact-copy { padding: 70px 28px 90px; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer > p:nth-child(2) { display: none; }
}

@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; }
}
