:root {
  --ink: #10100f;
  --ink-soft: #1b1b18;
  --charcoal: #24231f;
  --paper: #f1eee7;
  --paper-deep: #e7e2d8;
  --ivory: #fbf9f4;
  --stone: #a8a298;
  --muted: #77746d;
  --bronze: #b8955e;
  --bronze-light: #d7bc89;
  --line: rgba(251, 249, 244, 0.16);
  --line-dark: rgba(16, 16, 15, 0.16);
  --max: 1500px;
  --side: clamp(22px, 4.8vw, 76px);
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Manrope", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }

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

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

body.menu-open { overflow: hidden; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  background:
    radial-gradient(circle at 82% 12%, rgba(184, 149, 94, 0.14), transparent 24rem),
    rgba(4, 4, 3, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(3px);
  transition: opacity 240ms ease, visibility 240ms ease;
}

body.menu-open::before {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

::selection { color: var(--ink); background: var(--bronze-light); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p, dl, dd { margin-top: 0; }

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 300;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--bronze-light);
  font-size: 12px;
  transition: top 180ms ease;
}

.skip-link:focus { top: 20px; }

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 250;
  height: 2px;
  background: var(--bronze-light);
  box-shadow: 0 0 16px rgba(215, 188, 137, 0.35);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  width: min(100%, var(--max));
  margin: 0 auto;
  height: 94px;
  padding: 0 var(--side);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 76px;
  margin: 0;
  background: rgba(16, 16, 15, 0.9);
  backdrop-filter: blur(18px);
  animation: header-in 280ms ease both;
}

@keyframes header-in {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.brand {
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 0;
  white-space: nowrap;
}

.brand-code {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 149, 94, 0.65);
  color: var(--bronze-light);
  font: 600 28px var(--serif);
}

.brand-name {
  font: 700 clamp(18px, 1.48vw, 22px) var(--display);
  letter-spacing: clamp(0.055em, 0.42vw, 0.095em);
  text-transform: uppercase;
}

.brand-sector {
  padding-left: 16px;
  border-left: 1px solid var(--line);
  color: var(--stone);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  font: 700 11px var(--display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 12px 0;
  color: var(--stone);
  transition: color 180ms ease;
}

.site-nav > a:not(.nav-cta)::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bronze);
  transition: width 180ms ease;
}

.site-nav > a:not(.nav-cta):hover { color: var(--ivory); }
.site-nav > a:not(.nav-cta):hover::before { width: 100%; }

.site-nav > .menu-home {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 14px;
  margin-left: clamp(16px, 2vw, 30px);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--stone);
  font: 700 9.8px var(--display);
  letter-spacing: 0.1em;
}

.language-switch a {
  opacity: 0.55;
  transition: color 180ms ease, opacity 180ms ease;
}

.language-switch a:hover,
.language-switch a.is-active {
  color: var(--bronze-light);
  opacity: 1;
}

.language-switch span { opacity: 0.4; }

.nav-cta {
  padding: 13px 17px;
  border: 1px solid rgba(184, 149, 94, 0.55);
  color: var(--bronze-light);
  transition: color 180ms ease, background 180ms ease;
}

.nav-cta:hover { color: var(--ink); background: var(--bronze-light); }
.nav-toggle { display: none; }

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(100px, 11vw, 174px) var(--side);
}

.section-meta {
  scroll-margin-top: 112px;
  margin-bottom: clamp(54px, 6vw, 88px);
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--muted);
  font: 600 9px var(--display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-meta.light {
  border-color: var(--line);
  color: var(--stone);
}

.section-meta span:first-child { color: var(--bronze); }

.section-meta.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero {
  position: relative;
  width: min(100%, var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: 136px var(--side) 40px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.76fr);
  grid-template-rows: 1fr;
  gap: 52px clamp(40px, 6vw, 100px);
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(251, 249, 244, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 249, 244, 0.035) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  opacity: 0.6;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 13% 26%, rgba(184, 149, 94, 0.11), transparent 26rem),
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.035), transparent 34rem);
  pointer-events: none;
}

