:root {
  --ink: #10171c;
  --ink-soft: #172129;
  --navy: #1d2b36;
  --paper: #f2efe8;
  --paper-deep: #e9e4d9;
  --white: #fbfaf6;
  --gold: #b49760;
  --gold-light: #d1ba8c;
  --muted: #767972;
  --dark-muted: #a8ada9;
  --line: rgba(16, 23, 28, 0.15);
  --dark-line: rgba(255, 255, 255, 0.14);
  --serif: "Fira Sans", Arial, sans-serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(32px, 3.7vw, 51px);
  --radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--gold-light);
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.dark-section {
  color: var(--white);
  background: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--gold-light);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: #836d45;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.33vw, 6rem);
  letter-spacing: -0.045em;
}

.hero h1 {
  margin-bottom: 24px;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-size: clamp(2.33rem, 4.47vw, 4.27rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.hero h1 em {
  font-style: normal;
  font-weight: 400;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.2vw, 3.27rem);
  letter-spacing: -0.035em;
}

h1 em,
h2 em {
  color: var(--gold-light);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.17rem, 1.67vw, 1.7rem);
  letter-spacing: -0.025em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 58px;
  padding: 15px 25px;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.button:hover {
  color: var(--white);
  background: transparent;
  transform: translateY(-2px);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.7rem;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  border-color: var(--dark-line);
  background: rgba(16, 23, 28, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 80px;
}

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

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  opacity: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding-top: 65px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(157, 101, 72, 0.28), transparent 30%),
    linear-gradient(145deg, #1b100d 0%, #2c1a14 56%, #3b241b 100%);
}

.hero-photo-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 59%;
  overflow: hidden;
  background: #382219;
}

.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 39%;
  filter: sepia(.3) saturate(.64) contrast(1.13) brightness(.98);
}

.hero-photo-bg::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, #251510 0%, rgba(37, 21, 16, .92) 15%, rgba(50, 29, 22, .48) 48%, rgba(50, 29, 22, .16) 78%, rgba(34, 20, 16, .28) 100%),
    linear-gradient(180deg, rgba(31, 18, 14, .34), transparent 28%, transparent 68%, rgba(31, 18, 14, .62));
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100% - (var(--gutter) * 2), 1320px);
}

.hero-copy {
  width: min(56%, 700px);
  padding-block: clamp(30px, 4vw, 58px);
}

.hero-role {
  margin-bottom: 20px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.75vw, 1.7rem);
  line-height: 1.2;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: rgba(251, 250, 246, 0.74);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-block: 10px;
  color: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.78rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  color: var(--white);
  border-color: var(--gold-light);
}

.hero-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.portrait-frame {
  position: absolute;
  inset: 0 0 40px 5%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(209, 186, 140, 0.24);
  border-radius: 48% 48% 2px 2px;
  background:
    radial-gradient(circle at 50% 42%, rgba(209, 186, 140, 0.15), transparent 28%),
    linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.005));
}

.portrait-frame::before {
  position: absolute;
  width: 300px;
  height: 420px;
  border-radius: 48% 48% 16% 16%;
  background: linear-gradient(180deg, rgba(209, 186, 140, 0.07), rgba(5, 9, 12, 0.5));
  content: "";
  filter: blur(1px);
}

.portrait-frame.has-photo::before {
  display: none;
}

.portrait-frame::after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(transparent, rgba(10, 15, 18, 0.9));
  content: "";
}

.hero-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  filter: saturate(.86) contrast(1.02);
}

.portrait-monogram {
  position: relative;
  z-index: 1;
  color: rgba(209, 186, 140, 0.48);
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 9rem);
  letter-spacing: -0.04em;
}

.portrait-orbit {
  position: absolute;
  border: 1px solid rgba(209, 186, 140, 0.15);
  border-radius: 50%;
}

.orbit-one {
  width: 420px;
  height: 420px;
  animation: orbit 28s linear infinite;
}

.orbit-two {
  width: 310px;
  height: 310px;
  border-style: dashed;
  animation: orbit 38s linear infinite reverse;
}

.portrait-label {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  color: rgba(255,255,255,.66);
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: .7rem;
}

.portrait-label small {
  color: rgba(255,255,255,.34);
}

