:root{
  --green:#3f5f4c;
  --green-deep:#1f3328;
  --green-soft:#e7efe9;
  --ink:#222826;
  --muted:#6b746e;
  --line:rgba(63,95,76,.12);
  --cream:#f7f4ef;
  --soft:#f3f1ec;
  --muted-bg:#eceae5;
  --white:#ffffff;
  --shadow:0 16px 40px rgba(31,51,40,.08);
  --shadow2:0 8px 24px rgba(31,51,40,.06);
  --radius:14px;
  --max:1140px;
  --serif:"Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:"Manrope", "Segoe UI", sans-serif;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  scroll-padding-top:90px;
}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--white);
  overflow-x:hidden;
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
h1,h2,h3{
  font-family:var(--serif);
  font-weight:600;
  letter-spacing:-.02em;
  margin:0;
}
p{margin:0}

.container{
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
}

.eyebrow{
  margin:0 0 10px;
  color:var(--green);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:0 22px;
  border-radius:10px;
  font-family:var(--sans);
  font-size:14px;
  font-weight:700;
  border:1.5px solid transparent;
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px)}
.btn--primary{
  background:var(--green);
  color:#fff;
  box-shadow:0 12px 28px rgba(63,95,76,.24);
}
.btn--primary:hover{
  background:var(--green-deep);
}
.btn--outlineDark{
  background:transparent;
  color:var(--green);
  border-color:rgba(63,95,76,.28);
}
.btn--outlineDark:hover{
  background:var(--green-soft);
}

/* Header */
.siteHeader{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.siteHeader__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:82px;
}
.siteBrand{
  display:flex;
  align-items:center;
  min-width:0;
}
.siteBrand__logo{
  width:auto;
  height:52px;
  display:block;
  background:transparent;
}
.siteNav{
  display:flex;
  align-items:center;
  gap:28px;
}
.siteNav a{
  color:var(--ink);
  font-size:14px;
  font-weight:600;
  opacity:.82;
}
.siteNav a:hover{
  color:var(--green);
  opacity:1;
}

/* Hero — banner image kept as design match */
.hero{
  position:relative;
  background:var(--cream);
}
.hero__banner{
  width:100%;
  max-width:none;
  height:auto;
  display:block;
}
.hero__overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:7%;
  pointer-events:none;
}
.hero__overlay .container{
  pointer-events:none;
}
.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  max-width:42%;
  pointer-events:auto;
}
.hero__actions .btn--outlineDark{
  background:rgba(255,255,255,.72);
}

/* Sections */
.section{
  padding:92px 0;
  background:var(--white);
}
.section--soft{background:var(--soft)}
.section--muted{background:var(--muted-bg)}
.sectionHead{
  margin-bottom:42px;
}
.sectionHead--center{
  text-align:center;
  max-width:680px;
  margin-left:auto;
  margin-right:auto;
}
.sectionHead h2{
  font-size:clamp(34px, 4.2vw, 48px);
  line-height:1.12;
  color:var(--ink);
}
.sectionCta{
  display:flex;
  justify-content:center;
  margin-top:32px;
}

/* Services */
.serviceGrid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}
.serviceCard{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px 26px;
  box-shadow:var(--shadow2);
  transition:transform .25s ease, box-shadow .25s ease;
}
.serviceCard:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}
.serviceCard__icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  color:var(--green);
  margin-bottom:16px;
}
.serviceCard__icon svg{width:28px; height:28px}
.serviceCard h3{
  font-family:var(--sans);
  font-size:17px;
  font-weight:800;
  margin:0 0 10px;
}
.serviceCard p{
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
  font-weight:500;
}

/* Work carousel */
.workCarousel{position:relative}
.workCarousel__track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(300px, 1fr);
  gap:18px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:4px 2px 12px;
  scrollbar-width:none;
}
.workCarousel__track::-webkit-scrollbar{display:none}
.workSlide{
  margin:0;
  border-radius:16px;
  overflow:hidden;
  scroll-snap-align:start;
  background:#e5e1da;
  box-shadow:var(--shadow2);
}
.workSlide img{
  width:100%;
  height:280px;
  object-fit:cover;
  transition:transform .45s ease;
}
.workSlide:hover img{transform:scale(1.04)}
.workCarousel__next{
  position:absolute;
  top:50%;
  right:8px;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:var(--white);
  color:var(--green);
  font-size:20px;
  box-shadow:0 10px 28px rgba(31,51,40,.16);
  cursor:pointer;
  z-index:2;
}
.workCarousel__next:hover{background:var(--green-soft)}

/* Why */
.whyGrid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:48px;
  align-items:center;
}
.whyGrid__media{
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
  min-height:420px;
}
.whyGrid__media img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
}
.whyGrid__copy h2{
  font-size:clamp(34px, 4vw, 46px);
  line-height:1.12;
  margin-bottom:22px;
}
.whyList{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:14px;
}
.whyList li{
  position:relative;
  padding-left:32px;
  color:var(--ink);
  font-size:15px;
  font-weight:600;
  line-height:1.45;
}
.whyList li::before{
  content:"";
  position:absolute;
  left:0;
  top:1px;
  width:20px;
  height:20px;
  border-radius:50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233f5f4c' stroke-width='2.6'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E")
    center / 12px no-repeat,
    var(--green-soft);
}

