:root {
  --ink: #080a0b;
  --ink-soft: #111416;
  --papyrus: #eee8dc;
  --paper: #f5f0e7;
  --gold: #b99a55;
  --gold-bright: #d0b572;
  --violet: #5a3e8c;
  --muted: #8d8b84;
  --line: rgba(185, 154, 85, 0.25);
  --sans: "DM Sans", "Segoe UI", sans-serif;
  --display: "Italiana", Georgia, serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  padding: 0 clamp(24px, 4vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--papyrus);
  border-bottom: 1px solid rgba(238, 232, 220, 0.12);
  transition: background 0.35s ease, height 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(8, 10, 11, 0.88);
  backdrop-filter: blur(16px);
}

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

.brand-wordmark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}

.header-emblem {
  position: relative;
  justify-self: center;
  display: grid;
  place-items: center;
  color: var(--papyrus);
}

.header-emblem::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(185, 154, 85, 0.22);
  transform: rotate(45deg) scale(0.72);
  transition: transform .35s ease, border-color .35s ease;
}

.header-emblem:hover::before {
  border-color: rgba(208, 181, 114, 0.65);
  transform: rotate(45deg) scale(0.82);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 52px);
}

.brand-mark {
  width: 42px;
  height: 42px;
}

.brand-emblem-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-emblem-image {
  width: 48px;
  height: 48px;
}

.mark-frame,
.mark-bird,
.mark-signal {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.mark-bird {
  fill: currentColor;
  stroke-width: 0;
}

.mark-signal {
  fill: var(--violet);
  stroke: var(--gold);
  stroke-width: 1;
}

.brand-name {
  font-size: 14px;
  letter-spacing: 0.24em;
  font-weight: 600;
}

.brand-name sup {
  color: var(--gold-bright);
  font-size: 9px;
  margin-left: 2px;
  vertical-align: super;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 34px);
  font-size: 12px;
  letter-spacing: 0.09em;
}

.desktop-nav a,
.header-cta,
.footer-meta a {
  transition: color 0.25s ease;
}

.desktop-nav a:hover,
.header-cta:hover,
.footer-meta a:hover {
  color: var(--gold-bright);
}

.header-cta {
  justify-self: end;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  font-size: 12px;
  letter-spacing: 0.07em;
}

.header-cta span {
  color: var(--gold-bright);
  margin-left: 8px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  max-height: 1050px;
  overflow: hidden;
  color: var(--papyrus);
  background: var(--ink);
}

.hero-art,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art {
  object-fit: cover;
  object-position: center;
  animation: heroReveal 1.5s cubic-bezier(.2,.75,.2,1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8,10,11,.92) 0%, rgba(8,10,11,.57) 39%, rgba(8,10,11,.05) 68%),
    linear-gradient(0deg, rgba(8,10,11,.75) 0%, transparent 32%);
}

@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, 48vw);
  padding-top: clamp(180px, 22vh, 250px);
  margin-left: clamp(24px, 8vw, 144px);
}

.eyebrow {
  margin: 0 0 34px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow span {
  padding: 0 8px;
  color: var(--violet);
}

.hero h1,
.display-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(58px, 6.5vw, 102px);
}

.hero h1 em {
  display: block;
}

.hero h1 em,
.display-title em {
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 400;
}

.hero-intro {
  max-width: 560px;
  margin: 38px 0 0;
  color: rgba(238, 232, 220, 0.72);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 300;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid var(--gold);
  font-size: 12px;
  letter-spacing: 0.06em;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  color: var(--papyrus);
  background: var(--violet);
  border-color: var(--violet);
}

.button span {
  margin-left: 28px;
}

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(238, 232, 220, 0.35);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.text-link span {
  margin-left: 12px;
  color: var(--gold-bright);
}

.hero-meta {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 72px);
  bottom: 54px;
  display: flex;
  gap: clamp(30px, 4vw, 70px);
}

.hero-meta > div {
  min-width: 150px;
}

.meta-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-meta strong {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 4vw, 72px);
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(238, 232, 220, 0.55);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: left bottom;
}

.scroll-cue span {
  display: block;
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.section {
  padding: clamp(90px, 11vw, 180px) clamp(24px, 8vw, 144px);
}

.section-index {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-index > span {
  width: 38px;
  height: 1px;
  background: var(--gold);
}

.section-index.light {
  color: rgba(238, 232, 220, 0.5);
}

.thesis {
  background: var(--paper);
}

.thesis-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.65fr;
  align-items: end;
  gap: clamp(50px, 8vw, 140px);
  margin-top: 64px;
}

.display-title {
  font-size: clamp(50px, 6vw, 96px);
}

.thesis-copy {
  padding-bottom: 8px;
  color: #54534e;
  font-size: 15px;
  line-height: 1.8;
}

.thesis-copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.5;
}

