:root {
  --navy: #071926;
  --blue: #0b4a6f;
  --sun: #f6ad2f;
  --sand: #f7f1e5;
  --white: #ffffff;
  --muted: #617080;
  --green: #24d366;
  --shadow: 0 22px 70px rgba(7, 25, 38, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--sand);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(7,25,38,.08);
}
.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.035em;
  font-size: 1.08rem;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  font-size: .78rem;
  letter-spacing: .04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 0.92rem;
  color: rgba(7,25,38,.78);
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: white !important;
}

.hero {
  min-height: 670px;
  position: relative;
  display: grid;
  align-items: center;
  padding: 132px max(24px, calc((100vw - 1180px) / 2)) 86px;
  color: white;
  background:
    linear-gradient(90deg, rgba(7,25,38,.88), rgba(7,25,38,.54), rgba(7,25,38,.20)),
    url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=2000&q=85') center/cover;
}
.hero-content { position: relative; max-width: 760px; z-index: 1; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .75rem;
  font-weight: 900;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.052em; margin: 0; }
h1 { font-size: clamp(2.65rem, 6vw, 5.5rem); max-width: 940px; }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
h3 { font-size: 1.4rem; }
.hero-text {
  font-size: 1.16rem;
  max-width: 640px;
  color: rgba(255,255,255,.86);
  margin: 22px 0 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(0,0,0,.20); }
.btn.primary { background: var(--green); color: #042315; }
.btn.secondary { background: rgba(255,255,255,.13); color: white; border: 1px solid rgba(255,255,255,.28); }
.btn.dark { background: var(--navy); color: white; }

.trust-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -38px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
}
.trust-strip div { padding: 25px 26px; border-right: 1px solid #e8edf0; }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { display: block; font-size: 1.02rem; }
.trust-strip span { color: var(--muted); font-size: .93rem; }

.section { padding: 104px max(24px, calc((100vw - 1180px) / 2)); }
.section-intro { max-width: 720px; margin-bottom: 40px; }
.section-intro p:not(.eyebrow), .split-content p, .cta-band p, .lead { color: var(--muted); font-size: 1.06rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { overflow: hidden; border-radius: 24px; background: white; box-shadow: 0 16px 55px rgba(7,25,38,.085); }
.card img { height: 250px; width: 100%; object-fit: cover; }
.card div { padding: 27px; }
.card p { color: var(--muted); margin-bottom: 0; }

.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; background: white; }
.split-image { background: url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?auto=format&fit=crop&w=1400&q=85') center/cover; }
.split-content { padding: 86px max(24px, calc((100vw - 1180px) / 2)) 86px 70px; align-self: center; }
.checklist { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 34px; font-weight: 700; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: -2px; color: var(--green); font-weight: 1000; }
.text-link { color: var(--blue); font-weight: 900; }

.narrow { max-width: 620px; margin-left: auto; margin-right: auto; text-align: center; }
.gallery { display: grid; grid-template-columns: 1.1fr .9fr 1fr; gap: 18px; }
.gallery img { height: 410px; width: 100%; object-fit: cover; border-radius: 24px; box-shadow: 0 16px 50px rgba(7,25,38,.12); }
.gallery img:nth-child(2) { margin-top: 38px; }

.cta-band {
  margin: 0 max(24px, calc((100vw - 1180px) / 2));
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 30px;
  background: linear-gradient(135deg, #f6ad2f, #ffe2a8);
  box-shadow: var(--shadow);
}
.cta-band div { max-width: 690px; }
.cta-band .eyebrow { color: rgba(7,25,38,.72); }

.contact-section { padding-top: 80px; }
.contact-card { background: var(--navy); color: white; border-radius: 30px; padding: 52px; box-shadow: var(--shadow); }
.contact-card .lead { color: rgba(255,255,255,.72); }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 32px; }
.contact-grid > * { padding: 24px; border-radius: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.contact-grid span { display: block; color: var(--sun); font-weight: 850; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-grid strong { display: block; margin-top: 8px; font-size: 1.06rem; overflow-wrap: anywhere; }

.footer { padding: 34px 24px; text-align: center; color: var(--muted); background: white; }
.footer p { margin: 4px 0; }
.footer a { font-weight: 800; color: var(--blue); }

@media (max-width: 900px) {
  .nav { height: auto; padding: 15px 0; }
  .nav-links { display: none; }
  .hero { min-height: 690px; padding-top: 112px; }
  .trust-strip, .cards, .contact-grid { grid-template-columns: 1fr; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid #e8edf0; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { min-height: 340px; }
  .split-content { padding: 56px 24px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img, .gallery img:nth-child(2) { height: 300px; margin-top: 0; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 34px; }
}
