:root {
  color-scheme: dark;
  --paper: #f6f0e6;
  --muted: rgba(246, 240, 230, 0.74);
  --soft: rgba(246, 240, 230, 0.52);
  --line: rgba(246, 240, 230, 0.18);
  --gold: #d9bd7a;
  --black: #050606;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 76px;
  padding: 18px 54px;
  color: rgba(246, 240, 230, 0.9);
  background: linear-gradient(180deg, rgba(5, 6, 6, 0.66), rgba(5, 6, 6, 0));
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
}

.brand__mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(217, 189, 122, 0.64);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.nav {
  justify-content: center;
  gap: 34px;
  color: rgba(246, 240, 230, 0.66);
  font-size: 0.9rem;
}

.nav a,
.fine-link a,
.contact-lines a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus,
.fine-link a:hover,
.fine-link a:focus,
.contact-lines a:hover,
.contact-lines a:focus {
  color: var(--gold);
}

.language select {
  min-width: 124px;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--paper);
  border: 1px solid rgba(246, 240, 230, 0.24);
  border-radius: 0;
  background: rgba(5, 6, 6, 0.34);
  font: inherit;
  font-size: 0.86rem;
}

.language select:focus {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

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

.stage {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px 54px 86px;
  border-bottom: 1px solid rgba(246, 240, 230, 0.1);
  isolation: isolate;
}

.stage--hero {
  min-height: 92svh;
}

.stage__image,
.stage__veil {
  position: absolute;
  inset: 0;
}

.stage__image {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.018);
  animation: imageBreath 18s ease-in-out infinite alternate;
}

.stage__veil {
  z-index: -2;
  background:
    radial-gradient(circle at 72% 42%, rgba(217, 189, 122, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(5, 6, 6, 0.9), rgba(5, 6, 6, 0.55) 48%, rgba(5, 6, 6, 0.26)),
    linear-gradient(0deg, rgba(5, 6, 6, 0.88), rgba(5, 6, 6, 0.08) 54%, rgba(5, 6, 6, 0.48));
}

.stage--research .stage__veil,
.stage--dialogue .stage__veil {
  background:
    radial-gradient(circle at 32% 54%, rgba(217, 189, 122, 0.14), transparent 28%),
    linear-gradient(270deg, rgba(5, 6, 6, 0.9), rgba(5, 6, 6, 0.58) 46%, rgba(5, 6, 6, 0.22)),
    linear-gradient(0deg, rgba(5, 6, 6, 0.9), rgba(5, 6, 6, 0.1) 58%, rgba(5, 6, 6, 0.42));
}

.stage--meetings .stage__veil {
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.9), rgba(5, 6, 6, 0.52) 44%, rgba(5, 6, 6, 0.18)),
    linear-gradient(0deg, rgba(5, 6, 6, 0.88), rgba(5, 6, 6, 0.06) 58%, rgba(5, 6, 6, 0.46));
}

.stage__copy {
  position: relative;
  z-index: 2;
  max-width: 830px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.76);
}

.stage__copy--left {
  justify-self: start;
}

.stage__copy--right {
  justify-self: end;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-bottom: 26px;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 10ch;
  font-size: clamp(4.2rem, 9vw, 9.8rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 6.8vw, 7.8rem);
}

.lead,
.stage__copy p:not(.eyebrow):not(.fine-link) {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
}

.lead {
  font-size: clamp(1.22rem, 1.9vw, 1.82rem);
}

.fine-link {
  margin: 34px 0 0;
  color: rgba(246, 240, 230, 0.86);
  font-size: 0.95rem;
  font-weight: 800;
}

.scroll-note {
  position: absolute;
  right: 54px;
  bottom: 42px;
  z-index: 2;
  margin: 0;
  color: var(--soft);
  font-size: 0.86rem;
}

.contact-lines {
  display: grid;
  gap: 16px;
  margin-top: 38px;
}

.contact-lines p {
  margin: 0;
}

.contact-lines span {
  display: block;
  margin-bottom: 4px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-lines a {
  color: var(--paper);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.25rem, 2.4vw, 2.2rem);
  overflow-wrap: anywhere;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 30px 54px;
  color: rgba(246, 240, 230, 0.6);
  background: #050606;
  border-top: 1px solid rgba(246, 240, 230, 0.12);
}

.footer p {
  margin: 0;
  font-size: 0.88rem;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 760ms ease,
    transform 760ms ease;
}

.js-ready .reveal {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes imageBreath {
  from {
    transform: scale(1.018);
  }

  to {
    transform: scale(1.055);
  }
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 16px 28px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 22px;
    order: 3;
  }

  .stage,
  .footer {
    padding-right: 28px;
    padding-left: 28px;
  }

  .stage__copy--right {
    justify-self: start;
  }

  .stage--research .stage__veil,
  .stage--dialogue .stage__veil {
    background:
      linear-gradient(90deg, rgba(5, 6, 6, 0.9), rgba(5, 6, 6, 0.58) 50%, rgba(5, 6, 6, 0.24)),
      linear-gradient(0deg, rgba(5, 6, 6, 0.9), rgba(5, 6, 6, 0.12) 58%, rgba(5, 6, 6, 0.46));
  }

  .scroll-note {
    right: 28px;
    bottom: 28px;
  }
}

@media (max-width: 640px) {
  .topbar {
    position: absolute;
  }

  .brand {
    font-size: 0.9rem;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.82rem;
  }

  .language select {
    min-width: 104px;
    font-size: 0.82rem;
  }

  .stage {
    min-height: 780px;
    padding-top: 158px;
    padding-bottom: 74px;
  }

  .stage--hero {
    min-height: 780px;
  }

  .stage__veil,
  .stage--research .stage__veil,
  .stage--dialogue .stage__veil,
  .stage--meetings .stage__veil {
    background:
      linear-gradient(180deg, rgba(5, 6, 6, 0.92), rgba(5, 6, 6, 0.48) 42%, rgba(5, 6, 6, 0.92)),
      linear-gradient(90deg, rgba(5, 6, 6, 0.9), rgba(5, 6, 6, 0.2));
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 13.5vw, 4rem);
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11.5vw, 3.45rem);
  }

  .lead,
  .stage__copy p:not(.eyebrow):not(.fine-link) {
    font-size: 1.06rem;
  }

  .scroll-note {
    left: 28px;
    right: auto;
    bottom: 28px;
    max-width: calc(100% - 56px);
  }
}

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

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

.contact-form{display:grid;gap:12px;max-width:620px;margin-top:24px;padding:20px;background:rgba(5,12,16,.78);border:1px solid rgba(255,255,255,.28);border-radius:14px}.contact-form label{display:grid;gap:6px}.contact-form input,.contact-form select,.contact-form textarea{width:100%;box-sizing:border-box;padding:12px;border:1px solid #8fa5ad;border-radius:8px;background:#fff;color:#102029;font:inherit}.contact-form button{padding:13px 18px;border:0;border-radius:8px;background:#d9bd73;color:#102029;font-weight:700;cursor:pointer}.contact-form .consent{grid-template-columns:auto 1fr;align-items:start}.contact-form .consent input{width:auto}.form-trap{position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden}