.principles-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 110px;
  padding: 28px 0;
  border-top: 1px solid rgba(8,10,11,.15);
  border-bottom: 1px solid rgba(8,10,11,.15);
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.principles-strip i {
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  background: var(--violet);
}

.capabilities {
  background: #e8e0d2;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 50px;
}

.section-heading > p {
  justify-self: end;
  max-width: 490px;
  margin: 0;
  color: #5b5851;
  font-size: 18px;
  line-height: 1.7;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid rgba(8,10,11,.2);
  border-bottom: 1px solid rgba(8,10,11,.2);
}

.capability-card {
  position: relative;
  min-height: 610px;
  padding: 28px clamp(24px, 2.5vw, 46px) 45px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid rgba(8,10,11,.2);
  transition: color .45s ease, background .45s ease;
}

.capability-card:last-child {
  border-right: 1px solid rgba(8,10,11,.2);
}

.capability-card:hover {
  color: var(--papyrus);
  background: var(--ink-soft);
}

.capability-number {
  margin-bottom: 80px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 16px;
}

.card-kicker {
  margin: 0 0 20px;
  color: var(--violet);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.capability-card:hover .card-kicker {
  color: var(--gold-bright);
}

.capability-card h3 {
  margin: 0 0 32px;
  font-family: var(--display);
  font-size: clamp(36px, 3.2vw, 55px);
  font-weight: 400;
  line-height: 1.05;
}

.capability-card > p {
  min-height: 105px;
  margin: 0;
  color: #69665f;
  font-size: 14px;
  line-height: 1.75;
  transition: color .45s ease;
}

.capability-card:hover > p {
  color: rgba(238,232,220,.67);
}

.capability-card ul {
  list-style: none;
  margin: auto 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(8,10,11,.17);
  color: #55524c;
  font-size: 11px;
  letter-spacing: .06em;
  transition: color .45s ease, border-color .45s ease;
}

.capability-card:hover ul {
  color: rgba(238,232,220,.8);
  border-color: rgba(238,232,220,.15);
}

.capability-card li + li {
  margin-top: 10px;
}

.capability-card li::before {
  content: "◇";
  margin-right: 10px;
  color: var(--gold);
}

.card-glyph {
  position: absolute;
  top: 23px;
  right: 28px;
  color: rgba(8,10,11,.09);
  font-size: 70px;
  line-height: 1;
  transition: color .45s ease, transform .6s ease;
}

.capability-card:hover .card-glyph {
  color: rgba(185,154,85,.18);
  transform: scale(1.12) rotate(3deg);
}

.approach {
  color: var(--papyrus);
  background: var(--ink);
}

.approach-intro {
  display: grid;
  grid-template-columns: .55fr 1.25fr .6fr;
  gap: clamp(35px, 5vw, 90px);
  align-items: start;
}

.approach-intro .display-title {
  font-size: clamp(52px, 5.3vw, 86px);
}

.approach-intro > p {
  margin: 11px 0 0;
  color: rgba(238,232,220,.58);
  font-size: 14px;
  line-height: 1.8;
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 6vw, 100px);
  margin-top: 130px;
}

.process-line {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(238,232,220,.13);
}

.process-line span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--violet));
  transition: width 1.8s cubic-bezier(.2,.7,.2,1);
}

.process.is-visible .process-line span {
  width: 100%;
}

.process-step {
  position: relative;
  padding-top: 42px;
}

.process-dot {
  position: absolute;
  top: 3px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--ink);
  outline: 1px solid var(--gold);
  background: var(--gold);
  transform: rotate(45deg);
}

.process-meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--gold-bright);
  font-family: var(--display);
}

.process-meta span {
  font-size: 22px;
}

.process-meta small {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.process-step h3 {
  margin: 46px 0 20px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
}

.process-step p {
  max-width: 330px;
  margin: 0;
  color: rgba(238,232,220,.55);
  font-size: 13px;
  line-height: 1.75;
}

.perspective {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--ink);
}

.market {
  color: var(--papyrus);
  background: #11100f;
}

.market-intro {
  display: grid;
  grid-template-columns: .5fr 1.15fr .65fr;
  align-items: start;
  gap: clamp(36px, 5vw, 90px);
}

.market-intro .display-title {
  font-size: clamp(52px, 5vw, 82px);
}

