:root {
  color-scheme: dark;
  --color-bg: #050505;
  --color-panel: #101010;
  --color-panel-soft: #17140d;
  --color-text: #f6f1e7;
  --color-muted: #bfb6a5;
  --color-gold: #d8ac4c;
  --color-gold-soft: #f0d58d;
  --color-border: rgba(216, 172, 76, 0.3);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max-width: 980px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--color-bg);
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(216, 172, 76, 0.18), transparent 34rem),
    linear-gradient(145deg, #050505 0%, #0a0907 56%, #151006 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--color-gold-soft);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

a:hover,
a:focus-visible {
  color: #ffffff;
}

button,
a {
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.site-header {
  width: 100%;
  margin: 0;
  padding: 1.05rem max(1rem, calc((100% - var(--max-width)) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  border-bottom: 1px solid rgba(216, 172, 76, 0.52);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.94), rgba(10, 8, 4, 0.88));
  box-shadow:
    inset 0 -1px 0 rgba(0, 0, 0, 0.95),
    0 10px 34px rgba(0, 0, 0, 0.32);
}

.brand {
  display: inline-grid;
  gap: 0.35rem;
  justify-items: start;
  width: fit-content;
  min-width: 0;
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: min(23rem, 62vw);
  max-height: 7rem;
  object-fit: contain;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.64);
  backdrop-filter: blur(12px);
}

.language-switch__button {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--color-muted);
  background: transparent;
  font: inherit;
  font-size: 0.92rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.language-switch__button {
  cursor: pointer;
  padding: 0.66rem 0.85rem;
}

.language-switch__button:hover,
.language-switch__button:focus-visible,
.language-switch__button.is-active {
  border-color: rgba(216, 172, 76, 0.55);
  color: var(--color-text);
  background: rgba(216, 172, 76, 0.12);
}

.main {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  flex: 1;
  padding: clamp(2rem, 7vw, 6rem) 0;
}

.main--centered {
  display: grid;
  place-items: center;
}

.hero,
.legal-card {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.045), transparent 30%),
    linear-gradient(145deg, rgba(16, 16, 16, 0.92), rgba(18, 14, 7, 0.9));
  box-shadow: var(--shadow);
}

.hero {
  max-width: 920px;
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: left;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.15;
}

h1 {
  margin: 0;
  font-size: clamp(1rem, 4.9vw, 2.1rem);
  letter-spacing: -0.025em;
  white-space: nowrap;
}

h2 {
  margin: 0 0 0.8rem;
  color: var(--color-gold-soft);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
}

.hero__text {
  max-width: 40rem;
  margin: 1.25rem 0 0;
  color: var(--color-muted);
  font-size: clamp(1.15rem, 3vw, 1.45rem);
}

.text-nowrap {
  white-space: nowrap;
}

.legal-card {
  padding: clamp(1.5rem, 5vw, 3rem);
}

.legal-card > section {
  padding: 1.35rem 0;
  border-top: 1px solid rgba(216, 172, 76, 0.18);
}

.legal-card > section:first-of-type {
  margin-top: 1.5rem;
}

address {
  font-style: normal;
}

.legal-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(11rem, 0.34fr) 1fr;
  gap: 1rem;
}

.legal-list dt {
  color: var(--color-muted);
}

.legal-list dd {
  margin: 0;
}

.site-footer {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 1.4rem 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .brand {
    justify-content: center;
    justify-items: center;
  }

  .hero {
    text-align: center;
  }

  .legal-list div,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
