:root {
  --navy: #0b1f3a;
  --navy-2: #12284a;
  --navy-3: #1b3a63;
  --teal: #1e8a7a;
  --teal-2: #2aa392;
  --gold: #c9a227;
  --gold-2: #e0bc4a;
  --ink: #142033;
  --muted: #5b6778;
  --line: #dce3ee;
  --paper: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(11, 31, 58, 0.12);
  --radius: 18px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }
.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 12px;
  z-index: 1000;
}
.skip:focus { left: 8px; }

.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: var(--navy);
  color: #d7e0ee;
  font-size: 0.92rem;
  padding: 8px 0;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { color: var(--gold-2); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
}
.brand strong { display: block; font-size: 0.98rem; letter-spacing: 0.02em; }
.brand span { display: block; font-size: 0.75rem; color: var(--muted); font-weight: 600; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 8px 10px;
  border-radius: 8px;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { background: var(--paper); color: var(--teal); }
.nav-links a.btn,
.nav-links a.btn:hover,
.nav-links a.btn[aria-current="page"] {
  background: var(--gold);
  color: var(--navy);
}
.nav-links a.btn:hover { background: var(--gold-2); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
}
.btn:hover { background: var(--gold-2); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-3); }

.menu-toggle {
  display: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 44px;
}

.hero {
  position: relative;
  color: #fff;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,0.35) 0%, rgba(11,31,58,0.82) 70%);
}
.hero .content {
  position: relative;
  z-index: 1;
  padding: 72px 0 56px;
}
.kicker {
  display: inline-block;
  background: rgba(201,162,39,0.18);
  color: var(--gold-2);
  border: 1px solid rgba(201,162,39,0.45);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.15; margin: 0 0 12px; }
h1 { font-size: clamp(2.2rem, 5vw, 4.1rem); max-width: 16ch; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); color: var(--navy); }
.lead { font-size: 1.15rem; max-width: 58ch; color: #e6edf7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 0.92rem;
  color: #d5deea;
}
.trust b { color: #fff; }

section { padding: 72px 0; }
.section-head { max-width: 70ch; margin-bottom: 32px; }
.muted { color: var(--muted); }

.grid-3, .grid-2, .grid-4 { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card img { width: 100%; height: 210px; object-fit: cover; }
.card .pad, .pad { padding: 22px; }
.card h3 { font-size: 1.35rem; }
.paper { background: var(--paper); }
.navy {
  background: linear-gradient(160deg, var(--navy), var(--navy-3));
  color: #fff;
}
.navy h2, .navy p { color: #fff; }
.navy .muted { color: #c9d5e6; }

.list { padding-left: 18px; }
.list li { margin: 8px 0; }

.steps { counter-reset: step; }
.steps article {
  position: relative;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.steps article::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 12px;
}

.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cities a, .cities span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 800; color: var(--navy); }

form {
  display: grid;
  gap: 12px;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
label { font-weight: 700; font-size: 0.9rem; }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: 0.85rem; color: var(--muted); }
.success {
  display: none;
  background: #e8f7f3;
  border: 1px solid #b7e4da;
  color: #0e5c50;
  padding: 14px;
  border-radius: 12px;
}

.cta-band {
  background: var(--gold);
  color: var(--navy);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

footer {
  background: var(--navy);
  color: #c9d5e6;
  padding: 48px 0 24px;
}
footer a { color: #fff; text-decoration: none; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 24px;
}
.foot-brand { display: flex; gap: 12px; align-items: flex-start; }
.foot-brand img { width: 48px; height: 48px; border-radius: 10px; }
footer h3 { color: #fff; font-size: 1rem; font-family: Manrope, sans-serif; }
.legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 28px;
  padding-top: 16px;
  font-size: 0.85rem;
}

.page-hero {
  background: linear-gradient(160deg, var(--navy), #16345d);
  color: #fff;
  padding: 56px 0;
}
.page-hero p { max-width: 70ch; color: #d5deea; }
.crumbs { font-size: 0.88rem; margin-bottom: 12px; }
.crumbs a { color: var(--gold-2); text-decoration: none; }

.prose { max-width: 76ch; }
.prose h2 { margin-top: 32px; }

@media (max-width: 900px) {
  .grid-3, .grid-4, .grid-2, .foot-grid, .form-row { grid-template-columns: 1fr; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 132px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
