
:root {
  --navy: #1F3A5F;
  --teal: #2A9D8F;
  --ivory: #FAF9F6;
  --cream: #F7F3EA;
  --sage: #A8C3A0;
  --gold: #D4A017;
  --charcoal: #263238;
  --muted: #5C6670;
  --white: #FFFFFF;
  --border: #E4E0D7;
  --shadow: 0 14px 35px rgba(31, 58, 95, 0.12);
  --radius: 18px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  color: var(--teal);
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: .75rem 1rem;
  z-index: 999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  background: rgba(250, 249, 246, 0.98);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}


.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.site-logo {
  width: 520px;
  max-width: 90vw;
  height: auto;
  display: block;
}

.brand strong {
  font-family: 'Montserrat', 'Inter', Arial, Helvetica, sans-serif;
  color: var(--navy);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.brand span {
  font-size: .82rem;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  background: var(--navy);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  padding: .65rem .9rem;
  font-weight: 800;
  cursor: pointer;
}


.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .45rem;
}

.site-nav a {
  padding: .65rem .75rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .94rem;
}

.site-nav a.active,
.site-nav a:hover {
  background: var(--cream);
  color: var(--navy);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

main {
  min-height: 70vh;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(42, 157, 143, .18), transparent 32rem),
    linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(42, 157, 143, .11);
  color: var(--navy);
  padding: .45rem .75rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
}

h1,
h2,
h3 {
  font-family: 'Montserrat', 'Inter', Arial, Helvetica, sans-serif;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  letter-spacing: -0.055em;
  max-width: 900px;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.9rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-top: 0;
}

.lede {
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 780px;
}

.hero-card,
.card,
.form-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.card:hover,
.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(31, 58, 95, 0.12);
}

.hero-card ul,
.check-list {
  padding: 0;
  list-style: none;
  margin: 1rem 0 0;
}

.hero-card li,
.check-list li {
  padding: .55rem 0 .55rem 2rem;
  position: relative;
}

.hero-card li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .55rem;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(42, 157, 143, .13);
  color: var(--teal);
  font-weight: 900;
  font-size: .8rem;
}

.actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.05rem;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  text-align: center;
  cursor: pointer;
}

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

.button.secondary {
  background: var(--navy);
  color: var(--white);
}

.button.outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: var(--cream);
}

.section-head {
  max-width: 780px;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(31, 58, 95, 0.06);
}

.card.highlight {
  border-top: 7px solid var(--teal);
}

.card.gold {
  border-top: 7px solid var(--gold);
}

.card.sage {
  border-top: 7px solid var(--sage);
}

.card p:last-child {
  margin-bottom: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}

.pill {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .4rem .65rem;
  font-size: .9rem;
  font-weight: 800;
  color: var(--navy);
}

.callout {
  background: var(--navy);
  color: var(--white);
  border-radius: 26px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.callout h2,
.callout p {
  color: var(--white);
}

.callout p {
  margin: 0;
  opacity: .92;
}

.page-hero {
  padding: 4.5rem 0 3rem;
  background: linear-gradient(135deg, var(--cream), var(--ivory));
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  font-size: .92rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(31, 58, 95, 0.06);
}

.service-table th,
.service-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.service-table th {
  background: var(--navy);
  color: var(--white);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

label {
  display: block;
  font-weight: 800;
  color: var(--navy);
  margin: 1rem 0 .35rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #CDD3D8;
  border-radius: 12px;
  padding: .85rem;
  font: inherit;
  background: var(--white);
  color: var(--charcoal);
}

textarea {
  min-height: 140px;
  resize: vertical;
}



.hint {
  font-size: .9rem;
  color: var(--muted);
}

.small {
  font-size: .92rem;
  color: var(--muted);
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 1.5rem;
}

.site-footer h2,
.site-footer h3,
.site-footer a {
  color: var(--white);
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.18);
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: .9rem;
  opacity: .9;
}

@media (max-width: 900px) {
  .header-inner {
    padding: 1rem 1rem;
    gap: .85rem;
  }

  .site-logo {
    width: 360px;
    max-width: 88vw;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: static;
    width: 100%;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .site-nav a {
    border-radius: 12px;
    text-align: center;
  }

  .hero-grid,
  .grid.two,
  .grid.three,
  .callout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .section {
    padding: 3.25rem 0;
  }
}

@media (max-width: 768px) {
  .site-logo {
    width: 320px;
    max-width: 88vw;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 17px;
  }

  .header-inner {
    padding: .85rem 1rem 1rem;
  }

  .site-logo {
    width: 280px;
    max-width: 88vw;
  }

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

  .brand span {
    display: none;
  }

  .container {
    padding: 0 1rem;
  }

  .actions .button {
    width: 100%;
  }

  .card,
  .hero-card,
  .form-card {
    padding: 1.1rem;
  }

  .service-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
