﻿@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Manrope:wght@300;400;500;600;700&display=swap");

:root{
  --bg:#f6f4ef;
  --surface:#ffffff;
  --ink:#1f2a37;
  --muted:#5c6b7a;
  --accent:#3f6b4f;
  --accent-strong:#2d573f;
  --accent-alt:#1f5f99;
  --line:rgba(31,42,55,.12);
  --shadow:0 18px 40px rgba(31,42,55,.12);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:"Manrope","Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%;display:block}

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

.container{max-width:1140px;margin:0 auto;padding:0 20px}

h1,h2,h3{font-family:"DM Serif Display","Times New Roman",serif;font-weight:400}

.header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(246,244,239,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(31,42,55,.08);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:16px 0}
.brand-logo{height:36px;width:auto}

.nav{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.nav-link{font-size:14px;color:var(--muted);padding:8px 10px;border-radius:999px}
.nav-link:hover{background:rgba(63,107,79,.08);color:var(--ink)}
.nav-link.active{background:rgba(63,107,79,.12);color:var(--accent-strong);font-weight:600}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  border:1px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn.primary{
  background:var(--accent);
  color:white;
  box-shadow:0 12px 24px rgba(63,107,79,.22);
}
.btn.primary:hover{transform:translateY(-1px);box-shadow:0 16px 30px rgba(63,107,79,.28)}
.btn.ghost{
  border-color:rgba(31,42,55,.18);
  background:rgba(255,255,255,.7);
  color:var(--ink);
}

.hero{
  position:relative;
  padding:80px 0 64px;
  overflow:hidden;
}
.hero-image{
  color:white;
  background-image:linear-gradient(120deg, rgba(31,42,55,.82), rgba(31,42,55,.35)), var(--hero-image, none);
  background-size:cover;
  background-position:center;
}
.hero-image[data-hero="home-hero"]{--hero-image:url("../images/heroes/home-hero.png")}
.hero-image[data-hero="about-hero"]{--hero-image:url("../images/heroes/about-hero.png")}
.hero-image[data-hero="approach-hero"]{--hero-image:url("../images/heroes/approach-hero.png")}
.hero-image[data-hero="industry-hero"]{--hero-image:url("../images/heroes/industry-hero.png")}
.hero-image[data-hero="service-hero"]{--hero-image:url("../images/heroes/service-hero.png")}
.hero-overlay{display:none}
.hero-content{position:relative;display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:center}
.hero-copy h1{font-size:48px;line-height:1.08;margin:12px 0}
.lead{font-size:17px;color:inherit;max-width:60ch}
.eyebrow{font-size:13px;letter-spacing:.18em;text-transform:uppercase;color:#1f2a37;margin:0}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin:24px 0}
.hero-panel{
  background:rgba(255,255,255,.92);
  color:var(--ink);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}
.hero-panel h3{margin:0 0 10px}
.hero-panel ul{margin:0;padding-left:18px;color:var(--muted)}
.hero-panel li{margin:8px 0}

.pill-row{display:flex;gap:10px;flex-wrap:wrap}
.pill-row span{
  background:rgba(255,255,255,.2);
  border:1px solid rgba(255,255,255,.3);
  padding:6px 12px;
  border-radius:999px;
  font-size:13px;
}

.section{padding:64px 0}
.section-title{margin-bottom:24px}
.section-title h2{font-size:32px;margin:0 0 8px}
.section-title p{margin:0;color:var(--muted)}

.band{background:#f0efe9}
.split{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:center}

.grid{display:grid;gap:18px}
.grid.cols-3{grid-template-columns:repeat(3,1fr)}
.grid.cols-2{grid-template-columns:repeat(2,1fr)}

.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:0 12px 24px rgba(31,42,55,.06);
}
.card h3{margin:0 0 8px;font-size:20px}
.card p{margin:0;color:var(--muted)}

.steps{display:grid;gap:16px}
.step{background:var(--surface);border-radius:var(--radius);padding:18px;border:1px solid var(--line)}
.step h3{margin:0 0 6px}
.step p{margin:0;color:var(--muted)}

.stat-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  text-align:left;
}
.stat{font-size:28px;color:var(--accent-strong);font-weight:600;margin-bottom:8px}

.callout{
  background:linear-gradient(120deg, rgba(63,107,79,.15), rgba(31,95,153,.1));
}
.callout-inner{display:flex;align-items:center;justify-content:space-between;gap:20px}

.page-hero{padding:64px 0 20px}
.page-hero h1{font-size:42px;margin:10px 0 8px}
.page-hero .eyebrow{color:var(--accent-strong)}
.page-hero.hero-image{padding:72px 0 48px}
.hero-image .eyebrow{color:rgba(255,255,255,.75)}
.hero-image .lead{color:rgba(255,255,255,.86)}

.timeline{display:grid;gap:16px}
.timeline-step{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
}
.timeline-step h3{margin:0 0 6px}
.timeline-step p{margin:0;color:var(--muted)}

.form{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
  display:grid;
  gap:16px;
}
.form label{display:grid;gap:6px;font-size:14px;color:var(--muted)}
.form input,.form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(31,42,55,.18);
  font-family:inherit;
  font-size:14px;
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}

.clean{list-style:none;padding:0;margin:0;color:var(--muted)}
.clean li{margin:8px 0;padding-left:18px;position:relative}
.clean li::before{content:"";position:absolute;left:0;top:8px;width:8px;height:8px;border-radius:999px;background:var(--accent)}

.footer{
  border-top:1px solid var(--line);
  padding:28px 0 40px;
  background:#f2f1eb;
}
.footer-inner{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;flex-wrap:wrap}
.footer-brand{max-width:360px}
.footer-brand p{margin:12px 0 0;color:var(--muted)}
.footer-links{display:grid;gap:6px;color:var(--muted)}
.footer-links a:hover{color:var(--accent-strong)}
.footer-contact{display:grid;gap:6px}
.footer-contact-label{margin:0;font-size:13px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted)}
.footer-contact a{display:inline-flex;align-items:center;gap:8px;color:var(--muted);font-weight:500}
.footer-contact a[href^="mailto:"]::before{content:"\2709";font-size:14px;line-height:1}
.footer-contact a[href^="tel:"]::before{content:"\260E";font-size:14px;line-height:1}
.footer-contact a:hover{color:var(--accent-strong)}

@media (max-width: 980px){
  .hero-content{grid-template-columns:1fr}
  .hero-copy h1{font-size:40px}
  .grid.cols-3{grid-template-columns:1fr 1fr}
  .split{grid-template-columns:1fr}
  .callout-inner{flex-direction:column;align-items:flex-start}
}

@media (max-width: 700px){
  .header-inner{flex-direction:column;align-items:flex-start}
  .nav{width:100%;justify-content:flex-start}
  .hero{padding:64px 0 40px}
  .hero-copy h1{font-size:34px}
  .grid.cols-3{grid-template-columns:1fr}
  .grid.cols-2{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .pill-row span{font-size:12px}
}