.visual-caption {
  position: absolute;
  z-index: 3;
  right: -24px;
  bottom: 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 19px 24px;
  color: var(--ink);
  background: var(--paper);
}

.visual-caption span {
  color: #8b754e;
  font-size: .66rem;
}

.visual-caption p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.05;
}

.hero-map {
  position: absolute;
  z-index: 1;
  top: -3%;
  right: -10%;
  width: min(66vw, 920px);
  opacity: .14;
}

.hero-map path,
.hero-map circle {
  stroke: var(--gold-light);
  stroke-width: 1;
  stroke-dasharray: 4 7;
}

.hero-map circle {
  fill: #2c1a14;
  stroke-dasharray: none;
}

.hero-facts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  border-top: 1px solid var(--dark-line);
  background: rgba(34, 20, 16, .24);
  backdrop-filter: blur(3px);
}

.hero-facts > div {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 27px 28px 30px 0;
  border-right: 1px solid var(--dark-line);
}

.hero-facts > div:not(:first-child) {
  padding-left: 28px;
}

.hero-facts > div:last-child {
  border-right: 0;
}

.hero-facts strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1;
}

.hero-facts span {
  color: rgba(255,255,255,.49);
  font-size: .7rem;
  line-height: 1.55;
}

.section-heading {
  margin-bottom: clamp(19px, 2.15vw, 29px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: end;
}

.split-heading > p {
  max-width: 470px;
  margin: 0 0 9px;
  color: #626761;
}

.requests-section {
  background: #f6f3ec;
}

.request-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.request-card {
  position: relative;
  isolation: isolate;
  min-height: 300px;
  padding: 32px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .12);
  transition: color .35s ease;
}

.request-card::before,
.request-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.request-card::before {
  z-index: 0;
  background: var(--request-image) center / cover no-repeat;
  filter: saturate(.42) contrast(.86) brightness(1.12);
  opacity: .09;
  transform: scale(1.055);
  transition: filter .45s ease, opacity .45s ease, transform .75s cubic-bezier(.2,.7,.2,1);
}

.request-card::after {
  z-index: 1;
  background: linear-gradient(105deg, rgba(13, 20, 24, .86), rgba(13, 20, 24, .58));
  opacity: 0;
  transition: opacity .4s ease;
}

.request-card > * {
  position: relative;
  z-index: 2;
}

.request-card:nth-child(1) { --request-image: url("assets/images/requests/request-loop.jpg"); }
.request-card:nth-child(2) { --request-image: url("assets/images/requests/request-between-stages.jpg"); }
.request-card:nth-child(3) { --request-image: url("assets/images/requests/request-main-focus.jpg"); }
.request-card:nth-child(4) { --request-image: url("assets/images/requests/request-resource.jpg"); }
.request-card:nth-child(5) { --request-image: url("assets/images/requests/request-choice.jpg"); }
.request-card:nth-child(6) { --request-image: url("assets/images/requests/request-self-understanding.jpg"); }

@media (hover: hover) and (pointer: fine) {
  .request-card:hover {
    color: var(--white);
  }

  .request-card:hover::before {
    filter: saturate(.72) contrast(1.06) brightness(1);
    opacity: .68;
    transform: scale(1);
  }

  .request-card:hover::after {
    opacity: 1;
  }

  .request-card:hover > span {
    color: var(--gold-light);
  }

  .request-card:hover p {
    color: rgba(255,255,255,.78);
  }
}

.request-card > span {
  display: block;
  margin-bottom: 68px;
  color: #9b8a69;
  font-size: .65rem;
  letter-spacing: .1em;
}

.request-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.03rem, 1.4vw, 1.37rem);
}

.request-card p {
  max-width: 320px;
  margin-bottom: 0;
  color: #676b65;
  font-size: .86rem;
  line-height: 1.65;
  transition: color .3s ease;
}

.section-closing {
  max-width: 760px;
  margin: clamp(28px, 3vw, 42px) auto 0;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.9vw, 1.85rem);
  line-height: 1.25;
}

.method-section {
  background:
    radial-gradient(circle at 5% 90%, rgba(180, 151, 96, 0.09), transparent 26%),
    var(--ink);
}

.method-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(38px, 5.5vw, 76px);
}

.method-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.method-intro h2 {
  margin-bottom: 38px;
}

