:root {
  --bg: #f4f0e8;
  --paper: #fbf8f2;
  --ink: #11100e;
  --muted: #6f675c;
  --line: #d8d0c3;
  --line-strong: #b8a98e;
  --dark: #211d18;
  --brown: #3c3128;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 24px 70px rgba(17, 16, 14, 0.12);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 12% 8%, rgba(184, 169, 142, 0.28), transparent 30%),
    radial-gradient(circle at 78% 0%, rgba(60, 49, 40, 0.08), transparent 28%),
    var(--bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button, input, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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


.background-thread {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1440px, 100vw);
  height: 5200px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: .18;
}

.thread-path {
  stroke: #11100e;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1 0;
}

main,
.site-header,
.site-footer,
.modal {
  position: relative;
  z-index: 1;
}

.cursor-orb {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(184, 169, 142, .16), transparent 66%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity .5s ease;
}

.section {
  position: relative;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 96px 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(216, 208, 195, .78);
  background: rgba(244, 240, 232, .72);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  padding: 10px 12px 10px 14px;
  box-shadow: 0 14px 50px rgba(17, 16, 14, .06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}


.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav a {
  transition: color .25s ease;
}

.main-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 700;
}

.lang-toggle span.active {
  color: var(--ink);
}

.divider {
  margin: 0 3px;
  color: var(--line-strong);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  background: var(--ink);
  position: absolute;
  left: 12px;
  transition: transform .25s ease;
}

.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 24px; }

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

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

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(244, 240, 232, .96);
  backdrop-filter: blur(18px);
  gap: 26px;
  font-family: var(--serif);
  font-size: 38px;
}

.hero {
  min-height: 100vh;
  width: 100%;
  padding: 160px max(22px, calc((100vw - 1180px)/2)) 110px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 56px;
  overflow: hidden;
}

.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-kicker span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(251, 248, 242, .5);
}

.hero-title {
  margin: 0;
  max-width: 970px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .96;
  letter-spacing: -.018em;
}

.hero-copy {
  max-width: 690px;
  margin: 38px 0 0;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.18;
  letter-spacing: -.01em;
}

.hero-subcopy {
  max-width: 610px;
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(17, 16, 14, .1);
}

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

.button-light {
  background: rgba(251, 248, 242, .62);
  color: var(--ink);
}


.hero-loop {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(184, 169, 142, .34);
  border-radius: 48% 52% 47% 53%;
  transform: rotate(-16deg);
}

.hero-loop-one {
  width: 740px;
  height: 280px;
  right: -190px;
  top: 16%;
  animation: slowRotate 22s linear infinite;
}

.hero-loop-two {
  width: 980px;
  height: 360px;
  left: -360px;
  bottom: 5%;
  transform: rotate(20deg);
  animation: slowRotateReverse 28s linear infinite;
}


.section-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

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

.method-item {
  padding: 42px 34px 46px 0;
  min-height: 330px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.method-item + .method-item {
  padding-left: 34px;
}

.method-item:last-child {
  border-right: 0;
}

.method-number {
  color: var(--line-strong);
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
}

.method-item h2 {
  margin: auto 0 18px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -.012em;
}

.method-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.manifesto {
  margin-top: 48px;
  text-align: right;
}

.manifesto p {
  display: inline-block;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -.012em;
}

.section-intro {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.018em;
}

.section-intro p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.pillar-card {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 44px;
  padding: 48px;
  margin-top: 18px;
  border: 1px solid rgba(216, 208, 195, .9);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(251,248,242,.84), rgba(244,240,232,.44));
  overflow: hidden;
}

.pillar-card:before {
  content: "";
  position: absolute;
  width: 430px;
  height: 210px;
  border: 1px solid rgba(184, 169, 142, .28);
  border-radius: 50%;
  right: -140px;
  top: -70px;
  transform: rotate(-20deg);
}

.pillar-index {
  font-family: var(--serif);
  font-size: 86px;
  line-height: .8;
  color: rgba(184, 169, 142, .64);
  letter-spacing: -.06em;
}

.pillar-eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 16px;
}

