:root {
  --bg: #080a0d;
  --panel: rgba(255,255,255,.05);
  --border: rgba(255,255,255,.09);
  --text: #edf2f7;
  --muted: #aab4c0;
  --accent: #d0ab63;
  --accent2: #7db7ff;
  --radius: 22px;
  --shadow: 0 18px 55px rgba(0,0,0,.42);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(208,171,99,.12), transparent 30%),
    radial-gradient(circle at 20% 20%, rgba(125,183,255,.08), transparent 22%),
    linear-gradient(180deg, #06070a 0%, var(--bg) 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(8,10,13,.72);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.logo {
  width: 66px;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 12px rgba(208,171,99,.12));
}
.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-text strong {
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand-text span {
  color: var(--muted);
  font-size: .88rem;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.nav a, .lang-switcher button {
  border: 0;
  cursor: pointer;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  transition: .2s ease;
}
.nav a:hover, .lang-switcher button:hover, .lang-switcher button.active {
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.lang-switcher {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: 56px 0 36px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .8rem;
  margin: 0 0 18px;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .92;
  letter-spacing: -.05em;
}

.lead {
  margin: 20px 0 0;
  max-width: 63ch;
  color: var(--muted);
  line-height: 1.7;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
  transition: .2s ease;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.16); }
.btn.primary {
  background: linear-gradient(135deg, var(--accent), #8e6c3f);
  color: #111;
  border: 0;
  font-weight: 700;
}

.hero-card {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 20%, rgba(208,171,99,.18), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  min-height: 380px;
  box-shadow: var(--shadow);
  display: grid;
  place-items: end start;
  padding: 26px;
}
.hero-card-inner {
  display: grid;
  gap: 10px;
}
.hero-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
}
.hero-card p { margin: 0; color: var(--muted); }

.section {
  padding: 72px 0;
}
.section-title {
  margin-bottom: 22px;
}
.section-title h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  letter-spacing: -.03em;
}

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

.panel {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.panel h3 { margin: 0 0 10px; }
.panel p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.kicker {
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .88rem;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
input, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.25);
  color: var(--text);
  font: inherit;
  outline: none;
}
textarea { min-height: 150px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #7c8795; }

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  padding: 26px 0 38px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: var(--muted);
  margin-top: 24px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.i18n { display: none; }
.i18n.active { display: inline; }
h2.i18n.active,
h3.i18n.active,
p.i18n.active,
a.i18n.active,
span.i18n.active {
  display: inline;
}

h2.i18n.active,
h3.i18n.active,
p.i18n.active {
  display: block;
}

@media (max-width: 980px) {
  .hero-grid, .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 300px; }
}

@media (max-width: 640px) {
  .topbar { flex-direction: column; align-items: start; }
  .brand { align-items: flex-start; }
  .nav { justify-content: flex-start; }
  h1 { font-size: clamp(2.6rem, 16vw, 4.4rem); }
}