.market-intro > p {
  margin: 10px 0 0;
  color: rgba(238,232,220,.56);
  font-size: 14px;
  line-height: 1.8;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 95px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.market-card {
  min-height: 475px;
  padding: 38px clamp(22px, 2vw, 36px) 32px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  transition: background .35s ease;
}

.market-card:last-child {
  border-right: 1px solid var(--line);
}

.market-card:hover {
  background: rgba(185,154,85,.055);
}

.market-stat {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: clamp(38px, 3.4vw, 56px);
}

.market-card h3 {
  margin: 75px 0 22px;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.18;
}

.market-card p {
  margin: 0;
  color: rgba(238,232,220,.56);
  font-size: 12px;
  line-height: 1.75;
}

.market-card a {
  width: max-content;
  margin-top: auto;
  padding-top: 28px;
  color: var(--gold);
  border-bottom: 1px solid rgba(185,154,85,.35);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.founder {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: center;
  gap: clamp(60px, 10vw, 170px);
  background: var(--paper);
}

.founder-copy .display-title {
  margin-top: 60px;
}

.founder-copy > p {
  max-width: 650px;
  margin: 40px 0 35px;
  color: #5c5952;
  font-size: 16px;
  line-height: 1.8;
}

.dark-link {
  color: var(--ink);
  border-color: rgba(8,10,11,.3);
}

.founder-seal {
  position: relative;
  width: min(360px, 30vw);
  aspect-ratio: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--ink);
  border: 1px solid rgba(185,154,85,.55);
  border-radius: 50%;
  font-family: var(--display);
  font-size: clamp(55px, 6vw, 90px);
}

.founder-seal::before,
.founder-seal::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(90,62,140,.25);
  border-radius: 50%;
}

.founder-seal::after {
  inset: 20%;
  border-color: rgba(185,154,85,.3);
}

.founder-seal i {
  width: 10px;
  height: 10px;
  background: var(--violet);
  transform: rotate(45deg);
}

