:root {
  color-scheme: light;
  --navy: #10233f;
  --navy-2: #081628;
  --green: #6fa52f;
  --green-dark: #477514;
  --gold: #c99b4a;
  --text: #18212f;
  --muted: #66717f;
  --paper: #f5f7f4;
  --surface: #ffffff;
  --line: #dfe6dd;
  --shadow: 0 18px 45px rgba(8, 22, 40, 0.14);
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--text); font-size: 16px; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 10px; background: #fff; padding: 10px; z-index: 100; }
.skip-link:focus { left: 10px; }

.topbar { background: var(--navy-2); color: rgba(255,255,255,.86); font-size: .88rem; }
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar p { margin: 0; }
.topbar a { color: #fff; font-weight: 700; text-decoration: none; }

.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 1px 0 var(--line); }
.nav-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; min-width: 0; }
.brand-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 4px; background: var(--navy); color: #fff; font-weight: 800; letter-spacing: 0; box-shadow: inset 0 -5px 0 var(--green); }
.brand-text strong { display: block; color: var(--navy); font-size: 1.42rem; line-height: 1; letter-spacing: 0; }
.brand-text small { display: block; margin-top: 5px; color: var(--muted); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0; }
.site-menu { display: flex; align-items: center; gap: 28px; }
.site-menu a { color: var(--navy); text-decoration: none; font-weight: 800; font-size: .93rem; }
.site-menu a:hover { color: var(--green-dark); }
.menu-button { display: none; }

