:root {
  --bg: #080808;
  --surface: #101010;
  --surface-2: #161616;
  --text: #f2efe8;
  --muted: #b9b0a2;
  --soft: #7f766b;
  --line: rgba(183,154,99,.22);
  --accent: #b79a63;
  --max: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(183,154,99,.08), transparent 32rem),
    linear-gradient(180deg, #080808 0%, #0b0b0b 52%, #080808 100%);
  color: var(--text);
  line-height: 1.6;
}

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

a:hover { color: var(--accent); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8,8,8,.78);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-size: .92rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 650;
}

.logo-mark { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: .84rem;
  color: var(--muted);
}

.lang {
  color: var(--soft);
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

main { overflow: hidden; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem 1.4rem;
}

.hero {
  min-height: 88vh;
  display: grid;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  margin-bottom: 1.5rem;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.045em;
}

h1 {
  max-width: 980px;
  font-size: clamp(3rem, 8vw, 7.8rem);
  font-weight: 720;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  max-width: 900px;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -.015em;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin: 2rem 0 0;
}

.copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.button {
  border: 1px solid var(--accent);
  color: var(--text);
  padding: .9rem 1.1rem;
  font-size: .86rem;
  letter-spacing: .03em;
}

.button:hover {
  background: rgba(183,154,99,.1);
  color: var(--text);
}

.button-secondary {
  border-color: var(--line);
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  padding: 1.35rem;
  min-height: 155px;
}

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

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.rule {
  height: 1px;
  background: var(--line);
  margin: 2.5rem 0;
}

.statement {
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  max-width: 980px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.4rem 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: .82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 820px) {
  .header-inner { align-items: flex-start; }
  .nav { gap: .8rem; flex-wrap: wrap; justify-content: flex-end; }
  .section { padding: 5rem 1.1rem; }
  .hero { min-height: 78vh; }
  .grid-2, .grid-3, .split { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}
