:root {
  color-scheme: light;
  --paper: #f3efe6;
  --paper-deep: #e9e2d6;
  --ink: #152a38;
  --ink-soft: #53636a;
  --sage: #6d8d81;
  --sage-light: #aec2b8;
  --clay: #c96f52;
  --line: rgba(21, 42, 56, 0.16);
  --max-width: 1320px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 84% 18%, rgba(109, 141, 129, .11), transparent 28rem),
    radial-gradient(circle at 8% 78%, rgba(201, 111, 82, .07), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--ink);
  color: var(--paper);
  padding: .75rem 1rem;
  border-radius: 999px;
}

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

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 90;
  pointer-events: none;
}

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

.site-header {
  width: min(calc(100% - 3rem), var(--max-width));
  min-height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark { width: 38px; height: 38px; overflow: visible; }
.brand-mark path:first-child { fill: none; stroke: var(--ink); stroke-width: 3.4; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark .brand-mark-accent { fill: none; stroke: var(--sage); stroke-width: 1.8; stroke-linecap: round; }
.brand-mark circle { fill: var(--paper); stroke: var(--clay); stroke-width: 1.8; }
.brand-wordmark { width: 170px; height: 42px; overflow: visible; }
.brand-hand { fill: none; stroke: var(--ink); stroke-width: 8; stroke-linecap: round; stroke-linejoin: round; }
.brand-studio { fill: var(--sage); font: 700 12px/1 "Aptos", "Inter", "Segoe UI", Arial, sans-serif; letter-spacing: 3px; }

.main-nav { display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 3rem); margin-left: auto; margin-right: clamp(1.5rem, 4vw, 4rem); }
.main-nav a { position: relative; color: var(--ink-soft); text-decoration: none; font-size: .86rem; font-weight: 700; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.35rem; height: 2px; background: var(--clay); transition: right .35s var(--ease); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }

.header-link {
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  padding: .65rem 0;
  border-bottom: 1px solid var(--ink);
}

.header-link span, .button span { display: inline-block; transition: transform .3s var(--ease); }
.header-link:hover span, .button:hover span { transform: translate(3px, -3px); }

.hero {
  width: min(calc(100% - 3rem), var(--max-width));
  min-height: calc(100vh - 100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
  padding: 4rem 0 5rem;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1.7rem;
  color: var(--sage);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.eyebrow span { width: 33px; height: 2px; background: var(--clay); }

h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(4rem, 7vw, 7.4rem);
  font-weight: 760;
  line-height: .88;
  letter-spacing: -.075em;
}

.rough {
  position: relative;
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--ink);
}

.rough::after {
  content: "";
  position: absolute;
  left: 2%;
  right: -2%;
  bottom: -.13em;
  height: .18em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 40'%3E%3Cpath d='M5 23C110 4 235 34 494 11' fill='none' stroke='%23c96f52' stroke-width='6' stroke-linecap='round'/%3E%3Cpath d='M12 31C139 15 318 30 484 17' fill='none' stroke='%23c96f52' stroke-opacity='.38' stroke-width='2'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  transform-origin: left;
  animation: underline-in 1.3s var(--ease) .4s both;
}

.hero-intro {
  max-width: 610px;
  margin: 2.2rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.6;
}

.hero-actions { display: flex; align-items: center; gap: 1.7rem; margin-top: 2.3rem; flex-wrap: wrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 54px;
  padding: 0 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
}

.button-primary { background: var(--ink); color: var(--paper); box-shadow: 0 14px 28px rgba(21, 42, 56, .13); }
.button-primary:hover { background: #213d4d; }
.text-link { font-weight: 700; text-underline-offset: .35rem; text-decoration-color: rgba(21, 42, 56, .3); }

.hero-visual {
  position: relative;
  width: min(100%, 660px);
  aspect-ratio: 1.06;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 46% 54% 48% 52% / 52% 43% 57% 48%;
  background: rgba(255, 255, 255, .22);
  box-shadow: inset 0 0 80px rgba(255,255,255,.35);
}

.system-sketch { width: 100%; height: 100%; overflow: visible; }
.system-sketch { transition: transform .7s var(--ease); }
.paper-grid path { stroke: var(--ink); stroke-width: 1; opacity: .055; }
.orbit, .wire, .pencil-loop, .scribble { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.orbit { stroke: var(--sage); opacity: .32; stroke-width: 2; stroke-dasharray: 5 14; animation: dash-flow 18s linear infinite; }
.orbit-two { stroke: var(--clay); opacity: .22; animation-direction: reverse; animation-duration: 23s; }
.wire { stroke: var(--ink); stroke-width: 2.2; opacity: .24; stroke-dasharray: 610; stroke-dashoffset: 610; animation: line-draw 2.2s var(--ease) .65s forwards; }
.wire-b { animation-delay: .95s; }
.hero-mark { transform-origin: 330px 305px; animation: gentle-breathe 7s ease-in-out infinite; }
.hero-mark-main { fill: var(--paper); stroke: var(--ink); stroke-width: 15; stroke-linecap: round; stroke-linejoin: round; }
.hero-mark-accent { fill: none; stroke: var(--sage); stroke-width: 6; stroke-linecap: round; }
.hero-mark circle { fill: var(--paper); stroke: var(--clay); stroke-width: 6; animation: node-pulse 4.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.pencil-loop { stroke: var(--clay); stroke-width: 2.3; opacity: .55; stroke-dasharray: 7 13; animation: dash-flow 11s linear infinite; }
.nodes circle { fill: var(--clay); opacity: .72; animation: node-pulse 5.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.nodes circle:nth-child(2n) { animation-delay: -2.2s; }
.scribble { stroke: var(--sage); stroke-width: 3; opacity: .42; stroke-dasharray: 540; stroke-dashoffset: 540; animation: line-draw 1.8s var(--ease) 1.2s forwards; }

.sketch-note {
  position: absolute;
  z-index: 2;
  margin: 0;
  color: var(--sage);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: .78rem;
  transform: rotate(-5deg);
}

.note-one { top: 9%; left: -4%; }
.note-two { right: -2%; bottom: 18%; transform: rotate(4deg); }

.visual-caption {
  position: absolute;
  right: 8%;
  bottom: 5%;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.visual-caption > span { color: var(--clay); }
.visual-caption p { display: flex; align-items: center; gap: .6rem; margin: 0; }
.visual-caption i { width: 15px; height: 1px; background: var(--sage); }

.section-rule {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-rule span { color: var(--clay); }
.section-rule p { margin: 0; }

.founder-section,
.studio-section,
.work-section,
.capabilities-section,
.method-section {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(6rem, 12vw, 11rem) 0;
}

.founder-section { padding-bottom: clamp(4rem, 8vw, 7rem); }

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(440px, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding-top: clamp(3.5rem, 7vw, 6.5rem);
}

.founder-portrait {
  position: relative;
  isolation: isolate;
  margin: 0;
  max-width: 520px;
  aspect-ratio: .9;
}

.founder-portrait::before,
.founder-portrait::after {
  content: "";
  position: absolute;
  inset: -13px 10px 8px -11px;
  z-index: -1;
  border: 1.5px solid var(--clay);
  border-radius: 45% 55% 49% 51% / 52% 43% 57% 48%;
  transform: rotate(-2deg);
}

.founder-portrait::after {
  inset: 12px -14px -12px 14px;
  border-color: var(--sage);
  border-style: dashed;
  transform: rotate(2.4deg);
}

.founder-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  border-radius: 44% 56% 48% 52% / 51% 44% 56% 49%;
  filter: saturate(.88) contrast(.98);
}

.founder-portrait figcaption {
  position: absolute;
  right: -1.2rem;
  bottom: 2.2rem;
  padding: .55rem .8rem;
  background: var(--paper);
  color: var(--sage);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: .78rem;
  transform: rotate(-4deg);
  box-shadow: 0 8px 24px rgba(21, 42, 56, .09);
}

.founder-copy h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.founder-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.4rem 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(180px, .42fr) minmax(320px, 1.58fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding-top: clamp(3.5rem, 7vw, 6.5rem);
}

.studio-grid > .eyebrow { align-self: start; margin-top: .65rem; }

.capabilities-heading h2,
.method-intro h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(3.1rem, 6.2vw, 6.3rem);
  line-height: .95;
  letter-spacing: -.065em;
}

.contact-section h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px currentColor;
}

.studio-copy { align-self: end; max-width: 850px; color: var(--ink-soft); }
.studio-copy p { margin: 1.3rem 0 0; font-size: 1.08rem; line-height: 1.75; }
.studio-copy .lead { margin-top: 0; color: var(--ink); font-size: clamp(2rem, 4.2vw, 4.5rem); line-height: 1.08; letter-spacing: -.05em; }
.studio-copy p:not(.lead) { max-width: 650px; }

.hand-signature {
  position: relative;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 4rem) 4%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hand-signature::before {
  content: "hand-drawn / human-made";
  position: absolute;
  top: 1.4rem;
  right: 2%;
  color: var(--sage);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: .78rem;
  transform: rotate(3deg);
}

.hand-signature svg { width: 100%; overflow: visible; }
.hand-signature g { fill: none; stroke: var(--ink); stroke-width: 8; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 690; stroke-dashoffset: 690; animation: signature-draw 2.5s var(--ease) .4s forwards paused; }
.hand-signature .signature-echo { fill: none; stroke: var(--clay); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 7 15; animation: dash-flow 16s linear infinite; }
.studio-section.is-visible .hand-signature g { animation-play-state: running; }

.work-section { padding-top: 2rem; }

.work-heading {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(420px, 1.05fr) minmax(260px, .4fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.work-heading .eyebrow { align-self: start; margin-top: .55rem; }
.work-heading h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.5rem); line-height: .98; letter-spacing: -.06em; }
.work-heading > p:last-child { margin: 0 0 .45rem; color: var(--ink-soft); font-size: 1.06rem; line-height: 1.7; }

.case-study {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line);
}

.case-study:last-child { border-bottom: 1px solid var(--line); }
.case-study-reverse { grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); }
.case-study-reverse .case-visual { order: 2; }
.case-study-reverse .case-copy { order: 1; }

.case-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 42, 56, .18);
  background: #fff;
  box-shadow: 0 24px 55px rgba(21, 42, 56, .12);
  transform: rotate(-.45deg);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}

