:root {
  color-scheme: dark;
  --navy: #071321;
  --navy-soft: #0d2137;
  --gold: #c6a15b;
  --gold-bright: #e1b962;
  --cream: #f4ebdd;
  --white: #ffffff;
  --muted: #b9c1cc;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 67, 98, .45), transparent 42%),
    linear-gradient(145deg, #03080f, #0b1826 58%, #03080f);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
}

.splash-card {
  position: relative;
  isolation: isolate;
  width: min(1180px, 100%);
  min-height: min(760px, calc(100vh - 72px));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4.5vw, 62px);
  background: rgba(7, 19, 33, .94);
  border: 1px solid rgba(198, 161, 91, .68);
  border-radius: 6px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .45);
}

.blueprint {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/blueprint.png") center / cover no-repeat;
  opacity: .20;
  filter: saturate(.8) contrast(1.05);
}

.splash-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 13, 24, .28), rgba(4, 13, 24, .88) 47%, rgba(4, 13, 24, .55)),
    linear-gradient(0deg, rgba(4, 13, 24, .86), transparent 40%);
}

.gold-frame {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(198, 161, 91, .42);
}

.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--gold-bright);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.status::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  margin: 0 10px 4px 0;
  background: var(--gold);
}

.identity {
  display: grid;
  grid-template-columns: minmax(260px, 40%) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  margin: clamp(34px, 6vh, 72px) 0;
}

.seal-wrap {
  display: grid;
  place-items: center;
}

.seal {
  display: block;
  width: min(100%, 410px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, .48));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: clamp(.84rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: .18em;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  line-height: .98;
  letter-spacing: -.045em;
}

h1 span { color: var(--gold-bright); }

.summary {
  max-width: 690px;
  margin: 25px 0 0;
  color: var(--cream);
  font-size: clamp(1rem, 1.55vw, 1.24rem);
  line-height: 1.6;
}

.service-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  color: var(--gold-bright);
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.service-line i {
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  min-width: 205px;
  padding: 13px 17px;
  display: grid;
  gap: 4px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.button span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.button strong { font-size: .96rem; }

.button.primary {
  background: var(--gold);
  color: var(--navy);
}

.button.secondary { background: rgba(7, 19, 33, .58); }

.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button.primary:hover, .button.primary:focus-visible { background: var(--gold-bright); }
.button.secondary:hover, .button.secondary:focus-visible { background: rgba(198, 161, 91, .12); }
.button:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; }

footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px 40px;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid rgba(198, 161, 91, .75);
}

.principal, .location { display: grid; gap: 5px; }
.principal strong { color: var(--white); font-size: 1.05rem; }
.principal span, .location span { color: var(--muted); font-size: .88rem; line-height: 1.4; }
.location { justify-items: end; text-align: right; }

.tagline {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: var(--gold-bright);
  font-size: clamp(.86rem, 1.5vw, 1rem);
  font-weight: 700;
  letter-spacing: .035em;
}

.tagline b { padding: 0 .35em; color: var(--cream); }

@media (max-width: 820px) {
  .splash-card { min-height: auto; }
  .identity { grid-template-columns: 1fr; text-align: center; }
  .seal { width: min(70vw, 300px); }
  .summary { margin-inline: auto; }
  .service-line, .contact-actions { justify-content: center; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .location { justify-items: center; text-align: center; }
  .tagline { grid-column: 1; }
}

@media (max-width: 520px) {
  .page-shell { padding: 0; }
  .splash-card { min-height: 100vh; border: 0; border-radius: 0; padding: 26px 24px 32px; }
  .gold-frame { inset: 8px; }
  .topline { align-items: flex-start; }
  .status { max-width: 180px; line-height: 1.45; }
  .identity { gap: 28px; margin: 42px 0; }
  h1 { font-size: clamp(2.2rem, 12vw, 3.2rem); }
  .service-line { gap: 8px; font-size: .7rem; letter-spacing: .07em; }
  .button { width: 100%; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .button { transition: none; }
}
