:root {
  --paper: #ede7db;
  --paper-light: #f6f1e7;
  --ink: #171714;
  --muted: #6f6a60;
  --line: rgba(23, 23, 20, .22);
  --oxide: #d1482e;
  --acid: #dffd54;
  --blue: #4d65ff;
  --serif: "Bodoni 72", "Didot", "Times New Roman", serif;
  --sans: "Avenir Next", "Avenir", "Helvetica Neue", sans-serif;
  --condensed: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  --page: clamp(20px, 4vw, 68px);
  --radius: 2px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 8%, rgba(209, 72, 46, .09), transparent 25rem),
    linear-gradient(90deg, rgba(23,23,20,.025) 1px, transparent 1px),
    var(--paper);
  background-size: auto, min(8.333vw, 120px) 100%, auto;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-loading { overflow: hidden; }

::selection { background: var(--acid); color: var(--ink); }

a { color: inherit; text-decoration: none; }

.ui-icon { display: block; width: 1em; height: 1em; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: square; stroke-linejoin: miter; }

img, svg { display: block; max-width: 100%; }

button, input { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: 16px;
  transform: translateY(-160%);
  padding: 12px 16px;
  background: var(--ink);
  color: var(--paper-light);
  transition: transform .2s;
}

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

:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.paper-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .12;
  mix-blend-mode: multiply;
  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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--oxide);
  transform-origin: left;
  transform: scaleX(0);
}

.masthead {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 96px;
  padding: 0 var(--page);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 35px;
  height: 35px;
  fill: currentColor;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}

.brand:hover .brand-mark { transform: rotate(90deg); }

.brand-type {
  display: grid;
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 700;
  line-height: .82;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.brand-type small {
  padding-left: 18px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .24em;
}

.desktop-nav { display: flex; gap: 36px; }

.desktop-nav a,
.header-cta {
  position: relative;
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: 100%;
  bottom: -6px;
  background: var(--ink);
  transition: right .35s ease;
}

.desktop-nav a:hover::after { right: 0; }

.header-cta { justify-self: end; display: flex; gap: 12px; align-items: center; }
.header-cta span { color: var(--oxide); font-size: 17px; transition: transform .3s; }
.header-cta:hover span { transform: translate(4px, -4px); }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 124px var(--page) 42px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 48vw;
  aspect-ratio: 1;
  right: -19vw;
  top: 8vh;
  border: 1px solid rgba(209, 72, 46, .35);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(209,72,46,.035), 0 0 0 14vw rgba(209,72,46,.025);
}

.hero-kicker {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  padding-bottom: 16px;
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, .72fr);
  gap: clamp(28px, 5vw, 90px);
  align-items: center;
}

.hero-copy { align-self: center; padding-top: 5vh; }

h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(72px, 10.5vw, 178px);
  font-weight: 400;
  line-height: .79;
  letter-spacing: -.075em;
}

.title-line { display: block; overflow: hidden; padding-right: .08em; }
.title-line > span { display: block; }
.js .title-line > span { transform: translateY(110%); }
.js.is-ready .title-line > span { animation: title-rise 1.05s cubic-bezier(.17,.85,.28,1) forwards; }
.js.is-ready .title-line-2 > span { animation-delay: .08s; }
.js.is-ready .title-line-3 > span { animation-delay: .16s; color: var(--oxide); font-style: italic; }

@keyframes title-rise { to { transform: translateY(0); } }

.hero-intro {
  width: min(440px, 78%);
  margin: clamp(32px, 5vh, 70px) 0 0 36%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}

.hero-intro p { margin: 0; font-size: clamp(15px, 1.25vw, 20px); line-height: 1.4; }

