:root {
  --navy: #0e2a47;
  --teal: #0b6e63;
  --gold: #c6a15b;
  --cream: #fbf8f2;
  --paper: #ffffff;
  --line: #e4d8ca;
  --ink: #17202c;
  --muted: #5f6978;
  --shadow: 0 24px 70px rgba(14, 42, 71, 0.13);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.top {
  background: var(--navy);
  color: #fff;
  font-size: .9rem;
}

.top .container {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top a {
  color: #fff;
  font-weight: 800;
}

header {
  background: rgba(251, 248, 242, .97);
  border-bottom: 1px solid rgba(14, 42, 71, .08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 210px;
  height: auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--navy);
  font-weight: 800;
}

.hero {
  padding: 86px 0 70px;
  background: linear-gradient(120deg, rgba(14, 42, 71, .96), rgba(11, 110, 99, .85));
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  max-width: 760px;
}

.lead {
  max-width: 720px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.16rem;
  margin: 22px 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-outline {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .36);
}

.btn-light {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--line);
}

.btn-block {
  width: 100%;
}

.hero-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 10px;
}

.offer-card {
  border-top: 5px solid var(--gold);
}

.offer-kicker {
  display: inline-flex;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.price {
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: .95;
  font-weight: 950;
  margin: 8px 0 12px;
}

.price small {
  display: inline-block;
  color: var(--teal);
  font-size: 1rem;
  vertical-align: middle;
}

.mini-price {
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 950;
  margin: 18px 0 8px;
}

.small-note {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
  margin: 14px 0 0;
}

.small-note.dark {
  color: var(--muted);
}

.hero-card ul,
.content-card ul {
  padding-left: 20px;
  margin: 14px 0 0;
}

section {
  padding: 72px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.content-card,
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(14, 42, 71, .06);
}

.content-card h3,
.faq-item h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.content-card p,
.faq-item p {
  color: var(--muted);
  margin: 0;
}

.content-card li {
  color: var(--muted);
  margin: 6px 0;
}

.featured-card {
  border-color: rgba(198, 161, 91, .65);
  background: linear-gradient(180deg, #fff, #fffaf0);
}

.text-link {
  display: inline-flex;
  color: var(--teal);
  font-weight: 900;
  margin-top: 18px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.muted-section {
  background: #f3eee6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: start;
}

.price-card {
  border-top: 5px solid var(--gold);
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 54px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.local-box {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px;
}

.local-box p {
  color: rgba(255, 255, 255, .84);
}

.section-navy {
  background: var(--navy);
  color: #fff;
}

.section-navy .section-head h2 {
  color: #fff;
}

.section-navy .section-head p {
  color: rgba(255, 255, 255, .82);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tags span {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
}

.final-cta {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.final-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.final-cta h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-grid h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.contact-grid p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  color: var(--navy);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-form label {
  color: var(--navy);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.check-row input {
  width: auto;
  margin-top: 6px;
}

footer {
  background: var(--navy);
  color: #fff;
  padding: 34px 0;
}

footer .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

footer a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 820px) {
  .top .container,
  .nav,
  .final-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    padding: 64px 0 52px;
  }
}
