@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --green: #2F5D50;
  --green-deep: #24483E;
  --sand: #E8DDCF;
  --graphite: #2B2B2B;
  --off-white: #F8F7F4;
  --copper: #B87333;
  --line: #d8d2c7;
  --text: #3a3a3a;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 14px 40px rgba(43, 43, 43, 0.08);
  --shadow-card: 0 8px 24px rgba(36, 72, 62, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(47, 93, 80, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 800;
  color: var(--graphite);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--green), var(--green-deep));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .82rem;
  font-weight: 700;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 600;
  font-size: .94rem;
}

.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: width .2s ease;
}
.nav-link:hover::after,
.nav-link[aria-current='page']::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.phone-link {
  font-weight: 700;
  color: var(--green-deep);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 46px;
  padding: .72rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
  border: 1px solid transparent;
}
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(184, 115, 51, .45);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 18px rgba(47, 93, 80, .25);
}
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn-outline {
  border-color: rgba(43, 43, 43, .28);
  color: var(--graphite);
  background: transparent;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: var(--graphite);
  border: 1px solid rgba(43, 43, 43, .12);
}

section { padding: clamp(3.5rem, 8vw, 6.6rem) 0; }
h1, h2, h3 {
  color: var(--graphite);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 .7rem;
}
h1 { font-size: clamp(2.1rem, 5.3vw, 3.45rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.45rem); }
h3 { font-size: clamp(1.2rem, 2.3vw, 1.62rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-deep);
  font-weight: 700;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--copper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.2rem, 4vw, 2.2rem);
  align-items: center;
}
.hero-panel {
  background: linear-gradient(140deg, rgba(232, 221, 207, .65), rgba(248, 247, 244, .8));
  padding: clamp(1rem, 3vw, 1.4rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(47, 93, 80, .15);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.hero-panel::after {
  content: '';
  position: absolute;
  inset: auto -28% -40% auto;
  width: 300px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(184, 115, 51, .2), rgba(184, 115, 51, 0));
}
.hero-metrics {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: rgba(248, 247, 244, .94);
  border: 1px solid rgba(47, 93, 80, .2);
  border-radius: 12px;
  padding: .78rem;
  box-shadow: var(--shadow-card);
  width: min(260px, calc(100% - 2rem));
}
.hero-metrics ul { margin: .35rem 0 0; padding-left: 1rem; font-size: .9rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .72rem;
  margin: 1.1rem 0 .9rem;
}
.segment-switch {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: .7rem;
}
.microcopy {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  font-size: .88rem;
  color: #5a5a5a;
}
.microcopy span::before { content: '✓ '; color: var(--copper); font-weight: 800; }

.section-muted { background: #f2eee7; }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(43, 43, 43, .08);
  padding: 1.1rem;
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(43,43,43,.12);
}
.bento .card:nth-child(1) { grid-column: span 5; }
.bento .card:nth-child(2) { grid-column: span 7; }
.bento .card:nth-child(3) { grid-column: span 7; }
.bento .card:nth-child(4) { grid-column: span 5; }
.card h3 { margin-bottom: .35rem; }
.stat {
  font-size: .88rem;
  margin-top: .65rem;
  color: var(--green-deep);
  font-weight: 700;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.offer-card {
  padding: 1.4rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(47, 93, 80, .14);
  box-shadow: var(--shadow-card);
}
.badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--green-deep);
  background: rgba(232, 221, 207, .8);
  padding: .28rem .55rem;
  border-radius: 999px;
}
.list-clean { padding-left: 1.05rem; }
.list-clean li { margin-bottom: .42rem; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 1.35rem;
}
.step {
  background: #fff;
  border: 1px solid rgba(43, 43, 43, .1);
  border-radius: 12px;
  padding: 1rem;
  position: relative;
}
.step-no {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .85rem;
  font-weight: 800;
  margin-bottom: .6rem;
}
.budget-note {
  margin-top: 1rem;
  border-left: 3px solid var(--copper);
  padding: .8rem 0 .8rem 1rem;
  background: rgba(232,221,207,.45);
  border-radius: 0 10px 10px 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.project-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(43,43,43,.1);
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(43,43,43,.14);
}
.project-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .25s ease;
}
.project-card:hover img { transform: scale(1.03); }
.project-body { padding: .95rem; }
.meta {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: #5e5e5e;
  margin-top: .5rem;
}

.case-study {
  background: #fff;
  border: 1px solid rgba(47,93,80,.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.2rem;
}
.case-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}
.case-col {
  background: rgba(248,247,244,.95);
  border: 1px solid rgba(43,43,43,.08);
  border-radius: 12px;
  padding: .9rem;
}
.case-col h3 { font-size: 1.12rem; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
}
.quote {
  background: #fff;
  border: 1px solid rgba(43,43,43,.1);
  border-radius: 14px;
  padding: 1rem;
}
.quote p { margin: 0 0 .7rem; }
.quote small { color: #656565; }

.faq-list { display: grid; gap: .6rem; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(43,43,43,.12);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: .95rem 1rem;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--green-deep);
}
.faq-item[open] summary::after { content: '–'; }
.faq-body { padding: 0 1rem 1rem; }

.contact-box {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(43,43,43,.1);
  box-shadow: var(--shadow-card);
  padding: 1.2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}
.form-grid .full { grid-column: 1 / -1; }
label { font-size: .88rem; font-weight: 700; display: block; margin-bottom: .26rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid #c9c5bd;
  border-radius: 10px;
  min-height: 44px;
  padding: .62rem .72rem;
  font: inherit;
  background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: .8rem; color: #646464; }

.footer {
  padding: 2rem 0 6.2rem;
  border-top: 1px solid rgba(43,43,43,.12);
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr;
  gap: 1rem;
  font-size: .92rem;
}
.footer h4 { margin: 0 0 .55rem; color: var(--graphite); }

.sticky-mobile-cta {
  position: fixed;
  left: .55rem;
  right: .55rem;
  bottom: .55rem;
  background: rgba(248,247,244,.96);
  border: 1px solid rgba(47,93,80,.26);
  box-shadow: var(--shadow-soft);
  border-radius: 14px;
  display: none;
  z-index: 120;
  padding: .45rem;
  gap: .45rem;
}
.sticky-mobile-cta .btn { flex: 1; min-height: 44px; }

.page-hero {
  padding-top: 3rem;
}
.page-hero .hero-panel { min-height: 320px; }
.breadcrumbs {
  font-size: .85rem;
  color: #666;
  margin-bottom: .7rem;
}
.breadcrumbs a { color: var(--green-deep); }

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1rem;
}
.chip {
  border: 1px solid rgba(43,43,43,.18);
  border-radius: 999px;
  padding: .42rem .8rem;
  font-size: .84rem;
  background: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}
.team-card {
  background: #fff;
  border: 1px solid rgba(43,43,43,.1);
  border-radius: 14px;
  padding: 1rem;
}

@media (max-width: 1020px) {
  nav.main-nav { display: none; }
  .hero-grid,
  .split-grid,
  .case-cols,
  .testimonials,
  .footer-grid,
  .team-grid,
  .project-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .bento .card { grid-column: span 6; }
}

@media (max-width: 720px) {
  .hero-grid,
  .split-grid,
  .testimonials,
  .footer-grid,
  .team-grid,
  .project-grid,
  .case-cols,
  .form-grid,
  .bento .card,
  .process-grid { grid-template-columns: 1fr; }
  .nav-right .phone-link { display: none; }
  .nav-right .btn-primary { padding-inline: .9rem; font-size: .86rem; }
  .sticky-mobile-cta { display: flex; }
  .hero-metrics { position: static; margin-top: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

