@font-face {
  font-family: Cambo;
  src: url('/assets/Cambo-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  color-scheme: dark;
  font-family: Cambo, Georgia, serif;
  font-synthesis: none;
  font-weight: 400;
  background: #050505;
  color: #f7f7f2;
  --orange: #f69c22;
  --ivory: #f7f7f2;
}
* { box-sizing: border-box; }
body { margin: 0; }
::selection { background: var(--orange); color: #050505; }
.page-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: 0 clamp(24px, 5vw, 88px);
  background: radial-gradient(ellipse at 72% 42%, #141414 0%, #050505 60%);
}
.site-header, .site-footer {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header { position: relative; z-index: 1; min-height: 124px; border-bottom: 1px solid rgb(247 247 242 / 12%); }
.brand { display: block; width: 178px; height: auto; }
.site-status { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgb(247 247 242 / 72%); }
.site-status span { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 16px rgb(246 156 34 / 35%); }
.maintenance {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-block: clamp(40px, 6vh, 96px);
}
.message { position: relative; z-index: 1; }
h1 { margin: 0; font-size: clamp(60px, 7.7vw, 112px); font-weight: 400; line-height: 1.04; letter-spacing: -.038em; }
h1 span { color: var(--orange); }
.description { margin: 30px 0 0; font-size: clamp(18px, 1.55vw, 22px); line-height: 1.7; color: rgb(247 247 242 / 70%); }
.sign-off { margin: 36px 0 0; font-size: 17px; color: var(--ivory); }
.brand-scene { position: relative; width: 100%; max-width: min(520px, 55vh); aspect-ratio: 1; display: grid; place-items: center; justify-self: end; transform: translate(3%, 0); }
.halo { position: absolute; inset: 4%; border-radius: 50%; background: radial-gradient(circle, rgb(246 156 34 / 8%), transparent 62%); }
.loading-ring { position: absolute; inset: 12%; border: 1px solid rgb(247 247 242 / 7%); border-radius: 50%; }
.loading-ring::after { content: ''; position: absolute; inset: -1px; border-radius: inherit; background: conic-gradient(transparent 0deg 265deg, rgb(246 156 34 / 8%) 300deg, rgb(246 156 34 / 72%) 355deg, transparent 360deg); mask-image: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px)); }
.sunrise { position: relative; width: 50%; height: auto; filter: drop-shadow(0 0 22px rgb(246 156 34 / 10%)); }
.site-footer { min-height: 94px; border-top: 1px solid rgb(247 247 242 / 12%); color: rgb(247 247 242 / 52%); font-size: 14px; letter-spacing: .025em; gap: 16px; }
.site-footer p { margin: 0; }
.footer-mark { width: 30px; height: 1px; background: var(--orange); opacity: .6; }
@media (prefers-reduced-motion: no-preference) {
  .message { animation: arrive 900ms ease-out both; }
  .brand-scene { animation: illuminate 1300ms ease-out both; }
  .loading-ring { animation: loading-light 12s linear infinite; }
  @keyframes arrive { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes illuminate { from { opacity: 0; } to { opacity: 1; } }
  @keyframes loading-light { to { transform: rotate(360deg); } }
}
@media (max-width: 760px) {
  .site-header { min-height: 94px; }
  .brand { width: 138px; }
  .site-status { font-size: 12px; gap: 8px; }
  .site-status span { width: 5px; height: 5px; }
  .maintenance { grid-template-columns: 1fr; align-content: center; padding-block: 44px 16px; gap: 14px; }
  h1 { font-size: clamp(54px, 11.5vw, 82px); line-height: 1.05; }
  .description { margin-top: 24px; font-size: 18px; max-width: 34ch; }
  .desktop-break { display: none; }
  .sign-off { margin-top: 24px; font-size: 16px; }
  .brand-scene { width: min(100%, 340px); max-width: none; justify-self: center; transform: none; margin-block: 0 -12px; }
  .site-footer { min-height: 80px; font-size: 12px; }
  .footer-mark { display: none; }
}
@media (max-width: 360px) {
  .page-shell { padding-inline: 20px; }
  .brand { width: 120px; }
  .site-status { font-size: 11px; }
  .maintenance { padding-top: 46px; }
  h1 { font-size: 50px; }
}
