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

:root {
  --navy: #15365f;
  --blue: #335578;
  --cream: #f2f1ec;
  --text: #17283d;
  --white: #f8f7f4;
  --rule-light: rgba(255,255,255,.55);
  --rule-dark: rgba(23,40,61,.75);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

section {
  width: 100%;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 80px 7vw;
}

.hero-inner {
  width: min(1100px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6.5vw, 6.1rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.tagline {
  margin: 15vh 0 8vh;
  font-size: clamp(1.15rem, 1.7vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 20px 34px;
  background: var(--cream);
  color: var(--text);
  text-decoration: underline;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform .2s ease, background-color .2s ease;
}

.learn-more:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.light-section {
  background: var(--cream);
  padding: 7.5vw 9.7vw 8vw;
}

.content {
  max-width: 1240px;
  margin: 0 auto;
}

h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.04em;
}

p {
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.42rem);
  line-height: 1.5;
}

.light-section hr {
  border: 0;
  border-top: 1px solid var(--rule-dark);
  margin: 55px 0 45px;
}

.services {
  display: grid;
  gap: 0;
}

.service h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  line-height: 1.35;
  font-weight: 700;
}

.service p {
  margin: 0 0 3px;
}

.blue-section {
  background: var(--blue);
  color: var(--white);
  padding: 7.5vw 9.7vw 5vw;
}

.blue-section p,
.blue-section a {
  color: var(--white);
}

.blue-section hr {
  border: 0;
  border-top: 1px solid var(--rule-light);
  width: 31%;
  margin: 55px 0;
}

.contact h2 {
  margin-bottom: 8px;
}

.contact p,
.contact a {
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  line-height: 1.5;
}

.contact a {
  display: inline-block;
  margin: 0 0 0;
  text-decoration: underline;
}

.blue-section .bottom-rule {
  margin: 55px 0 0;
}

footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
}

footer p {
  font-size: .8rem;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .hero {
    min-height: 560px;
    padding: 60px 24px 50px;
  }

  .desktop-break {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
    line-height: 1.04;
    max-width: 320px;
  }

  .tagline {
    margin: 58px 0 28px;
    max-width: 290px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .learn-more {
    min-width: 175px;
    padding: 13px 20px;
    font-size: .78rem;
  }

  .light-section,
  .blue-section {
    padding: 50px 24px;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 22px;
  }

  p,
  .contact p,
  .contact a {
    font-size: 1rem;
    line-height: 1.48;
  }

  .light-section hr,
  .blue-section hr {
    width: 100%;
    margin: 28px 0;
  }

  .service h3 {
    font-size: 1rem;
    line-height: 1.35;
  }

  .service p {
    margin-bottom: 2px;
  }

  .blue-section {
    padding-bottom: 45px;
  }

  .blue-section .bottom-rule {
    margin-top: 28px;
  }

  footer p {
    font-size: .7rem;
  }
}
