@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Manrope:wght@300;400;500;600&display=swap");
:root {
  --ink: #0a0b0b;
  --ink-soft: #111312;
  --paper: #e8e0d4;
  --paper-light: #f2eee7;
  --bronze: #b18a58;
  --bronze-light: #d1ad79;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(35, 31, 26, 0.2);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: #f8f5ef;
  background: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 1px solid var(--bronze-light);
  outline-offset: 5px;
}

.preloader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  background: #080909;
  transition:
    opacity 500ms ease,
    visibility 500ms ease;
}

.preloader--hidden {
  visibility: hidden;
  opacity: 0;
}

.preloader .brand-symbol {
  transform: scale(1.2);
}

.preloader-line {
  position: absolute;
  left: 50%;
  top: calc(50% + 58px);
  width: 96px;
  height: 1px;
  overflow: hidden;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.12);
}

.preloader-line::after {
  position: absolute;
  content: "";
  inset: 0;
  transform-origin: left;
  animation: intro-line 900ms cubic-bezier(0.6, 0, 0.2, 1) forwards;
  background: var(--bronze);
}

@keyframes intro-line {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 84px;
  padding: 0 clamp(24px, 4.2vw, 72px);
  grid-template-columns: minmax(230px, 1fr) auto minmax(200px, 1fr);
  align-items: center;
  transition:
    height 350ms ease,
    background 350ms ease,
    border-color 350ms ease;
  border-bottom: 1px solid transparent;
}

.site-header--scrolled {
  height: 68px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(8, 9, 9, 0.84);
  backdrop-filter: blur(18px);
}

.header-brand {
  justify-self: start;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.brand-symbol {
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.brand-word {
  display: grid;
  line-height: 1;
}

.brand-word strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.brand-word small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 7px;
  letter-spacing: 0.24em;
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 2vw, 36px);
  align-items: center;
  justify-content: center;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
  background: var(--bronze);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.outline-button {
  display: inline-flex;
  min-height: 42px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  transition:
    color 300ms ease,
    background 300ms ease,
    border-color 300ms ease;
  border: 1px solid rgba(177, 138, 88, 0.7);
  color: #f4e8d5;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.outline-button:hover {
  color: var(--ink);
  border-color: var(--bronze-light);
  background: var(--bronze-light);
}

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

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

.hero {
  position: relative;
  display: flex;
  min-height: 94vh;
  padding: 130px clamp(28px, 5vw, 86px) 58px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay,
.hero-grain {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.005);
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

@keyframes hero-breathe {
  to {
    transform: scale(1.035);
  }
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 7, 9, 0.93) 0%, rgba(5, 7, 8, 0.65) 40%, rgba(5, 7, 8, 0.08) 73%),
    linear-gradient(0deg, rgba(4, 5, 5, 0.72) 0%, transparent 36%);
}

