:root {
  --navy: #06265d;
  --navy-2: #0b3f82;
  --gold: #c9962c;
  --gold-light: #e4c16f;
  --ink: #1a2433;
  --muted: #667085;
  --bg: #f5f7fb;
  --white: #ffffff;
  --line: #e7eaf0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-right: auto;
}

.brand-mark {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.brand-mark span { color: var(--gold); }

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 16px;
  letter-spacing: .5px;
}

.brand-copy small {
  font-size: 10px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: var(--gold);
  color: #fff;
  border-radius: 7px;
  border: 1px solid var(--gold);
  font-weight: 700;
  transition: .2s ease;
}

.btn:hover { transform: translateY(-1px); opacity: .94; }

.btn-small { padding: 10px 16px; font-size: 13px; }
.btn-full { width: 100%; cursor: pointer; font: inherit; }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.5);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 26px;
  color: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(4,28,70,.97) 0%, rgba(5,43,93,.93) 52%, rgba(6,38,93,.72) 100%),
    url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  right: -120px;
  top: -170px;
}

.hero-grid {
  min-height: 650px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 70px;
  padding: 80px 0;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
}

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

.hero h1 {
  margin: 0;
  max-width: 700px;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 7vw, 76px);
  line-height: .98;
}

.hero-copy > p {
  max-width: 630px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.84);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  gap: 26px;
  margin-top: 34px;
  font-size: 13px;
  color: rgba(255,255,255,.8);
}

.quote-card {
  background: rgba(255,255,255,.98);
  color: var(--ink);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 70px rgba(0,0,0,.22);
}

.mini-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.quote-card h3 {
  color: var(--navy);
  font-size: 25px;
  margin: 8px 0 20px;
}

input, textarea, select {
  width: 100%;
  border: 1px solid #d9dde5;
  background: #fff;
  border-radius: 7px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
}

input:focus, textarea:focus, select:focus { border-color: var(--gold); }

.quote-card form,
.contact-form {
  display: grid;
  gap: 12px;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.intro-strip {
  background: var(--navy);
  color: white;
  border-top: 1px solid rgba(255,255,255,.1);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats > div {
  padding: 26px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.stats > div:first-child { border-left: 1px solid rgba(255,255,255,.12); }

.stats strong {
  color: var(--gold-light);
  font-size: 18px;
  display: block;
}

.stats span {
  color: rgba(255,255,255,.75);
  font-size: 13px;
}

.section { padding: 95px 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 50px);
  color: var(--navy);
  line-height: 1.1;
  margin: 0;
}

.body-copy {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
}

.services-section { background: var(--bg); }

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

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

.service-card {
  background: white;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(12,37,75,.08);
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f6eedc;
  color: var(--gold);
  font-size: 23px;
}

.service-card h3 { color: var(--navy); }

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  min-height: 96px;
}

.service-card a {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
}

.coverage {
  background: var(--navy);
  color: white;
  padding: 95px 0;
  overflow: hidden;
}

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

.coverage h2 { color: white; }

.coverage p {
  color: rgba(255,255,255,.76);
  line-height: 1.8;
  max-width: 600px;
}

.world-card {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: radial-gradient(circle at center, rgba(201,150,44,.17), rgba(255,255,255,.02));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.world-card .globe {
  font-size: 145px;
  filter: saturate(.7);
}

.world-card p {
  position: absolute;
  bottom: 25px;
  color: var(--gold-light);
  letter-spacing: 1px;
  font-size: 13px;
}

.route {
  position: absolute;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.route-one { width: 310px; height: 140px; }
.route-two { width: 390px; height: 190px; }

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

.why-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.why-grid h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.why-grid p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.contact-section {
  background: linear-gradient(130deg, #082b67, #041b42);
  color: white;
  padding: 90px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-section h2 { color: white; }

.contact-section p {
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

.contact-details { margin-top: 30px; }

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 14px;
}

footer {
  background: #031631;
  color: rgba(255,255,255,.72);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  align-items: center;
  gap: 30px;
}

.footer-logo { color: white; margin-bottom: 8px; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
}

.footer-copy {
  text-align: right;
  font-size: 12px;
}

@media (max-width: 920px) {
  .nav, .nav-wrap > .btn-small { display: none; }
  .menu-toggle { display: block; }
  .nav.open {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: white;
    padding: 20px;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid,
  .coverage-grid,
  .contact-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 35px; }
  .service-grid, .why-grid { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .hero-trust { flex-wrap: wrap; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 26px, 1180px); }
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: 13px; }
  .hero h1 { font-size: 47px; }
  .hero-grid { padding: 58px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-trust { gap: 12px; flex-direction: column; }
  .service-grid, .why-grid, .stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; }
  .footer-copy { text-align: left; }
  .section { padding: 70px 0; }
}
