:root {
  --paper: #f6f1ea;
  --ink: #151210;
  --muted: rgba(246, 241, 234, 0.72);
  --line: rgba(246, 241, 234, 0.18);
  --accent: #c87534;
  --dark: #0f0e0d;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--dark);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.maintenance-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--dark);
}

.background {
  position: absolute;
  inset: 0;
}

.background::before,
.background::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: 1;
}

.background::before {
  background:
    linear-gradient(90deg, rgba(15, 14, 13, 0.92) 0%, rgba(15, 14, 13, 0.66) 46%, rgba(15, 14, 13, 0.36) 100%),
    linear-gradient(180deg, rgba(15, 14, 13, 0.2), rgba(15, 14, 13, 0.86));
}

.background::after {
  background: radial-gradient(circle at 28% 28%, rgba(200, 117, 52, 0.22), transparent 34%);
}

.background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
  transform: scale(1.02);
}

.content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100vh;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: clamp(22px, 4vw, 46px);
  padding: clamp(22px, 4.4vw, 56px);
}

.topbar,
.bottom-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar span,
.bottom-note,
.eyebrow,
.info-grid span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topbar span,
.bottom-note {
  color: rgba(246, 241, 234, 0.68);
}

.wordmark {
  color: var(--paper);
  font-size: clamp(1.04rem, 2vw, 1.42rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wordmark:hover {
  color: #f0b27d;
}

.message {
  align-self: center;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
}

h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.1rem, 6.4vw, 7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.message > p:last-child {
  max-width: 620px;
  margin: clamp(18px, 2.8vw, 30px) 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.62;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(280px, 0.58fr);
  max-width: 920px;
  border: 1px solid var(--line);
  background: rgba(15, 14, 13, 0.54);
  backdrop-filter: blur(18px);
}

.info-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 124px;
  padding: clamp(18px, 2.4vw, 28px);
}

.info-grid article + article {
  border-left: 1px solid var(--line);
}

.info-grid span {
  color: var(--accent);
}

.info-grid a {
  width: max-content;
  color: var(--paper);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  font-weight: 700;
}

.info-grid a:hover {
  color: #f0b27d;
}

.info-grid p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.quick-form {
  display: grid;
  max-width: 920px;
  gap: 18px;
  padding: clamp(22px, 3.2vw, 38px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(246, 241, 234, 0.12), rgba(246, 241, 234, 0.055)),
    rgba(15, 14, 13, 0.68);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.quick-form-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 8px;
}

.quick-form-heading .eyebrow {
  margin: 0;
}

.form-success {
  margin: 0;
  color: #f0b27d;
  font-size: 0.92rem;
  font-weight: 700;
}

.quick-form h2 {
  max-width: 560px;
  margin: 0;
  color: var(--paper);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.45vw, 2.24rem);
  line-height: 1.08;
}

.quick-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quick-form label {
  display: grid;
  gap: 8px;
  color: rgba(246, 241, 234, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-form input,
.quick-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(246, 241, 234, 0.18);
  border-radius: 0;
  padding: 12px 14px;
  background: rgba(246, 241, 234, 0.08);
  color: var(--paper);
  font: inherit;
  letter-spacing: 0;
  outline: 0;
  text-transform: none;
}

.quick-form textarea {
  min-height: 112px;
  resize: vertical;
}

.quick-form input:focus,
.quick-form textarea:focus {
  border-color: var(--accent);
  background: rgba(246, 241, 234, 0.12);
}

.quick-form button {
  width: max-content;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-form button:hover,
.quick-form button:focus-visible {
  background: #f0b27d;
}

.quick-form .bot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.cookie-banner {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 50;
  display: flex;
  max-width: min(440px, calc(100vw - 28px));
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(15, 14, 13, 0.92);
  color: rgba(246, 241, 234, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(10px);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.cookie-banner button {
  flex: 0 0 auto;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 13px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-banner button:hover,
.cookie-banner button:focus-visible {
  background: #f0b27d;
}

@media (max-width: 820px) {
  .content {
    min-height: 100svh;
  }

  .topbar,
  .bottom-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar span,
  .bottom-note {
    letter-spacing: 0.12em;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .quick-form-grid {
    grid-template-columns: 1fr;
  }

  .quick-form-heading {
    align-items: start;
    flex-direction: column;
  }

  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .content {
    gap: 28px;
    padding: 22px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.8rem);
  }

  .message > p:last-child {
    font-size: 0.98rem;
  }
}
