:root {
  --ink: #15131a;
  --ink-soft: #24202a;
  --paper: #f4f1e9;
  --white: #fffdf8;
  --cobalt: #4355ff;
  --signal: #f2553d;
  --jade: #149c8e;
  --lemon: #d6ed67;
  --line: rgba(21, 19, 26, 0.18);
  --line-light: rgba(255, 253, 248, 0.2);
  --max: 1420px;
  --pad: clamp(1.25rem, 4.6vw, 5.4rem);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
svg {
  display: block;
}
.progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  background: transparent;
  z-index: 120;
}
.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cobalt), var(--jade), var(--signal));
}
.section-pad {
  padding: clamp(5rem, 10vw, 10rem) var(--pad);
}
.dark-section {
  background: var(--ink);
  color: var(--white);
}
.section-number {
  margin: 0 0 2rem;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jade);
}
.site-header {
  height: 86px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(244, 241, 233, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  z-index: 102;
}
.brand-mark {
  width: 39px;
  height: 39px;
}
.brand-mark path:first-child {
  fill: var(--ink);
}
.brand-mark .mark-accent {
  fill: var(--signal);
}
.brand > span {
  display: grid;
  line-height: 1;
}
.brand strong {
  font-size: 1.25rem;
  letter-spacing: 0.24em;
}
.brand small {
  font-size: 0.54rem;
  letter-spacing: 0.39em;
  margin-top: 0.38rem;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 102;
}
.header-contact {
  font-size: 0.75rem;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
  padding: 0.35rem 0;
}
.menu-toggle {
  height: 48px;
  min-width: 122px;
  border: 1px solid var(--ink);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem;
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 0.25s;
}
.menu-toggle i,
.menu-toggle i::before {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: 0.25s;
}
.menu-toggle i::before {
  transform: translateY(-6px);
}
.menu-toggle:hover {
  background: var(--ink);
  color: white;
}
.menu-toggle:hover i,
.menu-toggle:hover i::before {
  background: white;
}
.menu-toggle[aria-expanded="true"] {
  background: var(--paper);
}
.menu-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] i::before {
  transform: rotate(90deg);
}
.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  color: var(--white);
  padding: clamp(8rem, 15vh, 11rem) var(--pad) 3rem;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(520px, 1.28fr);
  grid-template-rows: 1fr auto;
  gap: 4rem;
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 0.6s cubic-bezier(0.77, 0, 0.18, 1),
    opacity 0.35s,
    visibility 0.6s;
}
.menu-panel.open {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0);
}
.menu-intro {
  border-right: 1px solid var(--line-light);
  padding-right: clamp(2rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.menu-intro > span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9b939e;
}
.menu-intro p {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3.5rem);
  line-height: 1.02;
  max-width: 560px;
}
.menu-intro a {
  margin-top: 2rem;
  border-bottom: 1px solid var(--jade);
  font-size: 0.9rem;
}
.menu-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-links a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line-light);
  padding: clamp(0.65rem, 1.4vh, 1.1rem) 0;
  transition: 0.3s;
}
.menu-links a:first-child {
  border-top: 1px solid var(--line-light);
}
.menu-links span {
  font-size: 0.65rem;
  color: var(--jade);
}
.menu-links strong {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}
.menu-links i {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.55;
}
.menu-links a:hover {
  padding-left: 1rem;
  color: var(--lemon);
}
.menu-links a:hover span,
.menu-links a:hover i {
  color: var(--white);
}
.menu-preview {
  grid-column: 2;
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a59da8;
}
.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  grid-template-rows: 1fr auto;
  gap: 3rem 5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(21, 19, 26, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 19, 26, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, black, transparent 63%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 2rem;
}
.eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--signal);
  transform: rotate(45deg);
}
h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(4.1rem, 8vw, 8.9rem);
  font-weight: 400;
  line-height: 0.83;
  letter-spacing: -0.065em;
  margin: 0;
  max-width: 960px;
}
.hero h1 em {
  font-weight: 400;
  color: var(--cobalt);
}
.hero-lede {
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  max-width: 720px;
  color: #504a53;
  margin: 3rem 0 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.3rem;
}
.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 255px;
  padding: 1rem 1.2rem;
  border: 1px solid transparent;
  font-weight: 760;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  transition: 0.25s;
}
.button-primary {
  background: var(--ink);
  color: var(--white);
}
.button-primary:hover {
  background: var(--cobalt);
  transform: translateY(-2px);
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: var(--cobalt);
}
.text-link {
  font-weight: 750;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--ink);
  padding: 0.65rem 0;
}
.text-link span {
  color: var(--signal);
}
.hero-system {
  --px: 0;
  --py: 0;
  width: min(44vw, 660px);
  aspect-ratio: 1;
  justify-self: end;
  position: relative;
  display: grid;
  place-items: center;
  transform: translate(calc(var(--px) * 0.012px), calc(var(--py) * 0.012px));
  transition: transform 0.18s ease-out;
}
.system-grid {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(21, 19, 26, 0.15);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(21, 19, 26, 0.12) 1px,
    transparent 1.5px
  );
  background-size: 23px 23px;
}
.system-axis {
  position: absolute;
  background: rgba(21, 19, 26, 0.16);
}
.axis-x {
  height: 1px;
  width: 96%;
}
.axis-y {
  width: 1px;
  height: 96%;
}
.orbit {
  position: absolute;
  border: 1px solid;
  aspect-ratio: 1;
  border-radius: 50%;
  transition: transform 0.25s ease-out;
}
.orbit span {
  position: absolute;
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  background: var(--paper);
  padding: 0.2rem 0.4rem;
}
.orbit-one {
  width: 88%;
  border-color: var(--cobalt);
  animation: spin 34s linear infinite;
}
.orbit-one span {
  top: 19%;
  left: 2%;
  transform: rotate(-58deg);
  color: var(--cobalt);
}
.orbit-two {
  width: 67%;
  border-color: var(--jade);
  animation: spin 25s linear infinite reverse;
}
.orbit-two span {
  top: 3%;
  left: 59%;
  transform: rotate(24deg);
  color: var(--jade);
}
.orbit-three {
  width: 45%;
  border-color: var(--signal);
  animation: spin 19s linear infinite;
}
.orbit-three span {
  bottom: 6%;
  left: 60%;
  transform: rotate(-24deg);
  color: var(--signal);
}
.core {
  width: 24%;
  aspect-ratio: 1;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.5rem;
  z-index: 3;
  box-shadow: 0 24px 70px rgba(21, 19, 26, 0.25);
}
.core svg {
  width: 42%;
  fill: white;
}
.core .core-accent {
  fill: var(--signal);
}
.core small {
  font-size: 0.48rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.system-pulse {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(242, 85, 61, 0.12);
}
.p1 {
  left: 12%;
  top: 34%;
}
.p2 {
  right: 19%;
  bottom: 17%;
  background: var(--cobalt);
}
.p3 {
  right: 14%;
  top: 21%;
  background: var(--jade);
}
.system-caption {
  position: absolute;
  bottom: 1%;
  right: 1%;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-signature {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 1rem;
}
.hero-signature span {
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-signature span + span {
  border-left: 1px solid var(--line);
  padding-left: 1rem;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.manifesto {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 5rem;
  align-items: start;
}
.manifesto h2 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.8vw, 8rem);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.055em;
  margin: 0;
  max-width: 1200px;
}
.manifesto div > p {
  font-size: 1.1rem;
  color: #c8c1cc;
  max-width: 680px;
  margin: 2.4rem 0 0;
}
.section-heading {
  max-width: var(--max);
  margin: 0 auto clamp(3rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: end;
}
.section-heading h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin: 0;
}
.section-heading > p {
  font-size: 1rem;
  max-width: 540px;
  margin: 0;
  color: #5d5660;
}
.capability-stage {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 690px;
  border: 1px solid var(--ink);
}
.capability-nav {
  display: grid;
  background: var(--ink);
  color: white;
}
.capability-tab {
  appearance: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: inherit;
  text-align: left;
  padding: 1.5rem 1.7rem;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-content: center;
  gap: 0.1rem 0.8rem;
  cursor: pointer;
  transition: 0.3s;
}
.capability-tab:last-child {
  border-bottom: 0;
}
.capability-tab span {
  grid-row: 1/3;
  color: #8f8793;
  font-size: 0.62rem;
}
.capability-tab strong {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}
.capability-tab small {
  font-size: 0.7rem;
  color: #9e96a1;
}
.capability-tab:hover,
.capability-tab.active {
  background: var(--cobalt);
  padding-left: 2.3rem;
}
.capability-tab.active small,
.capability-tab.active span {
  color: white;
}
.capability-display {
  position: relative;
  padding: clamp(2rem, 5vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--white);
}
.capability-display > p:first-of-type {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--jade);
  margin: 0 0 1.2rem;
}
.capability-display h3 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.6vw, 6.7rem);
  line-height: 0.91;
  font-weight: 400;
  letter-spacing: -0.05em;
  margin: 0;
  max-width: 880px;
}
.capability-display > p:nth-of-type(2) {
  font-size: 1rem;
  max-width: 650px;
  color: #5e5660;
  margin: 2rem 0;
}
.capability-display > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--ink);
  padding-top: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
}
.capability-outcomes {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.capability-outcomes span {
  background: #e7e8ff;
  color: #2536ca;
  border-radius: 99px;
  padding: 0.5rem 0.75rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.capability-symbol {
  position: absolute;
  right: 5%;
  top: 4%;
  width: min(31vw, 390px);
  aspect-ratio: 1;
  opacity: 0.18;
}
.capability-symbol i {
  position: absolute;
  border: 2px solid var(--cobalt);
  inset: 0;
  transition: 0.55s;
}
.capability-symbol i:nth-child(2) {
  inset: 13%;
  border-color: var(--jade);
  transform: rotate(15deg);
}
.capability-symbol i:nth-child(3) {
  inset: 26%;
  border-color: var(--signal);
  transform: rotate(30deg);
}
.capability-symbol i:nth-child(4) {
  inset: 39%;
  background: var(--ink);
  border-color: var(--ink);
  transform: rotate(45deg);
}
.capability-display.changed h3,
.capability-display.changed > p,
.capability-display.changed .capability-outcomes {
  animation: rise 0.45s ease both;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.approach {
  background: #d8eedf;
}
.journey {
  max-width: var(--max);
  margin: auto;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.journey-map {
  height: 145px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  border-bottom: 1px solid var(--ink);
}
.journey-line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 46px;
  height: 2px;
  background: rgba(21, 19, 26, 0.18);
}
.journey-line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--cobalt);
  transition: 0.5s;
}
.journey-step {
  border: 0;
  background: transparent;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 31px 0.4rem 0.8rem;
  cursor: pointer;
}
.journey-step i {
  font-style: normal;
  width: 32px;
  height: 32px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--paper);
  font-size: 0.58rem;
  transition: 0.3s;
}
.journey-step strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  margin-top: 0.8rem;
}
.journey-step:hover i,
.journey-step.active i {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: white;
  transform: scale(1.25);
}
.journey-step.active strong {
  color: var(--cobalt);
}
.journey-canvas {
  min-height: 520px;
  position: relative;
  display: grid;
  grid-template-columns: 0.42fr 1.2fr 0.6fr;
  align-items: center;
  padding: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
}
.journey-number {
  font-family: var(--serif);
  font-size: clamp(8rem, 19vw, 18rem);
  line-height: 0.7;
  color: transparent;
  -webkit-text-stroke: 1px rgba(21, 19, 26, 0.23);
}
.journey-copy {
  position: relative;
  z-index: 2;
}
.journey-copy > p:first-child {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--jade);
}
.journey-copy h3 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.6vw, 6.7rem);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.05em;
  margin: 1rem 0;
}
.journey-copy > p:last-child {
  font-size: 1rem;
  max-width: 640px;
  color: #5d5660;
}
.journey-orbit {
  width: min(24vw, 300px);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
}
.journey-orbit i {
  position: absolute;
  border: 1px solid var(--ink);
  border-radius: 50%;
  inset: 0;
  animation: spin 20s linear infinite;
}
.journey-orbit i:nth-child(2) {
  inset: 21%;
  border-style: dashed;
  animation-direction: reverse;
}
.journey-orbit span {
  width: 25%;
  aspect-ratio: 1;
  background: var(--signal);
  transform: rotate(45deg);
}
.journey-canvas.changed .journey-copy {
  animation: rise 0.45s ease both;
}
.journey-canvas.changed .journey-number {
  animation: numberIn 0.55s ease both;
}
@keyframes numberIn {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.methodology {
  position: relative;
  overflow: hidden;
}
.methodology::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  right: -330px;
  top: -160px;
  box-shadow:
    0 0 0 100px rgba(255, 255, 255, 0.018),
    0 0 0 200px rgba(255, 255, 255, 0.012);
}
.method-intro {
  max-width: var(--max);
  margin: 0 auto clamp(3rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: end;
  position: relative;
}
.method-intro .section-number {
  grid-column: 1/-1;
  margin-bottom: 0;
}
.method-intro h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.3vw, 7.2rem);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.05em;
  margin: 0;
}
.method-intro h2 em {
  color: var(--lemon);
  font-weight: 400;
}
.method-intro > p:last-child {
  color: #c4bdc8;
  max-width: 560px;
}
.framework-board {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  border: 1px solid var(--line-light);
}
.framework {
  border: 0;
  border-bottom: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
  background: transparent;
  color: white;
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 0.15rem 0.5rem;
  text-align: left;
  padding: 1.25rem 1.4rem;
  cursor: pointer;
  transition: 0.25s;
}
.framework:nth-child(5) {
  border-bottom: 0;
}
.framework span {
  grid-row: 1/3;
  font-size: 0.58rem;
  color: #958d98;
}
.framework strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}
.framework small {
  color: #9f97a2;
  font-size: 0.65rem;
}
.framework:hover,
.framework.active {
  background: var(--jade);
}
.framework.active span,
.framework.active small {
  color: white;
}
.framework-result {
  grid-column: 2;
  grid-row: 1/6;
  padding: clamp(2rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #201c24;
  position: relative;
  overflow: hidden;
}
.framework-result::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  right: -130px;
  bottom: -130px;
  box-shadow:
    0 0 0 42px rgba(255, 255, 255, 0.02),
    0 0 0 84px rgba(255, 255, 255, 0.015);
}
.framework-result > span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--lemon);
}
.framework-result h3 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin: 2rem 0;
}
.framework-result p {
  color: #c5bec8;
  font-size: 1rem;
  max-width: 650px;
}
.framework-result > strong {
  margin-top: 3rem;
  border-top: 1px solid var(--line-light);
  padding-top: 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.framework-result.changed > * {
  animation: rise 0.45s ease both;
}
.framework-note {
  max-width: var(--max);
  margin: 1rem auto 0;
  font-size: 0.62rem;
  color: #8f8792;
}
.expertise {
  background: #e7e4ff;
}
.practice-grid {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.95fr;
  gap: 1rem;
}
.practice-card {
  min-height: 620px;
  padding: 1.7rem;
  border: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.practice-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.61rem;
  letter-spacing: 0.13em;
}
.practice-top b {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}
.practice-copy {
  margin-top: auto;
  position: relative;
  z-index: 2;
}
.practice-copy small {
  font-size: 0.57rem;
  letter-spacing: 0.16em;
  font-weight: 800;
}
.practice-copy h3 {
  font-family: var(--serif);
  font-size: clamp(3rem, 4.7vw, 5.8rem);
  line-height: 0.84;
  letter-spacing: -0.055em;
  font-weight: 400;
  margin: 1rem 0 1.5rem;
}
.practice-copy p {
  font-size: 0.84rem;
  max-width: 380px;
}
.card-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  font-weight: 780;
}
.practice-hospitality {
  background: var(--cobalt);
  color: white;
}
.practice-digital {
  background: var(--ink);
  color: white;
}
.practice-venture {
  background: var(--lemon);
}
.practice-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 55px rgba(21, 19, 26, 0.17);
}
.practice-graphic {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -20px;
  top: 15%;
  opacity: 0.65;
  transition: 0.6s;
}
.practice-card:hover .practice-graphic {
  transform: rotate(20deg) scale(1.08);
}
.practice-graphic i {
  position: absolute;
}
.rings i {
  border: 1px solid white;
  border-radius: 50%;
  inset: 0;
}
.rings i:nth-child(2) {
  inset: 22%;
}
.rings i:nth-child(3) {
  inset: 44%;
  background: var(--signal);
  border-color: var(--signal);
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  transform: rotate(14deg);
}
.grid i {
  position: static;
  border: 1px solid white;
}
.grid i:nth-child(4) {
  background: var(--jade);
}
.petals i {
  width: 49%;
  height: 49%;
  border: 1px solid var(--ink);
  border-radius: 50% 50% 0 50%;
}
.petals i:nth-child(2) {
  right: 0;
  transform: rotate(90deg);
}
.petals i:nth-child(3) {
  bottom: 0;
  transform: rotate(-90deg);
}
.petals i:nth-child(4) {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
  background: var(--signal);
}
.future-line {
  max-width: var(--max);
  margin: 1rem auto 0;
  border: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 0.7fr 1.2fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.4rem;
}
.future-line span {
  font-family: var(--serif);
  font-size: 1.5rem;
}
.future-line p {
  font-size: 0.8rem;
  margin: 0;
}
.future-line i {
  font-style: normal;
  font-size: 2.2rem;
}
.about {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(4rem, 10vw, 11rem);
  align-items: start;
}
.about-title {
  position: sticky;
  top: 135px;
}
.about-title h2 {
  font-family: var(--serif);
  font-size: clamp(4.2rem, 8.4vw, 10rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.07em;
  margin: 0;
}
.founder-seal {
  margin: 4rem 0 0;
  width: 190px;
  aspect-ratio: 1;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
}
.founder-seal::before,
.founder-seal::after {
  content: "";
  position: absolute;
  inset: 17%;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}
.founder-seal::after {
  inset: 34%;
  background: var(--signal);
  border: 0;
}
.founder-seal strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  z-index: 2;
}
.founder-seal span {
  font-size: 0.48rem;
  letter-spacing: 0.2em;
  z-index: 2;
}
.about-copy {
  padding-top: 2rem;
}
.founder-credential {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--lemon);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 1.4rem 0;
  line-height: 1.9;
}
.about-copy > p:not(.founder-credential) {
  color: #c9c2cc;
  font-size: 1.05rem;
  max-width: 720px;
}
.about-copy .founder-lede {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.13;
  color: white;
  margin: 3.5rem 0;
}
.founder-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 3rem;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
.founder-principles span {
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 1rem;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.credential-grid {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}
.credential-card {
  min-height: 520px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.3s;
}
.credential-card > span {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
}
.credential-card svg {
  width: 150px;
  margin: auto;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
  transition: 0.5s;
}
.credential-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 0.95;
  font-weight: 400;
  margin: 0 0 1rem;
}
.credential-card p {
  font-size: 0.82rem;
  color: #5c555f;
  max-width: 360px;
}
.credential-card:hover {
  background: var(--signal);
  color: var(--ink);
}
.credential-card:hover svg {
  transform: rotate(15deg) scale(1.1);
}
.credential-card:nth-child(2):hover {
  background: var(--jade);
  color: white;
}
.credential-card:nth-child(2):hover svg {
  stroke: white;
}
.credential-card:nth-child(2):hover p {
  color: white;
}
.credential-card:nth-child(3):hover {
  background: var(--cobalt);
  color: white;
}
.credential-card:nth-child(3):hover svg {
  stroke: white;
}
.credential-card:nth-child(3):hover p {
  color: white;
}
.contact {
  background: var(--signal);
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: clamp(3rem, 8vw, 9rem);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      130deg,
      transparent 0 54%,
      rgba(255, 255, 255, 0.1) 54% 54.12%,
      transparent 54.12%
    ),
    radial-gradient(circle at 8% 90%, rgba(255, 255, 255, 0.2), transparent 27%);
}
.contact-copy,
.contact-form {
  position: relative;
  z-index: 2;
}
.contact h2 {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7vw, 8rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
  font-weight: 400;
  margin: 0;
}
.contact-copy > p:not(.section-number) {
  max-width: 600px;
  font-size: 1.05rem;
}
.email-link {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 2.3rem);
  border-bottom: 1px solid var(--ink);
  display: inline-flex;
  gap: 1rem;
  margin: 2rem 0;
}
.contact-compass {
  width: 240px;
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  margin-top: 2.5rem;
}
.contact-compass i {
  position: absolute;
  border: 1px solid rgba(21, 19, 26, 0.45);
  border-radius: 50%;
  inset: 0;
  animation: spin 20s linear infinite;
}
.contact-compass i:nth-child(2) {
  inset: 20%;
  border-style: dashed;
  animation-direction: reverse;
}
.contact-compass i:nth-child(3) {
  inset: 40%;
  background: var(--ink);
}
.contact-compass span {
  z-index: 1;
  color: white;
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  text-align: center;
}
.contact-form {
  background: var(--paper);
  padding: clamp(1.6rem, 4vw, 3.6rem);
  align-self: center;
  display: grid;
  gap: 1.25rem;
  box-shadow: 22px 24px 0 rgba(21, 19, 26, 0.13);
}
.form-heading {
  display: grid;
  gap: 0.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.4rem;
}
.form-heading span {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--jade);
  font-weight: 800;
}
.form-heading strong {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3.3rem);
  font-weight: 400;
  line-height: 1;
}
.contact-form label {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 800;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #8d858e;
  background: transparent;
  padding: 0.75rem 0;
  outline: none;
  color: var(--ink);
  border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom: 2px solid var(--cobalt);
}
.form-note {
  font-size: 0.64rem;
  color: #726a74;
  margin: 0;
}
footer {
  background: var(--ink);
  color: var(--white);
  padding: 3rem var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
}
.footer-brand .brand-mark path:first-child {
  fill: white;
}
.footer-brand strong {
  font-size: 1.4rem;
}
.footer-brand small {
  color: #aaa2ad;
}
footer > p {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #aaa2ad;
}
footer > div {
  display: flex;
  gap: 1.2rem;
  font-size: 0.75rem;
}
footer > small {
  grid-column: 1/-1;
  border-top: 1px solid var(--line-light);
  padding-top: 1.2rem;
  color: #8d8590;
  font-size: 0.65rem;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-system {
    width: min(78vw, 620px);
    justify-self: center;
  }
  .hero-signature {
    margin-top: 1rem;
  }
  .section-heading,
  .method-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .capability-stage {
    grid-template-columns: 0.67fr 1.33fr;
  }
  .practice-grid {
    grid-template-columns: 1fr 1fr;
  }
  .practice-venture {
    grid-column: 1/-1;
    min-height: 480px;
  }
  .about {
    gap: 4rem;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .contact-compass {
    display: none;
  }
  .contact-form {
    max-width: 820px;
    width: 100%;
  }
  .credential-card {
    min-height: 450px;
  }
  .menu-panel {
    grid-template-columns: 0.55fr 1.45fr;
  }
  .journey-canvas {
    grid-template-columns: 0.35fr 1.2fr 0.55fr;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }
  .site-header {
    height: 72px;
  }
  .header-contact {
    display: none;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .brand strong {
    font-size: 1.05rem;
  }
  .brand small {
    font-size: 0.48rem;
  }
  .menu-toggle {
    height: 43px;
    min-width: 108px;
  }
  .menu-panel {
    padding-top: 6.5rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 1.4rem;
    overflow-y: auto;
  }
  .menu-intro {
    display: none;
  }
  .menu-links strong {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }
  .menu-preview {
    grid-column: 1;
  }
  .section-pad {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
  .hero {
    padding-top: 4.2rem;
    gap: 2.5rem;
  }
  .hero h1 {
    font-size: clamp(3.75rem, 17vw, 6.2rem);
  }
  .hero-lede {
    margin-top: 2rem;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
  }
  .button {
    width: 100%;
  }
  .text-link {
    align-self: flex-start;
  }
  .hero-system {
    width: min(94vw, 520px);
  }
  .system-caption {
    display: none;
  }
  .hero-signature {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 0;
  }
  .hero-signature span:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
  .manifesto {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .manifesto h2 {
    font-size: clamp(3.2rem, 14vw, 5.5rem);
  }
  .section-heading h2 {
    font-size: clamp(3rem, 14vw, 5.8rem);
  }
  .capability-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .capability-nav {
    grid-template-columns: 1fr 1fr;
  }
  .capability-tab {
    min-height: 130px;
    padding: 1rem;
    grid-template-columns: 28px 1fr;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }
  .capability-tab:nth-child(3),
  .capability-tab:nth-child(4) {
    border-bottom: 0;
  }
  .capability-tab strong {
    font-size: 1.75rem;
  }
  .capability-tab:hover,
  .capability-tab.active {
    padding-left: 1rem;
  }
  .capability-display {
    min-height: 620px;
    padding: 1.6rem;
  }
  .capability-display h3 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }
  .capability-symbol {
    width: 260px;
    right: -40px;
  }
  .journey-map {
    height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  .journey-line {
    left: 32px;
    right: auto;
    top: 36px;
    bottom: 36px;
    width: 2px;
    height: auto;
  }
  .journey-line span {
    height: 0;
    width: 100%;
  }
  .journey-step {
    min-height: 76px;
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    justify-items: start;
    padding: 0 1rem;
  }
  .journey-step i {
    grid-column: 1;
  }
  .journey-step strong {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }
  .journey-canvas {
    grid-template-columns: 1fr;
    min-height: 590px;
    padding: 1.7rem;
  }
  .journey-number {
    font-size: 8.5rem;
  }
  .journey-orbit {
    position: absolute;
    width: 220px;
    right: -80px;
    bottom: -70px;
    opacity: 0.55;
  }
  .framework-board {
    grid-template-columns: 1fr 1fr;
  }
  .framework {
    border-right: 1px solid var(--line-light);
  }
  .framework:nth-child(5) {
    grid-column: 1/-1;
    border-bottom: 1px solid var(--line-light);
  }
  .framework-result {
    grid-column: 1/-1;
    grid-row: auto;
    min-height: 560px;
    padding: 1.6rem;
  }
  .framework-result h3 {
    font-size: clamp(3rem, 13vw, 5rem);
  }
  .practice-grid {
    grid-template-columns: 1fr;
  }
  .practice-card,
  .practice-venture {
    grid-column: auto;
    min-height: 530px;
  }
  .future-line {
    grid-template-columns: 1fr auto;
  }
  .future-line p {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about-title {
    position: static;
  }
  .about-title h2 {
    font-size: clamp(4.5rem, 21vw, 7rem);
  }
  .founder-seal {
    width: 150px;
    margin-top: 2.5rem;
  }
  .about-copy .founder-lede {
    font-size: 2rem;
  }
  .credential-grid {
    grid-template-columns: 1fr;
  }
  .credential-card {
    min-height: 430px;
  }
  .contact {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .contact h2 {
    font-size: clamp(3.6rem, 16vw, 6rem);
  }
  .contact-form {
    box-shadow: 9px 11px 0 rgba(21, 19, 26, 0.14);
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer > small {
    grid-column: 1;
  }
  footer > div {
    flex-wrap: wrap;
  }
}
@media (max-width: 430px) {
  .capability-nav {
    grid-template-columns: 1fr;
  }
  .capability-tab {
    min-height: 105px;
  }
  .capability-tab:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .capability-display {
    min-height: 600px;
  }
  .hero-system {
    width: 108vw;
    margin-left: -4vw;
  }
  .practice-card {
    min-height: 500px;
  }
  .founder-principles {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 1.3rem;
  }
  .framework-result {
    min-height: 520px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .orbit,
  .journey-orbit i,
  .contact-compass i {
    animation: none;
  }
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .hero-system {
    transform: none;
  }
  .menu-panel {
    transition: none;
  }
}

/* Founder portrait */
.about-title {
  position: relative;
  top: auto;
  align-self: start;
}
.founder-portrait {
  position: relative;
  max-width: 560px;
  margin: 4rem 0 0;
  isolation: isolate;
}
.founder-portrait::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--cobalt);
  z-index: -1;
}
.founder-portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(transparent, rgba(21, 19, 26, 0.76));
  pointer-events: none;
}
.founder-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4/4.65;
  object-fit: cover;
  object-position: 61% 27%;
  filter: saturate(0.9) contrast(1.04);
}
.founder-portrait figcaption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.25rem;
  z-index: 2;
  color: white;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.founder-portrait .founder-seal {
  position: absolute;
  right: -42px;
  bottom: -62px;
  z-index: 3;
  margin: 0;
  background: var(--ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
@media (max-width: 760px) {
  .founder-portrait {
    margin-top: 2.5rem;
    max-width: none;
  }
  .founder-portrait::before {
    inset: 9px -9px -9px 9px;
  }
  .founder-portrait img {
    aspect-ratio: 4/4.45;
    object-position: 62% 25%;
  }
  .founder-portrait .founder-seal {
    width: 126px;
    right: -2px;
    bottom: -42px;
  }
  .founder-portrait figcaption {
    left: 1rem;
    bottom: 0.9rem;
    max-width: 190px;
    line-height: 1.5;
  }
  .about-copy {
    padding-top: 4rem;
  }
}
