:root {
  --ink: #121820;
  --muted: #5d6875;
  --line: #d8dee6;
  --paper: #f6f7f9;
  --white: #ffffff;
  --navy: #172a3f;
  --gold: #d99b37;
  --green: #1f7a5c;
  --blue: #2b78d0;
  --shadow: 0 18px 50px rgba(18, 24, 32, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: rgba(12, 20, 30, 0.62);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(217, 155, 55, 0.8);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 22, 0.94) 0%, rgba(18, 24, 32, 0.78) 42%, rgba(18, 24, 32, 0.08) 100%),
    linear-gradient(0deg, rgba(18, 24, 32, 0.62), rgba(18, 24, 32, 0.04));
}

.hero-content {
  position: relative;
  width: min(740px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 86px);
  padding-top: 86px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1{
	color: var(--white);
	margin-top: 0;
}
h2,
h3,
p {
  margin-top: 0;
	
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
  color: #111820;
  background: var(--gold);
  box-shadow: 0 14px 28px rgba(217, 155, 55, 0.26);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary:hover {
  background: #efb24d;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-badges span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats span {
  min-width: 145px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.78);
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 26px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(90deg, #102033, #183654);
  color: rgba(255, 255, 255, 0.86);
}

.trust-band span {
  padding: 20px 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 6vw, 72px);
}

.section:nth-of-type(3) {
  background:
    linear-gradient(135deg, rgba(43, 120, 208, 0.08), transparent 36%),
    var(--paper);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p,
.about-copy p,
.split-section p,
.mission-section p,
.cta-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(217, 155, 55, 0.1), transparent 35%),
    var(--white);
}

.about-copy p {
  max-width: 760px;
}

.director-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 222, 230, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.director-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
}

.director-card figcaption {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: #111820;
  color: var(--white);
}

.director-card figcaption strong {
  color: var(--gold);
  font-size: 18px;
}

.director-card figcaption span {
  color: rgba(255, 255, 255, 0.72);
}

.why-section {
  background:
    linear-gradient(135deg, rgba(43, 120, 208, 0.08), transparent 34%),
    var(--paper);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.why-grid span {
  position: relative;
  min-height: 96px;
  padding: 22px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(18, 24, 32, 0.06);
  font-weight: 800;
  line-height: 1.35;
}

.why-grid span::before {
  content: "";
  display: block;
  width: 30px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 24, 32, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--gold), var(--green), var(--blue));
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 155, 55, 0.55);
  box-shadow: 0 22px 46px rgba(18, 24, 32, 0.11);
}

.service-card:hover::after {
  opacity: 1;
}

.icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--green);
  font-weight: 900;
}

.service-card p,
.timeline p,
.sector-list span {
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 8vw, 92px);
  background:
    linear-gradient(135deg, rgba(31, 122, 92, 0.08), transparent 40%),
    var(--white);
}

.sector-list {
  display: grid;
  gap: 14px;
}

.sector-list div {
  position: relative;
  padding: 24px;
  border-left: 5px solid var(--gold);
  background: var(--paper);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(18, 24, 32, 0.06);
}

.sector-list div::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(31, 122, 92, 0.1);
}

.sector-list strong,
.sector-list span {
  display: block;
}

.sector-list strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.process-section {
  background:
    linear-gradient(180deg, #e9edf2, #f7f9fb);
}

.project-section {
  background:
    linear-gradient(135deg, rgba(31, 122, 92, 0.09), transparent 34%),
    #ffffff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.project-grid span {
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f6f8fb);
  box-shadow: 0 10px 26px rgba(18, 24, 32, 0.06);
  color: #273444;
  font-weight: 800;
  line-height: 1.35;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline article {
  position: relative;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 24, 32, 0.07);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.mission-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(217, 155, 55, 0.12), transparent 42%),
    var(--paper);
}

.mission-section article {
  min-height: 300px;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(18, 24, 32, 0.08);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(32px, 7vw, 84px);
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(217, 155, 55, 0.22), transparent 34%),
    linear-gradient(180deg, #14283d, #0e1722);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-copy {
  position: sticky;
  top: 104px;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-highlights span {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-header {
  display: grid;
  gap: 5px;
  padding-bottom: 4px;
}

.form-header strong {
  font-size: 24px;
}

.form-header span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

label {
  display: grid;
  gap: 8px;
  color: #354252;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd7e2;
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fbfcfe;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(43, 120, 208, 0.12);
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #0e151d;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .service-grid,
  .why-grid,
  .timeline,
  .trust-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section,
  .split-section,
  .mission-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px;
    border-radius: 8px;
    background: rgba(14, 21, 29, 0.96);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 13px 12px;
  }

  .hero {
    min-height: 92vh;
    align-items: flex-end;
    padding-bottom: 38px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(12, 18, 26, 0.94) 0%, rgba(12, 18, 26, 0.76) 58%, rgba(12, 18, 26, 0.12) 100%);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-stats,
  .hero-actions,
  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px;
  }

  .trust-band,
  .service-grid,
  .why-grid,
  .timeline,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .director-card img {
    aspect-ratio: 1 / 1;
  }

  .site-footer {
    display: grid;
  }
}
