:root {
  --navy: #071a33;
  --navy-soft: #102b4e;
  --charcoal: #2f343b;
  --grey: #68717c;
  --light: #f5f7fa;
  --white: #ffffff;
  --accent: #b8c3cf;
  --shadow: 0 18px 45px rgba(7, 26, 51, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid #e8edf2;
  backdrop-filter: blur(10px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 50%; background: var(--navy); color: white;
  font-family: "Playfair Display", serif; font-size: 20px;
  box-shadow: inset 0 0 0 3px var(--accent);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { color: var(--navy); font-size: 15px; text-transform: uppercase; letter-spacing: .5px; }
.brand-text small { margin-top: 5px; color: var(--grey); font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; }
.nav { display: flex; align-items: center; gap: 28px; font-weight: 600; font-size: 14px; color: var(--navy); }
.nav a:hover { opacity: .7; }
.nav-cta { color: white !important; background: var(--navy); padding: 11px 18px; border-radius: 999px; }
.menu-toggle { display: none; background: none; border: 0; font-size: 25px; color: var(--navy); }

.hero {
  min-height: 670px; position: relative; display: grid; align-items: center;
  background:
    linear-gradient(90deg, rgba(4,17,34,.97) 0%, rgba(4,17,34,.87) 45%, rgba(4,17,34,.30) 100%),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1800&q=85") center/cover;
}
.hero-content { position: relative; z-index: 2; color: white; padding: 90px 0; }
.eyebrow, .section-label {
  text-transform: uppercase; font-weight: 700; font-size: 12px; letter-spacing: 2.2px; color: var(--navy);
}
.hero .eyebrow { color: #dce5ee; }
.hero h1 {
  margin: 12px 0 18px; max-width: 760px; line-height: 1.05;
  font-size: clamp(46px, 7vw, 82px); color: white;
}
.hero h1 span { color: #c6d0da; }
.hero-copy { max-width: 650px; font-size: 18px; color: #edf2f7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 52px; padding: 0 24px; border: 0; border-radius: 6px;
  font: inherit; font-weight: 700; cursor: pointer; transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy-soft); color: white; box-shadow: 0 10px 25px rgba(0,0,0,.18); }
.hero .button-primary { background: white; color: var(--navy); }
.button-secondary { color: white; border: 1px solid rgba(255,255,255,.55); }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 40px; font-size: 13px; color: #dce5ee; }

.section { padding: 88px 0; }
.intro { background: white; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
h2 { margin: 8px 0 18px; color: var(--navy); font-size: clamp(32px, 5vw, 48px); line-height: 1.18; }
.section-heading { max-width: 760px; margin-bottom: 40px; }
.section-heading p:last-child { color: var(--grey); }

.services-section { background: var(--light); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: white; padding: 30px; min-height: 250px; border-radius: 12px;
  box-shadow: 0 8px 24px rgba(7,26,51,.06); border: 1px solid #edf0f4;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.icon { font-size: 30px; }
.service-card h3 { color: var(--navy); margin: 15px 0 8px; font-size: 19px; }
.service-card p { color: var(--grey); font-size: 14px; }

.reviews-section { background: white; }
.review-card {
  background: var(--light); padding: 30px; min-height: 250px; border-radius: 12px;
  border: 1px solid #edf0f4; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stars { color: #c9a227; font-size: 16px; letter-spacing: 2px; }
.review-quote { color: var(--charcoal); font-size: 15px; margin: 14px 0; flex-grow: 1; }
.review-author { margin: 0; color: var(--navy); font-weight: 700; font-size: 14px; }
.review-author span { display: block; margin-top: 3px; color: var(--grey); font-weight: 500; font-size: 12px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-photo {
  min-height: 560px; border-radius: 14px; position: relative; overflow: hidden;
  background:
    linear-gradient(0deg, rgba(7,26,51,.48), rgba(7,26,51,.05)),
    url("https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=1000&q=85") center/cover;
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute; left: 24px; bottom: 24px; background: white;
  padding: 18px 22px; border-radius: 10px; color: var(--navy);
  display: flex; flex-direction: column;
}
.about-badge strong { font-family: "Playfair Display", serif; font-size: 28px; }
.about-badge span { text-transform: uppercase; letter-spacing: 1.5px; font-size: 10px; }
.check-list { display: grid; gap: 16px; margin-top: 30px; }
.check-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 10px; }
.check-list span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: white; }
.check-list p { margin: 0; }

.areas-section { background: var(--navy); color: white; }
.areas-section h2, .areas-section .section-label { color: white; }
.area-list { display: flex; flex-wrap: wrap; gap: 12px; }
.area-list span { padding: 11px 18px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(255,255,255,.06); }

.quote-section { background: #eef2f6; }
.quote-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 55px; align-items: start; }
.quote-copy { background: var(--navy); color: white; padding: 42px; border-radius: 14px; position: sticky; top: 105px; }
.quote-copy h2 { color: white; }
.section-label.light { color: #ccd6e0; }
.contact-note { margin-top: 30px; padding: 16px; background: rgba(255,255,255,.08); border-left: 3px solid #cbd5df; font-size: 13px; }
.quote-form { background: white; padding: 34px; border-radius: 14px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; margin-bottom: 18px; color: var(--navy); font-size: 13px; font-weight: 700; }
input, select, textarea {
  width: 100%; margin-top: 7px; border: 1px solid #d7dee7; background: #fbfcfd;
  border-radius: 7px; padding: 14px; font: inherit; color: var(--charcoal);
}
input:focus, select:focus, textarea:focus { outline: 2px solid #b9c7d6; border-color: var(--navy); }
.full { width: 100%; }
.form-message { margin: 14px 0 0; font-size: 13px; color: var(--navy); }

footer { background: #040f1f; color: #cbd5df; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 40px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 9px; }
.footer-grid strong { color: white; }
.footer-brand .brand-text strong { color: white; }
.footer-brand .brand-text small { color: #aeb9c4; }
.copyright { margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }

@media (max-width: 850px) {
  .menu-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 78px; left: 0; right: 0;
    background: white; padding: 22px 20px; flex-direction: column; align-items: stretch;
    border-bottom: 1px solid #e7ebef;
  }
  .nav.open { display: flex; }
  .split, .about-grid, .quote-grid { grid-template-columns: 1fr; gap: 38px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .about-photo { min-height: 430px; }
  .quote-copy { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1140px); }
  .brand-text strong { font-size: 12px; }
  .hero { min-height: 610px; background-position: 62% center; }
  .hero-content { padding: 72px 0; }
  .section { padding: 65px 0; }
  .card-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .quote-form, .quote-copy { padding: 25px; }
  .trust-row { flex-direction: column; gap: 8px; }
}
