:root {
  --navy: #082f5f;
  --navy-deep: #041f3f;
  --green: #2f7d32;
  --green-dark: #1f5f25;
  --cream: #f7f7f2;
  --white: #ffffff;
  --text: #1f2933;
  --muted: #5d6a75;
  --line: #dfe5e8;
  --shadow: 0 18px 45px rgba(5, 35, 66, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(8,47,95,0.08);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand-mini {
  font-family: "Libre Baskerville", serif;
  font-size: 1.55rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.header-contact {
  margin-right: auto;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.header-contact span {
  color: var(--muted);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

.header-contact a {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.site-nav a:hover { color: var(--green); }

.nav-cta {
  color: var(--white) !important;
  background: var(--navy);
  padding: 10px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 1.7rem;
  color: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
  background:
    radial-gradient(circle at 85% 10%, rgba(47,125,50,.14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f5faf6 100%);
}

.bridge-accent {
  position: absolute;
  right: -8%;
  bottom: -95px;
  width: 58%;
  height: 220px;
  border-top: 10px solid rgba(47,125,50,.08);
  border-radius: 50% 50% 0 0;
  transform: rotate(-4deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--navy-deep);
  line-height: 1.18;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  letter-spacing: -0.035em;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  letter-spacing: -0.025em;
}

h3 { font-size: 1.25rem; }

.tagline {
  margin: 18px 0 0;
  color: var(--green-dark);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.hero-text {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 20px 0 30px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 23px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(6, 43, 79, .15);
}

.primary { background: var(--green); color: var(--white); }
.primary:hover { background: var(--green-dark); }

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

.secondary {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.email-button { background: #eaf3ea; color: var(--green-dark); }

.logo-card {
  background: var(--white);
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(8,47,95,.08);
}

.logo-card img { width: 100%; height: auto; }

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  padding: 25px 30px;
  text-align: center;
}

.trust-grid > div + div { border-left: 1px solid var(--line); }
.trust-grid strong { display: block; color: var(--navy); font-size: 1.05rem; }
.trust-grid span { color: var(--muted); font-size: .88rem; }

.section { padding: 90px 0; }
.section-tint { background: var(--cream); }

.two-column {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.body-copy { color: var(--muted); font-size: 1.02rem; }
.body-copy p:first-child { margin-top: 0; }

.center { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}

.service-card {
  padding: 32px 26px 28px;
  background: var(--white);
  border: 1px solid rgba(8,47,95,.08);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(6,43,79,.06);
}

.service-card h3 { margin: 26px 0 10px; }
.service-card p { color: var(--muted); margin: 0; }
.service-number { color: var(--green); font-weight: 700; letter-spacing: .1em; }

.feature-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 75px;
}

.feature {
  padding: 0 0 25px 26px;
  border-left: 3px solid var(--green);
}

.feature + .feature { margin-top: 22px; }
.feature h3 { margin: 0 0 8px; }
.feature p { margin: 0; color: var(--muted); }

.cta-section { padding: 0 0 90px; }

.cta-card {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  box-shadow: var(--shadow);
}

.cta-card h2, .cta-card p { color: var(--white); }
.cta-card p { margin-bottom: 0; max-width: 650px; }
.light { color: #9dd59e; }

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 185px;
}

.light-button { background: var(--white); color: var(--navy); }
.outline-light { border: 1px solid rgba(255,255,255,.7); color: var(--white); }

.contact-section { background: #fbfcfd; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 70px;
  align-items: start;
}

.appointment-note {
  color: var(--green-dark);
  font-weight: 700;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 15px 35px rgba(6,43,79,.07);
}

.contact-card a:not(.button) {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.02rem;
  overflow-wrap: anywhere;
}

.contact-label {
  margin: 22px 0 4px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--muted);
}

.contact-label:first-child { margin-top: 0; }

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.contact-actions .button {
  padding: 0 12px;
  font-size: .87rem;
}

.site-footer {
  background: #03172d;
  color: rgba(255,255,255,.75);
  padding: 32px 0;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 50px;
  align-items: center;
}

.site-footer strong { color: var(--white); }
.site-footer p { margin: 4px 0 0; font-size: .88rem; }

.footer-contact {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
  font-size: .88rem;
}

.footer-wrap > p:last-child {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 18px;
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  overflow: hidden;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(3,23,45,.25);
}

.floating-contact a {
  background: var(--green);
  color: var(--white);
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
}

.floating-contact a + a {
  background: var(--navy);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .hero-grid, .two-column, .feature-layout, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { align-items: flex-start; flex-direction: column; }
  .cta-buttons { flex-direction: row; width: 100%; }
}

@media (max-width: 760px) {
  .header-contact { display: none; }
  .brand-mini { margin-right: auto; }
  .menu-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 70px;
    padding: 18px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open { display: flex; }
  .site-nav a { padding: 8px 4px; }
  .nav-cta { text-align: center; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1120px); }
  .section { padding: 70px 0; }
  .hero { padding: 65px 0 55px; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 34px 25px; }
  .cta-buttons { flex-direction: column; }
  .contact-actions { grid-template-columns: 1fr; }
  .footer-wrap { grid-template-columns: 1fr; }
  .footer-contact { text-align: left; }
  .footer-wrap > p:last-child { grid-column: 1; }
  .floating-contact { display: flex; }
}
