:root {
  color-scheme: light dark;
  --background: #f1f0ed;
  --foreground: #000000;
  --gold: #d4af72;
  --muted: rgba(0, 0, 0, 0.58);
  --faint: rgba(0, 0, 0, 0.14);
}

* { box-sizing: border-box; }

html {
  min-width: 20rem;
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  grid-template-rows: 1fr auto;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.page::before,
.page::after {
  position: absolute;
  z-index: -1;
  width: clamp(3rem, 8vw, 7rem);
  height: clamp(3rem, 8vw, 7rem);
  border-color: var(--faint);
  content: "";
}

.page::before {
  top: clamp(1.5rem, 4vw, 3.5rem);
  left: clamp(1.5rem, 4vw, 3.5rem);
  border-top: 1px solid var(--faint);
  border-left: 1px solid var(--faint);
}

.page::after {
  right: clamp(1.5rem, 4vw, 3.5rem);
  bottom: clamp(1.5rem, 4vw, 3.5rem);
  border-right: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
}

.announcement {
  display: flex;
  width: min(100%, 52rem);
  margin: auto;
  padding: clamp(4rem, 10vh, 8rem) 1rem 2.5rem;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.brand { display: block; width: min(100%, 35rem); }
.brand img { display: block; width: 100%; height: auto; }

.rule {
  display: flex;
  width: min(10rem, 34vw);
  height: 1px;
  margin: clamp(2rem, 6vh, 3.75rem) 0 clamp(1.75rem, 4vh, 2.75rem);
  align-items: center;
  justify-content: center;
  background: var(--faint);
}

.rule span { width: 2rem; height: 1px; background: var(--gold); }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 8vw, 5.75rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.message {
  margin: clamp(1.5rem, 4vh, 2.25rem) 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  letter-spacing: 0.015em;
  line-height: 1.75;
}

footer {
  display: flex;
  padding: 0.25rem 0.5rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212, 175, 114, 0.36);
  animation: breathe 2.8s ease-out infinite;
}

@keyframes breathe {
  0%, 45% { box-shadow: 0 0 0 0 rgba(212, 175, 114, 0.36); }
  80%, 100% { box-shadow: 0 0 0 0.45rem rgba(212, 175, 114, 0); }
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #000000;
    --foreground: #f1f0ed;
    --muted: rgba(241, 240, 237, 0.58);
    --faint: rgba(241, 240, 237, 0.15);
  }
}

@media (max-width: 34rem) {
  .announcement { padding-right: 0.25rem; padding-left: 0.25rem; }
  footer { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot { animation: none; }
}