.pillar-content h3 {
  max-width: 820px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.02;
  letter-spacing: -.015em;
  font-weight: 400;
}

.pillar-content p {
  max-width: 780px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

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

.participation-card {
  width: 100%;
  min-height: 380px;
  padding: 26px;
  text-align: left;
  border: 1px solid rgba(216, 208, 195, .9);
  border-radius: 34px;
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 14%, rgba(184,169,142,.22), transparent 32%),
    rgba(251, 248, 242, .68);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.participation-card:before {
  content: "";
  position: absolute;
  width: 230px;
  height: 100px;
  border: 1px solid rgba(184, 169, 142, .3);
  border-radius: 50%;
  right: -80px;
  bottom: 55px;
  transform: rotate(-24deg);
  transition: transform .5s ease;
}

.participation-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 169, 142, .74);
}

.participation-card:hover:before {
  transform: rotate(-8deg) translateX(-8px);
}

.project-status {
  align-self: flex-start;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}

.participation-card h3 {
  margin: auto 0 18px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.018em;
}

.participation-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 92%;
}

.project-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

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

.expertise-list article {
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: 44px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.expertise-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -.01em;
}

.expertise-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 700px;
}

.working-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  border-radius: 44px;
  color: var(--bg);
  background:
    radial-gradient(circle at 14% 22%, rgba(184, 169, 142, .28), transparent 30%),
    var(--ink);
  overflow: hidden;
  position: relative;
}

.working-card img {
  width: 100%;
  filter: invert(1);
  opacity: .84;
}

.working-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -.018em;
  font-weight: 400;
}

.working-card p {
  color: rgba(244, 240, 232, .72);
  max-width: 720px;
  line-height: 1.7;
  margin: 24px 0 0;
}

.working-card .section-label {
  color: rgba(244, 240, 232, .62);
}

.contact {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 58px;
  align-items: start;
}

.contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1;
  letter-spacing: -.018em;
  font-weight: 400;
}

.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 28px;
  background: rgba(251, 248, 242, .66);
}

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

label {
  display: block;
  margin-bottom: 16px;
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}

input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(244, 240, 232, .64);
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

textarea {
  resize: vertical;
}

input:focus, textarea:focus {
  border-color: var(--line-strong);
  background: var(--paper);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 44px 0 38px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 22px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 16, 14, .42);
  backdrop-filter: blur(12px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(780px, calc(100vh - 44px));
  overflow: auto;
  border-radius: 38px;
  background: var(--paper);
  padding: 34px;
  box-shadow: 0 30px 90px rgba(17, 16, 14, .25);
}

.modal-card:before {
  content: "";
  position: absolute;
  width: 360px;
  height: 140px;
  border: 1px solid rgba(184, 169, 142, .26);
  border-radius: 50%;
  top: -56px;
  right: -120px;
  transform: rotate(-18deg);
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.modal-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  padding-right: 54px;
}

.modal-card h2 {
  margin: 28px 0 8px;
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 78px);
  line-height: .96;
  letter-spacing: -.018em;
  font-weight: 400;
}

.modal-category {
  color: var(--muted);
  margin: 0 0 28px;
  font-size: 18px;
}

.modal-section {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 20px;
}

.modal-section h3 {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.modal-section p {
  margin: 0;
  line-height: 1.7;
  color: var(--brown);
}

.modal-link {
  margin-top: 26px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
  transition-delay: var(--delay, 0ms);
}

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

@keyframes floatSymbol {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

@keyframes slowRotate {
  from { transform: rotate(-16deg); }
  to { transform: rotate(344deg); }
}

@keyframes slowRotateReverse {
  from { transform: rotate(20deg); }
  to { transform: rotate(-340deg); }
}

@keyframes floatA {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(-18px, 18px, 0) rotate(2deg); }
}

@keyframes floatB {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(2deg); }
  50% { transform: translate3d(16px, -18px, 0) rotate(-1deg); }
}

