:root {
  --navy-950: #061c31;
  --navy-900: #082844;
  --navy-800: #0c3658;
  --gold: #b78b35;
  --gold-light: #e8d4a2;
  --cream: #fff9ec;
  --white: #ffffff;
  --ink: #122235;
  --muted: #5f6d79;
  --line: #dde3e8;
  --soft: #f4f6f7;
  --success: #176b43;
  --shadow: 0 20px 60px rgba(6, 28, 49, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 880px; }
.center-text { text-align: center; }
.section-pad { padding: 96px 0; }
.alt-bg { background: var(--soft); }

.site-header {
  background: var(--navy-950);
  border-bottom: 4px solid var(--gold);
}
.navbar {
  min-height: 76px;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.35rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 600;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--gold-light); }
.menu-toggle { display: none; background: none; border: 0; padding: 7px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--cream); margin: 5px 0; }
.banner-wrap { width: 100%; overflow: hidden; }
.hero-banner { width: 100%; height: auto; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--navy-950);
  line-height: 1.08;
  margin-top: 0;
}
h1 { font-size: clamp(2.65rem, 5vw, 4.7rem); margin-bottom: 24px; }
h2 { font-size: clamp(2.35rem, 4vw, 3.65rem); margin-bottom: 22px; }
h3 { font-size: 1.65rem; margin-bottom: 12px; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 800px; margin: 0 auto 34px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #a97923, #c69b47);
  box-shadow: 0 12px 28px rgba(183, 139, 53, .27);
}
.button.primary:hover { box-shadow: 0 16px 32px rgba(183, 139, 53, .36); }
.full-width { width: 100%; border-radius: 10px; }

.section-heading { max-width: 760px; margin-bottom: 40px; }
.section-heading > p:last-child { color: var(--muted); margin-bottom: 0; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 8px 24px rgba(6, 28, 49, .05);
}
.info-card p { color: var(--muted); margin-bottom: 0; font-size: .95rem; }
.card-number { color: var(--gold); font-weight: 700; font-size: .78rem; letter-spacing: .12em; margin-bottom: 30px; }
.coming-soon {
  margin-top: 26px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--navy-950);
  color: var(--white);
  border-radius: 14px;
  padding: 20px 24px;
}
.coming-soon p { margin: 3px 0 0; color: rgba(255,255,255,.72); }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold-light); margin-top: 8px; box-shadow: 0 0 0 6px rgba(232,212,162,.12); }

.split-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.about-copy > p { color: var(--muted); font-size: 1.03rem; }
.values-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; }
.values-row div { padding-top: 18px; border-top: 2px solid var(--gold); }
.values-row strong, .values-row span { display: block; }
.values-row strong { color: var(--navy-950); }
.values-row span { color: var(--muted); font-size: .84rem; margin-top: 4px; }

.confidence-band { background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); color: var(--white); padding: 60px 0; }
.confidence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.large-stat { display: block; font-family: "Cormorant Garamond", serif; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; color: var(--cream); }
.confidence-grid p { margin: 8px 0 0; color: rgba(255,255,255,.76); }

.contact { background: #fffdfa; }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.contact-copy > p { color: var(--muted); }
.contact-note { margin-top: 36px; padding-left: 18px; border-left: 3px solid var(--gold); }
.contact-note strong, .contact-note span { display: block; }
.contact-note span { color: var(--muted); font-size: .9rem; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-group { margin-bottom: 18px; }
.field-group label { display: block; color: var(--navy-950); font-weight: 700; font-size: .9rem; margin-bottom: 7px; }
.field-group input {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  border: 1px solid #cfd7de;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
.field-group input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(183, 139, 53, .12); }
.privacy-text { color: var(--muted); font-size: .78rem; text-align: center; margin: 14px 0 0; }
.hidden-field { position: absolute !important; left: -9999px !important; }
.form-message { display: none; margin-top: 16px; border-radius: 10px; padding: 13px 15px; font-size: .92rem; }
.form-message.success { display: block; background: #eaf7f0; color: var(--success); border: 1px solid #b9dfca; }
.form-message.error { display: block; background: #fff1f0; color: #9b2c2c; border: 1px solid #efc5c2; }

footer { background: var(--navy-950); color: rgba(255,255,255,.7); padding: 24px 0; font-size: .86rem; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner a { color: var(--gold-light); text-decoration: none; }

@media (max-width: 980px) {
  .section-pad { padding: 76px 0; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout, .contact-layout { grid-template-columns: 1fr; gap: 38px; }
  .confidence-grid { gap: 40px; }
}

@media (max-width: 700px) {
  .navbar { min-height: 68px; width: min(100% - 28px, 1200px); }
  .menu-toggle { display: block; cursor: pointer; }
  .nav-links {
    display: none;
    position: absolute;
    z-index: 20;
    top: 68px;
    left: 0;
    right: 0;
    padding: 18px 22px 24px;
    background: var(--navy-950);
    border-top: 1px solid rgba(255,255,255,.12);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .nav-links.open { display: flex; }
  .banner-wrap { min-height: 170px; display: flex; align-items: center; }
  .hero-banner { width: 180%; max-width: none; margin-left: -40%; }
  .section-pad { padding: 64px 0; }
  .card-grid, .field-row, .values-row, .confidence-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 25px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
