:root {
  --navy: #061f3d;
  --navy-2: #0d315c;
  --charcoal: #1c2430;
  --muted: #657184;
  --gold: #b89145;
  --gold-soft: #efe3c7;
  --paper: #ffffff;
  --offwhite: #f7f8fb;
  --line: #dde3ec;
  --shadow: 0 18px 45px rgba(6, 31, 61, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--navy);
  backdrop-filter: blur(16px);
}

.brand img {
  width: min(310px, 45vw);
  display: block;
  background: white;
  padding: 8px 12px;
  border-radius: 14px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 0.92rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
  color: white;
}

.nav-cta {
  background: var(--gold);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 145, 69, 0.13), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7f8fb 58%, #eff3f9 100%);
}

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

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 6vw, 5.4rem);
  max-width: 960px;
  letter-spacing: -0.045em;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 800px;
  color: #344052;
  margin: 24px 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  text-decoration: none;
}

.primary {
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}

.secondary {
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
}

.microcopy {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 16px;
}

.hero-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 44px);
}

.hero-card h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
}

.hero-card p {
  color: #3e4b5d;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.hero-card li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  background: white;
  padding: 24px clamp(18px, 3vw, 36px);
}

.trust-strip strong {
  display: block;
  color: var(--navy);
  font-size: 1.1rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow),
.split p,
.areas p,
.contact p {
  color: #3e4b5d;
  font-size: 1.06rem;
}

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

.service-card {
  background: var(--offwhite);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.service-card p {
  color: #455366;
  margin-bottom: 0;
}

.split {
  background: var(--navy);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.split h2,
.split .eyebrow {
  color: white;
}

.split .eyebrow {
  color: var(--gold-soft);
}

.split p {
  color: rgba(255,255,255,.82);
}

.checklist {
  display: grid;
  gap: 16px;
}

.checklist div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 18px;
}

.checklist span {
  color: var(--gold-soft);
  font-size: 1.4rem;
  line-height: 1;
}

.checklist p {
  margin: 0;
}

.process {
  background: var(--offwhite);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.process-grid span {
  display: inline-block;
  color: var(--gold);
  font-weight: 950;
  letter-spacing: .12em;
  margin-bottom: 16px;
}

.process-grid p {
  margin-bottom: 0;
  color: #4c596b;
}

.areas {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.contact {
  background:
    linear-gradient(135deg, rgba(6,31,61,.95), rgba(13,49,92,.95)),
    radial-gradient(circle at 80% 20%, rgba(184,145,69,.25), transparent 35%);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.contact h2,
.contact .eyebrow {
  color: white;
}

.contact .eyebrow {
  color: var(--gold-soft);
}

.contact p {
  color: rgba(255,255,255,.82);
}

.contact-card {
  background: white;
  color: var(--navy);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-card a {
  display: block;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  margin-bottom: 12px;
}

.contact-card .phone {
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.contact-card p {
  color: #455366;
  margin: 18px 0 0;
}

.legal-note {
  padding: 34px clamp(20px, 5vw, 72px);
  background: #fff9ed;
  border-top: 1px solid #ecd9b6;
}

.legal-note h2 {
  font-size: 1.2rem;
  font-family: inherit;
  letter-spacing: 0;
}

.legal-note p {
  max-width: 1100px;
  color: #5f4d2f;
  margin-bottom: 0;
}

footer {
  padding: 32px clamp(20px, 5vw, 72px);
  background: #071b34;
  color: white;
  text-align: center;
}

footer p {
  margin: 0;
}

.footer-small {
  margin-top: 8px;
  color: rgba(255,255,255,.68);
  font-size: .9rem;
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .service-grid,
  .process-grid,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand img {
    width: min(330px, 80vw);
  }
}

@media (max-width: 640px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .process-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .contact-card .phone {
    font-size: 1.5rem;
  }
}