@keyframes floatC {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(1deg); }
  50% { transform: translate3d(20px, 12px, 0) rotate(-2deg); }
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  body.menu-open .mobile-nav {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 140px;
  }

  .method-grid,
  .participation-grid {
    grid-template-columns: 1fr;
  }

  .method-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 34px 0;
    min-height: unset;
  }

  .method-item + .method-item {
    padding-left: 0;
  }

  .method-item:last-child {
    border-bottom: 0;
  }

  .pillar-card,
  .working-card,
  .contact,
  .expertise-list article {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    gap: 20px;
    padding: 32px;
  }

  .pillar-index {
    font-size: 60px;
  }

  .working-card {
    padding: 34px;
  }

  .working-card img {
    width: 150px;
  }
}

@media (max-width: 640px) {
  .section {
    width: min(100% - 28px, 1180px);
    padding: 70px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand > span:not(.brand-number) {
    display: none;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 70px;
  }

  .hero-title {
    font-size: clamp(44px, 13vw, 68px);
  }

  .hero-copy {
    font-size: 22px;
  }

  .button {
    width: 100%;
  }

  .statement p {
    font-size: 42px;
  }

  .rope-line {
    height: 110px;
  }

  .method-item h2,
  .participation-card h3 {
    font-size: 42px;
  }

  .pillar-card,
  .contact-form,
  .modal-card {
    padding: 24px;
    border-radius: 28px;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

.brand-logo {
  width: 44px;
  height: 44px;
  display: block;
}

.working-logo {
  width: min(180px, 100%);
  display: block;
  filter: invert(1);
  opacity: .92;
}


.legal-page {
  min-height: 100vh;
}

.legal-header {
  position: sticky;
  transform: none;
  left: auto;
  margin: 18px auto 0;
}

.legal-back {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--paper);
}

.legal-main {
  width: min(980px, calc(100% - 44px));
  margin: 0 auto;
  padding: 92px 0 80px;
}

.legal-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 92px);
  line-height: 1;
  letter-spacing: -.018em;
  font-weight: 400;
}

.legal-hero p {
  color: var(--muted);
}

.legal-content {
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.legal-content article {
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 42px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.05;
  font-weight: 400;
}

.legal-content p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-footer a {
  color: var(--muted);
}

.site-footer a {
  color: var(--muted);
}

@media (max-width: 760px) {
  .legal-content article {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}


.project-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.project-logo-slot {
  min-width: 120px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(244, 240, 232, .72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}

.project-stamp {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  background: rgba(244, 240, 232, .72);
}


/* V12 — dark Ventures / Growth section */
.pillars {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 76px clamp(22px, 4vw, 56px);
  border-radius: 46px;
  background:
    radial-gradient(circle at 12% 12%, rgba(184, 169, 142, .16), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, .07), transparent 28%),
    #11100e;
  color: var(--bg);
  overflow: hidden;
}

.pillars .section-label,
.pillars .pillar-eyebrow {
  color: rgba(244, 240, 232, .62);
}

.pillars .section-intro h2,
.pillars .pillar-content h3,
.pillars .pillar-index {
  color: var(--bg);
}

.pillars .pillar-index {
  color: rgba(244, 240, 232, .24);
}

.pillars .pillar-content p {
  color: rgba(244, 240, 232, .70);
}

.pillars .pillar-card {
  border-color: rgba(244, 240, 232, .14);
  background:
    radial-gradient(circle at 88% 8%, rgba(184, 169, 142, .14), transparent 32%),
    rgba(244, 240, 232, .035);
  backdrop-filter: blur(8px);
}

.pillars .pillar-card:before {
  border-color: rgba(244, 240, 232, .12);
}

/* V12 — final 887 lockup */
.working-logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.working-logo-lockup .working-logo {
  width: min(190px, 100%);
  display: block;
  filter: invert(1);
  opacity: .94;
}

.working-logo-lockup span {
  color: rgba(244, 240, 232, .86);
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  max-width: 230px;
}

.brand-logo {
  object-fit: contain;
}

.hero-logo-panel img,
.mobile-hero-brand img,
.brand-logo,
.working-logo {
  content: url("assets/887-logo-slick.svg");
}

@media (max-width: 980px) {
  .pillars {
    width: min(100% - 28px, 1180px);
    padding: 58px 22px;
    border-radius: 34px;
  }

  .working-logo-lockup {
    align-items: flex-start;
  }

  .working-logo-lockup span {
    text-align: left;
  }
}


/* V13 — remove manifesto and restore light pillars */
.manifesto {
  display: none !important;
}

.pillars {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 96px 0;
  border-radius: 0;
  background: transparent !important;
  color: var(--ink) !important;
  overflow: visible;
}

.pillars .section-label,
.pillars .pillar-eyebrow {
  color: var(--muted) !important;
}

.pillars .section-intro h2,
.pillars .pillar-content h3,
.pillars .pillar-index {
  color: var(--ink) !important;
}

.pillars .pillar-index {
  color: rgba(184, 169, 142, .64) !important;
}

.pillars .pillar-content p {
  color: var(--muted) !important;
}

.pillars .pillar-card {
  border-color: rgba(216, 208, 195, .9) !important;
  background:
    linear-gradient(135deg, rgba(251,248,242,.84), rgba(244,240,232,.44)) !important;
  backdrop-filter: none;
}

.pillars .pillar-card:before {
  border-color: rgba(184, 169, 142, .28) !important;
}

/* V13 — top hero logo lockup */
.hero-top-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 34px;
  position: relative;
  z-index: 3;
}

.hero-top-lockup img {
  width: min(230px, 22vw);
  min-width: 150px;
  height: auto;
  display: block;
}

.hero-top-lockup span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 980px) {
  .pillars {
    width: min(100% - 28px, 1180px);
    padding: 70px 0;
    border-radius: 0;
  }

  .hero-top-lockup {
    margin-bottom: 28px;
  }

  .hero-top-lockup img {
    width: min(220px, 56vw);
    min-width: 0;
  }

  .hero-kicker {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 28px;
  }

  .hero-top-lockup {
    margin-bottom: 26px;
    gap: 16px;
  }

  .hero-top-lockup img {
    width: min(190px, 62vw);
  }

  .hero-top-lockup span {
    font-size: 11px;
    letter-spacing: .18em;
  }
}


