:root {
  --navy: #0d3324;
  --navy-2: #14523a;
  --ink: #1a2330;
  --muted: #5b6775;
  --line: #d7dee7;
  --paper: #f7f5f1;
  --white: #ffffff;
  --accent: #c4a35a;
  --max: 1080px;
  --narrow: 720px;
  --foundation-h: 3.35rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-bottom: var(--foundation-h);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  font-size: 18px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }
.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.wrap.narrow, .narrow { width: min(100% - 2.5rem, var(--narrow)); margin-inline: auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem 0;
}
.brand img { height: 36px; width: auto; }
.nav {
  display: flex; flex-wrap: wrap; gap: 0.85rem 1rem; align-items: center;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 0.82rem; letter-spacing: 0.02em;
}
.nav a { color: var(--navy); text-decoration: none; }
.nav a:hover { color: var(--accent); }
.nav-cta {
  border: 1px solid var(--navy);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, #1a6b4a 100%);
  color: var(--white);
  padding: 5rem 0 4.5rem;
}
.eyebrow {
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.72rem; color: var(--accent); margin: 0 0 1rem;
}
.hero h1 {
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  line-height: 1.15; margin: 0 0 0.5rem; max-width: 14ch;
}
.tagline {
  font-size: 1.25rem;
  color: var(--accent);
  margin: 0 0 1.25rem;
  font-style: italic;
}
.lede {
  font-size: 1.08rem; max-width: 40rem;
  color: rgba(255,255,255,0.88); margin: 0 0 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn {
  display: inline-block;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 0.92rem; padding: 0.7rem 1.15rem;
  border-radius: 4px; text-decoration: none; border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--navy); font-weight: 600; }
.btn-primary:hover { filter: brightness(1.05); color: var(--navy); }
.btn-ghost { border-color: rgba(255,255,255,0.45); color: var(--white); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.section { padding: 4rem 0; }
.section-alt { background: var(--paper); }
.section h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  margin: 0 0 1.15rem; color: var(--navy);
}
.section p { margin: 0 0 1rem; }
.pull {
  margin-top: 1.35rem; padding-left: 1rem;
  border-left: 3px solid var(--accent);
  font-size: 1.12rem; color: var(--navy);
}
.cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem;
}
.card {
  background: var(--white); border: 1px solid var(--line);
  padding: 1.25rem 1.15rem; border-radius: 6px;
}
.card h3 { margin: 0 0 0.55rem; font-size: 1.08rem; color: var(--navy); }
.card p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.country-list, .agency-list {
  list-style: none; padding: 0; margin: 1.15rem 0;
  display: grid; gap: 0.55rem;
  grid-template-columns: repeat(2, 1fr);
}
.country-list li, .agency-list li {
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-size: 0.98rem;
}
.agency-list { grid-template-columns: 1fr; }
.note { font-size: 0.95rem; color: var(--muted); margin-top: 0.85rem; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.steps li { display: grid; grid-template-columns: 2.4rem 1fr; gap: 0.75rem; align-items: start; }
.steps span {
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 0.78rem; letter-spacing: 0.08em;
  color: var(--accent); font-weight: 700; padding-top: 0.25rem;
}
.contact { background: var(--navy); color: var(--white); }
.contact h2 { color: var(--white); }
.contact a { color: var(--accent); }
.contact-line { margin: 1.35rem 0; line-height: 1.7; }
.site-footer {
  background: #062419; color: rgba(255,255,255,0.65);
  font-family: system-ui, -apple-system, Segoe UI, sans-serif; font-size: 0.82rem;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.35rem 0;
}
.footer-logo { height: 26px; width: auto; }
@media (max-width: 860px) {
  .cards, .country-list { grid-template-columns: 1fr; }
  .nav { display: none; }
  .hero h1 { max-width: none; }
}

.contact-form { display: grid; gap: 0.85rem; margin-top: 1.25rem; }
.contact-form label { display: grid; gap: 0.35rem; font-family: system-ui, -apple-system, Segoe UI, sans-serif; font-size: 0.9rem; color: rgba(255,255,255,0.9); }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; color: var(--ink); padding: 0.65rem 0.75rem; border-radius: 4px; border: 1px solid rgba(255,255,255,0.25);
}
.contact-form .hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.contact-form .note { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin: 0; }
.contact-form .form-status { font-family: system-ui, sans-serif; font-size: 0.9rem; }
.contact-form button { justify-self: start; cursor: pointer; }

/* Foundation plinth — sticky bottom; not a second nav */
.foundation-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  height: var(--foundation-h);
  background: var(--navy);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -6px 18px rgba(6, 36, 25, 0.28);
}
.foundation-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.foundation-mark {
  margin: 0;
  text-align: center;
  line-height: 1.2;
  padding: 0 0.5rem;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  letter-spacing: 0.06em;
  color: var(--accent);
  font-weight: 600;
  text-transform: none;
}
.foundation-arrow {
  display: inline-block;
  margin: 0 0.12rem;
  color: var(--accent);
  font-weight: 700;
}
.site-footer { margin-bottom: 0; padding-bottom: 0.25rem; }


/* Splash — first screen; click Continue (or Enter/Space) into full site */
.splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, #1a6b4a 100%);
  color: var(--white);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.splash.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-inner {
  width: min(100%, 36rem);
  text-align: center;
}
.splash-copy {
  margin: 0 0 2.25rem;
  text-align: center;
}
.splash-beat {
  margin: 0 0 1.15rem;
  font-size: clamp(1.45rem, 3.6vw, 2.05rem);
  line-height: 1.35;
  font-weight: 600;
  text-wrap: balance;
  color: var(--white);
}
.splash-beat:last-child { margin-bottom: 0; }
.splash-beat-1 {
  color: var(--white);
}
.splash-beat-3 {
  color: var(--accent);
}
.splash-cta {
  cursor: pointer;
  border: none;
}
body.splash-active {
  overflow: hidden;
}
body.splash-active .site-header,
body.splash-active .foundation-bar,
body.splash-active main,
body.splash-active .site-footer {
  visibility: hidden;
}
