:root {
  --black: #050403;
  --soft-black: #11100e;
  --red: #8e0d0d;
  --gold: #d7a529;
  --bronze: #8d5f16;
  --cream: #f4ead1;
  --muted: #c8bfa6;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--black);
  color: var(--cream);
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 5vw;
  background: rgba(5, 4, 3, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(215, 165, 41, 0.18);
}
.brand img { width: 110px; height: auto; display: block; }
.nav { display: flex; gap: 24px; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
.nav a:hover { color: var(--gold); }
.lang-switcher { display: flex; gap: 6px; }
.lang-switcher button {
  border: 1px solid rgba(215, 165, 41, 0.35);
  background: transparent;
  color: var(--cream);
  padding: 7px 9px;
  cursor: pointer;
  border-radius: 999px;
  font-size: 12px;
}
.lang-switcher button.active, .lang-switcher button:hover { background: linear-gradient(135deg, var(--gold), var(--bronze)); color: #080603; }
.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  place-items: center;
  padding: 52px 5vw 80px;
  background:
    radial-gradient(circle at 70% 30%, rgba(215, 165, 41, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(5,4,3,0.92), rgba(5,4,3,0.72));
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,4,3,0.18), var(--black));
}
.hero-content {
  position: relative;
  max-width: 920px;
  text-align: center;
  padding-top: 0;
}
.eyebrow, .section-label {
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 13px;
}
h1 {
  font-size: clamp(54px, 9vw, 128px);
  line-height: 0.9;
  margin: 14px 0;
  font-weight: 400;
  background: linear-gradient(120deg, #fff2bc, var(--gold), var(--bronze));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tagline { font-size: clamp(24px, 4vw, 46px); margin: 0 0 22px; }
.hero-copy { max-width: 760px; margin: 0 auto 34px; color: var(--muted); font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.btn {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(215, 165, 41, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}
.btn.primary { background: linear-gradient(135deg, var(--gold), var(--bronze)); color: #080603; }
.btn.secondary { background: rgba(255,255,255,0.04); }
.section { padding: 92px 7vw; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  border-top: 1px solid rgba(215, 165, 41, 0.16);
}
h2 { font-size: clamp(34px, 5vw, 66px); line-height: 1.02; margin: 0; font-weight: 400; }
.section-copy p, .privacy p, .contact p { color: var(--muted); line-height: 1.8; font-size: 18px; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 7vw 92px;
}
.cards article {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(215, 165, 41, 0.2);
  border-radius: 24px;
  padding: 32px;
}
.cards h3 { color: var(--gold); font-size: 28px; margin: 0 0 12px; font-weight: 400; }
.cards p { color: var(--muted); line-height: 1.7; }
.privacy { background: linear-gradient(135deg, rgba(142,13,13,0.25), rgba(5,4,3,0)); border-top: 1px solid rgba(215, 165, 41, 0.15); border-bottom: 1px solid rgba(215, 165, 41, 0.15); }
.contact-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.contact-links a { border: 1px solid rgba(215,165,41,0.35); border-radius: 999px; padding: 12px 16px; color: var(--gold); }
footer { padding: 28px 5vw; color: var(--muted); text-align: center; border-top: 1px solid rgba(215, 165, 41, 0.15); }
@media (max-width: 820px) {
  .site-header { flex-wrap: wrap; justify-content: center; }
  .nav { order: 3; width: 100%; justify-content: center; gap: 14px; }
  .brand img { width: 92px; }
  .hero-content { padding-top: 0; }
  .split, .cards { grid-template-columns: 1fr; }
  .section, .cards { padding-left: 6vw; padding-right: 6vw; }
}
