:root {
  --navy: #12283f;
  --navy-light: #1a3a5c;
  --green: #1e6b45;
  --green-light: #eaf4ee;
  --gold: #d9a441;
  --gold-light: #fbf1de;
  --white: #ffffff;
  --ink: #1f2937;
  --muted: #5b6472;
  --border: #e3e2dd;
  --bg: #fbfaf7;
  --radius: 10px;
  --max-width: 1120px;
  --shadow: 0 2px 14px rgba(18, 40, 63, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 0.5em;
}

h1 { font-size: 1.9rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.15rem; }

@media (min-width: 768px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.3rem; }
}

p { margin: 0 0 1em; color: var(--ink); }

a { color: var(--green); }

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Header ---------- */

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

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--navy);
}

.brand__mark { width: 38px; height: 38px; flex-shrink: 0; }

.brand__text { line-height: 1.1; }
.brand__name { display: block; font-weight: 700; font-size: 1.05rem; color: var(--navy); }
.brand__tagline { display: block; font-size: 0.7rem; color: var(--gold); letter-spacing: 0.03em; text-transform: uppercase; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  position: relative;
}
.nav-toggle { flex-direction: column; gap: 4px; }

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.25rem 1rem;
}
.site-nav.is-open { display: flex; }

.site-nav a {
  display: block;
  padding: 0.65rem 0;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.site-nav a:last-of-type { border-bottom: none; }
.site-nav a.is-active { color: var(--green); }

.nav-cta {
  display: inline-block;
  margin-top: 0.75rem;
  text-align: center;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 8px;
}

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .site-header__inner { position: relative; }
  .site-nav {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    box-shadow: none;
    border: none;
    padding: 0;
    gap: 1.5rem;
    background: transparent;
  }
  .site-nav a { border-bottom: none; padding: 0; }
  .nav-cta { margin-top: 0; padding: 0.55rem 1.1rem; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: #c8933a; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-secondary { background: var(--green); color: var(--white); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0b1a2b 100%);
  color: var(--white);
  padding: 3rem 0 3.5rem;
  text-align: center;
}
.hero h1 { color: var(--white); }
.hero p.lede { color: #cbd8e6; font-size: 1.05rem; max-width: 640px; margin: 0 auto 1.5rem; }
.hero .actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */

section { padding: 2.5rem 0; }
.section-alt { background: var(--white); }
.section-title { text-align: center; margin-bottom: 2rem; }
.section-title p { color: var(--muted); max-width: 640px; margin: 0.5rem auto 0; }

/* ---------- Cards / grids ---------- */

.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card--level {
  border-top: 4px solid var(--gold);
}
.card--level .price { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin: 0.3rem 0; }
.card--level .benefit { color: var(--green); font-weight: 700; }

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

/* ---------- Officials ---------- */

.official-card { text-align: center; }
.official-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 3px solid var(--gold);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 2rem;
  overflow: hidden;
}
.official-avatar img { width: 100%; height: 100%; object-fit: cover; }
.official-role { color: var(--gold); font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.05em; }

/* ---------- Quote cards ---------- */

.quote-card { position: relative; padding-top: 2.25rem; }
.quote-card .quote-mark {
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
}
.quote-card p { font-style: italic; color: var(--navy-light); margin: 0; }

/* ---------- FAQ ---------- */

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 1rem 0;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--gold); font-size: 1.3rem; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding-bottom: 1rem; color: var(--muted); }

/* ---------- Trust note ---------- */

.trust-note {
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #6b4f14;
  font-size: 0.92rem;
}

/* ---------- Forms ---------- */

.form-section { margin-bottom: 2rem; }
.form-section h3 {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
}
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-bottom: 1rem; }
@media (min-width: 640px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}
label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--navy); }
input, select, textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}
.field-hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }
.honeypot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.checkbox-row { display: flex; align-items: flex-start; gap: 0.6rem; }
.checkbox-row input { width: auto; margin-top: 0.2rem; }

#formMessage { border-radius: 8px; padding: 1rem; margin-top: 1rem; display: none; }
#formMessage.success { background: var(--green-light); color: #14532d; display: block; }
#formMessage.error { background: #fef2f2; color: #991b1b; display: block; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: #c7d3e0;
  padding: 2.5rem 0 1.5rem;
  margin-top: 3rem;
}
.site-footer h4 { color: var(--white); font-size: 1rem; }
.site-footer p { color: #c7d3e0; }
.site-footer a { color: #c7d3e0; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  font-size: 0.8rem;
  color: #8ea0b6;
  text-align: center;
}
.footer-note {
  font-size: 0.8rem;
  color: #8ea0b6;
  max-width: 640px;
  margin: 0.5rem auto 0;
  text-align: center;
}

/* ---------- Utilities ---------- */

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