.hero { position: relative; min-height: 680px; display: grid; align-items: center; overflow: hidden; color: #fff; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slides img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.04); transition: opacity 900ms ease, transform 6000ms ease; }
.hero-slides img.is-active { opacity: 1; transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(8,22,40,.86), rgba(8,22,40,.58) 45%, rgba(8,22,40,.12)); }
.hero-content { position: relative; z-index: 2; padding: 90px 0; }
.kicker, .eyebrow { margin: 0 0 13px; color: var(--green); text-transform: uppercase; font-size: .82rem; font-weight: 900; letter-spacing: 0; }
.hero h1 { max-width: 790px; margin: 0; font-size: clamp(2.55rem, 6.6vw, 5.7rem); line-height: .98; letter-spacing: 0; }
.hero p:not(.kicker) { max-width: 650px; margin: 24px 0 0; color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 4px; padding: 0 22px; text-decoration: none; font-weight: 900; border: 2px solid transparent; cursor: pointer; font: inherit; }
.button-primary { background: var(--green); color: #fff; border-color: var(--green); }
.button-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.58); background: rgba(255,255,255,.06); }
.button-ghost:hover { background: #fff; color: var(--navy); }

.trust-strip { background: var(--navy); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { min-height: 118px; padding: 24px; border-left: 1px solid rgba(255,255,255,.13); display: grid; align-content: center; }
.trust-grid div:last-child { border-right: 1px solid rgba(255,255,255,.13); }
.trust-grid strong { display: block; font-size: clamp(1.45rem, 2.8vw, 2.35rem); line-height: 1; color: #fff; }
.trust-grid span { display: block; margin-top: 7px; color: rgba(255,255,255,.72); }

.section { padding: clamp(64px, 8vw, 105px) 0; }
.two-column, .position-grid { display: grid; grid-template-columns: .86fr 1fr; gap: clamp(30px, 6vw, 88px); align-items: start; }
h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 4.6vw, 4rem); line-height: 1.05; letter-spacing: 0; }
h3 { margin: 12px 0 10px; color: var(--navy); font-size: 1.25rem; line-height: 1.22; }
p { overflow-wrap: anywhere; }
.copy-stack p, .position-copy p, .section-heading p, .feature-copy p, .contact-section p, .operations-panel p { color: var(--muted); font-size: 1.05rem; }
.copy-stack p:first-child { margin-top: 0; }

.position-section { background: #fff; }
.position-card { border-left: 6px solid var(--green); padding-left: clamp(22px, 4vw, 34px); }
.position-copy { max-width: 690px; }
.position-copy p:first-child { margin-top: 0; }
.operations-section { background: var(--paper); }
.operations-grid { display: grid; grid-template-columns: .85fr 1fr; gap: clamp(30px, 6vw, 78px); align-items: start; }
.operations-panel { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow); }
.operations-panel p:first-child { margin-top: 0; }
.operations-panel ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; margin: 22px 0; padding: 0; list-style: none; }
.operations-panel li { position: relative; padding-left: 22px; color: var(--navy); font-weight: 800; }
.operations-panel li::before { content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.services-section { background: #fff; }
.section-heading { max-width: 840px; margin-bottom: 34px; }
.section-heading.compact { max-width: 650px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-grid article { background: var(--surface); border: 1px solid var(--line); border-radius: 4px; padding: 28px; box-shadow: 0 8px 24px rgba(8,22,40,.06); }
.service-number { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(111,165,47,.12); color: var(--green-dark); font-weight: 900; }
.service-grid p { color: var(--muted); margin-bottom: 0; }

.image-feature { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 620px; background: var(--navy); color: #fff; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy { display: grid; align-content: center; padding: clamp(38px, 6vw, 78px); }
.feature-copy h2 { color: #fff; }
.feature-copy p { color: rgba(255,255,255,.78); }

.gallery-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.gallery-band img { width: 100%; height: clamp(220px, 28vw, 380px); object-fit: cover; }

.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: .9fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.contact-list { display: grid; gap: 12px; margin-top: 28px; }
.contact-list a, .contact-list p { display: block; margin: 0; padding: 16px 18px; border: 1px solid var(--line); border-radius: 4px; text-decoration: none; color: var(--navy); background: var(--paper); font-weight: 800; }
.contact-list span { display: block; color: var(--green-dark); font-size: .78rem; text-transform: uppercase; letter-spacing: 0; }
.contact-form { display: grid; gap: 15px; padding: clamp(24px, 4vw, 38px); background: var(--paper); border: 1px solid var(--line); border-radius: 4px; box-shadow: var(--shadow); }
label { display: grid; gap: 7px; font-weight: 800; color: var(--navy); }
input, textarea { width: 100%; border: 1px solid #c9d4c5; border-radius: 4px; background: #fff; color: var(--text); padding: 13px 14px; font: inherit; }
textarea { resize: vertical; }
.contact-form .button { justify-self: start; }
.form-status { min-height: 1.4em; margin: 0; color: var(--green-dark); font-weight: 800; }
.site-footer { background: var(--navy-2); color: rgba(255,255,255,.76); }
.footer-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner p { margin: 0; }
.footer-inner a { color: #fff; font-weight: 800; }

@media (max-width: 980px) {
  .trust-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .two-column, .position-grid, .operations-grid, .image-feature, .contact-grid { grid-template-columns: 1fr; }
  .feature-image { min-height: 420px; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  .topbar-inner { flex-direction: column; align-items: flex-start; justify-content: center; padding: 9px 0; gap: 2px; }
  .nav-inner { min-height: 72px; }
  .brand-icon { width: 44px; height: 44px; }
  .brand-text strong { font-size: 1.15rem; }
  .brand-text small { font-size: .68rem; }
  .menu-button { display: inline-grid; place-content: center; gap: 5px; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 4px; background: #fff; }
  .menu-button span { display: block; width: 21px; height: 2px; background: var(--navy); }
  .site-menu { position: absolute; top: 72px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-menu.is-open { display: flex; }
  .site-menu a { padding: 15px 18px; border-bottom: 1px solid var(--line); }
  .hero { min-height: 610px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(8,22,40,.55), rgba(8,22,40,.92)); }
  .hero h1 { font-size: clamp(2.35rem, 13vw, 4rem); }
  .trust-grid, .service-grid, .gallery-band, .operations-panel ul { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 1px solid rgba(255,255,255,.13); }
  .footer-inner { flex-direction: column; align-items: flex-start; justify-content: center; padding: 22px 0; }
}

