:root {
  --bg-base: #ece8de;
  --bg-warm: #f5f1e7;
  --text-strong: #2b2621;
  --text-soft: #6d6258;
  --accent: #b58f4d;
  --card: rgba(255, 255, 255, 0.56);
  --stroke: rgba(43, 38, 33, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", sans-serif;
  color: var(--text-strong);
  background:
    radial-gradient(circle at 8% 10%, rgba(181, 143, 77, 0.22) 0, transparent 32%),
    radial-gradient(circle at 92% 85%, rgba(43, 38, 33, 0.12) 0, transparent 40%),
    linear-gradient(145deg, var(--bg-base), var(--bg-warm));
}

.maintenance-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.maintenance-card {
  width: min(680px, 100%);
  padding: clamp(28px, 4vw, 52px);
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow:
    0 30px 70px rgba(43, 38, 33, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  text-align: center;
  backdrop-filter: blur(8px);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(43, 38, 33, 0.14);
  background: rgba(255, 255, 255, 0.58);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #6d6258;
  min-width: 44px;
  height: 34px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.22s ease;
}

.lang-btn:hover {
  color: #2b2621;
  background: rgba(181, 143, 77, 0.14);
}

.lang-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, #c6a462, #a98540);
  box-shadow: 0 6px 14px rgba(165, 129, 63, 0.34);
}

.brand {
  margin-bottom: 18px;
}

.brand-logo {
  width: min(220px, 56vw);
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 4px 18px rgba(43, 38, 33, 0.18));
}

.eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  margin: 12px 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.04;
  color: var(--text-strong);
}

.message {
  margin: 0 auto;
  max-width: 46ch;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
  color: var(--text-soft);
}

.divider {
  width: min(280px, 70%);
  height: 1px;
  margin: 28px auto 14px;
  background: linear-gradient(90deg, transparent, rgba(181, 143, 77, 0.8), transparent);
}

.footnote {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8b7d6f;
}

@media (max-width: 640px) {
  .maintenance-shell {
    padding: 16px;
  }

  .maintenance-card {
    border-radius: 18px;
    padding: 24px 18px;
  }

  .lang-switch {
    margin-bottom: 12px;
  }

  .lang-btn {
    min-width: 40px;
    height: 32px;
    font-size: 11px;
  }

  h1 {
    line-height: 1.12;
  }

  .message {
    line-height: 1.6;
  }
}
