:root {
  --ink: #123047;
  --muted: #5b6b78;
  --brand: #0077b6;
  --brand-dark: #064663;
  --gold: #f4a62a;
  --line: #dce7ef;
  --soft: #f4f8fb;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
}

.hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  color: #fff;
  background: linear-gradient(90deg, rgba(5, 33, 52, .86), rgba(5, 33, 52, .35)), var(--hero-image) center/cover no-repeat;
}

.hero-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0 70px;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .13);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 18px 0 14px;
  font-size: clamp(36px, 6vw, 70px);
  line-height: .98;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 0 0 26px;
  font-size: clamp(17px, 2vw, 21px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: var(--gold);
  color: #261700;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, .65);
  color: #fff;
}

.section {
  padding: 58px clamp(18px, 4vw, 56px);
}

.section.alt {
  background: var(--soft);
}

.wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.intro {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.card p,
.card li {
  color: var(--muted);
}

.price {
  display: inline-block;
  margin-top: 8px;
  color: var(--brand-dark);
  font-weight: 800;
}

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

.photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.checklist {
  padding-left: 20px;
}

.checklist li {
  margin: 8px 0;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 14px;
}

.cta-band {
  background: var(--brand-dark);
  color: #fff;
  text-align: center;
}

.cta-band p {
  color: rgba(255, 255, 255, .82);
}

.footer {
  padding: 28px clamp(18px, 4vw, 56px);
  background: #071d2b;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }

  .grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 68vh;
  }
}