/* Process timeline */
.process{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:18px;
  position:relative;
}
.process::before{
  content:"";
  position:absolute;
  top:28px;
  left:8%;
  right:8%;
  border-top:2px dotted rgba(63,95,76,.28);
  z-index:0;
}
.process li{
  position:relative;
  z-index:1;
  text-align:center;
  padding-top:4px;
}
.process__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  border-radius:50%;
  background:var(--white);
  border:1px solid var(--line);
  color:var(--green);
  box-shadow:var(--shadow2);
  margin-bottom:16px;
}
.process__icon svg{width:22px; height:22px}
.process strong{
  display:block;
  font-family:var(--sans);
  font-size:15px;
  font-weight:800;
  margin-bottom:8px;
}
.process p{
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
  font-weight:500;
  max-width:170px;
  margin:0 auto;
}

/* About */
.aboutBlock{
  max-width:760px;
  text-align:center;
  margin:0 auto;
}
.aboutBlock h2{
  font-size:clamp(32px, 4vw, 44px);
  margin-bottom:14px;
}
.aboutBlock > p:last-child{
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
  font-weight:500;
}

/* Contact */
.contactBand{
  padding:72px 0 96px;
  background:var(--white);
}
.contactBand__intro{
  display:grid;
  grid-template-columns:1.1fr 1.4fr;
  gap:28px;
  align-items:end;
  margin-bottom:28px;
}
.contactBand__copy h2{
  font-size:clamp(28px, 3vw, 40px);
  line-height:1.18;
  max-width:420px;
}
.contactBand__meta{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}
.contactBand__meta span{
  display:block;
  margin-bottom:6px;
  color:var(--green);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.contactBand__meta a,
.contactBand__meta p{
  color:var(--ink);
  font-size:14px;
  font-weight:700;
  line-height:1.45;
}
.contactBand__meta a:hover{color:var(--green)}

.jotform-wrap{
  width:100%;
  max-width:760px;
  margin:0 auto;
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px 12px 8px;
  overflow:hidden;
  box-shadow:var(--shadow2);
}
.jotform-wrap iframe{
  display:block;
  width:100%;
  min-height:720px;
  border:0;
  background:transparent;
}

/* Footer */
.siteFooter{
  background:var(--green-deep);
  color:rgba(255,255,255,.88);
  padding-top:56px;
}
.siteFooter__grid{
  display:grid;
  grid-template-columns:1.35fr 1fr 1fr 1fr;
  gap:28px;
  padding-bottom:42px;
}
.siteFooter__brand img{
  width:auto;
  height:48px;
  margin-bottom:14px;
}
.siteFooter__brand p{
  max-width:300px;
  color:rgba(255,255,255,.68);
  font-size:14px;
  line-height:1.7;
  font-weight:500;
}
.siteFooter h3{
  font-family:var(--sans);
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin:0 0 14px;
  color:#fff;
}
.siteFooter ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.siteFooter li,
.siteFooter a{
  color:rgba(255,255,255,.68);
  font-size:14px;
  font-weight:500;
}
.siteFooter a:hover{color:#fff}
.siteFooter__bar{
  border-top:1px solid rgba(255,255,255,.1);
}
.siteFooter__barInner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:16px 0;
}
.siteFooter__barInner p{
  margin:0;
  color:rgba(255,255,255,.5);
  font-size:13px;
  font-weight:500;
}

/* Responsive */
@media (max-width: 980px){
  .siteNav{display:none}
  .hero__overlay{position:static; padding:18px 0 24px; background:var(--cream)}
  .hero__actions{max-width:none}
  .serviceGrid{grid-template-columns:repeat(2, 1fr)}
  .whyGrid{grid-template-columns:1fr; gap:24px}
  .process{grid-template-columns:repeat(3, 1fr); gap:24px 12px}
  .process::before{display:none}
  .contactBand__intro{grid-template-columns:1fr}
  .contactBand__copy h2{max-width:none}
  .contactBand__meta{grid-template-columns:1fr}
  .jotform-wrap{padding:12px 6px 4px; border-radius:16px}
  .siteFooter__grid{grid-template-columns:1fr 1fr}
  .workCarousel__track{grid-auto-columns:minmax(280px, 70%)}
}

@media (max-width: 640px){
  .container{width:min(var(--max), calc(100% - 32px))}
  .siteHeader__inner{min-height:70px}
  .siteBrand__logo{height:44px}
  .hero__actions{flex-direction:column; align-items:stretch}
  .hero__actions .btn{width:100%}
  .section{padding:64px 0}
  .serviceGrid,
  .process,
  .siteFooter__grid{grid-template-columns:1fr}
  .workCarousel__track{grid-auto-columns:minmax(260px, 88%)}
  .workSlide img{height:230px}
  .whyGrid__media,
  .whyGrid__media img{min-height:280px}
  .siteFooter__barInner{flex-direction:column}
}