.founder-seal small {
  position: absolute;
  bottom: 14%;
  left: 50%;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.perspective-panel {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  color: var(--papyrus);
  background: #141210;
  border: 1px solid var(--line);
}

.insight-copy {
  padding: clamp(50px, 6vw, 95px);
  border-right: 1px solid var(--line);
}

.insight-copy blockquote {
  max-width: 650px;
  margin: 105px 0 45px;
  font-family: var(--display);
  font-size: clamp(33px, 3.5vw, 56px);
  line-height: 1.22;
}

.insight-copy > p {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .17em;
}

.signal-visual {
  position: relative;
  min-height: 620px;
  background:
    linear-gradient(rgba(185,154,85,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185,154,85,.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 35%, rgba(90,62,140,.25), transparent 32%);
  background-size: 52px 52px, 52px 52px, auto;
}

.sun-disc {
  position: absolute;
  top: 78px;
  left: 50%;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(185,154,85,.6);
  border-radius: 50%;
  transform: translateX(-50%);
}

.sun-disc::before,
.sun-disc::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 135px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.sun-disc::before { right: 100%; }
.sun-disc::after { left: 100%; transform: rotate(180deg); }

.sun-disc span {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: rgba(90,62,140,.4);
  box-shadow: 0 0 60px rgba(90,62,140,.45);
}

.signal-visual svg {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 88px;
  width: 84%;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.8;
  overflow: visible;
}

.signal-visual .ghost-line {
  stroke: rgba(238,232,220,.16);
  stroke-dasharray: 4 8;
}

.signal-label {
  position: absolute;
  color: rgba(238,232,220,.55);
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.signal-label span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 14px;
}

.label-one { left: 8%; bottom: 39px; }
.label-two { left: 43%; bottom: 173px; }
.label-three { right: 7%; top: 211px; }

.contact {
  text-align: center;
  background: var(--paper);
}

.contact-ornament {
  width: min(620px, 80vw);
  margin: 0 auto 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-ornament span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.contact-ornament span:last-child {
  transform: rotate(180deg);
}

.contact-ornament i {
  width: 8px;
  height: 8px;
  margin: 0 20px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.contact-ornament b {
  width: 27px;
  height: 27px;
  border: 1px solid var(--violet);
  border-radius: 50%;
}

.contact .eyebrow {
  margin-bottom: 36px;
  color: var(--violet);
}

.contact .button {
  margin-top: 58px;
}

.site-footer {
  padding: 70px clamp(24px, 8vw, 144px) 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  color: var(--papyrus);
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-brand {
  grid-row: 1 / 3;
}

.site-footer > p {
  justify-self: end;
  max-width: 360px;
  margin: 0;
  color: rgba(238,232,220,.48);
  font-family: var(--display);
  font-size: 22px;
  text-align: right;
}

.footer-meta {
  grid-column: 1 / -1;
  margin-top: 78px;
  padding-top: 22px;
  display: flex;
  gap: 28px;
  color: rgba(238,232,220,.38);
  border-top: 1px solid rgba(238,232,220,.1);
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.footer-meta span:first-child {
  margin-right: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .85s ease, transform .85s cubic-bezier(.2,.7,.2,1);
}

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

.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto 1fr; }
  .header-actions { display: none; }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: inherit;
    background: transparent;
    border: 1px solid rgba(238,232,220,.24);
    justify-self: end;
    grid-column: 3;
  }

  .menu-toggle span {
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: transform .25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    z-index: 40;
    inset: 0;
    padding: 130px 28px 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--papyrus);
    background: rgba(8,10,11,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mobile-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(238,232,220,.15);
    font-family: var(--display);
    font-size: 30px;
  }

  .hero-copy { width: 62vw; }
  .hero-art { object-position: 59% center; }

  .thesis-grid,
  .approach-intro,
  .market-intro {
    grid-template-columns: 1fr;
  }

  .thesis-copy { max-width: 650px; }
  .approach-intro > p { max-width: 560px; }
  .capability-list { grid-template-columns: 1fr; }
  .capability-card { min-height: 490px; border-right: 1px solid rgba(8,10,11,.2); border-bottom: 1px solid rgba(8,10,11,.2); }
  .capability-number { margin-bottom: 45px; }
  .capability-card > p { max-width: 590px; min-height: 0; }
  .capability-card ul { margin-top: 55px; }
  .market-grid { grid-template-columns: repeat(2, 1fr); }
  .market-card { min-height: 430px; border-bottom: 1px solid var(--line); }
  .founder { grid-template-columns: 1fr 1fr; gap: 60px; }
  .perspective-panel { grid-template-columns: 1fr; }
  .insight-copy { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 720px) {
  .site-header { height: 74px; padding: 0 20px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-emblem-image { width: 46px; height: 46px; }
  .hero { height: auto; min-height: 1020px; }
  .hero-art { object-position: 62% center; opacity: .76; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8,10,11,.92) 0%, rgba(8,10,11,.35) 100%),
      linear-gradient(0deg, rgba(8,10,11,.88) 0%, transparent 50%);
  }
  .hero-copy { width: auto; margin: 0 24px; padding-top: 160px; }
  .hero h1 { font-size: clamp(58px, 17vw, 84px); }
  .hero-intro { font-size: 15px; line-height: 1.65; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .hero-meta { left: 24px; right: 24px; bottom: 38px; justify-content: space-between; }
  .hero-meta > div { min-width: auto; }
  .hero-meta > div:last-child { text-align: right; }
  .scroll-cue { display: none; }
  .section { padding: 85px 24px; }
  .thesis-grid { margin-top: 45px; }
  .display-title { font-size: 51px; }
  .thesis-copy .lead { font-size: 22px; }
  .principles-strip { margin-top: 65px; padding: 22px 0; flex-wrap: wrap; justify-content: center; }
  .principles-strip i { display: none; }
  .principles-strip span { width: 100%; text-align: center; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p { justify-self: start; font-size: 16px; }
  .capability-list { margin-top: 50px; }
  .capability-card { min-height: 520px; padding: 26px 24px 36px; }
  .capability-card h3 { font-size: 45px; }
  .market-grid { grid-template-columns: 1fr; margin-top: 60px; }
  .market-card { min-height: 390px; border-right: 1px solid var(--line); }
  .market-card h3 { margin-top: 48px; }
  .founder { grid-template-columns: 1fr; }
  .founder-copy .display-title { margin-top: 42px; }
  .founder-seal { width: min(320px, 82vw); justify-self: center; }
  .process { grid-template-columns: 1fr; gap: 75px; margin-top: 85px; padding-left: 28px; }
  .process-line { top: 0; bottom: 0; left: 5px; right: auto; width: 1px; height: auto; }
  .process-line span { width: 100%; height: 0; transition-property: height; }
  .process.is-visible .process-line span { width: 100%; height: 100%; }
  .process-dot { top: 2px; left: -28px; }
  .process-step { padding-top: 0; }
  .process-step h3 { margin-top: 25px; }
  .perspective { padding-left: 0; padding-right: 0; }
  .perspective-panel { border-left: 0; border-right: 0; }
  .insight-copy { padding: 65px 24px; }
  .insight-copy blockquote { margin: 70px 0 38px; font-size: 36px; }
  .signal-visual { min-height: 520px; }
  .sun-disc { width: 80px; height: 80px; }
  .sun-disc::before, .sun-disc::after { width: 75px; }
  .label-two { bottom: 147px; }
  .label-three { top: 190px; right: 4%; }
  .contact-ornament { margin-bottom: 55px; }
  .contact .button { margin-top: 40px; }
  .site-footer { grid-template-columns: 1fr; padding: 60px 24px 30px; }
  .footer-brand { grid-row: auto; }
  .site-footer > p { justify-self: start; margin-top: 45px; text-align: left; }
  .footer-meta { flex-wrap: wrap; margin-top: 55px; }
  .footer-meta span:first-child { width: 100%; margin-right: 0; }
}

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