:root {
  --ink: #061d43;
  --ink-soft: #314158;
  --muted: #6b7280;
  --line: #d8e3f2;
  --blue: #087ee8;
  --blue-deep: #062f71;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100svh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--blue);
}

.page-shell {
  flex: 1;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3.4vw, 2.25rem) 1.25rem clamp(0.9rem, 2vw, 1.5rem);
}

.coming-soon {
  width: min(100%, 820px);
  text-align: center;
  position: relative;
}

.coming-soon::after {
  content: "";
  display: block;
  width: min(100%, 520px);
  height: 1px;
  margin: clamp(1rem, 2.4vw, 1.6rem) auto 0;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.brand-logo {
  width: min(48vw, 300px);
  max-height: 240px;
  object-fit: contain;
  margin: 0 auto clamp(1rem, 2.4vw, 1.55rem);
}

.status {
  width: fit-content;
  margin: clamp(0.85rem, 1.8vw, 1.2rem) auto 0;
  padding: 0.38rem 0.72rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 920px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(2.35rem, 5.2vw, 4.25rem);
  line-height: 1;
  font-weight: 900;
}

.tagline {
  max-width: 760px;
  margin: clamp(0.9rem, 2vw, 1.2rem) auto 0;
  color: var(--blue-deep);
  font-size: clamp(1rem, 2vw, 1.32rem);
  line-height: 1.45;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.intro {
  max-width: 610px;
  margin: clamp(1.1rem, 2.5vw, 1.6rem) auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.75;
}

.services-block {
  max-width: 760px;
  margin: clamp(1.15rem, 2.5vw, 1.55rem) auto 0;
}

.services-block ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.44rem 0.48rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-block li {
  padding: 0.32rem 0.54rem;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: clamp(0.78rem, 1.35vw, 0.88rem);
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.contact {
  margin: clamp(0.95rem, 2.2vw, 1.3rem) auto 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-style: normal;
  font-weight: 900;
}

.phone-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 0.8rem;
}

.contact span {
  color: #a8b3c4;
}

.contact .location {
  display: block;
  margin-top: clamp(0.65rem, 1.6vw, 0.9rem);
  color: var(--muted);
  font-size: 0.76em;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-credit {
  padding: 0 1rem 0.85rem;
  color: rgba(6, 29, 67, 0.34);
  font-family:
    "SFMono-Regular", "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  text-align: center;
  white-space: nowrap;
}

.site-credit a {
  color: rgba(6, 29, 67, 0.48);
  text-decoration: none;
}

.site-credit a:hover {
  color: var(--blue-deep);
}

@media (max-width: 620px) {
  .page-shell {
    padding: 0.85rem 1rem 0.85rem;
  }

  .brand-logo {
    width: min(70vw, 245px);
    margin-top: 0.2rem;
    margin-bottom: 1rem;
  }

  h1 {
    font-size: clamp(1.95rem, 9.2vw, 2.75rem);
  }

  .tagline {
    font-size: clamp(0.92rem, 3.8vw, 1.05rem);
  }

  .intro {
    max-width: 27rem;
    line-height: 1.55;
  }

  .contact {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }

  .contact span {
    display: none;
  }

  .contact .location {
    display: block;
  }

  .site-credit {
    padding-bottom: 0.75rem;
  }
}
