:root {
  --ink: #172033;
  --muted: #617083;
  --line: #dce4ec;
  --paper: #f7f9fb;
  --white: #ffffff;
  --navy: #12385b;
  --blue: #24608f;
  --green: #3f7d64;
  --gold: #b68236;
  --shadow: 0 18px 45px rgba(23, 32, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: background 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(18, 56, 91, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  border-color: rgba(18, 56, 91, 0.15);
  background: #e9f2f4;
  color: var(--navy);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: #edf4f7;
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: var(--gold);
  color: var(--white);
}

.site-nav .nav-cta:hover {
  background: #9d6e2a;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 120px clamp(20px, 6vw, 80px) 76px;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 32, 50, 0.93) 0%, rgba(18, 32, 50, 0.72) 38%, rgba(18, 32, 50, 0.18) 72%),
    linear-gradient(0deg, rgba(18, 32, 50, 0.46), rgba(18, 32, 50, 0.06));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #77a98f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.65rem, 7vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

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

.button-primary:hover {
  background: #9d6e2a;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

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

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

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

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

.trust-strip strong {
  color: var(--navy);
  font-size: 0.92rem;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: clamp(64px, 9vw, 110px) clamp(20px, 6vw, 80px);
}

.intro {
  max-width: 1100px;
  margin: 0 auto;
}

.intro h2,
.process h2,
.fit h2,
.contact h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.intro p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.82fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--paper);
}

.about-media {
  position: sticky;
  top: 104px;
}

.about-media img {
  width: 100%;
  max-height: 620px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center top;
}

.about-copy {
  max-width: 820px;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.5vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.about-copy .about-close {
  padding: 20px 22px;
  border-left: 4px solid var(--green);
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(23, 32, 51, 0.08);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  gap: 32px;
  align-items: end;
  max-width: 1200px;
  margin: 0 auto 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.07;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

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

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

.service-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  margin-bottom: 30px;
  border-left: 3px solid var(--green);
  color: var(--green);
  font-weight: 800;
}

.service-card h3,
.process-steps h3 {
  margin: 0;
  font-size: 1.1rem;
}

.service-card p,
.process-steps p {
  margin: 12px 0 0;
  color: var(--muted);
}

.process {
  background: #eef4f3;
}

.process > .section-kicker,
.process > h2 {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1200px;
  margin: 38px auto 0;
  background: #cad9da;
  border: 1px solid #cad9da;
}

.process-steps article {
  min-height: 250px;
  padding: 28px;
  background: #fbfdfc;
}

.process-steps span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 28px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.fit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.fit-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 32, 51, 0.08);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.68fr);
  gap: clamp(34px, 6vw, 80px);
  background: var(--navy);
  color: var(--white);
}

.contact-copy {
  max-width: 720px;
}

.contact-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.contact-copy code {
  color: #f3cf92;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
}

.contact-form input {
  min-height: 46px;
  padding: 0 12px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #f3cf92;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 6vw, 80px);
  background: #0e2238;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    color: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .trust-strip,
  .section-heading,
  .about,
  .fit,
  .contact {
    grid-template-columns: 1fr;
  }

  .about-media {
    position: static;
    max-width: 480px;
  }

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

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

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

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .hero {
    min-height: 82vh;
    padding: 104px 18px 54px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(18, 32, 50, 0.96), rgba(18, 32, 50, 0.68));
  }

  .hero h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 56px 18px;
  }

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

  .service-card,
  .process-steps article {
    min-height: auto;
  }

  .about-media {
    max-width: none;
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    display: grid;
  }
}
