:root {
  --paper: #f7f6f2;
  --ink: #10233a;
  --blue: #275d8c;
  --muted: #687686;
  --line: rgba(30, 64, 94, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.construction-page {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 29px clamp(22px, 5vw, 82px) 24px;
}

.backdrop {
  position: absolute;
  z-index: -3;
  inset: 0;
  overflow: hidden;
  background: var(--paper);
}

.backdrop img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.01);
  animation: reveal 1.05s ease-out both;
}

.backdrop-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(249, 249, 246, 1) 0%, rgba(249, 249, 246, 0.98) 31%, rgba(249, 249, 246, 0.82) 49%, rgba(249, 249, 246, 0.12) 77%, transparent 100%),
    linear-gradient(180deg, rgba(249, 249, 246, 0.3), transparent 38%, rgba(249, 249, 246, 0.58));
}

.backdrop-grain {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(39, 93, 140, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 93, 140, 0.07) 1px, transparent 1px);
  background-size: clamp(92px, 9vw, 150px) clamp(92px, 9vw, 150px);
  -webkit-mask-image: linear-gradient(90deg, black, transparent 51%);
  mask-image: linear-gradient(90deg, black, transparent 51%);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-seal {
  position: relative;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid rgba(39, 93, 140, 0.48);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: -0.08em;
}

.brand-seal::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(39, 93, 140, 0.17);
  border-radius: 50%;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  color: #173550;
  font-size: 14px;
  letter-spacing: 0.19em;
}

.brand-copy small {
  color: #7f8f9c;
  font-size: 8px;
  letter-spacing: 0.25em;
}

.location {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: #718392;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.location span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(39, 93, 140, 0.1);
}

.message {
  align-self: center;
  width: min(710px, 55vw);
  padding-block: 30px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 24px;
  height: 1px;
  background: rgba(39, 93, 140, 0.38);
}

h1 {
  margin: 0;
  color: #112a43;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.9rem, 7.05vw, 7.55rem);
  font-weight: 400;
  line-height: 0.87;
  letter-spacing: -0.066em;
  text-wrap: balance;
}

h1 em {
  display: block;
  margin-top: 0.12em;
  color: var(--blue);
  font-weight: 400;
}

.description {
  max-width: 540px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.02vw, 17px);
  line-height: 1.72;
  text-wrap: balance;
}

.status {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 31px;
  padding: 12px 16px;
  border: 1px solid rgba(39, 93, 140, 0.18);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 12px 38px rgba(42, 72, 97, 0.07);
  backdrop-filter: blur(8px);
}

.status > span:last-child {
  display: grid;
  gap: 4px;
}

.status small {
  color: #8b98a3;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status strong {
  color: #244661;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(39, 93, 140, 0.1);
  animation: pulse 2.2s ease-in-out infinite;
}

.site-footer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #7c8994;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #315c7e;
  text-underline-offset: 4px;
  text-decoration-color: rgba(39, 93, 140, 0.25);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #153f61;
}

@keyframes pulse {
  50% {
    opacity: 0.42;
    transform: scale(0.75);
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .backdrop img {
    object-position: 62% center;
  }

  .backdrop-shade {
    background:
      linear-gradient(90deg, rgba(249, 249, 246, 0.98), rgba(249, 249, 246, 0.72)),
      linear-gradient(180deg, rgba(249, 249, 246, 0.25), transparent 35%, rgba(249, 249, 246, 0.75));
  }

  .message {
    width: min(700px, 83vw);
  }
}

@media (max-width: 580px) {
  .construction-page {
    min-height: 540px;
    padding: 22px 20px 20px;
  }

  .backdrop img {
    object-position: 70% center;
    filter: saturate(0.76) contrast(1) brightness(1.01);
  }

  .backdrop-shade {
    background:
      linear-gradient(90deg, rgba(249, 249, 246, 0.94), rgba(249, 249, 246, 0.48)),
      linear-gradient(180deg, rgba(249, 249, 246, 0.72), transparent 35%, rgba(249, 249, 246, 0.91));
  }

  .brand-seal {
    width: 41px;
    height: 41px;
  }

  .brand-copy strong {
    font-size: 11px;
  }

  .brand-copy small {
    font-size: 6px;
  }

  .location {
    font-size: 0;
    gap: 0;
  }

  .message {
    width: 100%;
    padding-block: 18px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 8px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.45rem);
    line-height: 0.9;
  }

  .description {
    max-width: 410px;
    margin-top: 23px;
    color: #566a7b;
    font-size: 13px;
    line-height: 1.62;
  }

  .status {
    margin-top: 22px;
    padding: 10px 13px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
    line-height: 1.45;
  }
}

@media (max-height: 680px) and (min-width: 581px) {
  .construction-page {
    padding-top: 21px;
    padding-bottom: 18px;
  }

  .brand-seal {
    width: 41px;
    height: 41px;
  }

  h1 {
    font-size: clamp(3.6rem, 8.6vh, 5.2rem);
  }

  .description {
    margin-top: 20px;
  }

  .status {
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
