:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-alt: #f0ede6;
  --text: #1c241d;
  --muted: #5f6a60;
  --line: #d9d4ca;
  --primary: #2f5d3a;
  --primary-dark: #24492d;
  --accent: #c59b5d;
  --shadow: 0 20px 60px rgba(20, 30, 22, 0.08);
  --radius: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.center {
  text-align: center;
}

.eyebrow {
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.82);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
}

.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.95rem;
}

.topbar-inner {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(28, 36, 29, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(20, 30, 22, 0.06);
  padding-top: 0;
}

.nav-inner {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 0 24px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.logo-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.logo-subtext {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text);
}

.nav-links a:not(.btn) {
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 0.5rem;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.5rem;
  padding: 0.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}

.btn-sm {
  min-height: 44px;
  padding: 0 1rem;
}

.btn-block {
  width: 100%;
}

.text-link {
  font-weight: 700;
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(16, 22, 17, 0.28), rgba(16, 22, 17, 0.4)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at top left, rgba(197, 155, 93, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(10, 18, 12, 0.58), rgba(10, 18, 12, 0.2));
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 420px;
  gap: 3rem;
  align-items: center;
  padding: 92px 32px;
}

.hero-content h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 28px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.2rem;
}

.quote-card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--text);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(20, 30, 22, 0.14);
}

.quote-card h2 {
  margin-bottom: 0.5rem;
}

.quote-card p {
  margin-bottom: 1.2rem;
  color: var(--muted);
}

.quote-card form {
  display: grid;
  gap: 1rem;
}

.quote-card label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  background: #fff;
  font: inherit;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(47, 93, 58, 0.15);
  border-color: var(--primary);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

.split p {
  color: var(--muted);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 150px;
  gap: 1rem;
}

.img-card {
  border-radius: 18px;
  background:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.08)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=900&q=80")
    center/cover no-repeat;
  box-shadow: var(--shadow);
}

.img-card.tall {
  grid-row: span 2;
}

.img-card.wide {
  grid-column: span 2;
}

.stats {
  background: var(--surface-alt);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.stat-card {
  background: var(--surface);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card h3 {
  margin-bottom: 0.4rem;
  color: var(--primary);
  font-size: 3rem;
  line-height: 1;
}

.stat-title {
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.stat-card p:last-child {
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-image {
  height: 220px;
  background:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.08)),
    url("https://images.unsplash.com/photo-1592417817098-8fd3d9eb14a5?auto=format&fit=crop&w=900&q=80")
    center/cover no-repeat;
}

.service-card h3,
.service-card p {
  padding-left: 24px;
  padding-right: 24px;
}

.service-card h3 {
  margin-top: 22px;
  margin-bottom: 10px;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--muted);
}

.feature-band {
  padding: 42px 0;
  background: var(--primary-dark);
  color: #fff;
}

.feature-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.feature-band h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.25rem;
}

.project-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-large {
  grid-row: span 2;
}

.project-image {
  min-height: 260px;
  background:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.08)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1000&q=80")
    center/cover no-repeat;
}

.project-large .project-image {
  min-height: 430px;
}

.project-copy {
  padding: 24px;
}

.project-copy p {
  color: var(--muted);
  margin-bottom: 0;
}

.reviews {
  background: var(--surface-alt);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stars {
  margin-bottom: 1rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.review-card p {
  color: var(--muted);
}

.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 42px;
  background: var(--surface);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.cta-box p {
  margin-bottom: 0;
  color: var(--muted);
  max-width: 640px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer {
  padding-top: 72px;
  background: #1a211b;
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 32px;
}

.footer-grid h3,
.footer-grid h4 {
  color: #fff;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li + li {
  margin-top: 0.75rem;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .hero-grid,
  .split,
  .stats-grid,
  .services-grid,
  .project-grid,
  .review-grid,
  .footer-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .feature-band-inner,
  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-large {
    grid-row: auto;
  }

  .project-large .project-image {
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    margin: 0;
    border-radius: 0;
  }

  .hero-grid {
    padding: 72px 24px;
    gap: 2rem;
  }

  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
  }

  .section {
    padding: 74px 0;
  }

  .quote-card {
    padding: 22px;
  }

  .site-nav {
    padding-top: 0;
  }

  .nav-inner {
    min-height: 72px;
    padding: 0 18px;
    border-radius: 0;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .logo-subtext {
    font-size: 0.74rem;
  }
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero {
    margin: 0;
    border-radius: 0;
  }

  .hero-grid {
    padding: 64px 20px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn,
  .btn-secondary {
    width: 100%;
  }

  .image-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }

  .img-card.tall,
  .img-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .cta-box {
    padding: 28px;
  }
}