:root {
  --bg: #fbf6ef;
  --bg-soft: #fffaf4;
  --ink: #17120f;
  --muted: #71645b;
  --line: rgba(23, 18, 15, 0.12);
  --accent: #ff7a59;
  --accent-dark: #323C7A;
  --sage: #b7c7a7;
  --cream: #fff1d9;
  --radius: 34px;
  --shadow: 0 24px 80px rgba(62, 43, 31, 0.14);
}

* { box-sizing: border-box; }
html { min-height: 100%; }
body {
  min-height: 100vh;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at 10% 10%, #fff0df 0 20%, transparent 35%), radial-gradient(circle at 95% 0%, #dce7d1 0 18%, transparent 34%), var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.maintenance-page {
  min-height: 100vh;
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

.maintenance-card {
  width: 100%;
  padding: clamp(34px, 7vw, 76px);
  border-radius: 46px;
  background: rgba(255, 250, 244, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.maintenance-card::before,
.maintenance-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
}

.maintenance-card::before {
  width: 260px;
  height: 260px;
  background: var(--cream);
  left: -88px;
  top: -88px;
}

.maintenance-card::after {
  width: 210px;
  height: 210px;
  background: rgba(183, 199, 167, 0.55);
  right: -76px;
  bottom: -76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
}

.logo img {
  width: min(230px, 64vw);
  height: auto;
}

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

h1 {
  max-width: 820px;
  margin: 0 auto;
  font-family: "Playfair Display", serif;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 640px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(23, 18, 15, 0.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(23, 18, 15, 0.22);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 560px) {
  .maintenance-page { padding: 24px 0; }
  .maintenance-card { border-radius: 34px; }
  .actions { flex-direction: column; }
  .btn { width: 100%; }
}
