:root {
  --navy: #1e3a5f;
  --navy-deep: #0c2134;
  --sky: #7ec8e3;
  --sky-soft: #dff3f9;
  --sand: #f5f1ea;
  --ink: #1c2833;
  --muted: #5d6975;
  --line: rgba(30, 58, 95, 0.12);
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(12, 33, 52, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(126, 200, 227, 0.18), transparent 32%),
    linear-gradient(180deg, #fbfcfd 0%, #f4f7f9 100%);
}

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

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

p,
li {
  font-size: 1.02rem;
  line-height: 1.75;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  color: var(--navy-deep);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.45rem;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(30, 58, 95, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 92px;
}

.brand img {
  height: 58px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--sky-soft);
  color: var(--navy-deep);
}

.nav-toggle,
.nav-toggle-button {
  display: none;
}

.hero {
  color: var(--white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-home {
  min-height: 72vh;
}

.hero-interior {
  min-height: 56vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  min-height: inherit;
  padding: 5rem 0;
}

.hero h1,
.hero p,
.hero .eyebrow {
  color: var(--white);
}

.hero-copy {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sky);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

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

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

.button-secondary-dark {
  background: transparent;
  border-color: rgba(30, 58, 95, 0.24);
  color: var(--navy);
}

.section {
  padding: 5.5rem 0;
}

.section-tint {
  background: linear-gradient(180deg, rgba(223, 243, 249, 0.55), rgba(245, 241, 234, 0.5));
}

.split-intro,
.narrative-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem 4rem;
  align-items: start;
}

.stacked-copy {
  display: grid;
  gap: 1rem;
}

.stacked-copy p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2rem;
}

.left-align {
  margin-bottom: 0;
}

.section-heading h2 {
  margin-top: 0.4rem;
}

.card-grid,
.services-grid {
  display: grid;
  gap: 1.5rem;
}

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

.credibility-grid,
.values-grid {
  align-items: stretch;
}

.info-card,
.service-card,
.contact-panel {
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.info-card p,
.service-card p,
.contact-panel p {
  color: var(--muted);
}

.credibility-card,
.value-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 252, 0.95));
}

.credibility-card {
  border-top: 4px solid var(--sky);
}

.value-card {
  text-align: left;
}

.value-card h3,
.credibility-card h3 {
  margin-bottom: 0.85rem;
}

.service-card h2 {
  font-size: 1.65rem;
  margin-bottom: 0.8rem;
}

.service-card ul,
.reasons-box ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.service-card ul {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
  padding-left: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--navy-deep);
  line-height: 1.6;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 6px rgba(126, 200, 227, 0.14);
}

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

.services-intro {
  max-width: 760px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.services-intro h2 {
  margin-top: 0.45rem;
  margin-bottom: 1rem;
}

.services-intro p:last-child {
  color: var(--muted);
}

.service-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(126, 200, 227, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 252, 0.96));
  border: 1px solid rgba(126, 200, 227, 0.32);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--sky), #4daacb);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(12, 33, 52, 0.16);
  border-color: rgba(126, 200, 227, 0.65);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(126, 200, 227, 0.16);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #285278 100%);
}

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

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer {
  padding: 1.6rem 0 2.2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
}

.thank-you-wrap {
  display: flex;
  justify-content: center;
}

.thank-you-card {
  width: min(100%, 760px);
  padding: 3rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(126, 200, 227, 0.25), transparent 30%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card h1 {
  margin-top: 0.5rem;
}

.thank-you-copy {
  max-width: 560px;
  margin: 1.25rem auto 0;
  color: var(--muted);
}

.contact-panel-dark {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.contact-panel-dark h2,
.contact-panel-dark p,
.contact-panel-dark a,
.contact-panel-dark li,
.contact-panel-dark .contact-label {
  color: var(--white);
}

.contact-methods {
  margin-top: 2rem;
}

.contact-method {
  display: grid;
  gap: 0.4rem;
}

.contact-label {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.reasons-box {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  margin-top: 0.4rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(30, 58, 95, 0.18);
  border-radius: 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(126, 200, 227, 0.35);
  border-color: var(--sky);
}

.form-note {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .split-intro,
  .narrative-grid,
  .cta-band-inner,
  .contact-layout,
  .services-grid,
  .card-grid,
  .values-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-inner {
    display: flex;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-wrap: wrap;
    min-height: 84px;
    padding: 0.8rem 0;
  }

  .nav-toggle-button {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid rgba(30, 58, 95, 0.14);
    border-radius: 50%;
    cursor: pointer;
  }

  .nav-toggle-button span {
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--navy);
    border-radius: 999px;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem 0 0.2rem;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
    border-radius: 18px;
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .hero-content,
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-home {
    min-height: 66vh;
  }
}
