:root {
  --bg: #050505;
  --bg-2: #0c0c0c;
  --fg: #efece4;
  --muted: #8b8b84;
  --line: rgba(239, 236, 228, 0.1);
  --lime: #d6ff4a;
  --lime-dim: #b6d63a;
  --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --sans: "Syne", "Avenir Next", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --nav-h: 72px;
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--fg);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 70%);
  opacity: 0.35;
  z-index: 0;
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--lime);
  color: #050505;
  padding: 8px 12px;
  z-index: 80;
}

.skip:focus {
  top: 12px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand b {
  color: var(--lime);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--fg);
}

.nav-actions {
  display: flex;
  gap: 8px;
}

.lang,
.menu-btn {
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-btn {
  display: none;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
  padding: 48px 0 40px;
}

.hero-kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 8.4vw, 108px);
  line-height: 0.9;
  margin: 0 0 28px;
  letter-spacing: -0.04em;
}

.hero h1 em {
  font-style: italic;
  color: color-mix(in srgb, var(--fg) 80%, var(--lime));
}

.hero p {
  max-width: 46ch;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  width: 100%;
  height: min(78vh, 760px);
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.hero-photo span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #050505cc;
  padding: 8px 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.btn-lime {
  background: var(--lime);
  color: #050505;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--fg);
}

.scroll-hint {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 0 48px;
}

.section {
  padding: 88px 0;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.act {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 16px;
}

.section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.95;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
}

.lede {
  max-width: 52ch;
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 40px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.split img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.prose p {
  color: var(--muted);
  margin: 0 0 16px;
}

.sectors {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 8px 0 24px !important;
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.fact {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.fact b {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 6px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}

.gallery figure {
  margin: 0;
  position: relative;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.gallery figure:first-child {
  grid-row: 1 / span 2;
}

.gallery figure:first-child img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 520px;
}

.gallery figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #050505b8;
  padding: 7px 9px;
}

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

.card {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 28px 24px;
  min-height: 220px;
}

.card .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--lime);
  letter-spacing: 0.18em;
  margin-bottom: 28px;
}

.card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 12px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.contact-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact-list span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg);
  padding: 14px 14px;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note,
.form-ok {
  font-size: 13px;
  color: var(--muted);
}

.form-ok {
  display: none;
  color: var(--lime);
}

.page-hero {
  padding: 80px 0 40px;
  position: relative;
  z-index: 1;
}

.legal {
  max-width: 760px;
}

.legal h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 72px);
  margin: 8px 0 20px;
}

.legal h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  margin: 32px 0 10px;
}

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

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer small,
.footer a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--muted);
}

.footer nav {
  display: flex;
  gap: 16px;
}

.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #0f0f0f;
  border: 1px solid var(--line);
  padding: 14px 16px;
}

.cookie.is-on {
  display: flex;
}

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

.cookie a {
  color: var(--lime);
}

@media (max-width: 900px) {
  .nav {
    padding: 0 16px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
  }

  .hero,
  .split,
  .cards,
  .contact-grid,
  .facts,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery figure:first-child {
    grid-row: auto;
  }

  .gallery figure:first-child img,
  .hero-photo img {
    min-height: 0;
    height: auto;
    max-height: 70vh;
  }

  .hero {
    padding: 28px 0 24px;
  }

  .section {
    padding: 64px 0;
  }

  .cookie {
    flex-direction: column;
    align-items: stretch;
  }
}

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