@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Inter:wght@500;600;700;800&family=Inter+Tight:wght@500;600;700;800;900&family=Reddit+Sans+Condensed:wght@900&display=swap");

:root {
  --bg: #ffffff;
  --ink: #050505;
  --muted: #787878;
  --soft: #f4f4f1;
  --yellow: #fff200;
  --acid: #d7ff42;
  --purple: #7045ff;
  --line: rgba(0, 0, 0, 0.1);
  --line-strong: rgba(0, 0, 0, 0.22);
  --shadow-card:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 18px 60px rgba(0, 0, 0, 0.08);
  --gutter: clamp(16px, 3vw, 48px);
  --max: 1480px;
  --display: "Inter Tight", "Inter Display", "Arial Black", Impact, system-ui, sans-serif;
  --condensed: "Reddit Sans Condensed", "Inter Tight", "Arial Black", Impact, sans-serif;
  --sans: "Inter Display", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hand: Caveat, "Segoe Print", "Comic Sans MS", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.35;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

a {
  color: inherit;
}

p,
li,
figcaption {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  text-wrap: balance;
}

.capsule-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 48px;
  padding: 5px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(9, 9, 5, 0.82);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 10px 34px rgba(0, 0, 0, 0.16);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.capsule-nav nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.capsule-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transition-property: color, background-color, scale;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.capsule-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.capsule-nav a:active {
  scale: 0.96;
}

.nav-sun {
  width: 38px;
  padding: 0 !important;
  color: var(--yellow) !important;
  font-size: 11px !important;
  letter-spacing: -0.03em;
}

.nav-cta {
  color: var(--yellow) !important;
  background: rgba(255, 242, 0, 0.12);
}

.sun-hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  padding: 0 var(--gutter);
  overflow: hidden;
}

