:root {
  --ink: #1f2933;
  --muted: #5f6b76;
  --navy: #183642;
  --navy-dark: #10262e;
  --sage: #6d8b74;
  --cream: #f6f3ec;
  --white: #ffffff;
  --line: #dde3e6;
  --shadow: 0 18px 45px rgba(24, 54, 66, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 760px; text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(221,227,230,.85);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; gap: 12px; align-items: center; text-decoration: none; font-weight: 800; font-size: 1.05rem; }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
  background: var(--navy); color: var(--white); font-size: .85rem;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: .94rem; }
.nav-links a:hover { color: var(--sage); }
.nav-cta { padding: 10px 16px; border: 1px solid var(--navy); border-radius: 8px; }
.menu-toggle { display: none; border: 0; background: none; font-size: 1.5rem; }

.hero {
  padding: 105px 0 90px;
  background:
    radial-gradient(circle at top right, rgba(109,139,116,.18), transparent 30%),
    linear-gradient(180deg, #fbfcfa 0%, var(--cream) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--sage); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.eyebrow.light { color: #c5d5c8; }
h1, h2 { font-family: "Merriweather", serif; line-height: 1.18; color: var(--navy-dark); }
h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); margin: 0 0 24px; max-width: 800px; }
h2 { font-size: clamp(2rem, 3vw, 3rem); margin: 0 0 18px; }
h3 { margin: 0 0 10px; color: var(--navy); line-height: 1.3; }
.hero-copy { font-size: 1.18rem; max-width: 700px; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 20px; border-radius: 8px;
  text-decoration: none; font-weight: 700; border: 0; cursor: pointer;
}
.button.primary { background: var(--navy); color: var(--white); }
.button.primary:hover { background: var(--navy-dark); }
.button.secondary { border: 1px solid var(--line); background: var(--white); color: var(--navy); }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 24px; color: var(--muted); font-size: .88rem; }
.trust-row span::before { content: "✓"; color: var(--sage); font-weight: 800; margin-right: 7px; }

.hero-card {
  background: var(--white); border: 1px solid var(--line); padding: 28px;
  border-radius: 18px; box-shadow: var(--shadow);
}
.card-label { margin-top: 0; font-weight: 700; color: var(--muted); }
.metric-card { padding: 18px 0; border-bottom: 1px solid var(--line); }
.metric-card span { display: block; color: var(--sage); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.metric-card strong { display: block; font-size: 1.18rem; margin-top: 3px; }
.hero-note { margin: 20px 0 0; color: var(--muted); font-size: .9rem; }

.section { padding: 92px 0; }
.section.alt { background: var(--cream); }
.intro p:last-child { font-size: 1.08rem; color: var(--muted); }
.section-heading { display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: end; margin-bottom: 42px; }
.section-heading > p { color: var(--muted); margin: 0 0 8px; }

.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 28px; box-shadow: 0 10px 26px rgba(24,54,66,.06);
}
.icon { color: var(--sage); font-weight: 800; margin-bottom: 24px; }
.service-card p, .service-card li { color: var(--muted); }
.service-card ul { padding-left: 19px; margin-bottom: 0; }

.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.industry { padding: 26px; border: 1px solid var(--line); border-radius: 12px; }
.industry p { color: var(--muted); margin-bottom: 0; }

.process { background: var(--navy); color: var(--white); }
.process h2, .process h3 { color: var(--white); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step span {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.1); font-weight: 800; margin-bottom: 20px;
}
.step p { color: #d6e0e3; }

.about-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: center; }
.about-panel {
  min-height: 430px; border-radius: 20px; background:
  linear-gradient(145deg, rgba(109,139,116,.9), rgba(24,54,66,.98));
  display: grid; place-items: center; box-shadow: var(--shadow);
}
.initials {
  width: 150px; height: 150px; border-radius: 50%; display: grid; place-items: center;
  border: 2px solid rgba(255,255,255,.6); color: var(--white);
  font-family: "Merriweather", serif; font-size: 3rem;
}
.about-grid p { color: var(--muted); }

.cta-section { padding-top: 0; }
.cta-box {
  background: var(--cream); border-radius: 18px; padding: 42px;
  display: flex; gap: 30px; align-items: center; justify-content: space-between;
}
.cta-box p { max-width: 720px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.contact-grid > div > p { color: var(--muted); }
.contact-details { margin-top: 28px; }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 28px; }
.contact-form label { display: block; font-weight: 700; margin-bottom: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%; margin-top: 7px; border: 1px solid #cdd5d9; border-radius: 8px;
  padding: 12px; font: inherit; background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid rgba(109,139,116,.35); border-color: var(--sage);
}
.form-note { color: var(--muted); font-size: .8rem; margin-bottom: 0; }

footer { padding: 34px 0; background: var(--navy-dark); color: var(--white); }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
footer p { margin: 4px 0 0; color: #c4d0d4; font-size: .9rem; }

@media (max-width: 850px) {
  .hero-grid, .section-heading, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .cards.three, .steps { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 75px; }
  .about-panel { min-height: 300px; }
  .cta-box { align-items: flex-start; flex-direction: column; }
  .menu-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 74px; left: 0; right: 0; padding: 20px;
    background: var(--white); border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start;
  }
  .nav-links.open { display: flex; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .section { padding: 70px 0; }
  .hero-actions .button { width: 100%; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
