:root {
  --navy: #0b2a50;
  --navy-deep: #061b35;
  --green: #355f3d;
  --green-soft: #6f8769;
  --ink: #172335;
  --muted: #5e6875;
  --paper: #ffffff;
  --tint: #f3f5f1;
  --line: #dce2da;
  --shadow: 0 18px 50px rgba(6, 27, 53, .12);
  --radius: 18px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 780px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; background: #fff; color: var(--navy); padding: 10px 14px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(11,42,80,.08); backdrop-filter: blur(10px); }
.header-inner { height: 90px; display: flex; align-items: center; gap: 28px; }
.brand { width: 330px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.primary-nav a { text-decoration: none; color: var(--navy); font-weight: 700; font-size: .92rem; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--green); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span:not(.sr-only) { display: block; width: 28px; height: 2px; margin: 6px; background: var(--navy); }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border: 2px solid var(--green); border-radius: 8px; background: var(--green); color: #fff; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); background: #294d31; border-color: #294d31; }
.button-small { min-height: 42px; padding: 9px 16px; font-size: .88rem; white-space: nowrap; }
.button-outline { background: transparent; border-color: rgba(255,255,255,.82); color: #fff; }
.button-outline:hover, .button-outline:focus-visible { background: rgba(255,255,255,.14); border-color: #fff; }
.button-full { width: 100%; }

.hero { position: relative; min-height: 610px; display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--navy); }
.hero-picture, .hero-picture img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-picture img { object-fit: cover; object-position: 54% 52%; }
.hero-shade { background: linear-gradient(90deg, rgba(6,27,53,.93) 0%, rgba(6,27,53,.75) 42%, rgba(6,27,53,.22) 72%, rgba(6,27,53,.04) 100%); }
.hero-content { position: relative; z-index: 1; padding-block: 90px; }
.eyebrow, .section-kicker { margin: 0 0 14px; color: var(--green); text-transform: uppercase; font-size: .83rem; font-weight: 900; letter-spacing: .18em; }
.hero .eyebrow { color: #cad9bd; }
h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; color: var(--navy); line-height: 1.12; }
h1 { max-width: 720px; margin: 0; color: #fff; font-size: clamp(3rem, 6vw, 5.75rem); letter-spacing: -.035em; }
h2 { margin: 0 0 20px; font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.025em; }
h3 { margin: 0 0 12px; font-size: 1.42rem; }
.hero-copy { max-width: 620px; margin: 24px 0 30px; font-size: clamp(1.08rem, 2vw, 1.32rem); color: #f1f5f8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.credibility { background: var(--navy); color: #fff; }
.credibility-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.credibility-grid > div { padding: 25px 28px; border-right: 1px solid rgba(255,255,255,.16); }
.credibility-grid > div:last-child { border-right: 0; }
.credibility strong { display: block; font-family: Georgia, 'Times New Roman', serif; font-size: 1.42rem; }
.credibility span { display: block; color: #c8d2df; font-size: .92rem; }

.section { padding-block: 96px; }
.section-tint { background: var(--tint); }
.intro-center { text-align: center; }
.intro-center > p:last-child { color: var(--muted); font-size: 1.08rem; }
.cards { margin-top: 44px; }
.three-column { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 10px 26px rgba(6,27,53,.05); }
.card p { margin: 0; color: var(--muted); }
.icon { width: 52px; height: 52px; margin-bottom: 20px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--green-soft); color: var(--green); font-size: 1.7rem; font-weight: 700; }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.prose { font-size: 1.08rem; }
.prose p:first-child { margin-top: 0; }
.qualification-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.qualification-list span { position: relative; padding: 14px 14px 14px 42px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.qualification-list span::before { content: '✓'; position: absolute; left: 15px; color: var(--green); font-weight: 900; }
.county-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.county-grid div { padding: 25px 18px; border: 1px solid var(--line); border-radius: 12px; text-align: center; color: var(--navy); font-family: Georgia, 'Times New Roman', serif; font-size: 1.22rem; font-weight: 700; background: #fff; }

.contact-section { background: var(--navy-deep); color: #fff; }
.contact-section h2 { color: #fff; }
.section-kicker.light { color: #c9d9bd; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: start; }
.contact-grid > div > p { color: #dce4ed; }
.contact-direct { display: grid; gap: 12px; margin-top: 30px; }
.contact-direct a, .contact-direct span { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.contact-direct a:hover { text-decoration: underline; }
.request-form { padding: 30px; border-radius: var(--radius); background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.request-form label { display: grid; gap: 7px; margin-bottom: 15px; font-size: .92rem; font-weight: 800; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
input, select, textarea { width: 100%; border: 1px solid #cbd3db; border-radius: 8px; padding: 12px 13px; background: #fff; color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(53,95,61,.2); border-color: var(--green); }
textarea { resize: vertical; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .78rem; text-align: center; }

.site-footer { background: #061526; color: #d3dce6; padding-block: 34px 22px; }
.footer-grid, .footer-bottom { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer-grid strong { display: block; color: #fff; font-family: Georgia, 'Times New Roman', serif; font-size: 1.25rem; }
.footer-grid span { display: block; font-size: .9rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a, .footer-bottom a { color: inherit; }
.footer-bottom { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; color: #aebac7; }

@media (max-width: 1020px) {
  .header-cta { display: none; }
  .brand { width: 280px; }
  .primary-nav { gap: 20px; }
  .hero { min-height: 570px; }
  .three-column { grid-template-columns: 1fr; }
  .card { display: grid; grid-template-columns: 64px 1fr; column-gap: 18px; }
  .card .icon { grid-row: 1 / span 2; }
  .card h3, .card p { grid-column: 2; }
  .split, .contact-grid { gap: 46px; }
  .county-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 74px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { height: 74px; }
  .brand { width: 235px; }
  .nav-toggle { display: block; margin-left: auto; }
  .primary-nav { position: absolute; left: 0; right: 0; top: 74px; display: none; margin: 0; padding: 12px 20px 20px; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 15px 30px rgba(6,27,53,.12); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 13px 4px; border-bottom: 1px solid #edf0ed; }
  .hero { min-height: 620px; align-items: end; }
  .hero-picture img { object-position: 59% 50%; }
  .hero-shade { background: linear-gradient(0deg, rgba(6,27,53,.96) 4%, rgba(6,27,53,.76) 55%, rgba(6,27,53,.22) 100%); }
  .hero-content { padding-block: 80px 55px; }
  h1 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .hero-copy { font-size: 1.08rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .credibility-grid { grid-template-columns: 1fr; padding-block: 8px; }
  .credibility-grid > div { padding: 16px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .credibility-grid > div:last-child { border-bottom: 0; }
  .section { padding-block: 72px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .qualification-list { grid-template-columns: 1fr; }
  .county-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .request-form { padding: 22px; }
  .footer-grid, .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