.sun-field {
  position: absolute;
  inset: 0;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.sun-field::before {
  content: "";
  position: absolute;
  inset: -18% -8% 0 -8%;
  background:
    radial-gradient(circle at 11% 3%, rgba(255, 152, 0, 0.95), transparent 27%),
    radial-gradient(circle at 53% 20%, rgba(255, 240, 0, 0.92), transparent 43%),
    linear-gradient(116deg, #ffbc00 0%, #fff11b 34%, #fffcc0 58%, #fff 84%);
  filter: saturate(1.05);
}

.sun-field::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.32) 0.7px, transparent 0.7px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

.ray {
  position: absolute;
  left: -18vw;
  right: -20vw;
  height: clamp(96px, 13vw, 210px);
  background: rgba(255, 255, 255, 0.7);
  filter: blur(13px);
  transform-origin: left center;
}

.ray-a {
  top: 8vh;
  transform: rotate(16deg);
}

.ray-b {
  top: 34vh;
  transform: rotate(35deg);
}

.ray-c {
  top: -5vh;
  opacity: 0.62;
  transform: rotate(7deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1840px;
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(20px, 2.7vw, 48px);
}

.hero-intro {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 0 clamp(26px, 4vh, 54px);
  color: rgba(0, 0, 0, 0.52);
  font-family: var(--sans);
  font-size: clamp(24px, 2.15vw, 40px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

.mega-name {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0;
  width: 100%;
  font-family: var(--condensed);
  font-size: clamp(78px, 13.3vw, 252px);
  line-height: 0.76;
  font-weight: 900;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  cursor: default;
  transform: translateX(-0.018em);
}

.word {
  display: inline-flex;
  align-items: flex-end;
}

.word-second {
  margin-left: 0.2em;
}

.letter {
  position: relative;
  display: inline-block;
  color: var(--ink);
  transform-origin: 50% 78%;
  transition-property: transform, filter;
  transition-duration: 260ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.letter:hover,
.letter.is-sticker-active {
  z-index: 4;
  transform: translateY(-0.035em) rotate(var(--tilt, -2deg)) scale(1.035);
  filter: blur(0);
}

.letter:nth-child(2n) {
  --tilt: 2deg;
}

.letter-sticker {
  position: absolute;
  left: 50%;
  bottom: 0.04em;
  z-index: 6;
  width: clamp(104px, 11vw, 218px);
  max-width: none;
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.12),
    0 28px 70px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 5%) rotate(var(--sticker-rotate, -5deg)) scale(0.2);
  filter: blur(4px) saturate(1.08);
  transition-property: opacity, transform, filter;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.letter:hover .letter-sticker,
.letter.is-sticker-active .letter-sticker {
  opacity: 1;
  transform: translate(-50%, 5%) rotate(var(--sticker-rotate, -5deg)) scale(1);
  filter: blur(0) saturate(1.08);
}

.sticker-a {
  --sticker-rotate: 4deg;
  width: clamp(108px, 12vw, 230px);
}

.sticker-b {
  --sticker-rotate: -7deg;
  width: clamp(116px, 13vw, 255px);
}

.sticker-c {
  --sticker-rotate: 5deg;
  width: clamp(105px, 12vw, 225px);
}

.sticker-d {
  --sticker-rotate: -4deg;
  width: clamp(116px, 13vw, 250px);
}

.sticker-e {
  --sticker-rotate: -6deg;
  width: clamp(112px, 13vw, 245px);
}

.sticker-f {
  --sticker-rotate: 3deg;
  width: clamp(116px, 13vw, 255px);
}

.sticker-g {
  --sticker-rotate: 6deg;
  width: clamp(108px, 12vw, 230px);
}

.work-showcase,
.story-section,
.process-section,
.about-section,
.contact-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(86px, 12vw, 180px) var(--gutter);
}

.hire-strip {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.5fr;
  gap: 16px;
  padding: 22px var(--gutter);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 750;
}

.hire-strip p {
  margin: 0;
}

.hire-strip p:nth-child(2) {
  text-align: center;
}

.hire-strip p:last-child {
  text-align: right;
}

.section-title {
  display: grid;
  place-items: center;
  margin-bottom: clamp(42px, 8vw, 108px);
  text-align: center;
}

.hand-note {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: var(--hand);
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  rotate: -3deg;
}

.section-title h2,
.contact-mega {
  font-family: var(--condensed);
  font-size: clamp(52px, 7vw, 112px);
  line-height: 0.85;
  font-weight: 900;
  text-transform: uppercase;
}

.work-masonry {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
}

.work-card {
  display: grid;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}

.work-card img {
  border-radius: 16px;
  background: var(--soft);
  box-shadow: var(--shadow-card);
  transition-property: transform, filter;
  transition-duration: 420ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.work-card:hover img {
  transform: translateY(-8px) rotate(-0.8deg);
  filter: saturate(1.04);
}

.work-large {
  grid-column: 6 / -1;
}

.work-small {
  grid-column: 1 / 6;
}

.work-medium {
  grid-column: 2 / 8;
}

.work-offset {
  margin-top: clamp(56px, 8vw, 120px);
}

.work-large img {
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.work-small img {
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.work-medium img {
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.work-caption {
  display: grid;
  gap: 5px;
  padding-left: 4px;
}

.work-caption strong {
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 850;
}

.work-caption em {
  color: var(--muted);
  font-style: normal;
  font-weight: 650;
}

.proof-panel {
  grid-column: 8 / -1;
  margin-top: clamp(80px, 14vw, 180px);
  padding: clamp(24px, 4vw, 46px);
  border-radius: 16px;
  background: var(--yellow);
  box-shadow: var(--shadow-card);
}

.proof-panel h3 {
  font-family: var(--condensed);
  font-size: clamp(30px, 4vw, 64px);
  line-height: 0.9;
  text-transform: uppercase;
}

.proof-panel ul {
  display: grid;
  gap: 10px;
  max-width: 460px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 650;
}

.proof-panel li {
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: clamp(34px, 7vw, 112px);
  align-items: start;
}

.story-lead {
  margin: 0;
  max-width: 680px;
  font-family: var(--display);
  font-size: clamp(36px, 5.1vw, 82px);
  font-weight: 850;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.timeline span,
.process-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline h3 {
  margin-top: 8px;
  font-size: clamp(24px, 2.7vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.timeline p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.process-strip div {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 16px;
  background: var(--soft);
  box-shadow: var(--shadow-card);
}

.process-strip strong {
  display: block;
  margin-top: auto;
  font-family: var(--condensed);
  font-size: clamp(28px, 3.4vw, 56px);
  line-height: 0.9;
  text-transform: uppercase;
}

.process-strip p {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: start;
  border-top: 1px solid var(--line-strong);
  padding-top: clamp(26px, 4vw, 56px);
}

.about-lead {
  margin: 0;
  max-width: 840px;
  font-family: var(--display);
  font-size: clamp(32px, 4.2vw, 72px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.about-lead + p {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 650;
}

.about-facts {
  display: grid;
  gap: 0;
  margin: 0;
}

.about-facts div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.about-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.about-facts dd {
  margin: 0;
  font-weight: 750;
}

.contact-section {
  text-align: center;
  display: grid;
  justify-items: center;
  padding-top: clamp(86px, 12vw, 160px);
  padding-bottom: clamp(90px, 13vw, 190px);
}

.contact-mega {
  max-width: 1120px;
  margin: 0 auto;
}

.connect-note {
  max-width: 560px;
  margin-bottom: clamp(34px, 5vw, 64px);
  color: rgba(0, 0, 0, 0.44);
  font-size: clamp(22px, 2.2vw, 36px);
  line-height: 0.92;
  transform: rotate(-5deg);
}

.mega-connect {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 760px);
  min-height: clamp(118px, 15vw, 210px);
  padding: 0 clamp(38px, 6vw, 88px);
  border-radius: 999px;
  color: #f7f7f7;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 44%),
    linear-gradient(180deg, #363636 0%, #202020 58%, #050505 100%);
  box-shadow:
    inset 0 5px 0 rgba(255, 255, 255, 0.08),
    inset 0 -8px 0 rgba(0, 0, 0, 0.6),
    0 10px 0 #000,
    0 18px 0 rgba(0, 0, 0, 0.16),
    0 42px 72px rgba(0, 0, 0, 0.22);
  font-family: var(--display);
  font-size: clamp(68px, 9.5vw, 154px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-decoration: none;
  transform: rotate(4deg);
  transform-origin: 50% 55%;
  transition: transform 260ms cubic-bezier(0.2, 0, 0, 1), filter 260ms ease;
}

.mega-connect::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.14);
  filter: blur(1px);
}

.mega-connect:hover {
  filter: brightness(1.06);
  transform: rotate(2deg) translateY(-6px);
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(30px, 5vw, 62px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--soft);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 6px 22px rgba(0, 0, 0, 0.08);
  font-weight: 800;
  text-decoration: none;
  transition-property: scale, background-color, color, box-shadow;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}

.button:hover {
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.12),
    0 10px 30px rgba(0, 0, 0, 0.12);
}

.button:active {
  scale: 0.96;
}

.button-primary {
  color: var(--yellow);
  background: var(--ink);
}

.button-primary:hover {
  color: var(--yellow);
  background: #191919;
}

.footer-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px var(--gutter);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.footer-line p {
  margin: 0;
}

.project-page {
  background: #fff;
}

.project-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 120px var(--gutter) clamp(56px, 8vw, 120px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.project-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  margin-top: clamp(42px, 7vw, 110px);
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 12px;
}

.project-hero h1 {
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(64px, 10.5vw, 165px);
  line-height: 0.78;
  font-weight: 950;
  text-transform: uppercase;
}

.project-intro p {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.case-summary {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 44px);
  padding: 0 var(--gutter) clamp(42px, 7vw, 96px);
}

.case-summary div {
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}

.case-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.case-summary p {
  margin: 14px 0 0;
  color: #222;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 650;
  line-height: 1.25;
}

.gallery-intro {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(24px, 4vw, 56px);
}

.gallery-intro h2 {
  max-width: 980px;
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 86px);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.meta-list {
  display: grid;
  gap: 10px;
  margin: 32px 0 0;
}

.meta-list div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.meta-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.meta-list dd {
  margin: 0;
  font-weight: 700;
}

.case-gallery {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(80px, 11vw, 170px);
}

.case-image {
  margin: 0 0 clamp(18px, 3vw, 48px);
}

.case-image img {
  border-radius: 24px;
  background: var(--soft);
  box-shadow: var(--shadow-card);
}

.project-next {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(42px, 6vw, 92px);
}

.project-next a {
  display: block;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 112px);
  line-height: 0.85;
  font-weight: 950;
  letter-spacing: -0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.project-contact {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 var(--gutter) clamp(80px, 10vw, 150px);
}

.project-contact p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(22px, 2.6vw, 42px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  transition-property: opacity, transform, filter;
  transition-duration: 520ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 980px) {
  .capsule-nav {
    top: 12px;
    width: calc(100% - 24px);
    justify-content: space-between;
  }

  .capsule-nav nav a:not(:first-child) {
    display: none;
  }

  .capsule-nav a {
    font-size: 14px;
    padding: 0 12px;
  }

  .hire-strip {
    grid-template-columns: 1fr;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hire-strip p,
  .hire-strip p:nth-child(2),
  .hire-strip p:last-child {
    text-align: left;
  }

  .sun-field {
    height: 100%;
    min-height: 100%;
  }

  .mega-name {
    font-size: clamp(72px, 12.6vw, 124px);
    letter-spacing: -0.07em;
  }

  .story-grid,
  .process-strip,
  .about-grid,
  .case-summary,
  .project-contact,
  .project-hero-grid {
    grid-template-columns: 1fr;
  }

  .project-contact {
    display: grid;
    justify-items: start;
  }

  .work-masonry {
    grid-template-columns: 1fr;
  }

  .work-large,
  .work-small,
  .work-medium,
  .proof-panel {
    grid-column: 1;
  }

  .work-offset,
  .proof-panel {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .sun-hero {
    min-height: 100svh;
  }

  .hero-content {
    min-height: 100svh;
    padding-bottom: 24px;
  }

  .hero-intro {
    max-width: 92vw;
    margin-bottom: 28px;
    font-size: clamp(20px, 5.4vw, 28px);
  }

  .mega-name {
    flex-direction: column;
    align-items: flex-start;
    font-size: clamp(62px, 18vw, 104px);
    letter-spacing: -0.078em;
    white-space: normal;
  }

  .word-second {
    margin-left: 0;
  }

  .letter-sticker {
    width: clamp(104px, 34vw, 150px);
    bottom: 0.22em;
  }

  .nav-cta {
    font-size: 0 !important;
    width: 64px;
  }

  .nav-cta::after {
    content: "CV";
    font-size: 14px;
  }

  .section-title h2,
  .contact-mega {
    font-size: clamp(48px, 14vw, 76px);
  }

  .connect-note {
    max-width: 270px;
    margin-bottom: 30px;
    font-size: 24px;
  }

  .mega-connect {
    width: min(94vw, 420px);
    min-height: clamp(92px, 26vw, 128px);
    font-size: clamp(52px, 16vw, 82px);
    letter-spacing: -0.05em;
    box-shadow:
      inset 0 4px 0 rgba(255, 255, 255, 0.08),
      inset 0 -6px 0 rgba(0, 0, 0, 0.6),
      0 7px 0 #000,
      0 14px 0 rgba(0, 0, 0, 0.14),
      0 30px 54px rgba(0, 0, 0, 0.2);
  }

  .story-lead {
    font-size: clamp(34px, 11vw, 56px);
  }

  .process-strip div {
    min-height: 220px;
  }

  .contact-actions,
  .footer-line {
    display: grid;
  }

  .about-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .button {
    width: 100%;
  }

  .project-hero {
    padding-top: 96px;
  }

  .project-hero h1 {
    font-size: clamp(50px, 15.5vw, 96px);
    letter-spacing: -0.07em;
  }

  .meta-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .work-card img,
  .capsule-nav a,
  .button,
  .letter,
  .letter-sticker,
  .mega-connect {
    transition-duration: 1ms;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
