@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --navy: #082d63;
  --navy-deep: #041d43;
  --blue: #145a9c;
  --teal: #1d8d9a;
  --green: #3f8d35;
  --green-light: #70b947;
  --ink: #12345b;
  --muted: #66758a;
  --white: #ffffff;
  --surface: #f7fafc;
  --border: rgba(8, 45, 99, .12);
  --shadow: 0 22px 60px rgba(8, 45, 99, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(112,185,71,.15), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(29,141,154,.14), transparent 30%),
    linear-gradient(180deg, #fafdff 0%, #eef5fa 48%, #ffffff 100%);
  overflow-x: hidden;
}

a { color: inherit; }

.page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.background-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  z-index: -1;
}

.orb-one {
  width: 420px;
  height: 420px;
  top: 40px;
  left: -220px;
  background: rgba(63,141,53,.10);
}

.orb-two {
  width: 520px;
  height: 520px;
  top: 330px;
  right: -300px;
  background: rgba(20,90,156,.10);
}

.hero {
  min-height: 700px;
  padding: 62px 24px 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -90px;
  height: 190px;
  background: var(--navy-deep);
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  z-index: -1;
}

.hero::before {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 10px;
  height: 7px;
  background: linear-gradient(90deg, var(--navy), var(--teal), var(--green), var(--navy));
  z-index: 0;
}

.brand {
  width: min(560px, 90vw);
  margin-bottom: 38px;
  position: relative;
  z-index: 2;
}

.logo {
  display: block;
  width: min(430px, 78vw);
  max-height: 310px;
  object-fit: contain;
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 22px;
}

h1 {
  max-width: 900px;
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -2px;
}

h1 span {
  display: block;
  margin-top: 10px;
  color: var(--green);
}

.intro {
  max-width: 650px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.coming-soon {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 4px;
}

.coming-soon .line {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green));
}

.coming-soon .line:last-child {
  background: linear-gradient(90deg, var(--green), transparent);
}

.supporting {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  margin-top: 18px;
}

.supporting b { color: var(--green); padding: 0 7px; }

.services {
  padding: 92px 24px 78px;
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,.15);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 42px;
}

.section-heading span {
  width: 75px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-light));
}

.section-heading span:last-child {
  background: linear-gradient(90deg, var(--green-light), transparent);
}

.section-heading h2 {
  margin: 0;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

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

.service-card {
  padding: 28px 18px;
  min-height: 215px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,.09);
  border-color: rgba(112,185,71,.55);
}

.icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 19px;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 50%;
  color: white;
  font-size: 25px;
  font-weight: 700;
}

.icon.green {
  background: rgba(63,141,53,.28);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.service-card p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.6;
}

.contact {
  max-width: 1180px;
  margin: -1px auto 0;
  padding: 56px 24px 62px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.contact-label {
  margin: 0 0 9px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.contact h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 45px;
}

.contact-copy > p:last-child {
  max-width: 350px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 13px;
}

.contact-item {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 17px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.85);
  box-shadow: 0 8px 25px rgba(8,45,99,.05);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-icon {
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 20px;
}

.contact-icon.green { background: var(--green); }

.contact-item small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.45;
}

footer {
  padding: 28px 24px 34px;
  text-align: center;
  background: #031a3a;
  color: rgba(255,255,255,.65);
}

.footer-brand {
  color: white;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
}

.footer-brand span { color: var(--green-light); }

footer p {
  margin: 9px 0 0;
  font-size: 11px;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 650px;
    padding-top: 35px;
  }

  .logo {
    width: 82vw;
    max-height: 260px;
  }

  .eyebrow {
    letter-spacing: 2px;
    font-size: 10px;
  }

  h1 {
    font-size: 43px;
    letter-spacing: -1px;
  }

  .intro {
    font-size: 15px;
  }

  .coming-soon {
    gap: 9px;
    font-size: 11px;
    letter-spacing: 2.5px;
  }

  .coming-soon .line {
    width: 32px;
  }

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

  .service-card,
  .service-card:last-child {
    max-width: none;
    grid-column: auto;
  }

  .section-heading h2 {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact h2 {
    font-size: 38px;
  }

  .contact-item strong {
    font-size: 13px;
  }
}
