/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #143528;
  --green-mid:   #1e4d38;
  --orange:      #d94f1a;
  --orange-dim:  #a83d13;
  --cream:       #f5f1ec;
  --cream-dark:  #e8e2da;
  --white:       #ffffff;
  --text-dark:   #143528;
  --text-mid:    #3a6651;
  --text-light:  #6b9080;
  --text-muted:  #9ab5a7;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 241, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 53, 40, 0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-family: var(--font-body);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 6rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-mid);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: var(--cream);
}
.btn-primary:hover { background: var(--green-mid); }

.btn-ghost {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-ghost:hover { background: var(--green); color: var(--cream); }

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-visual {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.visual-stripe {
  position: absolute;
  left: 0; right: 0;
  height: 25%;
}
.s1 { top: 0;   background: rgba(245, 241, 236, 0.06); }
.s2 { top: 25%; background: rgba(245, 241, 236, 0.04); }
.s3 { top: 50%; background: rgba(245, 241, 236, 0.08); }
.s4 { top: 75%; background: rgba(245, 241, 236, 0.04); }
.s5 { display: none; }

.visual-icon {
  position: relative;
  z-index: 2;
  opacity: 0.85;
}

.visual-badge {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 2;
}
.badge-text {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1.5px solid rgba(245, 241, 236, 0.4);
  border-radius: 2px;
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

/* ===== SERVICES ===== */
.services {
  background: var(--green);
  padding: 7rem 0;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--font-body);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(245, 241, 236, 0.08);
}

.service-card {
  background: var(--green);
  padding: 2.5rem;
  transition: background 0.2s ease;
}
.service-card:hover { background: var(--green-mid); }
.service-card-wide { grid-column: 1; }

.service-icon { margin-bottom: 1.25rem; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PROCESS ===== */
.process {
  background: var(--cream);
  padding: 7rem 0;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.process .section-heading { color: var(--green); }

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.step { padding: 0; }

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
  opacity: 0.4;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.step p a { color: var(--orange); text-decoration: none; }
.step p a:hover { text-decoration: underline; }

.step-connector {
  height: 100px;
  width: 1px;
  background: var(--cream-dark);
  align-self: start;
  margin-top: 1.5rem;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  top: 48px;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

/* ===== WHY ===== */
.why {
  background: var(--cream-dark);
  padding: 7rem 0;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why .section-heading { color: var(--green); }

.why-body {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.why-points { display: flex; flex-direction: column; gap: 1rem; }

.why-point {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--green);
}

.point-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(217, 79, 26, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-badge {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 0 20px rgba(20, 53, 40, 0.08);
}
.why-badge::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1.5px solid rgba(20, 53, 40, 0.12);
}
.badge-inner { text-align: center; }
.badge-stat {
  display: block;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.04em;
}
.badge-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--green);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.closing-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.closing-contact { display: flex; flex-direction: column; gap: 0.5rem; }

.closing-phone a,
.closing-email a {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.closing-phone a:hover { color: var(--orange); }
.closing-email a { color: var(--text-muted); font-size: 1rem; }
.closing-email a:hover { color: var(--cream); }

/* ===== FOOTER ===== */
.footer {
  background: #0c2118;
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.footer p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-right p a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
}
.footer-right p a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(245, 241, 236, 0.08);
}
.footer-bottom p { font-size: 0.8125rem; color: var(--text-light); }

/* ===== PRICING ===== */
.pricing {
  background: var(--white);
  padding: 7rem 0;
  position: relative;
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pricing .section-heading {
  color: var(--green);
}

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

.pricing-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}
.pricing-card:hover {
  box-shadow: 0 4px 20px rgba(20, 53, 40, 0.1);
}

.pricing-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.pricing-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing-service {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.pricing-price span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0;
}

.pricing-desc {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.pricing-cta {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: var(--green);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease;
  align-self: flex-start;
}
.pricing-cta:hover {
  background: var(--green-mid);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 6rem 2rem 4rem;
    order: 1;
  }
  .hero-right {
    min-height: 45vh;
    order: 2;
  }
  .hero-visual { min-height: 45vh; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1px;
    background: none;
  }
  .service-card {
    background: var(--green);
    border: 1px solid rgba(245, 241, 236, 0.08);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .step-connector {
    width: 1px;
    height: 40px;
    margin: 0 auto;
  }
  .step-connector::after { display: none; }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-visual { order: -1; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-right { text-align: left; }
}

@media (max-width: 480px) {
  .hero-left { padding: 5rem 1.5rem 3rem; }
  .hero-cta { flex-direction: column; }
  .btn { text-align: center; }
  .services-inner, .process-inner, .why-inner, .closing-inner { padding: 0 1.5rem; }
  .section-heading { margin-bottom: 3rem; }
}
