:root {
  --navy: #061936;
  --blue: #123f78;
  --gold: #b97817;
  --gold-2: #e2b458;
  --ink: #10182b;
  --muted: #5f6878;
  --line: #e7ddce;
  --paper: #fbfaf8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(6, 25, 54, .13);
  --radius: 8px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #eee2d3;
  backdrop-filter: blur(10px);
}

.nav-wrap {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img {
  width: min(430px, 62vw);
  max-height: 96px;
  object-fit: contain;
}

.menu-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: 6px;
  padding: 9px 11px;
  font-weight: 700;
}

.site-nav {
  position: absolute;
  right: 22px;
  top: 91px;
  width: min(360px, calc(100vw - 44px));
  display: none;
  flex-direction: column;
  gap: 4px;
  background: white;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-nav.open { display: flex; }

.site-nav a {
  padding: 10px 12px;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  font-weight: 800;
}

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

.nav-cta {
  background: var(--navy);
  color: white !important;
  border: 1px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(6,25,54,.16);
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251,250,248,.98) 0%, rgba(251,250,248,.92) 48%, rgba(251,250,248,.74) 100%),
    radial-gradient(circle at 78% 42%, rgba(226,180,88,.24), transparent 36%),
    linear-gradient(135deg, #ffffff, #f3efe7);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  max-width: 1320px;
  margin: 0 auto;
  min-height: 560px;
  padding: 64px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: center;
  gap: 36px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(6,25,54,.18));
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.08;
  margin: 0;
  font-weight: 700;
}

h1 { font-size: clamp(40px, 5vw, 68px); }
h2 { font-size: clamp(30px, 3vw, 44px); }
h3 { font-size: 24px; }

.lead {
  color: #33405a;
  font-size: 18px;
  max-width: 760px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid var(--gold);
  font-weight: 800;
}

.btn.primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 10px 24px rgba(6,25,54,.2);
}

.btn.secondary {
  background: white;
  color: var(--navy);
}

.section { padding: 58px 22px; }
.container { max-width: 1320px; margin: 0 auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.intro-band,
.band {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head p {
  color: var(--muted);
  max-width: 680px;
  margin: 10px 0 0;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card,
.contact-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 28px rgba(6,25,54,.06);
}

.card h3 {
  text-align: center;
}

.card p {
  color: var(--muted);
  margin: 11px 0 0;
}

.card-link {
  display: inline-flex;
  color: var(--gold);
  font-weight: 800;
  margin: auto auto 0;
  padding-top: 18px;
  align-self: center;
  text-align: center;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.check-list span {
  padding: 15px 17px;
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  color: var(--navy);
  font-weight: 800;
}

.contact-band {
  background: linear-gradient(135deg, var(--navy), #09284f);
  color: white;
}

.contact-band h2,
.contact-band h3 {
  color: white;
}

.contact-band .lead,
.contact-band p {
  color: #d9e2f1;
}

.contact-card {
  background: white;
  color: var(--ink);
  max-width: 620px;
  width: 100%;
}

.contact-card h3 {
  color: var(--navy);
}

.contact-form {
  display: grid;
  gap: 11px;
  margin-top: 14px;
}

.contact-form label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #33405a;
  font-weight: 600 !important;
}

.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}


.site-footer {
  background: #05142d;
  color: #dbe5f4;
  padding: 42px 22px;
}

.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
}

.site-footer h3 { color: white; font-size: 20px; margin-bottom: 12px; }
.site-footer a { display: block; margin: 7px 0; color: #dbe5f4; }
.footer-bottom {
  max-width: 1320px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #aeb9ca;
  font-size: 13px;
}

.footer-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-identity img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

@media (min-width: 1020px) {
  .menu-toggle { display: none; }
  .site-nav {
    position: static;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .grid.four,
  .grid.three,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { min-height: auto; }
}

@media (max-width: 620px) {
  .section { padding: 42px 18px; }
  .hero-grid { padding: 42px 18px; }
  h1 { font-size: 38px; }
}