.case-study-reverse .case-visual { transform: rotate(.45deg); }
.case-study:hover .case-visual { transform: rotate(0) translateY(-4px); box-shadow: 0 30px 70px rgba(21, 42, 56, .16); }

.case-window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(21, 42, 56, .12);
  background: rgba(243, 239, 230, .76);
}

.case-window-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); }
.case-window-bar i:nth-child(2) { background: #d8b466; }
.case-window-bar i:nth-child(3) { background: var(--sage); }
.case-window-bar span { margin-left: auto; color: var(--ink-soft); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.case-visual img { display: block; width: 100%; height: auto; }

.case-copy { position: relative; padding: 1rem 0; }
.case-number { display: block; margin-bottom: 2.2rem; color: var(--clay); font-size: .75rem; font-weight: 800; letter-spacing: .16em; }
.case-kicker { margin: 0 0 .7rem; color: var(--sage); font-size: .73rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.case-copy h3 { margin: 0; font-size: clamp(3rem, 5.5vw, 5.8rem); line-height: .9; letter-spacing: -.065em; }
.case-copy > p:not(.case-kicker) { max-width: 530px; margin: 1.6rem 0 0; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.72; }

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.case-tags li {
  padding: .55rem .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 750;
}

.capabilities-section { padding-top: 2rem; }
.capabilities-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 4rem; align-items: end; padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.capabilities-heading p { max-width: 430px; margin: 0 0 .7rem; color: var(--ink-soft); font-size: 1.14rem; line-height: 1.65; }

.capability-list { border-top: 1px solid var(--line); }
.capability {
  position: relative;
  display: grid;
  grid-template-columns: 70px 110px minmax(220px, .8fr) minmax(280px, 1.2fr);
  align-items: center;
  gap: clamp(1.3rem, 3vw, 3rem);
  min-height: 190px;
  border-bottom: 1px solid var(--line);
  transition: background .45s var(--ease), padding .45s var(--ease);
}

.capability::before { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.25); transform: scaleY(0); transform-origin: bottom; transition: transform .45s var(--ease); z-index: -1; }
.capability:hover { padding-inline: 1.4rem; }
.capability:hover::before { transform: scaleY(1); }
.capability-number { color: var(--clay); font-size: .75rem; font-weight: 800; letter-spacing: .13em; }
.capability-icon svg { width: 82px; overflow: visible; }
.capability-icon path { fill: none; stroke: var(--sage); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.capability-icon circle { fill: var(--paper); stroke: var(--clay); stroke-width: 3; }
.capability h3 { margin: 0; font-size: clamp(1.55rem, 2.5vw, 2.35rem); letter-spacing: -.04em; }
.capability > p { max-width: 460px; margin: 0; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.65; }

.method-section { padding-top: 2rem; }
.method-intro { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.method-map { position: relative; padding-top: 2rem; }
.method-line { position: absolute; inset: 0 0 auto; width: 100%; height: 120px; overflow: visible; }
.method-line path { fill: none; stroke: var(--clay); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 1100; stroke-dashoffset: 1100; }
.method-map.is-visible .method-line path { animation: method-draw 2.4s var(--ease) .3s forwards; }
.method-map ol { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 0; padding: 0; list-style: none; }
.method-map li { min-height: 260px; padding: 2.1rem; border: 1px solid var(--line); background: rgba(243, 239, 230, .88); }
.method-map li:nth-child(even) { margin-top: 2.2rem; }
.method-map li > span { display: block; margin-bottom: 4.4rem; color: var(--clay); font-size: .74rem; font-weight: 800; }
.method-map h3 { margin: 0; font-size: 1.7rem; letter-spacing: -.03em; }
.method-map p { margin: .8rem 0 0; color: var(--ink-soft); line-height: 1.65; }

.manifesto-section {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  display: grid;
  place-content: center;
  justify-items: center;
  overflow: hidden;
  padding: 8rem max(1.5rem, calc((100vw - var(--max-width)) / 2));
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.manifesto-section > p { margin: 0 0 2rem; color: var(--sage-light); font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.manifesto-section h2 { max-width: 1050px; margin: 0; font-size: clamp(2.7rem, 5.4vw, 5.6rem); line-height: 1.02; letter-spacing: -.055em; }
.manifesto-orbit { position: absolute; inset: 50% auto auto 50%; width: min(80vw, 850px); aspect-ratio: 1; transform: translate(-50%, -50%); z-index: -1; opacity: .3; }
.manifesto-orbit span { position: absolute; inset: 10%; border: 1px dashed var(--sage-light); border-radius: 48% 52% 45% 55% / 52% 46% 54% 48%; animation: slow-spin 46s linear infinite; }
.manifesto-orbit span:nth-child(2) { inset: 24%; border-color: var(--clay); animation-direction: reverse; animation-duration: 34s; }
.manifesto-orbit span:nth-child(3) { inset: 38%; animation-duration: 25s; }

.contact-section {
  position: relative;
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(7rem, 13vw, 12rem) 0;
  overflow: hidden;
}

.contact-section h2 { max-width: 900px; }
.contact-section h2 em { -webkit-text-stroke-color: var(--clay); }
.contact-section > p:not(.eyebrow) { max-width: 620px; margin: 2rem 0 2.3rem; color: var(--ink-soft); font-size: 1.18rem; line-height: 1.7; }
.button-light { border: 1px solid var(--ink); color: var(--ink); transition: color .35s var(--ease), background .35s var(--ease); }
.button-light:hover { background: var(--ink); color: var(--paper); }
.contact-sketch { position: absolute; width: min(38vw, 460px); right: 0; bottom: 15%; opacity: .45; }
.contact-sketch path { fill: none; stroke: var(--sage); stroke-width: 2; stroke-dasharray: 7 13; animation: dash-flow 16s linear infinite; }
.contact-sketch circle { fill: var(--paper); stroke: var(--clay); stroke-width: 3; }

.site-footer {
  width: min(calc(100% - 3rem), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0 2.4rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .76rem;
  letter-spacing: .05em;
}
.site-footer p { margin: 0; }
.site-footer p:last-child { text-align: right; }
.footer-brand { color: var(--ink); font-weight: 800; letter-spacing: .16em; text-decoration: none; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes underline-in { from { transform: scaleX(0); opacity: 0; } to { transform: scaleX(1); opacity: 1; } }
@keyframes line-draw { to { stroke-dashoffset: 0; } }
@keyframes dash-flow { to { stroke-dashoffset: -380; } }
@keyframes gentle-breathe { 0%, 100% { transform: scale(1) rotate(-.4deg); } 50% { transform: scale(1.018) rotate(.4deg); } }
@keyframes node-pulse { 0%, 100% { transform: scale(1); opacity: .72; } 50% { transform: scale(1.22); opacity: 1; } }
@keyframes signature-draw { to { stroke-dashoffset: 0; } }
@keyframes method-draw { to { stroke-dashoffset: 0; } }
@keyframes slow-spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 5rem; gap: 4rem; }
  .hero-visual { width: min(86vw, 650px); justify-self: center; }
  .main-nav { display: none; }
  .founder-grid, .studio-grid, .capabilities-heading, .work-heading { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-portrait { width: min(82vw, 480px); justify-self: center; }
  .studio-copy { max-width: 680px; }
  .case-study, .case-study-reverse { grid-template-columns: 1fr; }
  .case-study-reverse .case-visual, .case-study-reverse .case-copy { order: initial; }
  .case-visual { width: 100%; max-width: 820px; }
  .case-copy { max-width: 700px; }
  .capability { grid-template-columns: 50px 90px 1fr; padding: 2rem 0; }
  .capability > p { grid-column: 3; }
  .method-map ol { grid-template-columns: repeat(2, 1fr); }
  .method-map li:nth-child(even) { margin-top: 0; }
  .method-line { display: none; }
}

@media (max-width: 640px) {
  .site-header, .hero { width: min(calc(100% - 2rem), var(--max-width)); }
  .site-header { min-height: 82px; }
  .header-link { font-size: .8rem; }
  .brand-wordmark { width: 148px; }
  .hero { padding-top: 3.5rem; }
  h1 { font-size: clamp(3.4rem, 17vw, 5rem); }
  .hero-intro { font-size: 1.05rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.2rem; }
  .button { width: 100%; }
  .hero-visual { width: 100%; }
  .note-one { left: 2%; }
  .note-two { right: 1%; }
  .visual-caption { right: 4%; font-size: .58rem; }
  .founder-section, .studio-section, .work-section, .capabilities-section, .method-section, .contact-section, .site-footer { width: min(calc(100% - 2rem), var(--max-width)); }
  .founder-section, .studio-section, .work-section, .capabilities-section, .method-section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .section-rule { grid-template-columns: 38px 1fr; }
  .founder-portrait figcaption { right: 0; }
  .hand-signature { padding-inline: 0; }
  .hand-signature::before { top: .7rem; }
  .capability { grid-template-columns: 38px 68px 1fr; gap: 1rem; }
  .capability-icon svg { width: 58px; }
  .capability > p { grid-column: 1 / -1; padding-left: 106px; }
  .method-map ol { grid-template-columns: 1fr; }
  .method-map li { min-height: auto; padding: 1.6rem; }
  .method-map li > span { margin-bottom: 2.4rem; }
  .work-heading h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .case-study { padding: 3.5rem 0; gap: 2rem; }
  .case-copy h3 { font-size: clamp(3.2rem, 16vw, 4.6rem); }
  .case-copy > p:not(.case-kicker) { font-size: 1rem; }
  .case-window-bar span { display: none; }
  .manifesto-section { min-height: 620px; }
  .contact-sketch { width: 55vw; right: -18%; opacity: .25; }
  .site-footer { grid-template-columns: 1fr; gap: .7rem; }
  .site-footer p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .wire, .scribble { stroke-dashoffset: 0; }
  .hand-signature g, .method-line path { stroke-dashoffset: 0; }
  .reveal { opacity: 1; transform: none; }
}