.hero-grain {
  z-index: -1;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-content {
  width: min(760px, 66vw);
  animation: reveal-up 900ms 820ms both;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.eyebrow,
.section-kicker {
  color: var(--bronze-light);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.hero h1 {
  margin: 26px 0 22px;
  color: #f7f2e9;
  font-family: var(--serif);
  font-size: clamp(52px, 5.45vw, 90px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.hero h1 em {
  color: #e4d7c7;
  font-weight: 400;
}

.hero-content > p {
  width: min(460px, 90%);
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.8;
}

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

.text-link {
  display: inline-flex;
  min-height: 38px;
  padding-bottom: 3px;
  gap: 30px;
  align-items: center;
  transition: color 250ms ease;
  border-bottom: 1px solid var(--bronze);
  color: var(--bronze-light);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.text-link:hover {
  color: #fff;
}

.hero-signature {
  position: absolute;
  right: clamp(40px, 6vw, 100px);
  bottom: 88px;
  display: grid;
  width: 230px;
  padding: 18px 0 2px 25px;
  border-left: 1px solid rgba(209, 173, 121, 0.6);
  color: #f1e7d8;
}

.hero-signature-index {
  margin-bottom: 20px;
  color: var(--bronze-light);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.hero-signature strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.hero-signature strong em {
  color: var(--bronze-light);
  font-weight: 400;
}

.hero-signature-line {
  width: 44px;
  height: 1px;
  margin: 20px 0 14px;
  background: rgba(209, 173, 121, 0.75);
}

.hero-signature small {
  max-width: 170px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 7px;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-index {
  position: absolute;
  right: 22px;
  top: 50%;
  display: grid;
  gap: 8px;
  place-items: center;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
}

.hero-index span:not(:first-child) {
  width: 3px;
  height: 3px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.hero-index .active {
  background: var(--bronze-light);
}

.temporary-note {
  position: absolute;
  right: clamp(28px, 5vw, 86px);
  bottom: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.dark-section {
  position: relative;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #0c0e0d;
  background-size: 80px 80px;
}

.essence {
  min-height: 510px;
  padding: 104px clamp(28px, 11vw, 190px);
}

.chapter-number {
  position: absolute;
  right: clamp(28px, 5vw, 86px);
  top: 80px;
  color: rgba(255, 255, 255, 0.1);
  font-family: var(--serif);
  font-size: 76px;
}

.essence-grid {
  display: grid;
  margin-top: 28px;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(48px, 9vw, 160px);
  align-items: end;
}

.essence h2 {
  max-width: 640px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.essence h2 em {
  color: var(--bronze-light);
  font-weight: 400;
}

.essence-copy {
  padding-left: clamp(28px, 4vw, 68px);
  border-left: 1px solid var(--line-dark);
}

.essence-copy p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.9;
}

.essence-copy .text-link {
  margin-top: 20px;
}

.light-section {
  color: #25221e;
  background:
    radial-gradient(circle at 0 0, rgba(177, 138, 88, 0.08), transparent 34%),
    var(--paper-light);
}

.founders,
.projects {
  padding: 120px clamp(28px, 5vw, 86px);
}

.section-heading {
  display: grid;
  margin-bottom: 78px;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  align-items: end;
  border-bottom: 1px solid var(--line-light);
}

.section-heading > div {
  padding-bottom: 30px;
}

.chapter-label {
  color: rgba(37, 34, 30, 0.45);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.section-heading .section-kicker {
  margin: 12px 0 0;
}

.section-heading h2 {
  max-width: 740px;
  margin: 0;
  padding-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.1vw, 66px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.founder {
  display: grid;
  max-width: 1180px;
  margin: 0 auto 130px;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
}

.founder--helena {
  grid-template-columns: minmax(360px, 1.18fr) minmax(320px, 0.82fr);
}

.founder-photo {
  position: relative;
  margin: 0;
}

.founder-photo::before {
  position: absolute;
  z-index: 2;
  top: -18px;
  left: -18px;
  width: 72px;
  height: 72px;
  content: "";
  border-top: 1px solid var(--bronze);
  border-left: 1px solid var(--bronze);
}

.founder-photo img {
  display: block;
  width: 100%;
  height: clamp(530px, 58vw, 760px);
  object-fit: cover;
  object-position: center 10%;
  filter: saturate(0.9) contrast(1.02);
}

.founder--rafael .founder-photo img {
  object-position: center 2%;
}

.founder-photo figcaption {
  display: flex;
  padding-top: 14px;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
  color: rgba(37, 34, 30, 0.48);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.founder-copy > span {
  color: #8c6a40;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.founder-copy h3 {
  margin: 16px 0 36px;
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 94px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.04em;
}

.founder-copy blockquote {
  max-width: 580px;
  margin: 0 0 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: clamp(24px, 2.3vw, 36px);
  font-style: italic;
  line-height: 1.22;
}

.founder-copy > p {
  max-width: 480px;
  margin: 0;
  color: rgba(37, 34, 30, 0.62);
  font-size: 13px;
  line-height: 1.9;
}

.projects {
  color: #f2eee7;
}

.section-heading--dark {
  border-color: var(--line-dark);
}

.section-heading--dark .chapter-label {
  color: rgba(255, 255, 255, 0.36);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px 20px;
}

.project-card {
  min-width: 0;
}

.project-card--1 {
  grid-column: 1 / span 7;
}

.project-card--2 {
  margin-top: 150px;
  grid-column: 9 / span 4;
}

.project-card--3 {
  grid-column: 4 / span 8;
}

.project-image-wrap {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #171918;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.project-card--1 .project-image-wrap {
  aspect-ratio: 16 / 10;
}

.project-card--2 .project-image-wrap {
  aspect-ratio: 4 / 5;
}

.project-card--3 .project-image-wrap {
  aspect-ratio: 16 / 9;
}

.project-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-card:hover img {
  transform: scale(1.025);
}

.project-open {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  min-height: 34px;
  padding: 0 14px;
  gap: 14px;
  align-items: center;
  transform: translateY(10px);
  transition:
    opacity 350ms ease,
    transform 350ms ease;
  border: 1px solid rgba(255, 255, 255, 0.35);
  opacity: 0;
  background: rgba(8, 9, 9, 0.7);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.project-image-wrap:hover .project-open,
.project-image-wrap:focus-visible .project-open {
  opacity: 1;
  transform: none;
}

.project-caption {
  display: grid;
  padding-top: 17px;
  grid-template-columns: 0.7fr 1fr auto;
  gap: 20px;
  align-items: start;
  border-top: 1px solid var(--line-dark);
}

.project-caption > div {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.project-caption span,
.project-caption p,
.project-caption small {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.project-caption h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.project-caption small {
  line-height: 1.6;
  text-align: right;
}

.project-actions {
  display: flex;
  max-width: 900px;
  margin: 84px auto 0;
  padding-top: 26px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
}

.project-actions > span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
}

.project-actions button {
  background: transparent;
  cursor: pointer;
}

.project-card--hidden {
  display: none;
}

.project-card--4 {
  margin-top: 60px;
  grid-column: 1 / span 5;
}

.project-card--5 {
  grid-column: 7 / span 6;
}

.project-card--6 {
  margin-top: 80px;
  grid-column: 4 / span 5;
}

.project-card--4 .project-image-wrap,
.project-card--5 .project-image-wrap {
  aspect-ratio: 4 / 5;
}

.project-card--6 .project-image-wrap {
  aspect-ratio: 4 / 5;
}

.immersive {
  position: relative;
  display: grid;
  min-height: min(84vh, 820px);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.immersive > img,
.immersive-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.immersive > img {
  object-fit: cover;
}

.immersive-overlay {
  z-index: -1;
  background: linear-gradient(
    0deg,
    rgba(7, 7, 6, 0.72),
    rgba(7, 7, 6, 0.12) 60%,
    rgba(7, 7, 6, 0.32)
  );
}

.immersive-copy {
  display: grid;
  width: min(1000px, 88vw);
  place-items: center;
  text-align: center;
}

.immersive-copy > span {
  margin-bottom: 22px;
  color: var(--bronze-light);
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.immersive blockquote {
  max-width: 980px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 400;
  font-style: italic;
  line-height: 0.98;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.42);
}

.services {
  display: grid;
  padding: 120px clamp(28px, 7vw, 120px);
  grid-template-columns: minmax(320px, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(70px, 10vw, 170px);
  align-items: end;
}

.services-intro h2 {
  max-width: 620px;
  margin: 24px 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.services-intro .section-kicker {
  margin: 18px 0 0;
}

.services-intro > p:last-child {
  max-width: 490px;
  margin: 0;
  color: rgba(37, 34, 30, 0.62);
  font-size: 13px;
  line-height: 1.85;
}

.service-list {
  border-top: 1px solid var(--line-light);
}

.service-list article {
  display: grid;
  min-height: 170px;
  padding: 28px 0;
  grid-template-columns: 42px 0.85fr 1.15fr auto;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
}

.service-list article > span {
  color: #8c6a40;
  font-size: 9px;
}

.service-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
}

.service-list p {
  margin: 0;
  color: rgba(37, 34, 30, 0.58);
  font-size: 12px;
  line-height: 1.75;
}

.service-list article > span:last-child {
  color: #8c6a40;
  font-size: 18px;
}

.process {
  padding: 120px clamp(28px, 7vw, 120px);
}

.process-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.15fr 0.7fr;
  gap: 44px;
  align-items: end;
}

.process-heading .chapter-label {
  align-self: start;
  color: rgba(255, 255, 255, 0.38);
}

.process-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.3vw, 80px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.process-heading h2 em {
  color: var(--bronze-light);
  font-weight: 400;
}

.process-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.8;
}

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

.process-steps article {
  min-height: 280px;
  padding: 28px 28px 34px;
  border-right: 1px solid var(--line-dark);
}

.process-steps article:last-child {
  border-right: 0;
}

.process-steps span {
  color: var(--bronze);
  font-size: 9px;
}

.process-steps h3 {
  margin: 72px 0 18px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.process-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.75;
}

.trajectory {
  display: grid;
  padding: 112px clamp(28px, 7vw, 120px);
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
}

.trajectory-number {
  display: grid;
  padding-right: 60px;
  justify-items: end;
  border-right: 1px solid var(--line-light);
  color: #8c6a40;
}

.trajectory-number strong {
  font-family: var(--serif);
  font-size: clamp(150px, 20vw, 300px);
  font-weight: 400;
  line-height: 0.65;
  letter-spacing: -0.08em;
}

.trajectory-number span {
  margin-top: 34px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
}

.trajectory-copy h2 {
  max-width: 800px;
  margin: 24px 0 48px;
  font-family: var(--serif);
  font-size: clamp(45px, 5vw, 74px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.differentials {
  display: grid;
  max-width: 820px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-light);
}

.differentials span {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(37, 34, 30, 0.64);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.contact {
  display: grid;
  padding: 120px clamp(28px, 8vw, 140px);
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 160px);
}

.contact-intro .chapter-label {
  color: rgba(255, 255, 255, 0.38);
}

.contact-intro h2 {
  margin: 30px 0 28px;
  font-family: var(--serif);
  font-size: clamp(48px, 5.6vw, 86px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.contact-intro h2 em {
  color: var(--bronze-light);
  font-weight: 400;
}

.contact-intro p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.85;
}

.contact-intro small {
  display: block;
  max-width: 470px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.32);
  font-size: 8px;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label > span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 0;
  resize: vertical;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 13px;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--bronze) 50%),
    linear-gradient(135deg, var(--bronze) 50%, transparent 50%);
  background-position:
    calc(100% - 8px) 21px,
    calc(100% - 3px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.contact-form option {
  color: var(--ink);
  background: var(--paper-light);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--bronze-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.submit-button {
  width: max-content;
  min-height: 48px;
  margin-top: 10px;
  gap: 24px;
  background: transparent;
  cursor: pointer;
}

.site-footer {
  display: grid;
  padding: 72px clamp(28px, 7vw, 120px) 28px;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px 80px;
  border-top: 1px solid var(--line-dark);
  background: #070808;
}

.footer-brand p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--serif);
  font-size: 21px;
}

.site-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 36px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.site-footer nav a:hover {
  color: var(--bronze-light);
}

.footer-meta {
  display: flex;
  padding-top: 22px;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.28);
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.preview-ending {
  display: flex;
  padding: 82px clamp(28px, 8vw, 140px);
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  color: #2a261f;
  background: var(--paper);
}

.preview-ending span {
  color: #86653e;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.preview-ending h2 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 400;
}

.preview-ending .outline-button {
  color: #3b3023;
}

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

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(177, 138, 88, 0.55);
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    transition: transform 300ms ease;
    background: #f5eee4;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition:
      opacity 350ms ease,
      visibility 350ms ease;
    background: rgba(8, 9, 9, 0.98);
  }

  .mobile-menu--open {
    visibility: visible;
    opacity: 1;
  }

  .mobile-menu-inner {
    display: flex;
    height: 100%;
    padding: 110px clamp(28px, 8vw, 80px) 48px;
    flex-direction: column;
    justify-content: space-between;
  }

  .mobile-menu-inner > p,
  .mobile-menu-inner > small {
    color: rgba(255, 255, 255, 0.38);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    display: flex;
    padding: 14px 0;
    gap: 24px;
    align-items: baseline;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--serif);
    font-size: clamp(38px, 7vw, 68px);
    line-height: 1;
  }

  .mobile-menu nav span {
    color: var(--bronze);
    font-family: var(--sans);
    font-size: 8px;
  }

  .hero-content {
    width: min(760px, 78vw);
  }

  .hero-signature {
    right: 36px;
  }

  .services,
  .contact {
    grid-template-columns: 1fr;
  }

  .services {
    gap: 70px;
  }

  .process-heading {
    grid-template-columns: 0.45fr 1.2fr;
  }

  .process-heading > p {
    grid-column: 2;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps article:nth-child(2) {
    border-right: 0;
  }

  .process-steps article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .trajectory {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-header--scrolled {
    height: 66px;
    padding: 0 20px;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
  }

  .brand-word strong {
    font-size: 14px;
  }

  .brand-word small {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 104px 22px 56px;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(4, 7, 9, 0.95) 0%, rgba(4, 7, 9, 0.64) 54%, rgba(4, 7, 9, 0.16) 100%),
      linear-gradient(90deg, rgba(4, 7, 9, 0.5), transparent);
  }

  .hero-content {
    width: 100%;
  }

  .eyebrow {
    max-width: 300px;
    font-size: 8px;
    line-height: 1.7;
  }

  .hero h1 {
    margin: 18px 0;
    font-size: clamp(43px, 13vw, 58px);
    line-height: 0.93;
  }

  .hero-content > p {
    width: 100%;
    max-width: 390px;
    font-size: 11px;
    line-height: 1.7;
  }

  .hero-actions {
    margin-top: 26px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .text-link {
    gap: 18px;
  }

  .hero-signature,
  .hero-index {
    display: none;
  }

  .temporary-note {
    right: 22px;
    bottom: 14px;
    left: 22px;
    line-height: 1.5;
  }

  .essence {
    min-height: auto;
    padding: 86px 22px;
  }

  .chapter-number {
    right: 22px;
    top: 72px;
    font-size: 54px;
  }

  .essence-grid {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .essence h2 {
    max-width: 92%;
    font-size: clamp(39px, 11vw, 52px);
  }

  .essence-copy {
    padding: 28px 0 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .founders,
  .projects {
    padding: 86px 22px;
  }

  .section-heading {
    margin-bottom: 54px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-heading > div {
    padding-bottom: 18px;
  }

  .section-heading h2 {
    padding-bottom: 22px;
    font-size: clamp(38px, 11vw, 50px);
  }

  .founder,
  .founder--helena {
    margin-bottom: 90px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .founder--helena .founder-copy {
    order: 2;
  }

  .founder-photo img {
    height: min(130vw, 620px);
    object-position: center 4%;
  }

  .founder-copy h3 {
    margin: 12px 0 26px;
    font-size: clamp(54px, 17vw, 72px);
  }

  .founder-copy blockquote {
    font-size: 26px;
  }

  .project-grid {
    display: block;
  }

  .project-card,
  .project-card--2,
  .project-card--4,
  .project-card--5,
  .project-card--6 {
    margin: 0 0 58px;
  }

  .project-card--1 .project-image-wrap,
  .project-card--3 .project-image-wrap,
  .project-card--4 .project-image-wrap,
  .project-card--5 .project-image-wrap,
  .project-card--6 .project-image-wrap {
    aspect-ratio: 4 / 5;
  }

  .project-card--hidden {
    display: none;
  }

  .project-caption {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .project-caption h3 {
    font-size: 27px;
  }

  .project-caption small {
    text-align: left;
  }

  .project-actions {
    margin-top: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .project-open {
    opacity: 1;
    transform: none;
  }

  .immersive {
    min-height: 70svh;
  }

  .immersive > img {
    object-position: 56% center;
  }

  .immersive-copy {
    width: calc(100% - 44px);
  }

  .immersive blockquote {
    font-size: clamp(42px, 13vw, 58px);
  }

  .services,
  .process,
  .trajectory,
  .contact {
    padding: 86px 22px;
  }

  .services {
    display: block;
  }

  .services-intro {
    margin-bottom: 58px;
  }

  .services-intro h2 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .service-list article {
    min-height: auto;
    padding: 26px 0;
    grid-template-columns: 34px 1fr auto;
    gap: 14px;
  }

  .service-list h3 {
    font-size: 33px;
  }

  .service-list p {
    padding-left: 48px;
    grid-column: 1 / -1;
  }

  .process-heading {
    display: block;
  }

  .process-heading h2 {
    margin: 28px 0;
    font-size: clamp(46px, 13vw, 58px);
  }

  .process-steps {
    margin-top: 58px;
    grid-template-columns: 1fr;
  }

  .process-steps article,
  .process-steps article:nth-child(2) {
    min-height: auto;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .process-steps article:last-child {
    border-bottom: 0;
  }

  .process-steps h3 {
    margin: 34px 0 14px;
  }

  .trajectory {
    display: block;
  }

  .trajectory-number {
    margin-bottom: 70px;
    padding: 0 0 38px;
    justify-items: start;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .trajectory-number strong {
    font-size: 170px;
  }

  .trajectory-copy h2 {
    font-size: clamp(43px, 12.5vw, 56px);
  }

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

  .contact {
    display: block;
  }

  .contact-intro {
    margin-bottom: 64px;
  }

  .contact-intro h2 {
    font-size: clamp(48px, 14vw, 62px);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer {
    padding: 64px 22px 24px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .preview-ending {
    padding: 64px 22px;
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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