:root {
  --bg: #080706;
  --fg: #f3eee4;
  --line: rgba(243, 238, 228, 0.18);
  --gold: #c7a45d;
  --muted: #b9aa93;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', Times, serif;
  background:
    radial-gradient(circle at top, rgba(199, 164, 93, 0.08), transparent 34rem),
    var(--bg);
  color: var(--fg);
}

main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem;
}

.card {
  width: min(100%, 760px);
  text-align: center;
  padding: clamp(2.5rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  border: 1px solid var(--line);
  background: rgba(8, 7, 6, 0.56);
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.28);
}
/*
.block_newsletter {
        font-size: .875rem;
        background-color: #181818;
        border-left: 0.20rem solid #555;
        color: #ddd;
        padding: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 2.2rem;
        max-width: 62.5rem;
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
        float: none;
}
.block_newsletter p {
        text-align: justify;
        color: #ccc;
}
*/

.logo {
}

.brand {
  margin: 0;
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.05;
}

.separator {
  width: 7.5rem;
  height: 1px;
  margin: 2.2rem auto;
  background: var(--gold);
  opacity: 0.8;
}

.subtitle {
  margin: 0;
  font-size: clamp(1.0rem, 3vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.3;
}

.motto {
  margin: 2.15rem 0 0;
  color: var(--muted);
  font-size: clamp(0.8rem, 2.2vw, 1.05rem);
  font-style: italic;
  line-height: 1.35;
}

.langs {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.langs a {
  color: var(--muted);
  text-decoration: none;
}

.langs a[aria-current='page'],
.langs a:hover {
  color: var(--fg);
}

@media (max-width: 520px) {
  .brand { letter-spacing: 0.09em; }
  .langs { position: static; transform: none; margin: -4rem auto 1.5rem; }
  main { min-height: calc(100vh - 4rem); }
}