.hero h1,
.strategies h2,
.contact h2 {
  margin-bottom: 38px;
  font-family: var(--display);
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(56px, 7.3vw, 110px);
  line-height: 0.86;
}

.hero-intro {
  max-width: 640px;
  margin-bottom: 32px;
  color: var(--stone);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
}

.hero-line-accent > span,
.contact h2 {
  color: var(--bronze-light);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
}

.hero-line > span {
  display: block;
  opacity: 0;
  transform: translateY(112%);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.hero-line-accent {
  margin-top: 0;
  font-size: 0.58em;
  line-height: 1.08;
}

.hero-copy.is-visible .hero-line > span {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy.is-visible .hero-line:nth-child(2) > span { transition-delay: 100ms; }
.hero-copy.is-visible .hero-line:nth-child(3) > span { transition-delay: 210ms; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  padding: 15px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid transparent;
  font: 700 10px var(--display);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-acid { color: var(--ink); background: var(--bronze-light); }
.button-acid:hover { color: var(--bronze-light); background: transparent; border-color: var(--bronze); }
.button-ghost { border-color: var(--line); }
.button-ghost:hover { color: var(--ink); background: var(--ivory); }

.hero-asset {
  position: relative;
  height: min(72vh, 760px);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
}

.hero-asset::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(184, 149, 94, 0.18), transparent 48%);
  opacity: 0;
  transition: opacity 500ms ease;
  pointer-events: none;
}

.hero-asset::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -55%;
  z-index: 1;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 248, 232, 0.14), transparent);
  transform: skewX(-14deg);
  animation: asset-sheen 9s ease-in-out infinite;
  pointer-events: none;
}

.asset-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 16, 15, 0.02), rgba(16, 16, 15, 0.66)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1400&q=90") center / cover;
  filter: saturate(0.45) sepia(0.12) contrast(1.04);
  transform: scale(1.02);
  animation: asset-drift 16s ease-in-out infinite alternate;
  transition: filter 600ms ease, transform 900ms cubic-bezier(0.2, 0.65, 0.3, 1);
  will-change: transform, background-position;
}

.hero-asset:hover .asset-photo {
  filter: saturate(0.82) sepia(0.1) contrast(1.03);
  transform: scale(1.085);
}

.hero-asset:hover::before { opacity: 1; }

@keyframes asset-drift {
  from { background-position: 47% 50%; }
  to { background-position: 53% 50%; }
}

@keyframes asset-sheen {
  0%, 58% { left: -55%; opacity: 0; }
  66% { opacity: 1; }
  84%, 100% { left: 125%; opacity: 0; }
}

.scan-line,
.asset-corner { display: none; }

.mandate,
.contact {
  max-width: none;
  width: 100%;
  padding-right: max(var(--side), calc((100vw - var(--max)) / 2 + var(--side)));
  padding-left: max(var(--side), calc((100vw - var(--max)) / 2 + var(--side)));
}

.mandate {
  color: var(--ivory);
  background: var(--ink);
}

.mandate .section-meta,
.contact .section-meta {
  border-color: rgba(251, 249, 244, 0.3);
  color: var(--stone);
}

.mandate-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.mandate h2 {
  max-width: 680px;
  margin-bottom: 30px;
  font: 500 clamp(46px, 5.5vw, 78px)/0.98 var(--display);
  letter-spacing: -0.055em;
}

.mandate-thesis {
  position: sticky;
  top: 122px;
}

.mandate-kicker {
  margin-bottom: 24px;
  color: var(--bronze);
  font: 700 9px var(--display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mandate-thesis > p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--stone);
  font-size: 17px;
}

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

