:root {
  --ink: #0a3155;
  --deep: #072747;
  --teal: #007d95;
  --gold: #b78134;
  --paper: #f7fbfc;
  --mist: #dfeff4;
  --line: rgba(10, 49, 85, 0.18);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--deep);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 28px 20px;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(237, 249, 251, 0.92) 48%, rgba(255, 250, 241, 0.9) 100%),
    radial-gradient(circle at 12% 18%, rgba(0, 125, 149, 0.13), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(183, 129, 52, 0.16), transparent 34%);
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(10, 49, 85, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 49, 85, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 76%);
}

.ambient {
  position: absolute;
  z-index: -1;
  border: 1px solid var(--line);
  border-radius: 999px;
  opacity: 0.72;
}

.ambient-one {
  width: min(58vw, 720px);
  aspect-ratio: 1;
  left: -18vw;
  top: 8vh;
  border-color: rgba(0, 125, 149, 0.24);
}

.ambient-two {
  width: min(42vw, 520px);
  aspect-ratio: 1;
  right: -14vw;
  bottom: -8vh;
  border-color: rgba(183, 129, 52, 0.28);
}

.hero {
  width: min(100%, 980px);
  max-width: calc(100vw - 40px);
  min-width: 0;
  text-align: center;
  padding: clamp(18px, 3vw, 34px) 0;
}

.logo-mark {
  width: 100%;
  max-width: 660px;
  min-width: 0;
  margin: 0 auto clamp(20px, 3vw, 34px);
}

.logo-mark img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 38px rgba(7, 39, 71, 0.12));
}

.eyebrow {
  margin: 0 0 14px;
  max-width: 100%;
  color: var(--teal);
  font-size: clamp(0.78rem, 1.8vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 8vw, 6.7rem);
  font-weight: 700;
  line-height: 0.95;
}

.lead {
  width: min(100%, 690px);
  margin: clamp(14px, 2.4vw, 22px) auto 0;
  color: rgba(7, 39, 71, 0.82);
  font-size: clamp(1rem, 2.3vw, 1.22rem);
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.status-row,
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(18px, 3vw, 30px);
}

.status-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact {
  margin-top: 18px;
  font-style: normal;
}

.contact a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--teal));
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(10, 49, 85, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact a:last-child {
  background: linear-gradient(135deg, var(--gold), #0b5667);
}

.contact a:hover,
.contact a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(10, 49, 85, 0.22);
}

@media (max-width: 640px) {
  .page-shell {
    min-height: 100svh;
    padding: 22px 18px;
  }

  .logo-mark {
    width: calc(100vw - 72px);
    max-width: 330px;
    margin-bottom: 22px;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    line-height: 1.55;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 2.65rem);
    line-height: 1;
  }

  .lead {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .status-row span,
  .contact a {
    width: 100%;
    max-width: 330px;
  }
}