.method-intro > p:last-child {
  max-width: 470px;
  color: var(--dark-muted);
}

.method-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--dark-line);
}

.method-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 38px 0;
  border-bottom: 1px solid var(--dark-line);
}

.step-number {
  padding-top: 2px;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1.85rem;
  line-height: 1;
}

.method-steps h3 {
  margin: 0 0 14px;
  font-size: clamp(1.13rem, 1.73vw, 1.83rem);
}

.method-steps p {
  max-width: 520px;
  margin: 0;
  color: var(--dark-muted);
  font-size: .9rem;
}

.tool-note {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: center;
  max-width: 930px;
  margin-top: clamp(34px, 4vw, 54px);
  padding: 30px 34px;
  border: 1px solid rgba(209, 186, 140, .3);
  background: rgba(255,255,255,.025);
}

.tool-note-mark {
  color: var(--gold-light);
  font-size: 2rem;
  text-align: center;
}

.tool-note p {
  margin: 0;
  color: var(--dark-muted);
}

.tool-note strong {
  color: var(--white);
  font-weight: 500;
}

.formats-section {
  background: var(--paper-deep);
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.format-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 530px;
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.35);
  transition: border-color .25s ease, transform .3s ease, box-shadow .3s ease;
}

.format-card:hover {
  border-color: rgba(180,151,96,.65);
  box-shadow: 0 28px 65px rgba(16,23,28,.08);
  transform: translateY(-4px);
}

.format-primary {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink-soft);
}

.format-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.format-number {
  color: var(--gold);
  font-size: .69rem;
}

.tag {
  padding: 6px 10px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 20px;
  font-size: .62rem;
  letter-spacing: .05em;
  opacity: .65;
}

.format-type,
.project-kind {
  margin-bottom: 13px;
  color: #8b754e;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.format-primary .format-type {
  color: var(--gold-light);
}

.format-card h3 {
  margin-bottom: 20px;
  font-size: clamp(1.43rem, 2.23vw, 2.3rem);
}

.format-card p:not(.format-type) {
  max-width: 540px;
  color: #686b65;
  font-size: .88rem;
}

.format-primary p:not(.format-type) {
  color: rgba(255,255,255,.59);
}

.format-card > a,
.format-image-content > a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  font-size: .75rem;
  font-weight: 600;
  opacity: .78;
  transition: opacity .2s ease, color .2s ease;
}

.format-card > a:hover,
.format-image-content > a:hover {
  color: var(--gold-light);
  opacity: 1;
}

details {
  margin-top: 23px;
  color: #626761;
  font-size: .8rem;
}

details summary {
  width: max-content;
  color: #8b754e;
  border-bottom: 1px dotted currentColor;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
  font-size: .78rem !important;
}

.format-image {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  border: 0;
}

.format-image > img,
.format-image > .image-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.format-image > img {
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.format-image:hover > img {
  transform: scale(1.035);
}

.image-overlay {
  background: linear-gradient(180deg, rgba(8,13,17,.25), rgba(8,13,17,.92));
}

.format-image-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 530px;
  padding: clamp(28px, 4vw, 48px);
}

.format-image .format-type {
  color: var(--gold-light);
}

.format-image p:not(.format-type) {
  color: rgba(255,255,255,.72);
}

.journey-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  align-items: end;
  margin-top: 8px;
  padding: clamp(35px, 5vw, 60px);
  background: var(--gold-light);
}

.journey-strip h3 {
  margin-bottom: 12px;
}

.journey-strip p:last-child {
  max-width: 720px;
  margin: 0;
}

.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 42%, rgba(180,151,96,.12), transparent 26%),
    var(--ink);
}

.about-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(38px, 5.5vw, 76px);
  align-items: center;
}

.about-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 3 / 4;
  padding: 35px;
  overflow: hidden;
  border: 1px solid rgba(209,186,140,.26);
  background:
    radial-gradient(circle at 50% 38%, rgba(209,186,140,.14), transparent 22%),
    linear-gradient(165deg, rgba(255,255,255,.045), rgba(255,255,255,.005));
}

.about-photo {
  position: relative;
  aspect-ratio: 49 / 80;
  overflow: hidden;
  border: 1px solid rgba(209,186,140,.26);
  background: var(--ink-soft);
}