/* V14 — desktop nav lockup and mobile simplification */
.brand-lockup {
  gap: 14px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-descriptor {
  display: inline-block;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}

.site-header {
  padding: 8px 12px 8px 12px;
}

.main-nav {
  margin-left: auto;
}

.mobile-lang-toggle {
  display: none;
}

/* Keep the top hero lockup visible on desktop and mobile */
.hero-top-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 34px;
  position: relative;
  z-index: 3;
}

.hero-top-lockup img {
  width: min(230px, 22vw);
  min-width: 150px;
  height: auto;
  display: block;
}

.hero-top-lockup span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Ensure the pillars section stays light */
.pillars {
  background: transparent !important;
  color: var(--ink) !important;
  border-radius: 0 !important;
}

.pillars .section-label,
.pillars .pillar-eyebrow,
.pillars .pillar-content p {
  color: var(--muted) !important;
}

.pillars .section-intro h2,
.pillars .pillar-content h3 {
  color: var(--ink) !important;
}

.pillars .pillar-index {
  color: rgba(184, 169, 142, .64) !important;
}

.pillars .pillar-card {
  border-color: rgba(216, 208, 195, .9) !important;
  background:
    linear-gradient(135deg, rgba(251,248,242,.84), rgba(244,240,232,.44)) !important;
  backdrop-filter: none !important;
}

.manifesto {
  display: none !important;
}

@media (max-width: 760px) {
  .site-header {
    display: none !important;
  }

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

  .mobile-lang-toggle {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 120;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(216, 208, 195, .88);
    background: rgba(244, 240, 232, .78);
    backdrop-filter: blur(16px);
    color: var(--muted);
    border-radius: 999px;
    padding: 10px 12px;
    font-size: 11px;
    letter-spacing: .12em;
    font-weight: 700;
  }

  .mobile-lang-toggle span.active {
    color: var(--ink);
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 72px;
  }

  .hero-kicker {
    display: none;
  }

  .desktop-only {
    display: none !important;
  }

  .hero-top-lockup {
    margin-bottom: 28px;
    gap: 16px;
  }

  .hero-top-lockup img {
    width: min(190px, 58vw);
    min-width: 0;
  }

  .hero-top-lockup span {
    font-size: 11px;
    letter-spacing: .18em;
    max-width: 240px;
  }
}


