@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/nunito-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/nunito-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --lavart-primary: #224992;
  --lavart-primary-hover: #193c7d;
  --lavart-accent: #6c98e1;
  --lavart-text: #222222;
  --lavart-muted: #697080;
  --lavart-border: #dfe4ec;
  --lavart-white: #ffffff;
  --card-shadow: 0 20px 55px rgba(15, 35, 69, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #e9edf2;
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--lavart-text);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-150%);
  border-radius: 3px;
  background: var(--lavart-primary);
  color: var(--lavart-white);
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(1.25rem, 4.5vw, 5rem);
}

.page-background,
.page-background::after {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.page-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-background::after {
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(20, 41, 73, 0.18), rgba(20, 41, 73, 0.02) 58%),
    linear-gradient(0deg, rgba(13, 31, 58, 0.08), rgba(13, 31, 58, 0));
}

.maintenance-card {
  width: min(100%, 38.5rem);
  margin-right: auto;
  margin-left: auto;
  padding: clamp(2rem, 4.2vw, 3.75rem);
  border-top: 4px solid var(--lavart-primary);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.brand {
  margin-bottom: clamp(1.75rem, 4vh, 2.65rem);
}

.brand__logo {
  display: block;
  width: clamp(10.5rem, 22vw, 12.4rem);
  height: auto;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
  color: var(--lavart-primary);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.status__dot {
  position: relative;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--lavart-accent);
}

.status__dot::after {
  position: absolute;
  inset: -0.3rem;
  border: 1px solid rgba(108, 152, 225, 0.5);
  border-radius: inherit;
  content: "";
  animation: status-pulse 2.2s ease-out infinite;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 12em;
  margin-bottom: 1rem;
  color: var(--lavart-primary);
  font-size: clamp(2.35rem, 5vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.13;
}

.intro {
  max-width: 34rem;
  margin-bottom: 0;
  color: #4e5665;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

.contact {
  margin-top: clamp(1.5rem, 3.5vh, 2.2rem);
  padding-top: clamp(1.4rem, 3vh, 1.9rem);
  border-top: 1px solid var(--lavart-border);
}

.contact h2 {
  margin-bottom: 0.35rem;
  color: var(--lavart-text);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.4;
}

.contact > p {
  margin-bottom: 1.1rem;
  color: var(--lavart-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.75rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button svg {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.6rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button--primary {
  background: var(--lavart-primary);
  color: var(--lavart-white);
}

.button--primary:hover {
  background: var(--lavart-primary-hover);
}

.button--secondary {
  border-color: var(--lavart-primary);
  background: transparent;
  color: var(--lavart-primary);
}

.button--secondary:hover {
  background: #eef3fb;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.skip-link:focus-visible {
  outline: 3px solid var(--lavart-accent);
  outline-offset: 3px;
}

.details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  margin-top: clamp(1.4rem, 3vh, 1.9rem);
  color: var(--lavart-muted);
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.45;
}

.details__item {
  display: flex;
  align-items: flex-start;
  min-width: 0;
}

.details__item svg {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0.05rem 0.65rem 0 0;
  fill: none;
  stroke: var(--lavart-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.details__item strong {
  display: block;
  margin-bottom: 0.08rem;
  color: var(--lavart-text);
  font-size: 0.83rem;
  font-weight: 800;
}

.card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.55rem;
  margin-top: 1.65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--lavart-border);
  color: #697080;
  font-size: 0.76rem;
  font-weight: 600;
}

@keyframes status-pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.9;
  }

  75%,
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (max-width: 760px) {
  .page-shell {
    align-items: flex-start;
    min-height: 100svh;
    padding: 1rem;
  }

  .page-background img {
    object-position: 56% center;
  }

  .page-background::after {
    background: rgba(19, 42, 78, 0.2);
  }

  .maintenance-card {
    width: 100%;
    margin: auto 0;
    padding: 2rem clamp(1.25rem, 6vw, 2.25rem);
    background: rgba(255, 255, 255, 0.975);
  }

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

@media (max-width: 500px) {
  .page-shell {
    padding: 0;
  }

  .maintenance-card {
    min-height: 100svh;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 2.75rem);
  }

  .contact__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (max-height: 780px) and (min-width: 761px) {
  .page-shell {
    align-items: flex-start;
  }

  .maintenance-card {
    margin: auto 0;
    padding-top: 2.3rem;
    padding-bottom: 2.3rem;
  }

  .brand {
    margin-bottom: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .status__dot::after {
    animation: none;
  }

  .button,
  .skip-link {
    transition: none;
  }
}

@media (forced-colors: active) {
  .maintenance-card {
    border: 2px solid CanvasText;
  }

  .status__dot {
    border: 1px solid CanvasText;
  }
}
