:root {
  --ink: #0b1220;
  --muted: #5f6d7e;
  --line: #d9e1ea;
  --blue: #06378e;
  --blue-2: #0b57c2;
  --red: #d11124;
  --gold: #d8a83d;
  --paper: #ffffff;
  --soft: #f3f7fb;
  --shadow: 0 22px 60px rgba(5, 22, 48, .18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(12, 29, 55, .12);
  padding-block: 12px;
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--red));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  font-size: 12px;
  opacity: .76;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.nav a {
  padding: 10px 12px;
  border-radius: 6px;
}

.nav a:hover {
  background: rgba(255, 255, 255, .14);
}

.site-header.is-scrolled .nav a:hover,
.site-header.is-open .nav a:hover {
  background: var(--soft);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  color: inherit;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(18px, 4vw, 56px) 42px;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(4, 12, 32, .92) 0%, rgba(4, 16, 44, .78) 42%, rgba(4, 10, 24, .18) 100%),
    linear-gradient(0deg, rgba(4, 10, 24, .78), transparent 45%);
}

.hero-content {
  position: relative;
  width: min(790px, 100%);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 780px;
  font-size: clamp(40px, 7vw, 82px);
  line-height: .94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--blue);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 42px;
  display: grid;
  gap: 8px;
  width: min(330px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  background: rgba(255, 255, 255, .13);
  backdrop-filter: blur(14px);
}

.hero-panel span {
  color: rgba(255, 255, 255, .82);
}

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

.trust-strip div {
  padding: 22px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.5;
}

.section,
.gallery-section,
.contact-section {
  padding: 78px clamp(18px, 4vw, 56px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  background: var(--soft);
}

.section-heading h2,
.feature-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.services {
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.service-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 55, 142, .34);
  box-shadow: 0 18px 42px rgba(20, 45, 80, .12);
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.service-card:nth-child(2n) .icon {
  background: var(--red);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.service-card p,
.timeline p,
.feature-copy li,
.contact-copy p {
  color: var(--muted);
  line-height: 1.62;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(300px, 1fr);
  min-height: 680px;
  background: #0b1220;
  color: #fff;
}

.feature-media {
  min-height: 520px;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  align-self: center;
  padding: clamp(34px, 6vw, 78px);
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, .78);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.process {
  background: #fff;
}

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

.timeline div {
  min-height: 260px;
  padding: 24px;
  background: #fff;
}

.timeline span {
  color: var(--red);
  font-weight: 900;
}

.timeline strong {
  display: block;
  margin: 24px 0 10px;
  font-size: 22px;
}

.gallery-section {
  background: var(--soft);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.gallery figure {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dbe5ef;
}

.gallery figure:nth-child(1),
.gallery figure:nth-child(4) {
  grid-column: span 2;
}

.gallery figure:nth-child(2),
.gallery figure:nth-child(3),
.gallery figure:nth-child(5),
.gallery figure:nth-child(6) {
  grid-column: span 1;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.gallery figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  background: linear-gradient(135deg, var(--blue), #08142c 58%, var(--red));
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-block {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
}

.contact-block strong {
  font-size: 22px;
}

.contact-block span,
.contact-block small {
  color: rgba(255, 255, 255, .76);
  line-height: 1.55;
}

.contact-block a {
  width: fit-content;
  padding: 10px 12px;
  border-radius: 6px;
  background: #fff;
  color: var(--blue);
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(18px, 4vw, 56px);
  background: #071024;
  color: rgba(255, 255, 255, .78);
}

.footer strong {
  color: #fff;
}

@media (max-width: 1000px) {
  .hero {
    min-height: 820px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 36px;
  }

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

  .split-feature,
  .contact-section,
  .intro {
    grid-template-columns: 1fr;
  }

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

  .gallery figure,
  .gallery figure:nth-child(1),
  .gallery figure:nth-child(4),
  .gallery figure:nth-child(2),
  .gallery figure:nth-child(3),
  .gallery figure:nth-child(5),
  .gallery figure:nth-child(6) {
    grid-column: span 1;
  }
}

@media (max-width: 1080px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-button {
    display: block;
    flex: 0 0 auto;
  }

  .nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 760px;
  }

  h1 {
    font-size: 42px;
  }

  .trust-strip,
  .service-grid,
  .timeline,
  .gallery,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .gallery-section,
  .contact-section {
    padding-block: 56px;
  }

  .feature-media {
    min-height: 420px;
  }

  .footer {
    display: grid;
  }
}
