:root {
  --navy: #0d1b2a;
  --burgundy: #8b1e1e;
  --green: #1e4d2b;
  --gold: #c89a2b;
  --cream: #f7f0df;
  --charcoal: #333333;
  --white: #ffffff;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--navy);
  background:
    radial-gradient(circle at top right, rgba(200,154,43,.12), transparent 30%),
    linear-gradient(135deg, #faf7ef 0%, #f4efe4 48%, #ece5d8 100%);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(13,27,42,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,27,42,.03) 1px, transparent 1px);
  background-size: 28px 28px;
}

.page-shell {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 48px 24px 28px;
}

.card {
  position: relative;
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.25fr);
  overflow: hidden;
  border: 1px solid rgba(13,27,42,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 30px 90px rgba(13,27,42,.15);
}

.card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--navy) 0 45%, var(--burgundy) 45% 72%, var(--gold) 72% 100%);
}

.brand-panel {
  display: grid;
  place-items: center;
  padding: 54px 42px;
  background:
    linear-gradient(180deg, rgba(247,240,223,.7), rgba(255,255,255,.95)),
    var(--cream);
  border-right: 1px solid rgba(13,27,42,.10);
}

.logo {
  width: min(330px, 100%);
  height: auto;
  display: block;
}

.content-panel {
  padding: 64px 64px 58px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--burgundy);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  line-height: 1.6;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.025em;
}

.lead {
  margin: 24px 0 0;
  max-width: 650px;
  color: var(--charcoal);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.18rem;
  line-height: 1.65;
}

.divider {
  width: 78px;
  height: 3px;
  margin: 30px 0;
  background: var(--gold);
}

.contact-block p { margin: 0; }

.contact-block .name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.contact-block .title {
  margin-top: 4px;
  margin-bottom: 22px;
  color: var(--burgundy);
  font-weight: 700;
  letter-spacing: .035em;
}

.contact-block a {
  display: inline-block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 650;
  text-decoration-color: rgba(200,154,43,.75);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact-block a:hover,
.contact-block a:focus-visible {
  color: var(--burgundy);
}

.status {
  display: inline-block;
  margin: 34px 0 0;
  padding: 9px 13px;
  border: 1px solid rgba(13,27,42,.12);
  border-radius: 999px;
  color: rgba(13,27,42,.72);
  background: rgba(247,240,223,.68);
  font-size: .82rem;
  letter-spacing: .04em;
}

footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px 26px;
  color: rgba(13,27,42,.62);
  font-size: .84rem;
  letter-spacing: .04em;
}

.footer-dot { color: var(--gold); }

@media (max-width: 760px) {
  .page-shell { padding: 24px 16px 14px; }
  .card { grid-template-columns: 1fr; border-radius: 18px; }
  .brand-panel { padding: 36px 34px 30px; border-right: 0; border-bottom: 1px solid rgba(13,27,42,.10); }
  .logo { width: min(280px, 78vw); }
  .content-panel { padding: 38px 28px 42px; }
  .eyebrow { font-size: .73rem; }
  h1 { font-size: clamp(2.1rem, 12vw, 3.4rem); }
  .lead { font-size: 1.05rem; }
  footer { flex-wrap: wrap; text-align: center; }
}