.text-link {
  white-space: nowrap;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.text-link span { display: inline-block; color: var(--oxide); transition: transform .3s; }
.text-link:hover span { transform: translateY(4px); }

.hero-object {
  position: relative;
  justify-self: end;
  width: min(100%, 560px);
  perspective: 1200px;
}

.specimen-card {
  position: relative;
  background: var(--paper-light);
  border: 1px solid var(--ink);
  padding: 14px;
  box-shadow: 18px 18px 0 var(--ink);
  transform: rotate(1.25deg) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform .25s ease-out;
}

.specimen-head,
.specimen-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--condensed);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.specimen-head { padding: 2px 2px 12px; }
.specimen-head span:last-child { color: var(--oxide); }
.specimen-art { width: 100%; background: #c8c0b2; }
.specimen-foot { padding: 13px 2px 2px; }
.specimen-foot div { display: grid; gap: 2px; }
.specimen-foot div:last-child { text-align: right; }
.specimen-foot small { color: var(--muted); font-size: 8px; letter-spacing: .15em; }
.specimen-foot strong { font-size: 11px; }

.fragment { transform-box: fill-box; transform-origin: center; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.hero-object:hover .fragment-a { transform: translate(-7px, -6px) rotate(-.5deg); }
.hero-object:hover .fragment-b { transform: translate(8px, -5px) rotate(.8deg); }
.hero-object:hover .fragment-c { transform: translate(-6px, 7px) rotate(.4deg); }
.hero-object:hover .fragment-d { transform: translate(7px, 7px) rotate(-.4deg); }

.oxide-seam { stroke-dasharray: 1020; stroke-dashoffset: 1020; }
.is-ready .oxide-seam { animation: draw-seam 2.2s 1.05s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes draw-seam { to { stroke-dashoffset: 0; } }

.scan-dot { offset-path: path("M391 81L370 207L407 260L379 366L413 396L387 446L407 526L394 696"); animation: scan-path 4.8s 1.4s cubic-bezier(.65,0,.35,1) infinite alternate; }
@keyframes scan-path { from { offset-distance: 0%; } to { offset-distance: 100%; } }

.corner-note {
  position: absolute;
  top: 48%;
  right: -46px;
  writing-mode: vertical-rl;
  font-family: var(--condensed);
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-index { display: flex; align-items: center; gap: 14px; padding-top: 28px; font-family: var(--condensed); font-size: 9px; font-weight: 700; }
.hero-index div { width: 120px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.hero-index div::after { content: ""; position: absolute; inset: 0; background: var(--oxide); transform: translateX(-72%); }

.ticker { overflow: hidden; background: var(--ink); color: var(--paper-light); border-block: 1px solid var(--ink); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 26px; padding: 13px 0; animation: ticker 26s linear infinite; }
.ticker span { font-family: var(--condensed); font-size: 11px; font-weight: 700; letter-spacing: .21em; }
.ticker i { color: var(--acid); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-pad { padding: clamp(90px, 12vw, 190px) var(--page); }

.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.section-tag span { color: var(--oxide); }

.display-heading {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 136px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.055em;
}

.display-heading em { color: var(--oxide); font-weight: 400; }

.manifesto { border-bottom: 1px solid var(--line); }
.manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 80px; }
.manifesto-grid .display-heading { grid-column: 1 / -1; }
.manifesto-copy { max-width: 540px; padding-left: 20%; }
.manifesto-copy p { margin: 0 0 24px; }
.manifesto-copy .lead { font-family: var(--serif); font-size: clamp(28px, 3vw, 48px); line-height: 1.08; letter-spacing: -.025em; }

.manifesto-ledger { border-top: 1px solid var(--ink); }
.manifesto-ledger > div { display: grid; grid-template-columns: 42px 1fr auto; gap: 16px; align-items: center; min-height: 72px; border-bottom: 1px solid var(--line); }
.manifesto-ledger span { color: var(--oxide); font-family: var(--condensed); font-size: 10px; }
.manifesto-ledger strong { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.manifesto-ledger small { color: var(--muted); font-size: 11px; }

.archive { padding-bottom: 0; background: var(--paper-light); }
.archive-header { display: grid; grid-template-columns: .5fr 1.2fr .55fr; gap: 30px; align-items: end; margin-bottom: clamp(80px, 10vw, 150px); }
.archive-header .section-tag { align-self: start; }
.archive-note { padding-bottom: 8px; }
.archive-note p { font-family: var(--serif); font-size: 24px; line-height: 1.1; margin: 0 0 12px; }
.archive-note small { color: var(--muted); font-family: var(--condensed); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }

.case-study { display: grid; grid-template-columns: minmax(240px, .58fr) minmax(0, 1.42fr); gap: clamp(32px, 6vw, 100px); padding: 52px 0 104px; border-top: 1px solid var(--ink); }
.case-meta { display: grid; align-content: start; grid-template-columns: 50px 1fr; gap: 18px; }
.case-number { font-family: var(--condensed); font-size: 10px; color: var(--oxide); padding-top: 9px; }
.case-sector { margin: 0 0 18px; font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.case-meta h3 { margin: 0 0 22px; font-family: var(--serif); font-size: clamp(44px, 5vw, 80px); font-weight: 400; line-height: .9; letter-spacing: -.045em; }
.case-meta > div:nth-child(2) > p:last-child { max-width: 360px; margin: 0; color: var(--muted); }
.case-tags { grid-column: 2; list-style: none; padding: 42px 0 0; margin: 0; display: flex; flex-wrap: wrap; gap: 7px; }
.case-tags li { padding: 7px 10px 6px; border: 1px solid var(--line); border-radius: 100px; font-family: var(--condensed); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

.comparison { --position: 50%; position: relative; margin: 0; aspect-ratio: 16 / 10; overflow: hidden; border: 1px solid var(--ink); background: #bfb8ab; cursor: ew-resize; box-shadow: 12px 12px 0 rgba(23,23,20,.12); }
.comparison img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; max-width: none; user-select: none; pointer-events: none; }
.comparison-after { position: absolute; inset: 0; width: 100%; overflow: hidden; border-right: 0; clip-path: inset(0 calc(100% - var(--position)) 0 0); }
.comparison-after img { width: 100%; max-width: none; }
.comparison-divider { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--position); width: 2px; transform: translateX(-50%); background: var(--paper-light); pointer-events: none; }
.comparison-divider span { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; transform: translate(-50%, -50%); color: var(--paper-light); background: var(--ink); border: 1px solid var(--paper-light); box-shadow: 0 0 0 5px rgba(23,23,20,.18); font-size: 18px; }
.comparison-label { position: absolute; z-index: 2; top: 14px; padding: 7px 9px 6px; font-family: var(--condensed); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: var(--paper-light); }
.label-before { right: 14px; }
.label-after { left: 14px; background: var(--acid); }
.comparison-range { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.comparison:focus-within { outline: 4px solid var(--blue); outline-offset: 5px; }

.case-aurelia .comparison { transform: rotate(-.65deg); }
.case-campo .comparison { transform: rotate(.5deg); }

.method { position: relative; overflow: hidden; background: var(--ink); color: var(--paper-light); }
.method .section-tag span, .method .display-heading em { color: var(--acid); }
.method-head { display: grid; grid-template-columns: 1.3fr .5fr; gap: 50px; align-items: end; margin: 80px 0 100px; }
.method-head p { max-width: 360px; margin: 0 0 12px; color: rgba(246,241,231,.68); font-size: 18px; }
.method-list { position: relative; z-index: 1; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(246,241,231,.4); }
.method-list li { min-height: 390px; padding: 24px 28px 24px 0; border-right: 1px solid rgba(246,241,231,.2); display: flex; flex-direction: column; }
.method-list li:not(:first-child) { padding-left: 28px; }
.method-list li:last-child { border-right: 0; }
.method-index { color: var(--acid); font-family: var(--condensed); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.method-list h3 { margin: auto 0 20px; font-family: var(--serif); font-size: clamp(42px, 4vw, 70px); font-weight: 400; letter-spacing: -.04em; }
.method-list p { min-height: 88px; color: rgba(246,241,231,.65); font-size: 13px; }
.method-duration { padding-top: 18px; border-top: 1px solid rgba(246,241,231,.24); font-family: var(--condensed); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.method-orbit { position: absolute; top: 18%; right: -8vw; width: 42vw; aspect-ratio: 1; opacity: .22; }
.orbit-ring { position: absolute; inset: 0; border: 1px solid var(--acid); border-radius: 50%; box-shadow: inset 0 0 0 5vw rgba(223,253,84,.02), 0 0 0 5vw rgba(223,253,84,.02); }
.orbit-dot { position: absolute; left: 50%; top: 50%; width: 14px; height: 14px; margin: -7px; border-radius: 50%; background: var(--acid); transform-origin: 0 0; animation: orbit 12s linear infinite; }
@keyframes orbit { from { transform: rotate(0) translateX(21vw); } to { transform: rotate(360deg) translateX(21vw); } }

.pricing { background: var(--paper); }
.pricing-intro { display: grid; grid-template-columns: .45fr 1fr .5fr; gap: 35px; align-items: end; margin-bottom: 90px; }
.pricing-intro .section-tag { align-self: start; }
.pricing-intro > p { margin: 0 0 10px; color: var(--muted); max-width: 360px; }
.price-ledger { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.price-tier { position: relative; min-height: 650px; padding: 32px; display: flex; flex-direction: column; border-right: 1px solid var(--ink); background: var(--paper-light); overflow: hidden; }
.price-tier:last-child { border-right: 0; }
.price-tier header { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 20px; align-items: baseline; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.tier-code { font-family: var(--condensed); font-size: 9px; font-weight: 700; letter-spacing: .13em; color: var(--oxide); }
.price-tier header p { margin: 0; font-family: var(--serif); font-size: 22px; }
.price { position: relative; z-index: 1; margin: clamp(70px, 8vw, 115px) 0 28px; font-family: var(--serif); font-size: clamp(62px, 6vw, 98px); line-height: .8; letter-spacing: -.06em; }
.price span { vertical-align: top; padding-right: 4px; font-family: var(--sans); font-size: 18px; letter-spacing: 0; }
.tier-for { max-width: 330px; min-height: 65px; margin: 0 0 32px; color: var(--muted); }
.price-tier ul { list-style: none; padding: 0; margin: 0 0 50px; }
.price-tier li { padding: 11px 0 10px 22px; border-top: 1px solid var(--line); font-size: 13px; position: relative; }
.price-tier li::before { content: "+"; position: absolute; left: 0; color: var(--oxide); }
.tier-link { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-top: 1px solid var(--ink); font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.tier-link span { font-size: 18px; transition: transform .3s; }
.tier-link:hover span { transform: translate(4px, -4px); }
.price-tier-featured { background: var(--oxide); color: var(--paper-light); }
.price-tier-featured .tier-code { color: var(--acid); }
.price-tier-featured .tier-for { color: rgba(246,241,231,.78); }
.price-tier-featured li::before { color: var(--acid); }
.price-tier-featured header, .price-tier-featured li { border-color: rgba(246,241,231,.35); }
.price-tier-featured .tier-link { border-color: var(--paper-light); }
.tier-monthly { position: relative; z-index: 1; min-height: 20px; margin: -16px 0 24px; color: var(--muted); font-family: var(--condensed); font-size: 10px; font-weight: 600; letter-spacing: .06em; line-height: 1.35; text-transform: uppercase; }
.tier-monthly strong { color: inherit; font-weight: 800; }
.price-tier-featured .tier-monthly { color: var(--acid); }
.price-tier-dark .tier-monthly { color: rgba(246,241,231,.74); }
.fired-stamp { position: absolute; z-index: 0; right: -30px; top: 130px; width: 135px; padding: 7px; transform: rotate(45deg); background: var(--acid); color: var(--ink); text-align: center; font-family: var(--condensed); font-size: 8px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.price-tier-dark { background: var(--ink); color: var(--paper-light); }
.price-tier-dark .tier-for { color: rgba(246,241,231,.62); }
.price-tier-dark header, .price-tier-dark li { border-color: rgba(246,241,231,.24); }
.price-tier-dark .tier-link { border-color: var(--paper-light); }
.pricing-note { margin: 20px 0 0 auto; max-width: 570px; color: var(--muted); font-size: 11px; text-align: right; }

.contact { position: relative; min-height: 86svh; padding: 90px var(--page); display: grid; place-items: center; overflow: hidden; background: var(--oxide); color: var(--paper-light); }
.contact::before, .contact::after { content: ""; position: absolute; width: 44vw; aspect-ratio: 1; border: 1px solid rgba(246,241,231,.28); border-radius: 50%; }
.contact::before { left: -22vw; top: -15vw; }
.contact::after { right: -20vw; bottom: -24vw; box-shadow: 0 0 0 7vw rgba(246,241,231,.025); }
.contact-copy { position: relative; z-index: 2; text-align: center; }
.contact-kicker { margin: 0 0 35px; font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.contact h2 { margin: 0; font-family: var(--serif); font-size: clamp(86px, 14vw, 230px); font-weight: 400; line-height: .71; letter-spacing: -.075em; }
.contact-link { width: min(610px, 80vw); margin: 80px auto 0; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--paper-light); font-family: var(--condensed); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-link i { font-style: normal; font-size: 24px; transition: transform .3s; }
.contact-link:hover i { transform: translate(7px, -7px); }
.contact-scene { position: absolute; inset: 0; pointer-events: none; }
.contact-fragment { position: absolute; display: grid; place-items: center; font-family: var(--serif); border: 1px solid rgba(246,241,231,.6); background: rgba(23,23,20,.1); backdrop-filter: blur(8px); }
.fragment-value { display: flex; align-items: center; gap: .08em; }
.fragment-value .ui-icon { width: .8em; height: .8em; }
.fragment-one { left: 7%; top: 20%; width: 130px; height: 180px; transform: rotate(-11deg); font-size: 48px; }
.fragment-two { right: 8%; bottom: 15%; width: 180px; height: 130px; transform: rotate(8deg); color: var(--acid); font-size: 42px; }
.contact-seam { position: absolute; top: 0; left: 50%; height: 100%; width: 2px; background: linear-gradient(transparent, var(--acid) 25%, var(--acid) 75%, transparent); transform: rotate(16deg); opacity: .7; }

.footer { padding: 60px var(--page); display: grid; grid-template-columns: 1fr 1fr .6fr .6fr; gap: 30px; align-items: start; background: var(--ink); color: var(--paper-light); border-top: 1px solid rgba(246,241,231,.2); }
.footer p { margin: 0; color: rgba(246,241,231,.55); font-size: 11px; }
.footer-links { display: grid; gap: 8px; font-family: var(--condensed); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.footer-legal { text-align: right; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .9s cubic-bezier(.18,.8,.22,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1.2fr .8fr; gap: 38px; }
  .hero-intro { margin-left: 22%; width: 76%; }
  .archive-header { grid-template-columns: 1fr 2fr; }
  .archive-note { grid-column: 2; max-width: 420px; }
  .case-study { grid-template-columns: 1fr; }
  .case-meta { grid-template-columns: 54px minmax(0, 1fr) .65fr; }
  .case-tags { grid-column: 3; padding-top: 0; align-content: start; }
  .pricing-intro { grid-template-columns: .5fr 1.5fr; }
  .pricing-intro > p { grid-column: 2; }
  .price-tier { padding: 26px; min-height: 610px; }
}

@media (max-width: 780px) {
  :root { --page: 20px; }
  body { background-size: auto, 25vw 100%, auto; }
  .masthead { height: 78px; grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .header-cta { font-size: 9px; }
  .header-cta span { font-size: 14px; }
  .brand-mark { width: 31px; height: 31px; }
  .hero { min-height: auto; padding-top: 104px; }
  .hero-kicker { grid-template-columns: 1fr auto; }
  .hero-kicker span:nth-child(2) { display: none; }
  .hero-grid { display: block; }
  .hero-copy { padding-top: 50px; }
  h1 { font-size: clamp(68px, 21vw, 116px); line-height: .82; }
  .hero-intro { width: 100%; margin: 36px 0 70px; grid-template-columns: 1fr; }
  .hero-intro p { max-width: 360px; }
  .text-link { width: max-content; }
  .hero-object { width: 88%; margin: 0 5% 0 auto; }
  .specimen-card { box-shadow: 10px 10px 0 var(--ink); }
  .corner-note { right: -34px; }
  .hero-index { padding-top: 44px; }
  .section-pad { padding-top: 100px; padding-bottom: 100px; }
  .manifesto-grid { display: block; margin-top: 62px; }
  .manifesto-copy { padding: 60px 0 45px; }
  .manifesto-ledger > div { grid-template-columns: 34px 1fr; }
  .manifesto-ledger small { grid-column: 2; margin-top: -17px; padding-bottom: 13px; }
  .archive-header { display: block; margin-bottom: 70px; }
  .archive-header .display-heading { margin: 56px 0 34px; }
  .archive-note { max-width: 320px; }
  .case-study { gap: 40px; padding: 34px 0 80px; }
  .case-meta { grid-template-columns: 38px 1fr; }
  .case-tags { grid-column: 2; padding-top: 22px; }
  .comparison { aspect-ratio: 4 / 3; box-shadow: 7px 7px 0 rgba(23,23,20,.12); }
  .comparison-divider span { width: 42px; height: 42px; }
  .method-head { display: block; margin: 60px 0 72px; }
  .method-head p { margin-top: 35px; }
  .method-list { grid-template-columns: 1fr; }
  .method-list li, .method-list li:not(:first-child) { min-height: 310px; padding: 24px 0; border-right: 0; border-bottom: 1px solid rgba(246,241,231,.2); }
  .method-list h3 { margin-top: 80px; }
  .method-list p { max-width: 400px; min-height: 0; }
  .method-orbit { width: 80vw; right: -38vw; }
  @keyframes orbit { from { transform: rotate(0) translateX(40vw); } to { transform: rotate(360deg) translateX(40vw); } }
  .pricing-intro { display: block; margin-bottom: 60px; }
  .pricing-intro .display-heading { margin: 56px 0 34px; }
  .price-ledger { grid-template-columns: 1fr; }
  .price-tier { min-height: 590px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .price-tier:last-child { border-bottom: 0; }
  .pricing-note { text-align: left; }
  .contact { min-height: 760px; }
  .contact h2 { font-size: clamp(78px, 24vw, 150px); line-height: .76; }
  .contact-link { margin-top: 60px; width: 100%; font-size: 10px; }
  .fragment-one { left: -30px; top: 13%; transform: rotate(-9deg) scale(.72); }
  .fragment-two { right: -42px; bottom: 12%; transform: rotate(7deg) scale(.7); }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer-links { text-align: right; }
  .footer-legal { text-align: left; }
}

@media (max-width: 420px) {
  .header-cta { max-width: 112px; text-align: right; line-height: 1.2; }
  .hero-kicker { gap: 12px; }
  .specimen-card { padding: 9px; }
  .case-meta h3 { font-size: 48px; }
  .archive-note p { font-size: 21px; }
  .price-tier { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .js .title-line > span, .js .reveal { opacity: 1; transform: none; }
  .specimen-card { transform: rotate(1deg); }
}
