/* Change these colors to match your brand. The background is a local image. */
:root { color-scheme: dark; --ink: #f6f7f2; --muted: #d0dcdb; --accent: #e0f3df; }
* { box-sizing: border-box; }
html { background: #102529; }
body { margin: 0; color: var(--ink); font-family: "Helvetica Neue", Arial, sans-serif; }
.landscape, .shade { position: fixed; inset: 0; pointer-events: none; }
.landscape { inset: -18px; background: #102529 url('assets/Background.png') 65% center / cover no-repeat; transform: translate3d(var(--x, 0px), var(--y, 0px), 0) scale(1.015); transition: transform 1.8s cubic-bezier(.2,.7,.2,1); }
.shade { background: radial-gradient(ellipse at center, rgba(5,20,24,.58), rgba(5,20,24,.24) 75%), linear-gradient(0deg, rgba(5,20,24,.7), transparent 60%); }
.page { position: relative; min-height: 100svh; display: flex; flex-direction: column; padding: 38px clamp(24px, 5.6vw, 96px) 26px; }
/* The logo and name form the hero; the downtime notice is supporting text. */
.brand { display: flex; flex-direction: column; align-items: center; gap: 24px; width: 100%; margin-bottom: 32px; }
.logo { width: clamp(120px, 12vw, 160px); height: auto; aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 8px 24px #0003); transition: transform .5s ease; }
.brand:hover .logo { transform: translateY(-5px) rotate(-3deg); }
main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 48px 0 64px; }
.message { width: 100%; max-width: 1100px; text-align: center; animation: arrive .9s ease both; }
h1 { max-width: 100%; margin: 0; font-size: clamp(4.5rem, 10vw, 9rem); font-weight: 600; letter-spacing: -.05em; line-height: 1.05; overflow-wrap: anywhere; text-wrap: balance; }
.description { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.contact { margin-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.contact-label { font-size: 14px; color: var(--muted); }
.email { display: inline-flex; align-items: center; gap: 34px; max-width: 100%; min-height: 56px; padding: 15px 22px; color: #143029; background: var(--accent); border: 1px solid transparent; border-radius: 6px; font-size: 16px; font-weight: 500; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.email span { overflow-wrap: anywhere; }
.email svg { flex-shrink: 0; transition: transform .25s ease; }
.email:hover { transform: translateY(-3px); background: #f1ffed; box-shadow: 0 10px 35px #0003; }
.email:hover svg { transform: translateX(4px); }
.email:focus-visible { outline: 2px solid white; outline-offset: 6px; }
footer { display: flex; justify-content: space-between; gap: 24px; padding-top: 23px; border-top: 1px solid #e0f3df38; color: var(--muted); font-size: 13px; line-height: 1.6; }
.footer-note { opacity: .8; }
@keyframes arrive { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 600px) {
  .page { padding: 25px 25px 22px; }
  .brand { gap: 22px; margin-bottom: 28px; }
  .logo { width: 112px; }
  main { padding: 40px 0 48px; }
  h1 { font-size: clamp(3.5rem, 15vw, 5.5rem); }
  .description { font-size: 16px; }
  .shade { background: linear-gradient(0deg, #051418bb, #05141866); }
  .landscape { background-position: 66% center; }
  .footer-note { display: none; }
  .email { gap: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .landscape { transform: none; }
}
