:root{
  --blue:#0a4b95;
  --blue-dark:#083a74;
  --green:#b7d85c;
  --green-dark:#9fc64c;
  --bg:#ffffff;
  --muted:#f2f2f2;
  --text:#1b1b1b;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --max: 1080px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

a{color:inherit}
img{max-width:100%;display:block}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}

.site-header{
  border-bottom:1px solid #e6e6e6;
  background:#fff;
}
.header-inner{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap:14px;
  align-items:center;
  justify-content: center;
  padding:18px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand-title{
  font-size:44px;
  letter-spacing:.5px;
  margin:0;
  color:var(--blue);
  text-shadow: 0 2px 0 rgba(0,0,0,.08);
  line-height:1.05;
}
.brand-subtitle{
  margin:6px 0 0;
  color:#555;
  font-size:14px;
}

.nav{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:10px;
}
.nav a{
  text-decoration:none;
  padding:10px 22px;
  border:1px solid var(--green-dark);
  background:var(--green);
  color:#fff;
  border-radius:2px;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
  transition: transform .08s ease, filter .08s ease;
  font-weight:500;
}
.nav a:hover{transform: translateY(-1px); filter:brightness(0.98)}
.nav a[aria-current="page"]{
  background:#fff;
  color:var(--green-dark);
}

.hero{
  border-top:1px solid #e6e6e6;
}
.hero img{
  width:100%;
  height:auto;
  max-height:520px;
  object-fit:cover;
}

.section{
  padding:54px 0;
}
.section-title{
  margin:0;
  font-size:44px;
  text-align:center;
  letter-spacing:.2px;
}
.section-kicker{
  text-align:center;
  margin:10px auto 0;
  max-width:70ch;
  color:#555;
}
.divider{
  width:52px;
  height:3px;
  background:#111;
  margin:16px auto 0;
  border-radius:99px;
  opacity:.85;
}

.card{
  background:#fff;
  border:1px solid #ececec;
  border-radius:12px;
  padding:22px;
  box-shadow: var(--shadow);
}

.muted-band{
  background:var(--muted);
  border-top:1px solid #e6e6e6;
  border-bottom:1px solid #e6e6e6;
}

.two-col{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:start;
}
@media (max-width: 860px){
  .two-col{grid-template-columns:1fr}
  .brand-title{font-size:34px}
  .header-inner{grid-template-columns:90px 1fr}
}

.icon-row{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
  margin-top:28px;
}
@media (max-width: 860px){
  .icon-row{grid-template-columns: repeat(2, 1fr)}
}
.icon-card{
  text-align:center;
  padding:18px 12px;
}
.icon-circle{
  width:88px;height:88px;
  background:var(--green);
  border-radius:999px;
  margin:0 auto 10px;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:700;
  font-size:28px;
}
.icon-card p{margin:0;color:#444;font-size:14px;line-height:1.35}

.photo-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:0;
  margin-top:26px;
}
.photo-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
}
@media (max-width: 860px){
  .photo-grid{grid-template-columns: repeat(2, 1fr)}
  .photo-grid img{height:180px}
}

.quote-band{
  background:var(--green);
  color:#fff;
  padding:44px 0;
}
.quote-wrap{
  max-width:880px;
  margin:0 auto;
  padding:0 20px;
  position:relative;
}
.quote{
  font-size:18px;
  text-align:center;
  white-space:pre-line;
}
.quote cite{
  display:block;
  margin-top:14px;
  font-style:italic;
  opacity:.95;
}
.quote-nav{
  position:absolute;
  inset:0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  pointer-events:none;
}
.quote-nav button{
  pointer-events:auto;
  width:44px;height:44px;
  border:1px solid rgba(255,255,255,.5);
  background:transparent;
  color:#fff;
  border-radius:999px;
  font-size:20px;
  cursor:pointer;
}
.dots{
  display:flex;gap:8px;justify-content:center;margin-top:16px
}
.dots button{
  width:10px;height:10px;border-radius:999px;border:1px solid rgba(255,255,255,.75);
  background:transparent;cursor:pointer;opacity:.9
}
.dots button[aria-current="true"]{background:#fff}

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:24px;
  margin-top:24px;
}
@media (max-width: 980px){
  .team-grid{grid-template-columns:1fr}
}
.team-card img{
  border-radius:10px;
  aspect-ratio: 1 / 1;
  object-fit:cover;
  border:1px solid #e9e9e9;
}
.team-name{
  margin:14px 0 6px;
  font-size:18px;
  font-weight:700;
}
.team-bio{
  margin:0;
  color:#444;
  font-size:14px;
  line-height:1.5;
}

.contact-slab{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:0;
  border-top:1px solid #e6e6e6;
}
@media (max-width: 860px){
  .contact-slab{grid-template-columns:1fr}
}
.contact-left{
  background:var(--blue);
  color:#fff;
  padding:34px 22px;
  text-align:center;
}
.contact-left h3{
  margin:0;
  letter-spacing:6px;
  font-size:26px;
}
.contact-left .small{
  margin-top:14px;
  font-size:13px;
  opacity:.95;
}
.contact-right{
  background:#fff;
  padding:34px 22px;
}
.contact-right h3{
  margin:0;
  color:var(--green-dark);
  letter-spacing:6px;
  text-align:center;
  font-size:26px;
}
.form{
  margin-top:18px;
  display:grid;
  gap:10px;
  max-width:520px;
  margin-left:auto;
  margin-right:auto;
}
.form .row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
@media (max-width: 500px){
  .form .row{grid-template-columns:1fr}
}
input, textarea{
  width:100%;
  padding:10px 12px;
  border:1px solid #cfcfcf;
  border-radius:6px;
  font:inherit;
}
textarea{min-height:120px;resize:vertical}
.btn{
  border:none;
  background:var(--blue-dark);
  color:#fff;
  padding:10px 16px;
  border-radius:6px;
  cursor:pointer;
  justify-self:end;
}
.btn:hover{filter:brightness(1.06)}

.footer{
  padding:22px 0;
  border-top:1px solid #e6e6e6;
  color:#666;
  font-size:13px;
}
.services-image-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.services-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer {
  background: #0b4f6c;
  padding: 40px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;   /* horizontal centering */
  text-align: center;    /* text centering */
  gap: 12px;
}
.services-intro { margin-top: 25px; }
.section-title-left { text-align: left; }
.services-list { margin: 0; padding-left: 36px; }
.services-process { margin-top: 18px; align-items: start; }

.services-image {
  width: 100%;
  height: auto;
  display: block;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* uniform squares; change to 4/3 or 3/2 if you prefer */
  height: auto;          /* aspect-ratio controls height */
  object-fit: cover;     /* fill tile by cropping, not stretching */
  display: block;
}
