:root {
  --ink: #1f2a2e;
  --muted: #647076;
  --brand: #2f5d50;
  --brand-dark: #1e3f36;
  --accent: #c4823b;
  --accent-soft: #fff2e4;
  --surface: #ffffff;
  --surface-soft: #f6f3ee;
  --surface-alt: #eef4f1;
  --line: #dfe5e2;
  --shadow: 0 20px 45px rgba(31, 42, 46, 0.12);
  --radius: 20px;
  --radius-small: 12px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223, 229, 226, 0.72);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand strong {
  color: var(--brand);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 650;
}

.primary-nav a {
  padding: 10px 12px;
  border-radius: 999px;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--brand-dark);
  background: var(--surface-alt);
}

.primary-nav .nav-cta {
  margin-left: 6px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 24px rgba(47, 93, 80, 0.22);
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta.active {
  color: #fff;
  background: var(--brand-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(196, 130, 59, 0.15), transparent 34%),
    linear-gradient(140deg, #fbf8f2 0%, #eef4f1 100%);
  padding: 86px 0 58px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(47, 93, 80, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: var(--brand-dark);
  background: rgba(47, 93, 80, 0.1);
  border: 1px solid rgba(47, 93, 80, 0.15);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-copy p {
  margin-top: 22px;
  max-width: 680px;
  font-size: 1.12rem;
  color: var(--muted);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 16px 30px rgba(47, 93, 80, 0.25);
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid var(--line);
}

.button-secondary:hover {
  box-shadow: 0 14px 30px rgba(31, 42, 46, 0.08);
}

.button-light {
  color: var(--brand-dark);
  background: #fff;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.trust-item {
  padding: 15px;
  border: 1px solid rgba(47, 93, 80, 0.14);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.6);
}

.trust-item strong {
  display: block;
  color: var(--ink);
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  padding: 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  border-radius: 24px;
  background: var(--surface-soft);
}

.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  width: min(250px, 80%);
  padding: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--brand-dark);
  box-shadow: 0 16px 34px rgba(31, 63, 54, 0.24);
}

.hero-badge strong {
  display: block;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.hero-badge span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--surface-soft);
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 540px;
  color: var(--muted);
}

.centered {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

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

.kicker {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(31, 42, 46, 0.05);
}

.card h3 {
  margin: 16px 0 10px;
}

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

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  color: var(--brand-dark);
  background: var(--accent-soft);
  font-size: 1.4rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--brand);
  font-weight: 850;
}

.link-arrow::after {
  content: "→";
  transition: transform 150ms ease;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.split img {
  border-radius: 28px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
}

.process-grid {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  counter-increment: step;
  position: relative;
  padding: 28px 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.process-card::before {
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.process-card h3 {
  margin-bottom: 10px;
}

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

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(31, 42, 46, 0.05);
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-soft);
}

.project-body {
  padding: 22px;
}

.project-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  color: var(--brand-dark);
  background: var(--surface-alt);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

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

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.quote-card {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.quote-card blockquote {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.06rem;
}

.quote-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 750;
}

.cta-band {
  overflow: hidden;
  position: relative;
  padding: 58px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(196, 130, 59, 0.55), transparent 32%),
    linear-gradient(135deg, var(--brand-dark), var(--brand));
}

.cta-band p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .button-secondary {
  color: var(--brand-dark);
  background: #fff;
}

.page-hero {
  padding: 72px 0;
  background:
    radial-gradient(circle at top right, rgba(196, 130, 59, 0.16), transparent 35%),
    linear-gradient(140deg, #fbf8f2 0%, #eef4f1 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 42px;
  align-items: center;
}

.page-hero p {
  max-width: 660px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.breadcrumbs {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--brand);
  font-weight: 750;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.service-detail .card-icon {
  margin-top: 2px;
}

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

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.feature-strip li {
  padding: 20px;
  border-radius: var(--radius-small);
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 750;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 34px;
}

.filter-button {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.about-panel {
  padding: 36px;
  border-radius: 30px;
  background: var(--brand-dark);
  color: #fff;
}

.about-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.value-card span {
  color: var(--accent);
  font-weight: 900;
}

.value-card h3 {
  margin: 10px 0;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
}

.contact-card,
.form-card {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 26px rgba(31, 42, 46, 0.05);
}

.contact-methods {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.contact-methods a,
.contact-methods div {
  display: grid;
  gap: 2px;
  padding: 16px;
  border-radius: var(--radius-small);
  background: var(--surface-soft);
}

.contact-methods strong {
  color: var(--brand-dark);
}

.contact-methods span {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(196, 130, 59, 0.24);
  border-color: var(--accent);
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius-small);
  color: var(--brand-dark);
  background: var(--surface-alt);
  border: 1px solid rgba(47, 93, 80, 0.15);
}

.hidden {
  display: none !important;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 280px;
  margin-top: 24px;
  border-radius: var(--radius);
  color: var(--muted);
  background:
    linear-gradient(45deg, rgba(47, 93, 80, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(47, 93, 80, 0.08) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(47, 93, 80, 0.08) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(47, 93, 80, 0.08) 75%);
  background-size: 28px 28px;
  background-position: 0 0, 0 14px, 14px -14px, -14px 0px;
  border: 1px solid var(--line);
  text-align: center;
}

.site-footer {
  padding: 56px 0 30px;
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 36px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 850;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-grid ul {
  display: grid;
  gap: 8px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .project-grid,
  .testimonials,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero,
  .page-hero {
    padding: 52px 0 44px;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .trust-list,
  .card-grid,
  .project-grid,
  .testimonials,
  .values-grid,
  .service-list,
  .process-grid,
  .feature-strip,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .cta-band {
    padding: 34px 24px;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