.process-list li {
  padding: 27px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.process-list.is-visible li { opacity: 1; transform: translateX(0); }
.process-list.is-visible li:nth-child(2) { transition-delay: 80ms; }
.process-list.is-visible li:nth-child(3) { transition-delay: 160ms; }
.process-list.is-visible li:nth-child(4) { transition-delay: 240ms; }
.process-list.is-visible li:nth-child(5) { transition-delay: 320ms; }

.process-list li > span {
  padding-top: 5px;
  color: var(--bronze);
  font: 700 9px var(--display);
  letter-spacing: 0.12em;
}

.process-list h3 {
  margin-bottom: 9px;
  font: 600 clamp(20px, 2vw, 27px) var(--display);
  letter-spacing: -0.035em;
}

.process-list p {
  max-width: 700px;
  margin: 0;
  color: var(--stone);
  font-size: 14px;
}

.strategies {
  max-width: none;
  width: 100%;
  padding-top: clamp(60px, 5.6vw, 88px);
  padding-bottom: clamp(64px, 5.8vw, 92px);
  padding-right: max(var(--side), calc((100vw - var(--max)) / 2 + var(--side)));
  padding-left: max(var(--side), calc((100vw - var(--max)) / 2 + var(--side)));
  color: var(--ink);
  background: var(--paper);
}

.strategies .section-meta {
  margin-bottom: clamp(22px, 2.4vw, 34px);
  padding-bottom: 12px;
}

.strategies-layout {
  display: block;
}

.strategies-head {
  max-width: 980px;
  margin-bottom: clamp(24px, 2.9vw, 40px);
}

.strategies h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.15vw, 76px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.strategies-head > p {
  max-width: 960px;
  margin: 12px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.45;
  white-space: nowrap;
}

.strategy-list {
  counter-reset: strategy;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.strategy-row {
  counter-increment: strategy;
  position: relative;
  min-height: 178px;
  padding: clamp(18px, 2vw, 26px);
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  align-items: start;
  row-gap: 16px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background 220ms ease;
}

.strategy-row::before {
  content: "0" counter(strategy);
  color: var(--bronze);
  font: 700 10px/1 var(--display);
  letter-spacing: 0.16em;
}

.strategy-row::after {
  content: "";
  position: absolute;
  right: clamp(18px, 2vw, 26px);
  bottom: clamp(18px, 2vw, 26px);
  width: 34px;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms ease;
}

.strategy-row:hover {
  background: rgba(184, 149, 94, 0.08);
}

.strategy-row:hover::after { transform: scaleX(1); }

.strategy-row:nth-child(2) { transition-delay: 70ms; }
.strategy-row:nth-child(3) { transition-delay: 140ms; }
.strategy-row:nth-child(4) { transition-delay: 210ms; }

.strategy-title h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(21px, 1.65vw, 27px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.strategy-row > p {
  align-self: start;
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13.8px;
  line-height: 1.48;
}

.capabilities {
  max-width: none;
  width: 100%;
  padding-top: clamp(76px, 7vw, 112px);
  padding-bottom: clamp(76px, 7vw, 112px);
  padding-right: max(var(--side), calc((100vw - var(--max)) / 2 + var(--side)));
  padding-left: max(var(--side), calc((100vw - var(--max)) / 2 + var(--side)));
  color: var(--ink);
  background: var(--paper-deep);
}

.capabilities .section-meta {
  margin-bottom: clamp(34px, 4vw, 54px);
}

.capabilities-head {
  margin-bottom: clamp(34px, 4.5vw, 58px);
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 70px;
  align-items: end;
}

.capabilities h2 {
  margin-bottom: 0;
  font: 500 clamp(42px, 5.4vw, 78px)/0.98 var(--display);
  letter-spacing: -0.055em;
}

.capabilities-head > p {
  max-width: 430px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 16px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.capability {
  min-height: 224px;
  padding: 22px 22px;
}

.capability + .capability { border-left: 1px solid var(--line-dark); }

.capability > span {
  color: var(--bronze);
  font: 700 9px var(--display);
  letter-spacing: 0.12em;
}

.capability h3 {
  margin: 42px 0 12px;
  font: 600 19px/1.15 var(--display);
  letter-spacing: -0.035em;
}

.capability p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.capability:nth-child(2) { transition-delay: 70ms; }
.capability:nth-child(3) { transition-delay: 140ms; }
.capability:nth-child(4) { transition-delay: 210ms; }
.capability:nth-child(5) { transition-delay: 280ms; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
}

.contact {
  color: var(--ivory);
  background: var(--ink);
}

.contact h2 {
  margin-bottom: 0;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.92;
}

.contact-info > p {
  margin-bottom: 38px;
  color: var(--stone);
  font-size: 16px;
}

.contact-info > .contact-alternative {
  margin: 0 0 8px;
  color: var(--stone);
  font-size: 13px;
}

.property-form {
  position: relative;
  margin: 34px 0 46px;
  padding: clamp(22px, 3.5vw, 38px);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.28);
}

.contact .property-form {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}

.form-grid label > span,
.file-field > span {
  display: block;
  margin-bottom: 8px;
  color: #5f5b54;
  font: 700 9px var(--display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact .form-grid label > span,
.contact .file-field > span {
  color: var(--stone);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 15, 0.28);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font: 500 15px var(--sans);
  outline: 0;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact .form-grid input,
.contact .form-grid select,
.contact .form-grid textarea {
  border-bottom-color: rgba(251, 249, 244, 0.28);
  color: var(--ivory);
}

.contact .form-grid input::placeholder,
.contact .form-grid textarea::placeholder {
  color: rgba(251, 249, 244, 0.42);
}

.contact .form-grid select option {
  color: var(--ink);
}

.form-grid textarea {
  min-height: 135px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--bronze);
  background: rgba(255, 255, 255, 0.2);
}

.form-field-wide { grid-column: 1 / -1; }

.file-field input[type="file"] {
  padding: 14px;
  border: 1px dashed rgba(16, 16, 15, 0.3);
  cursor: pointer;
}

.contact .file-field input[type="file"] {
  border-color: rgba(251, 249, 244, 0.28);
}

.file-field small {
  margin-top: 8px;
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.contact .file-field small,
.contact .privacy-check {
  color: var(--stone);
}

.privacy-check {
  margin: 24px 0;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--bronze);
}

.privacy-check a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact .privacy-check a {
  color: var(--ivory);
}

.form-submit {
  width: 100%;
  min-height: 54px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--ink);
  color: var(--ivory);
  background: var(--ink);
  font: 700 10px var(--display);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.form-submit:hover { color: var(--ink); background: var(--bronze-light); }

.contact .form-submit {
  border-color: var(--bronze-light);
  color: var(--ink);
  background: var(--bronze-light);
}

.contact .form-submit:hover {
  color: var(--bronze-light);
  background: transparent;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-feedback {
  margin: 20px 0;
  padding: 14px 16px;
  border: 1px solid rgba(184, 149, 94, 0.45);
  color: var(--ink);
  background: rgba(215, 188, 137, 0.18);
  font-size: 14px;
}

.contact .form-feedback {
  color: var(--ivory);
}

.contact-info > a {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font: 500 clamp(17px, 2vw, 26px) var(--display);
}

.contact-info small {
  margin-top: 22px;
  display: block;
  color: var(--stone);
  font-size: 9px;
  line-height: 1.6;
}

.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 30px var(--side) 40px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 45px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.site-footer p,
.site-footer > a:last-child {
  margin: 0;
  color: var(--stone);
  font: 600 8px var(--display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-details {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-details p { white-space: nowrap; }

.footer-copyright {
  white-space: nowrap;
}

.footer-brand { gap: 10px; }
.footer-brand .brand-code { width: 38px; height: 38px; font-size: 21px; }
.footer-brand .brand-name { font-size: 15px; }
.footer-brand .brand-sector { padding-left: 10px; font-size: 8px; }

.footer-details a {
  color: var(--stone);
  font: 600 8px var(--display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-body {
  color: var(--ink);
  background: var(--paper);
}

.legal-header {
  width: min(100%, 1120px);
  min-height: 96px;
  margin: 0 auto;
  padding: 20px var(--side);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
}

.legal-header .brand-sector { border-color: var(--line-dark); color: var(--muted); }

.legal-language {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font: 700 10px var(--display);
  letter-spacing: 0.1em;
}

.legal-language strong { color: var(--bronze); }

.legal-page {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--side);
}

.legal-kicker,
.legal-updated {
  color: var(--bronze);
  font: 700 10px var(--display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-page h1 {
  margin-bottom: 20px;
  font: 500 clamp(54px, 8vw, 92px)/0.95 var(--serif);
  letter-spacing: -0.045em;
}

.legal-updated { margin-bottom: 42px; color: var(--muted); }

.legal-intro {
  margin-bottom: 70px;
  color: var(--muted);
  font-size: 19px;
}

.legal-page section {
  padding: 28px 0;
  border-top: 1px solid var(--line-dark);
}

.legal-page section h2 {
  margin-bottom: 14px;
  font: 600 20px var(--display);
  letter-spacing: -0.025em;
}

.legal-page section p {
  margin-bottom: 12px;
  color: #625f58;
  font-size: 15px;
}

.legal-page section p:last-child { margin-bottom: 0; }
.legal-page a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

.legal-back {
  margin-top: 50px;
  display: inline-flex;
  color: var(--ink) !important;
  font: 700 11px var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

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

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 180ms; }

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

@media (max-width: 1220px) {
  .site-header {
    z-index: 120;
    height: 78px;
  }

  .header-actions {
    position: relative;
    z-index: 150;
    margin-left: auto;
    gap: 12px;
  }

  .header-actions .language-switch {
    min-height: 44px;
    padding: 0 12px;
    display: flex !important;
    gap: 8px;
    border: 1px solid rgba(251, 249, 244, 0.14);
    background: rgba(16, 16, 15, 0.62);
    color: var(--stone);
    font-size: 10.5px;
  }

  .site-header .brand {
    display: grid;
    grid-template-columns: auto minmax(0, auto);
    column-gap: 11px;
    row-gap: 2px;
    align-items: center;
  }

  .site-header .brand-code {
    grid-row: 1 / 3;
  }

  .site-header .brand-name {
    grid-column: 2;
    line-height: 1;
  }

  .site-header .brand-sector {
    grid-column: 2;
    display: block;
    padding-left: 0;
    border-left: 0;
    font-size: 8.5px;
    letter-spacing: 0.105em;
    line-height: 1;
  }

  body.menu-open .site-header {
    position: fixed;
    width: 100%;
    max-width: none;
    margin: 0;
    background: rgba(16, 16, 15, 0.82);
    backdrop-filter: blur(18px);
  }

  .nav-toggle {
    position: relative;
    z-index: 150;
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    color: var(--ivory);
    background: rgba(16, 16, 15, 0.92);
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease;
  }

  .nav-toggle:hover,
  .nav-toggle.is-open {
    border-color: rgba(184, 149, 94, 0.7);
    background: rgba(184, 149, 94, 0.12);
  }

  .nav-toggle span {
    width: 20px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

  .site-nav {
    position: fixed;
    margin-left: 0;
    top: 94px;
    right: max(18px, var(--side));
    left: auto;
    z-index: 140;
    width: min(440px, calc(100vw - 36px));
    max-height: calc(100dvh - 112px);
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 7px;
    overflow-y: auto;
    border: 1px solid rgba(184, 149, 94, 0.28);
    background:
      radial-gradient(circle at 95% 0%, rgba(184, 149, 94, 0.18), transparent 18rem),
      linear-gradient(145deg, rgba(22, 22, 20, 0.98), rgba(8, 8, 7, 0.98));
    box-shadow:
      0 28px 90px rgba(0, 0, 0, 0.48),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(22px);
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .site-nav > .language-switch {
    display: none !important;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav > a,
  .nav-cta {
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid rgba(251, 249, 244, 0.12);
    color: var(--ivory) !important;
    background: transparent !important;
    font: 600 clamp(20px, 3.4vw, 31px)/1.05 var(--display);
    letter-spacing: -0.045em;
    text-align: left;
    text-transform: none;
  }

  .site-nav > .menu-home {
    display: block;
  }

  .site-nav > a:not(.nav-cta)::before { display: none; }

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

  .nav-cta {
    margin-top: 0;
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(251, 249, 244, 0.12);
    color: var(--ivory) !important;
    background: transparent !important;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
    grid-template-columns: 1fr;
  }

  .hero-copy { max-width: 860px; }
  .hero-asset { height: 67vw; min-height: 540px; }

  .mandate-layout,
  .strategies-layout,
  .capabilities-head,
  .contact-layout { grid-template-columns: 1fr; }

  .strategies-head { max-width: 780px; }
  .strategies-head > p { white-space: normal; }

  .mandate-thesis {
    position: static;
    max-width: 780px;
  }

  .strategy-row { min-height: 188px; }

  .capabilities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capability { min-height: 220px; border-bottom: 1px solid var(--line-dark); }
  .capability:nth-child(odd) { border-left: 0; }
  .capability h3 { margin-top: 34px; }

  .contact-info { max-width: 680px; }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 22px 34px;
    align-items: start;
  }
  .footer-brand { grid-column: 1; grid-row: 1; }
  .site-footer > a:last-child { grid-column: 2; grid-row: 1; justify-self: end; }
  .footer-details { grid-column: 1 / -1; grid-row: 2; }
  .site-footer > p { grid-column: 1 / -1; grid-row: 3; justify-self: start; }
}

@media (max-width: 760px) {
  .brand-sector { display: none; }
  .footer-brand .brand-sector { display: block; }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .section-meta { margin-bottom: 52px; }

  .site-header { height: 74px; }

  .header-actions {
    gap: 8px;
  }

  .header-actions .language-switch {
    min-height: 42px;
    padding: 0 10px;
    font-size: 10px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    top: 86px;
    right: 16px;
    left: 16px;
    width: auto;
    max-height: calc(100dvh - 102px);
    padding: 16px;
    gap: 5px;
  }

  .site-nav > a,
  .nav-cta {
    padding: 15px 0;
    font-size: clamp(24px, 8vw, 34px);
  }

  .hero {
    padding-top: 116px;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(50px, 14vw, 70px);
    line-height: 0.88;
  }

  .hero-line-accent { font-size: 0.54em; }

  .strategies h2 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.95;
    white-space: normal;
  }

  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-asset { height: 120vw; min-height: 470px; }

  .mandate h2 { font-size: clamp(42px, 11.5vw, 56px); }

  .process-list li {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .strategy-row {
    min-height: auto;
    padding: 22px 0;
    grid-template-columns: 1fr;
    gap: 12px;
    border-right: 0;
  }

  .strategy-list {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .strategy-row::before {
    padding-top: 0;
    font-size: 10px;
  }

  .strategy-row::after { display: none; }
  .strategy-row:hover {
    padding-right: 0;
    padding-left: 0;
  }
  .strategy-title h3 { font-size: 28px; }

  .capabilities h2 { font-size: clamp(42px, 12vw, 58px); }
  .capabilities-grid { grid-template-columns: 1fr; }
  .capability { min-height: auto; padding: 28px 0; border-left: 0 !important; }
  .capability h3 { margin-top: 28px; }

  .contact h2 { font-size: clamp(52px, 16vw, 76px); }
  .contact-info > a { font-size: 15px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: 1; }
  .property-form { padding: 20px; }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 20px;
  }

  .site-footer > p {
    display: block;
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: start;
  }
  .footer-details {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .legal-header { min-height: 78px; }
  .legal-header .brand-sector { display: none; }
  .legal-page { padding-top: 72px; }
  .legal-intro { margin-bottom: 50px; font-size: 17px; }
}

@media (max-width: 520px) {
  .site-header .brand {
    column-gap: 8px;
    row-gap: 2px;
  }

  .site-header .brand-code {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .site-header .brand-name {
    font-size: 14.5px;
    letter-spacing: 0.055em;
  }

  .site-header .brand-sector {
    font-size: 7.2px;
    letter-spacing: 0.075em;
  }

  .legal-header .brand-sector {
    display: none;
  }

  .header-actions .language-switch {
    min-height: 38px;
    padding: 0 8px;
    font-size: 9.5px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-details {
    grid-column: 1;
    grid-row: 2;
  }

  .site-footer > p {
    grid-column: 1;
    grid-row: 3;
  }

  .site-footer > a:last-child {
    grid-column: 1;
    grid-row: 4;
    justify-self: start;
  }
}

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

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

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

  .hero-line > span,
  .process-list li {
    opacity: 1;
    transform: none;
  }
}
