:root {
  --paper: #f1efe8;
  --paper-2: #e8e4d9;
  --ink: #11110f;
  --coal: #151514;
  --coal-2: #222220;
  --muted: #706f69;
  --line: rgba(17,17,15,.18);
  --red: #ff3b25;
  --orange: #ff6a00;
  --yellow: #ffdf00;
  --lime: #69ee22;
  --cyan: #20d9e9;
  --violet: #7857ff;
  --display: "Arial Narrow", "Liberation Sans Narrow", "Nimbus Sans Narrow", Arial, sans-serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }
::selection { color: var(--ink); background: var(--yellow); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: #000;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.page-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  z-index: 110;
  background: transparent;
}
.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--lime), var(--cyan), var(--violet));
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 74px;
  padding: 0 var(--gutter);
  color: var(--ink);
  transition: color .3s ease, background .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17,17,15,.08);
}
.site-header.on-dark { color: #fff; background: rgba(21,21,20,.78); border-bottom-color: rgba(255,255,255,.09); }

.mini-brand {
  display: inline-flex;
  align-items: flex-end;
  width: max-content;
  color: inherit;
  text-decoration: none;
  font-family: var(--display);
  line-height: .82;
  letter-spacing: -.055em;
}
.mini-brand__sivil {
  margin: 0 4px 2px 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.mini-brand__catlaklar { font-size: 34px; font-weight: 800; }
.on-dark .mini-brand__sivil { color: rgba(255,255,255,.58); }

.site-nav {
  display: flex;
  gap: clamp(18px, 2.8vw, 42px);
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}
.site-nav a { position: relative; text-decoration: none; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: currentColor;
  transition: right .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.menu-button { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  min-height: 100svh;
  padding: 120px var(--gutter) 70px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 22%, rgba(255,223,0,.16), transparent 19%),
    radial-gradient(circle at 70% 60%, rgba(32,217,233,.11), transparent 24%),
    var(--paper);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  width: min(44vw, 640px);
  aspect-ratio: 1;
  right: -12vw;
  bottom: -18vw;
  border: 1px solid rgba(17,17,15,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(17,17,15,.025), 0 0 0 140px rgba(17,17,15,.018);
}
.hero__grain {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0, rgba(0,0,0,.09) .7px, transparent 1.2px, transparent 4px);
  background-size: 9px 9px;
  mix-blend-mode: multiply;
}
.hero__cracks { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.crack {
  fill: none;
  stroke-width: 8;
  stroke-linecap: square;
  stroke-linejoin: bevel;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 0 #fff) drop-shadow(0 0 4px rgba(255,255,255,.95));
  stroke-dasharray: 2100;
  stroke-dashoffset: 2100;
  animation: draw-crack 1.8s cubic-bezier(.65,0,.2,1) .15s forwards;
}
.crack--yellow { stroke: var(--yellow); }
.crack--red { stroke: var(--red); animation-delay: .7s; }
.crack--lime { stroke: var(--lime); animation-delay: .9s; }
.crack--cyan { stroke: var(--cyan); animation-delay: 1.05s; }
.crack--violet { stroke: var(--violet); animation-delay: 1.2s; }
.crack--orange { stroke: var(--orange); animation-delay: 1.35s; }
@keyframes draw-crack { to { stroke-dashoffset: 0; } }

.hero__copy { position: relative; z-index: 4; max-width: 700px; }
.eyebrow {
  max-width: 420px;
  margin: 0 0 clamp(20px, 4vw, 48px);
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.45;
  font-weight: 650;
}
.brand-lockup {
  display: flex;
  align-items: flex-end;
  margin: 0;
  font-family: var(--display);
  line-height: .76;
  letter-spacing: -.072em;
}
.brand-lockup__sivil {
  margin: 0 clamp(7px, 1vw, 14px) 1.2vw 0;
  color: #777872;
  font-family: var(--sans);
  font-size: clamp(18px, 2.2vw, 34px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.04em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.brand-lockup__catlaklar { font-size: clamp(84px, 12.2vw, 210px); font-weight: 800; }

.hero__rock {
  position: relative;
  z-index: 3;
  align-self: center;
  margin: 30px 0 0 -12%;
}
.hero__rock img { width: min(720px, 58vw); filter: drop-shadow(0 42px 48px rgba(17,17,15,.17)); }

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: var(--gutter);
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-cue i {
  width: 54px;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  animation: scan 1.7s ease-in-out infinite;
}
@keyframes scan { 0%,100%{transform:scaleX(.35)} 50%{transform:scaleX(1)} }

.section-shell { width: min(var(--max), calc(100% - (var(--gutter) * 2))); margin-inline: auto; }
.section-shell--wide { --max: 1320px; }
.section-light { position: relative; background: var(--paper); }
.manifesto { padding-top: clamp(110px, 14vw, 220px); }
.section-heading {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: start;
  margin-bottom: clamp(70px, 9vw, 140px);
}
.section-index {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
.section-index::after { content: ""; width: 38px; height: 1px; background: currentColor; }
.section-heading h2 {
  max-width: 1040px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(74px, 11vw, 170px);
  font-weight: 800;
  line-height: .78;
  letter-spacing: -.065em;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
  gap: clamp(50px, 8vw, 140px);
  align-items: start;
}
.display-statement {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 8.4vw, 130px);
  font-weight: 800;
  line-height: .84;
  letter-spacing: -.055em;
}
.display-statement span { color: var(--red); }
.statement-tail {
  max-width: 530px;
  margin: 30px 0 0;
  padding-left: clamp(30px, 6vw, 90px);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.35;
  font-weight: 650;
}
.prose { max-width: 700px; }
.prose p { margin: 0 0 1.4em; }
.prose--intro { padding-top: 22px; font-size: clamp(18px, 1.7vw, 24px); line-height: 1.55; }
.two-column-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
  margin-top: clamp(100px, 13vw, 190px);
}
.pull-quote { position: relative; padding: 45px 0 20px clamp(30px, 5vw, 78px); }
.pull-quote p {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(45px, 6.4vw, 98px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.045em;
}
.color-mark {
  position: absolute;
  inset: 0 auto 0 0;
  width: 18px;
  background: var(--red);
  transform: skewY(-20deg);
}
.long-copy {
  max-width: 1100px;
  margin: clamp(100px, 13vw, 190px) 0 clamp(120px, 15vw, 220px) auto;
  font-size: clamp(24px, 3.15vw, 48px);
  line-height: 1.34;
  letter-spacing: -.026em;
}
.long-copy p { margin: 0; }
.quoted {
  position: relative;
  background: linear-gradient(transparent 72%, rgba(255,223,0,.72) 72%);
}

.rock-metaphor {
  position: relative;
  min-height: 800px;
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--coal);
  overflow: hidden;
  clip-path: polygon(0 7%, 8% 3%, 19% 8%, 31% 2%, 44% 7%, 57% 0, 71% 6%, 84% 2%, 100% 8%, 100% 100%, 0 100%);
}
.rock-metaphor__mesh {
  position: absolute;
  inset: 0;
  opacity: .65;
  background:
    linear-gradient(117deg, transparent 0 37%, rgba(255,255,255,.04) 37.2% 49%, transparent 49.2%),
    linear-gradient(32deg, transparent 0 48%, rgba(255,255,255,.035) 48.2% 61%, transparent 61.2%),
    radial-gradient(circle at 85% 25%, rgba(120,87,255,.22), transparent 20%),
    radial-gradient(circle at 15% 70%, rgba(255,59,37,.18), transparent 24%),
    #151514;
}
.rock-metaphor__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 9vw, 150px);
  align-items: center;
  padding-block: clamp(150px, 18vw, 250px) clamp(110px, 14vw, 190px);
}
.rock-metaphor__word {
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.38);
  font-family: var(--display);
  font-size: clamp(140px, 25vw, 420px);
  font-weight: 800;
  line-height: .65;
  letter-spacing: -.08em;
  transform: rotate(-8deg);
}
.rock-metaphor__copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding-left: 32px;
  border-left: 8px solid var(--yellow);
  font-size: clamp(21px, 2.1vw, 31px);
  line-height: 1.48;
}
.rock-metaphor__copy p:last-child { margin-bottom: 0; }