.about-photo::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 68%, rgba(10,15,18,.28));
  content: "";
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.01);
}

.about-placeholder::before {
  position: absolute;
  top: 14%;
  left: 17%;
  width: 66%;
  aspect-ratio: 1;
  border: 1px solid rgba(209,186,140,.16);
  border-radius: 50%;
  content: "";
}

.about-placeholder > span {
  position: absolute;
  top: 38%;
  left: 50%;
  color: rgba(209,186,140,.38);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  transform: translate(-50%,-50%);
}

.about-placeholder p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-top: 20px;
  color: rgba(255,255,255,.48);
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: .72rem;
}

.image-note {
  margin: 16px 0 0;
  color: rgba(255,255,255,.3);
  font-size: .63rem;
}

.about-copy h2 {
  margin-bottom: 38px;
}

.about-copy > p {
  max-width: 760px;
  color: var(--dark-muted);
}

.about-copy .about-lead {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 1.33;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 32px;
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.about-facts > div {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 125px;
  padding: 24px;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.about-facts strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}

.about-facts span {
  color: rgba(255,255,255,.46);
  font-size: .67rem;
  line-height: 1.5;
}

.disciplines {
  margin-top: 28px;
}

.disciplines > p {
  color: var(--gold-light);
  font-size: .67rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.disciplines ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.disciplines li {
  padding: 7px 12px;
  color: rgba(255,255,255,.62);
  border: 1px solid var(--dark-line);
  font-size: .68rem;
}

.projects-section {
  background: var(--paper);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.project-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.38);
  border: 1px solid var(--line);
}

.project-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.project-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9,14,17,.48));
  content: "";
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) contrast(1.03);
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}

.project-card:hover img {
  filter: saturate(.95) contrast(1.03);
  transform: scale(1.04);
}

.project-index {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  color: rgba(255,255,255,.82);
  font-size: .67rem;
}

.project-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.project-body h3 {
  margin-bottom: 25px;
  font-size: clamp(1.23rem, 1.63vw, 1.63rem);
}

.project-body > p {
  flex: 1;
  color: #676b65;
  font-size: .82rem;
}

.project-body > a,
.project-status {
  display: flex;
  justify-content: space-between;
  padding-top: 17px;
  color: #806c48;
  border-top: 1px solid var(--line);
  font-size: .7rem;
}

.project-body > a:hover {
  color: var(--ink);
}

.project-status {
  color: #8b8d87;
}

.philosophy-section {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.philosophy-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,15,18,.96) 0%, rgba(10,15,18,.83) 52%, rgba(10,15,18,.35) 100%),
    url("assets/images/white-path.jpg") center / cover;
  filter: saturate(.65);
  transform: scale(1.01);
}

.philosophy-inner {
  position: relative;
  z-index: 2;
}

