:root {
  --navy: #071b3b;
  --navy-soft: #102d56;
  --gold: #f2b705;
  --paper: #f8f6f1;
  --ink: #16243a;
  --muted: #687181;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(242, 183, 5, 0.12), transparent 28rem),
    linear-gradient(135deg, #f7f5ef 0%, #ffffff 48%, #edf1f6 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: linear-gradient(rgba(7, 27, 59, 0.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(7, 27, 59, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 4rem);
}

.card {
  position: relative;
  width: min(1080px, 100%);
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(420px, 1.08fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(7, 27, 59, 0.10);
  box-shadow: 0 28px 80px rgba(7, 27, 59, 0.16);
}

.brand-panel {
  position: relative;
  display: grid;
  place-items: center;
  padding: 3rem;
  background: var(--navy);
}

.brand-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: var(--gold);
}

.logo {
  display: block;
  width: min(100%, 390px);
  height: auto;
  padding: 1.35rem;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.content-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6rem);
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: #9a7300;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 650px;
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 5.5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.gold-rule {
  width: 74px;
  height: 5px;
  margin: 2rem 0;
  background: var(--gold);
}

.lead {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.75;
}

.contact-label {
  margin: 2.2rem 0 0.45rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.email {
  width: fit-content;
  color: var(--navy);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 750;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
  overflow-wrap: anywhere;
}

.email:hover, .email:focus-visible { color: #9a7300; }

.tagline {
  margin: 3rem 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-style: italic;
}

@media (max-width: 820px) {
  .page-shell { padding: 0; }
  .card { min-height: 100vh; grid-template-columns: 1fr; }
  .brand-panel { min-height: 310px; padding: 2rem; }
  .logo { width: min(88%, 370px); }
  .content-panel { padding: 3.25rem 1.6rem 4rem; }
  .tagline { margin-top: 2.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