/* V15 — fixed black navigation on desktop and mobile */
.site-header {
  position: fixed !important;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  z-index: 150;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(244, 240, 232, .12) !important;
  background: rgba(17, 16, 14, .92) !important;
  color: var(--bg) !important;
  backdrop-filter: blur(18px);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 18px 60px rgba(17, 16, 14, .18);
}

.site-header .brand,
.site-header .brand-descriptor,
.site-header .main-nav,
.site-header .main-nav a {
  color: rgba(244, 240, 232, .88) !important;
}

.site-header .main-nav a:hover {
  color: #fff !important;
}

.site-header .brand-logo {
  width: 52px;
  height: 52px;
  filter: invert(1);
}

.site-header .lang-toggle {
  border-color: rgba(244, 240, 232, .18) !important;
  background: rgba(244, 240, 232, .07) !important;
  color: rgba(244, 240, 232, .62) !important;
}

.site-header .lang-toggle span.active {
  color: #fff !important;
}

.site-header .divider {
  color: rgba(244, 240, 232, .36) !important;
}

/* Mobile: keep the black band fixed, only logo + descriptor + language toggle */
@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    display: flex !important;
    padding: 8px 10px;
  }

  .site-header .brand-lockup {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .site-header .brand-logo {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .site-header .brand-descriptor {
    display: inline-block !important;
    max-width: 170px;
    color: rgba(244, 240, 232, .86) !important;
    font-size: 9px;
    line-height: 1.25;
    letter-spacing: .14em;
    white-space: normal;
  }

  .site-header .main-nav {
    display: none !important;
  }

  .site-header .header-actions {
    display: flex !important;
    margin-left: auto;
  }

  .site-header .lang-toggle {
    display: inline-flex !important;
    align-items: center;
    padding: 8px 10px;
    font-size: 10px;
    flex-shrink: 0;
  }

  .mobile-lang-toggle {
    display: none !important;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-top-lockup {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .site-header .brand-descriptor {
    max-width: 130px;
    font-size: 8.5px;
    letter-spacing: .12em;
  }

  .site-header .brand-logo {
    width: 38px;
    height: 38px;
  }

  .site-header .lang-toggle {
    padding: 7px 8px;
    font-size: 9px;
  }
}

/* Fixed black navigation bar */
.site-header {
  position: fixed !important;
  top: 18px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(1180px, calc(100% - 32px)) !important;
  z-index: 999 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border: 1px solid rgba(244, 240, 232, .12) !important;
  background: rgba(17, 16, 14, .94) !important;
  color: #f4f0e8 !important;
  backdrop-filter: blur(18px) !important;
  border-radius: 999px !important;
  padding: 8px 12px !important;
  box-shadow: 0 18px 60px rgba(17, 16, 14, .18) !important;
}

.site-header .brand,
.site-header .brand-descriptor,
.site-header .main-nav,
.site-header .main-nav a {
  color: rgba(244, 240, 232, .88) !important;
}

.site-header .brand-logo {
  width: 52px !important;
  height: 52px !important;
  object-fit: contain !important;
  filter: invert(1) !important;
}

.site-header .lang-toggle {
  border-color: rgba(244, 240, 232, .18) !important;
  background: rgba(244, 240, 232, .07) !important;
  color: rgba(244, 240, 232, .62) !important;
}

/* Mobile nav */
@media (max-width: 760px) {
  .site-header {
    top: 10px !important;
    width: calc(100% - 20px) !important;
    display: flex !important;
    padding: 8px 10px !important;
  }

  .site-header .main-nav {
    display: none !important;
  }

  .site-header .brand-logo {
    width: 42px !important;
    height: 42px !important;
  }

  .site-header .brand-descriptor {
    display: inline-block !important;
    max-width: 160px !important;
    font-size: 9px !important;
    line-height: 1.25 !important;
    letter-spacing: .14em !important;
    color: rgba(244, 240, 232, .86) !important;
  }

  .site-header .header-actions {
    display: flex !important;
    margin-left: auto !important;
  }

  .site-header .lang-toggle {
    display: inline-flex !important;
    align-items: center !important;
    padding: 8px 10px !important;
    font-size: 10px !important;
  }

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

  .hero {
    padding-top: 118px !important;
  }

  .hero-top-lockup {
    display: none !important;
  }
}


/* V16 — interaction, hierarchy and polish pass */

/* Reveal animation restored, but safe */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s ease, transform .72s ease;
  transition-delay: var(--delay, 0ms);
}

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

/* Cursor shadow / orb */
.cursor-orb {
  position: fixed;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(17, 16, 14, .10), rgba(184, 169, 142, .10) 34%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity .45s ease;
  mix-blend-mode: multiply;
}

/* Thread line: slightly thicker, always behind content */
.background-thread {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1440px, 100vw);
  height: 5200px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: .24;
}

.thread-path {
  stroke: #11100e;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

/* Content layers above thread */
main,
.site-header,
.site-footer,
.modal,
.hero,
.section {
  position: relative;
  z-index: 2;
}

/* Cards and blocks must mask the background thread */
.pillar-card,
.participation-card,
.contact-form,
.working-card,
.modal-card,
.site-header {
  position: relative;
  z-index: 3;
}

.pillar-card,
.participation-card,
.contact-form,
.modal-card {
  background-color: var(--paper) !important;
}

.participation-card {
  min-height: 390px;
  align-items: stretch;
  justify-content: flex-start;
}

.project-card-top {
  min-height: 58px;
  margin-bottom: 24px;
}

.project-logo-slot {
  min-height: 54px;
  min-width: 132px;
}

.project-status {
  margin-bottom: 0;
}

.participation-card h3 {
  margin: 18px 0 12px !important;
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  font-size: clamp(32px, 3vw, 40px) !important;
  line-height: 1 !important;
  letter-spacing: -.006em !important;
}

.participation-card p {
  min-height: 54px;
  max-width: 95%;
  font-size: 15px;
  line-height: 1.55;
}

.project-meta {
  margin-top: auto !important;
}

/* Typography coherence */
.hero-title {
  font-size: clamp(46px, 6.8vw, 88px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.012em !important;
}

.hero-copy {
  font-size: clamp(20px, 2vw, 28px) !important;
  line-height: 1.28 !important;
}

.section-intro h2 {
  font-size: clamp(38px, 4.6vw, 62px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.012em !important;
}

.pillar-content h3,
.working-card h2,
.contact-copy h2 {
  font-size: clamp(32px, 4vw, 52px) !important;
  line-height: 1.04 !important;
  letter-spacing: -.01em !important;
}

.method-item h2 {
  font-size: clamp(32px, 3.2vw, 42px) !important;
  line-height: 1.05 !important;
}

.expertise-list h3 {
  font-size: clamp(28px, 3vw, 34px) !important;
}

/* Fixed black nav remains above everything */
.site-header {
  z-index: 999 !important;
}

/* Modal must be above fixed nav */
.modal {
  z-index: 1200 !important;
}

.modal.is-open {
  display: grid !important;
}

.modal-backdrop {
  z-index: 0;
}

.modal-card {
  z-index: 1;
}

/* Favicon-driven logo consistency */
.brand-logo,
.hero-top-lockup img,
.hero-logo-panel img,
.working-logo {
  object-fit: contain;
}

/* Mobile tuning */
@media (max-width: 760px) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .cursor-orb {
    display: none;
  }

  .background-thread {
    opacity: .18;
  }

  .thread-path {
    stroke-width: 1.8;
  }

  .hero-title {
    font-size: clamp(42px, 13vw, 64px) !important;
    line-height: 1.02 !important;
  }

  .hero-copy {
    font-size: 20px !important;
  }

  .participation-card h3 {
    min-height: auto;
    font-size: 36px !important;
  }

  .participation-card p {
    min-height: auto;
  }

  .project-card-top {
    min-height: auto;
  }
}
