:root {
  color-scheme: light;
  --ink: #071824;
  --muted: #607181;
  --line: rgba(255, 255, 255, 0.62);
  --glass: rgba(255, 255, 255, 0.56);
  --glass-strong: rgba(255, 255, 255, 0.76);
  --gold: #b78a36;
  --gold-dark: #8a651f;
  --shadow: 0 30px 90px rgba(14, 39, 57, 0.22);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.95) 0 12%, transparent 32%),
    radial-gradient(circle at 82% 14%, rgba(173, 207, 226, 0.7) 0 16%, transparent 38%),
    linear-gradient(135deg, #edf7fb 0%, #d7e9f2 42%, #c8deea 100%);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.46), transparent 46%),
    radial-gradient(circle at 50% 100%, rgba(183, 138, 54, 0.16), transparent 34%);
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: auto;
  content: "";
  pointer-events: none;
  border-radius: 999px;
  filter: blur(4px);
}

body::before {
  width: 34rem;
  height: 34rem;
  right: -12rem;
  top: -12rem;
  background: rgba(255, 255, 255, 0.34);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

body::after {
  width: 28rem;
  height: 28rem;
  left: -11rem;
  bottom: -13rem;
  background: rgba(86, 130, 154, 0.18);
  animation: floatGlow 12s ease-in-out infinite alternate-reverse;
}

a {
  color: inherit;
}

.maintenance-page {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(1.25rem, 3vw, 3rem);
}

.maintenance-card {
  width: min(100%, 920px);
  padding: clamp(1.4rem, 5vw, 4.4rem);
  border: 1px solid var(--line);
  border-radius: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.34)),
    var(--glass);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(28px) saturate(130%);
  -webkit-backdrop-filter: blur(28px) saturate(130%);
  overflow: hidden;
}

.maintenance-card::before {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: clamp(1.4rem, 4vw, 2.6rem);
  content: "";
  background: linear-gradient(90deg, transparent, rgba(183, 138, 54, 0.78), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: clamp(2rem, 5vw, 3.2rem);
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.24rem);
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: clamp(54px, 8vw, 74px);
  height: clamp(54px, 8vw, 74px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(15, 49, 71, 0.18);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::after {
  display: inline-block;
  width: 74px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(183, 138, 54, 0.72), transparent);
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.45rem, 8vw, 6.1rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: clamp(1.2rem, 3vw, 1.8rem) 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.26rem);
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: clamp(1.8rem, 4vw, 2.5rem);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.9rem 1.28rem;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(10, 32, 47, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(10, 32, 47, 0.18);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #071824, #17384b);
}

.button-instagram {
  min-width: min(100%, 260px);
  border-color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.34), transparent 34%),
    linear-gradient(135deg, #071824 0%, #1c3d52 38%, #8a5e7d 68%, #b78a36 100%);
  box-shadow:
    0 22px 54px rgba(28, 61, 82, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.button-kicker {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.button-secondary {
  color: var(--ink);
  background: var(--glass-strong);
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.72rem;
  margin-top: clamp(1.5rem, 4vw, 2.6rem);
  color: #465a68;
  font-size: 0.98rem;
  font-weight: 700;
}

.contact-row a {
  text-decoration: none;
}

.contact-row a:hover {
  color: var(--gold-dark);
}

@keyframes floatGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(18px, -14px, 0) scale(1.05);
  }
}

@media (max-width: 620px) {
  .maintenance-page {
    place-items: stretch;
  }

  .maintenance-card {
    display: flex;
    min-height: calc(100vh - 2.5rem);
    flex-direction: column;
    justify-content: center;
  }

  .button {
    width: 100%;
  }

  .contact-row {
    flex-direction: column;
  }

  .contact-row span {
    display: none;
  }
}

@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;
  }
}