.section-dark { position: relative; color: #f4f1e8; background: var(--coal); }
.intent { min-height: 1700px; overflow: hidden; }
.intent__crack { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .78; }
.intent__crack path {
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: bevel;
  vector-effect: non-scaling-stroke;
}
#scroll-crack { stroke: #fff; stroke-width: 6; filter: drop-shadow(0 0 5px rgba(255,223,0,.72)); }
.intent__crack .branch { stroke-width: 4; stroke-dasharray: 14 14; opacity: .55; }
.branch--1 { stroke: var(--red); }
.branch--2 { stroke: var(--lime); }
.branch--3 { stroke: var(--cyan); }
.branch--4 { stroke: var(--orange); }
.branch--5 { stroke: var(--violet); }
.intent__content { position: relative; z-index: 3; padding: clamp(150px, 17vw, 240px) 0 clamp(130px, 15vw, 220px); }
.section-heading--dark .section-index { color: rgba(255,255,255,.55); }
.section-heading--dark h2 { color: #f4f1e8; }
.intent__opening { margin-left: auto; max-width: 760px; }
.prose--large { font-size: clamp(22px, 2.4vw, 34px); line-height: 1.5; letter-spacing: -.02em; }
.type-event {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: clamp(150px, 20vw, 280px) 0 clamp(160px, 20vw, 290px);
  font-family: var(--display);
  font-size: clamp(76px, 13vw, 200px);
  font-weight: 800;
  line-height: .72;
  letter-spacing: -.065em;
  text-transform: lowercase;
}
.type-event span:nth-child(1) { color: var(--lime); transform: translateX(10vw); }
.type-event span:nth-child(2) { color: #fff; }
.type-event span:nth-child(3) { color: var(--cyan); transform: translateX(39vw); }
.intent__network {
  display: grid;
  grid-template-columns: minmax(260px, .6fr) minmax(0, 1fr);
  gap: clamp(50px, 10vw, 160px);
  align-items: center;
  margin-bottom: clamp(150px, 18vw, 260px);
}
.network-orbit {
  position: relative;
  width: min(340px, 72vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  animation: rotate-orbit 22s linear infinite;
}
.network-orbit::before, .network-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
}
.network-orbit::before { inset: 18%; }
.network-orbit::after { inset: 36%; background: rgba(255,255,255,.04); }
.network-orbit i {
  --angle: calc(var(--i) * 60deg);
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: rotate(var(--angle)) translateX(164px) rotate(calc(var(--angle) * -1));
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(255,223,0,.09);
}
.network-orbit i:nth-child(2) { background: var(--red); }
.network-orbit i:nth-child(3) { background: var(--lime); }
.network-orbit i:nth-child(4) { background: var(--cyan); }
.network-orbit i:nth-child(5) { background: var(--violet); }
.network-orbit i:nth-child(6) { background: var(--orange); }
@keyframes rotate-orbit { to { transform: rotate(360deg); } }
.callout {
  max-width: 1060px;
  margin-left: auto;
  padding: clamp(40px, 7vw, 90px);
  background: #f1efe8;
  color: var(--ink);
  clip-path: polygon(0 5%, 11% 0, 22% 6%, 36% 1%, 48% 7%, 62% 2%, 77% 7%, 89% 2%, 100% 6%, 100% 95%, 88% 100%, 75% 94%, 61% 100%, 47% 95%, 32% 100%, 16% 94%, 0 99%);
}
.callout p { margin: 0 0 40px; font-size: clamp(22px, 2.7vw, 38px); line-height: 1.45; letter-spacing: -.025em; }
.cta-link {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.05em;
  text-decoration: none;
}
.cta-link span { color: var(--red); transition: transform .25s ease; }
.cta-link:hover span { transform: translate(7px, 7px); }

.contact {
  position: relative;
  color: var(--ink);
  background: var(--yellow);
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .21;
  background-image: radial-gradient(rgba(0,0,0,.45) .7px, transparent .7px);
  background-size: 8px 8px;
}
.contact__flare {
  position: absolute;
  width: 720px;
  aspect-ratio: 1;
  right: -240px;
  top: -250px;
  border: 2px solid rgba(17,17,15,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(17,17,15,.05), 0 0 0 140px rgba(17,17,15,.04), 0 0 0 210px rgba(17,17,15,.03);
}
.contact__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: clamp(70px, 10vw, 160px);
  padding-block: clamp(130px, 16vw, 230px);
}
.contact__intro h2 {
  margin: 34px 0 65px;
  font-family: var(--display);
  font-size: clamp(70px, 9.6vw, 150px);
  font-weight: 800;
  line-height: .77;
  letter-spacing: -.065em;
}
.contact__intro .section-index { color: rgba(17,17,15,.62); }
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
  border-bottom: 2px solid var(--ink);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 800;
  text-decoration: none;
}
.instagram-link span:last-child { font-size: 30px; transition: transform .25s ease; }
.instagram-link:hover span:last-child { transform: translate(5px,-5px); }
.contact-form { align-self: center; }
.field { position: relative; margin-bottom: 26px; border-bottom: 2px solid var(--ink); }
.field label {
  display: block;
  padding-top: 7px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.field input, .field textarea {
  width: 100%;
  padding: 10px 0 18px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: none;
  font-size: clamp(20px, 2vw, 28px);
  resize: vertical;
}
.field:focus-within { border-color: var(--red); }
.field input:focus-visible, .field textarea:focus-visible { outline: none; }
.field.is-invalid { border-color: #b00020; }
.submit-button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 38px;
  padding: 20px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  text-align: left;
}
.submit-button span:last-child { transition: transform .25s ease; }
.submit-button:hover span:last-child { transform: translate(7px,-7px); }
.form-status { min-height: 25px; margin: 18px 0 0; font-size: 14px; font-weight: 700; }

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 120px;
  padding: 30px var(--gutter);
  color: #fff;
  background: var(--coal);
}
.mini-brand--footer .mini-brand__sivil { color: rgba(255,255,255,.55); }
.site-footer p { margin: 0; color: rgba(255,255,255,.55); font-size: 12px; }
.toast {
  position: fixed;
  z-index: 200;
  right: 18px;
  bottom: 18px;
  max-width: min(420px, calc(100vw - 36px));
  padding: 14px 18px;
  color: #fff;
  background: var(--coal);
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
  transform: translateY(140%);
  transition: transform .3s ease;
  font-size: 14px;
  font-weight: 700;
}
.toast.is-visible { transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; align-content: center; padding-top: 126px; }
  .hero__copy { z-index: 5; }
  .hero__rock { position: absolute; z-index: 1; width: 68vw; right: -13vw; bottom: 2vh; opacity: .55; }
  .hero__rock img { width: 100%; }
  .hero__cracks { opacity: .7; }
  .manifesto-grid, .two-column-copy, .rock-metaphor__inner, .intent__network, .contact__grid { grid-template-columns: 1fr; }
  .section-heading { grid-template-columns: 70px 1fr; }
  .prose--intro { max-width: 820px; }
  .two-column-copy { align-items: start; }
  .rock-metaphor__word { position: absolute; left: -4vw; top: 12%; opacity: .5; }
  .rock-metaphor__copy { margin-left: auto; max-width: 720px; }
  .network-orbit { margin: 0 auto; }
  .type-event span:nth-child(1) { transform: translateX(5vw); }
  .type-event span:nth-child(3) { transform: translateX(24vw); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-header { min-height: 66px; }
  .menu-button {
    display: inline-flex;
    position: relative;
    z-index: 2;
    align-items: center;
    gap: 7px;
    padding: 10px 0 10px 14px;
    color: inherit;
    background: transparent;
    border: 0;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }
  .menu-button i { display: block; width: 18px; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-button i:last-child { position: absolute; right: 0; transform: translateY(4px); }
  .menu-button[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] i:last-child { transform: rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    padding: 90px var(--gutter);
    color: #fff;
    background: var(--coal);
    transform: translateY(-105%);
    transition: transform .45s cubic-bezier(.2,.75,.2,1);
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a { font-family: var(--display); font-size: clamp(42px, 12vw, 72px); font-weight: 800; line-height: .95; }
  .site-header.menu-active { color: #fff; background: transparent; border: 0; backdrop-filter: none; }
  .hero { min-height: 820px; padding-top: 120px; padding-bottom: 100px; align-content: start; }
  .hero__copy { margin-top: 10vh; }
  .eyebrow { max-width: 290px; }
  .brand-lockup { align-items: flex-end; }
  .brand-lockup__catlaklar { font-size: clamp(77px, 25vw, 122px); }
  .brand-lockup__sivil { font-size: 16px; }
  .hero__rock { width: 106vw; right: -34vw; bottom: 1vh; opacity: .47; }
  .scroll-cue { bottom: 22px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-index { margin-top: 0; }
  .section-heading h2 { font-size: clamp(67px, 20vw, 100px); }
  .manifesto { padding-top: 100px; }
  .display-statement { font-size: clamp(64px, 20vw, 96px); }
  .statement-tail { padding-left: 18vw; }
  .two-column-copy { margin-top: 100px; }
  .pull-quote { padding-left: 30px; }
  .long-copy { font-size: 24px; }
  .rock-metaphor { min-height: 900px; clip-path: polygon(0 3%, 20% 0, 39% 4%, 58% 1%, 80% 4%, 100% 1%, 100% 100%, 0 100%); }
  .rock-metaphor__inner { padding-top: 180px; }
  .rock-metaphor__word { font-size: 54vw; top: 8%; }
  .rock-metaphor__copy { padding-left: 22px; font-size: 21px; }
  .intent { min-height: auto; }
  .intent__content { padding-top: 130px; }
  .intent__crack { opacity: .34; }
  .intent__opening { margin-left: 0; }
  .type-event { margin-block: 130px 150px; font-size: clamp(68px, 22vw, 108px); }
  .type-event span:nth-child(1) { transform: translateX(0); }
  .type-event span:nth-child(3) { transform: translateX(18vw); }
  .network-orbit i { transform: rotate(var(--angle)) translateX(min(34vw, 145px)) rotate(calc(var(--angle) * -1)); }
  .callout { padding: 56px 28px; }
  .cta-link { flex-direction: column; align-items: flex-start; }
  .contact__grid { padding-block: 110px; }
  .contact__intro h2 { font-size: clamp(68px, 20vw, 100px); }
  .contact__flare { opacity: .6; }
}

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