:root {
  --navy: #101b73;
  --royal: #0926d9;
  --blue: #2476df;
  --sky: #57bbed;
  --orange: #f39200;
  --ink: #11183b;
  --muted: #5f6780;
  --paper: #ffffff;
  --soft: #f4f8ff;
  --line: rgba(16, 27, 115, 0.14);
  --shadow: 0 22px 55px rgba(16, 27, 115, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  min-width: 270px;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  line-height: 0.92;
  letter-spacing: 0;
}

.brand strong span {
  color: var(--orange);
  font-style: italic;
}

.brand small {
  display: block;
  margin-top: 7px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.nav a:hover,
.phone-link:hover,
.site-footer a:hover {
  color: var(--orange);
}

.phone-link {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  min-height: 660px;
  padding: clamp(48px, 7vw, 94px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(16, 27, 115, 0.08), transparent 48%),
    var(--paper);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy p:not(.eyebrow),
.approach-copy p,
.contact-card p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

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

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

.button.primary {
  color: white;
  background: var(--orange);
}

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

.hero-visual {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual img,
.brand-strip img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-strip {
  padding: clamp(26px, 5vw, 50px) clamp(18px, 10vw, 140px);
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-strip img {
  max-width: 1000px;
  margin: 0 auto;
}

.services,
.needs,
.approach,
.contact {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.services {
  background: var(--soft);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading h2,
.approach h2,
.contact h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

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

.service-card {
  min-height: 430px;
  padding: 24px;
  color: white;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

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

.service-card.royal {
  background: var(--royal);
}

.service-card.blue {
  background: var(--blue);
}

.service-card.sky {
  background: var(--sky);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}

.service-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card h3 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.02;
}

.service-card ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding-left: 18px;
  font-size: 18px;
  font-weight: 800;
}

.needs {
  background: white;
}

.needs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.needs-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #101010;
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 700;
}

.needs-list li {
  position: relative;
  padding-left: 38px;
}

.needs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid #101010;
}

.promise-grid {
  display: grid;
  gap: 16px;
}

.promise-card {
  padding: 24px;
  color: var(--navy);
  border: 3px solid rgba(16, 27, 115, 0.9);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.promise-card.dark-gold {
  background: #c78122;
}

.promise-card.gold {
  background: #d39a48;
}

.promise-card.sand {
  background: #d8b989;
}

.promise-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 12px;
  color: white;
}

.promise-icon svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.promise-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.06;
}

.promise-card p {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 19px;
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: white;
}

.approach-copy p {
  max-width: 680px;
}

.approach-list {
  display: grid;
  gap: 14px;
}

.approach-list div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.approach-list span {
  color: var(--orange);
  font-weight: 900;
}

.contact {
  background: var(--orange);
}

.contact-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 46px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.contact-card .eyebrow,
.contact-card h2,
.contact-card p {
  color: white;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 12px 16px;
  color: white;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(16, 27, 115, 0.18);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: white;
  background: var(--navy);
}

@media (max-width: 1060px) {
  .hero,
  .needs-layout,
  .approach {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 30px;
  }

  .brand small {
    display: none;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 39px;
    letter-spacing: 0.04em;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    border-radius: 28px;
  }

  .hero-actions,
  .contact-links {
    display: grid;
  }

  .site-footer {
    flex-direction: column;
  }
}
