:root {
  --navy: #202060;
  --navy-deep: #16164a;
  --gold: #c9a227;
  --gold-soft: #e8d48b;
  --ink: #1a1a2e;
  --muted: #4a4a5c;
  --bg: #f7f6f2;
  --bg-alt: #efeee8;
  --white: #ffffff;
  --line: #d8d6ce;
  --max: 960px;
  --narrow: 680px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

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

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, var(--narrow));
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.wordmark {
  width: min(220px, 55vw);
  height: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a {
  text-decoration: none;
  color: var(--navy);
}

.nav a:hover {
  color: var(--gold);
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy .hero h1,
.hero h1 {
  max-width: 18ch;
}

.hero-visual {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero h1 {
    max-width: none;
  }
}

.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 3.5rem 0 3.75rem;
}

.hero a {
  color: var(--gold-soft);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1.15;
  font-weight: 750;
  max-width: 18ch;
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 42rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.15rem;
  border-radius: 6px;
  background: var(--gold);
  color: var(--navy-deep) !important;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--gold);
}

.btn:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  background: transparent;
}

.section {
  padding: 2.75rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: 1.45rem;
}

.section p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.section p:last-child {
  margin-bottom: 0;
}

.bullets {
  margin: 1.25rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.bullets li {
  margin-bottom: 0.65rem;
}

.bullets strong {
  color: var(--ink);
}

.fine {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--gold-soft);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.footer-inner p {
  margin: 0;
}

.site-footer .fine {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 2.5rem 0 2.75rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}