.philosophy-inner blockquote {
  max-width: 970px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.67vw, 2.7rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.philosophy-note {
  max-width: 520px;
  margin: 48px 0 0 auto;
  padding-left: 24px;
  color: rgba(255,255,255,.59);
  border-left: 1px solid var(--gold-light);
}

.contact-section {
  background: var(--paper-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(34px, 5.5vw, 76px);
  align-items: end;
}

.contact-main h2 {
  margin-bottom: 34px;
}

.contact-main > p:not(.eyebrow) {
  max-width: 620px;
  color: #626761;
}

.contact-main .button {
  margin-top: 23px;
}

.contact-main small {
  display: block;
  max-width: 520px;
  margin-top: 20px;
  color: #848780;
  font-size: .65rem;
}

.contact-card {
  padding: 40px;
  color: var(--white);
  background: var(--ink-soft);
}

.contact-avatar {
  display: block;
  width: 104px;
  height: 104px;
  margin-bottom: 80px;
  border: 2px solid rgba(209,186,140,.72);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0 0 6px rgba(209,186,140,.06);
}

.contact-card > div {
  padding: 22px 0;
  border-top: 1px solid var(--dark-line);
}

.contact-card p {
  margin-bottom: 5px;
  color: rgba(255,255,255,.38);
  font-size: .63rem;
  text-transform: uppercase;
}

.contact-card a {
  display: flex;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.contact-card a:hover {
  color: var(--gold-light);
}

.site-footer {
  padding: 29px 0 16px;
  border-top: 1px solid var(--dark-line);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  padding-bottom: 27px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 30px;
}

.social-links a {
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  transition: color .2s ease;
}

.social-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: grid;
  grid-template-columns: .4fr 1fr;
  gap: 50px;
  padding-top: 26px;
  color: rgba(255,255,255,.32);
  border-top: 1px solid var(--dark-line);
  font-size: .61rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-contact {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--gold-light);
  box-shadow: 0 10px 30px rgba(0,0,0,.24);
  font-size: .7rem;
  font-weight: 600;
}

.floating-contact svg {
  width: 19px;
  fill: currentColor;
}

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

.reveal[data-delay="1"] {
  transition-delay: .12s;
}

.reveal[data-delay="2"] {
  transition-delay: .24s;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: 1.12fr .88fr;
    gap: 45px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-card:last-child {
    grid-column: 1 / -1;
  }

  .project-card:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .project-card:last-child .project-image {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 820px) {
  :root {
    --gutter: 24px;
  }

  .header-inner {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 3;
    justify-self: end;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(16, 23, 28, .28);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    opacity: 0;
  }

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

  .header-inner > .brand {
    position: relative;
    z-index: 3;
  }

  body.menu-open .site-header {
    background: var(--ink);
    backdrop-filter: none;
  }

  body.menu-open .menu-toggle {
    position: fixed;
    z-index: 4;
    top: 13px;
    right: var(--gutter);
  }

  .main-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    justify-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    padding: 94px var(--gutter) 28px;
    overflow-y: auto;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .main-nav.is-open {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--dark-line);
    font-family: var(--serif);
    font-size: clamp(1.35rem, 5.8vw, 1.75rem);
    line-height: 1.2;
    letter-spacing: 0;
  }

  .main-nav a::after {
    bottom: 0;
  }

  .hero {
    padding-top: 84px;
  }

  .hero-photo-bg {
    width: 100%;
    background: #2c1a14;
  }

  .hero-photo-bg img {
    object-position: 58% 38%;
    opacity: .64;
  }

  .hero-photo-bg::after {
    background:
      linear-gradient(90deg, rgba(35, 19, 14, .95), rgba(43, 25, 18, .72) 58%, rgba(43, 25, 18, .38)),
      linear-gradient(180deg, rgba(31, 18, 14, .58), transparent 32%, rgba(31, 18, 14, .58));
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: 100%;
    padding-bottom: 25px;
  }

  .hero-visual {
    min-height: 470px;
    width: min(100%, 470px);
    margin: 0 auto;
  }

  .hero-map {
    width: 1000px;
    opacity: .13;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts > div,
  .hero-facts > div:not(:first-child) {
    padding: 21px 0;
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .hero-facts > div:last-child {
    border-bottom: 0;
  }

  .split-heading,
  .method-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .method-intro {
    position: static;
  }

  .request-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .formats-grid {
    grid-template-columns: 1fr;
  }

  .format-card,
  .format-image-content {
    min-height: 510px;
  }

  .journey-strip {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .about-grid {
    gap: 75px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card:last-child {
    grid-column: auto;
    display: flex;
  }

  .project-card:last-child .project-image {
    aspect-ratio: 4 / 3;
  }

  .philosophy-section {
    min-height: 460px;
  }

  .footer-top {
    align-items: flex-start;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .floating-contact {
    display: flex;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 18px;
    --section-space: 16px;
  }

  body {
    font-size: 15px;
  }

  .brand-name {
    font-size: .98rem;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 10.67vw, 3.07rem);
    line-height: 1.22;
  }

  h2 {
    font-size: clamp(1.67rem, 7.67vw, 2.47rem);
  }

  .hero {
    min-height: auto;
    padding-top: 74px;
  }

  .hero-photo-bg {
    right: 0;
    left: auto;
    width: 66%;
    background: #2c1a14;
  }

  .hero-photo-bg img {
    height: calc(100% + 90px);
    object-position: 42% center;
    opacity: .86;
    transform: translateY(-90px);
  }

  .hero-photo-bg::after {
    background:
      linear-gradient(90deg, rgba(35, 19, 14, .92), rgba(43, 25, 18, .55) 50%, rgba(43, 25, 18, .18)),
      linear-gradient(180deg, rgba(31, 18, 14, .42), transparent 31%, rgba(31, 18, 14, .52));
  }

  .hero-copy {
    min-width: 0;
    padding-block: 4px 12px;
  }

  .hero .eyebrow {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: .62rem;
    letter-spacing: .12em;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 62%;
    margin-bottom: 12px;
  }

  .hero-role {
    max-width: 76%;
    margin-bottom: 10px;
    font-size: 1.25rem;
  }

  .hero-lead {
    margin-bottom: 18px;
    font-size: .92rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .hero-note {
    margin-top: 12px;
  }

  .text-link {
    justify-content: space-between;
  }

  .hero-visual {
    min-height: 410px;
  }

  .portrait-frame {
    inset: 0 0 32px;
  }

  .portrait-frame::before {
    width: 225px;
    height: 320px;
  }

  .portrait-label {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .visual-caption {
    right: -5px;
  }

  .request-grid {
    grid-template-columns: 1fr;
  }

  .request-card {
    min-height: 185px;
    padding: 13px;
  }

  .request-card > span {
    margin-bottom: 22px;
  }

  .method-steps li,
  .tool-note {
    grid-template-columns: 42px 1fr;
    gap: 13px;
  }

  .tool-note {
    margin-top: 17px;
    padding: 13px 12px;
  }

  .format-card,
  .format-image-content {
    min-height: 340px;
    padding: 16px;
  }

  .format-top {
    margin-bottom: 30px;
  }

  .format-card h3 {
    font-size: clamp(1.4rem, 7vw, 2.07rem);
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-placeholder {
    padding: 13px;
  }

  .section-heading {
    margin-bottom: 10px;
  }

  .split-heading {
    gap: 12px;
  }

  .section-closing {
    margin-top: 14px;
  }

  .method-layout {
    gap: 20px;
  }

  .method-steps li {
    padding-block: 19px;
  }

  .journey-strip {
    gap: 12px;
    margin-top: 4px;
    padding: 18px;
  }

  .about-grid {
    gap: 38px;
  }

  .about-facts {
    margin-top: 16px;
  }

  .about-facts > div {
    min-height: 80px;
    padding: 12px;
  }

  .disciplines {
    margin-top: 14px;
  }

  .projects-grid,
  .project-card,
  .project-image,
  .project-body {
    width: 100%;
    min-width: 0;
  }

  .projects-grid {
    gap: 4px;
    align-items: start;
  }

  .project-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }

  .project-image,
  .project-card:last-child .project-image {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .project-image img {
    position: absolute;
    inset: 0;
    object-position: center;
  }

  .project-body {
    padding: 13px;
    overflow-wrap: anywhere;
  }

  .project-body h3 {
    margin-bottom: 12px;
  }

  .project-body > a,
  .project-status {
    padding-top: 9px;
  }

  .philosophy-section {
    min-height: 0;
    padding-block: 28px;
    isolation: isolate;
  }

  .philosophy-bg {
    background:
      linear-gradient(90deg, rgba(10,15,18,.92), rgba(10,15,18,.62)),
      url("assets/images/white-path.jpg") 63% center / cover;
  }

  .philosophy-note {
    margin-top: 18px;
    padding-left: 12px;
  }

  .contact-grid {
    gap: 20px;
  }

  .contact-main h2 {
    margin-bottom: 17px;
  }

  .contact-main .button {
    margin-top: 12px;
  }

  .contact-main small {
    margin-top: 10px;
  }

  .contact-card {
    padding: 14px;
  }

  .contact-avatar {
    width: 88px;
    height: 88px;
    margin-bottom: 28px;
  }

  .contact-card > div {
    padding-block: 11px;
  }

  .hero-facts {
    margin-top: 8px;
  }

  .hero-facts > div,
  .hero-facts > div:not(:first-child) {
    gap: 10px;
    padding: 10px 0;
  }

  .hero-facts strong {
    font-size: 2.1rem;
  }

  .site-footer {
    padding-block: 15px 8px;
  }

  .footer-top {
    gap: 16px;
    padding-bottom: 14px;
  }

  .footer-bottom {
    padding-top: 13px;
  }

  .footer-top {
    flex-direction: column;
  }

  .social-links {
    justify-content: flex-start;
  }

  .floating-contact {
    right: 10px;
    bottom: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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