:root {
  color-scheme: dark;
  --bg: #0f0b09;
  --panel: rgba(33, 21, 16, 0.9);
  --line: rgba(255, 221, 181, 0.16);
  --text: #f7efe8;
  --muted: #d7c2b2;
  --accent: #c98b5c;
  --accent-2: #7b4f34;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(201, 139, 92, 0.16), transparent 35%),
    linear-gradient(180deg, #16100d 0%, var(--bg) 100%);
  color: var(--text);
}

.coming-soon-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.coming-soon-card {
  width: min(760px, 100%);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.95;
  margin: 0;
}

.lead {
  font-size: 22px;
  margin: 28px 0 10px;
}

.subtext, .hint {
  color: var(--muted);
  line-height: 1.6;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #1b120e;
}
.btn-secondary {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}

.lang-btn.active {
  background: rgba(201, 139, 92, 0.18);
  color: var(--text);
}

@media (max-width: 640px) {
  .coming-soon-card { padding: 24px; }
  .topbar { flex-direction: column; }
  .lead { font-size: 19px; }
}
