:root {
  --charcoal-900: #1f2428;
  --charcoal-800: #2b3136;
  --graphite-700: #3a434b;
  --steel-500: #667480;
  --steel-300: #a2adb5;
  --mist-100: #f2f4f5;
  --offwhite-50: #fafaf8;
  --rust-500: #c3673b;
  --rust-600: #a9522b;
  --recycle-500: #4c8a63;
  --text-main: #202529;
  --text-soft: #5b666f;
  --white: #ffffff;

  --font-heading: "Barlow Condensed", sans-serif;
  --font-body: "Manrope", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --shadow-soft: 0 10px 30px rgba(22, 27, 31, 0.08);
  --shadow-deep: 0 18px 45px rgba(10, 15, 20, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: radial-gradient(circle at 80% -10%, #eef2f4 0%, #f7f8f9 45%, #f3f4f6 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section-light,
.section-muted,
.cta-band {
  padding: 4.8rem 0;
}

.section-light {
  background: transparent;
}

.section-muted {
  background: linear-gradient(145deg, #edf0f2 0%, #f7f8f9 55%, #eceff1 100%);
}

.section-dark {
  background:
    linear-gradient(130deg, rgba(23, 27, 30, 0.96) 0%, rgba(32, 39, 45, 0.93) 45%, rgba(61, 40, 30, 0.9) 100%),
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 2px,
      transparent 2px,
      transparent 18px
    );
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(23, 28, 33, 0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--white);
  background: linear-gradient(135deg, var(--rust-500), var(--rust-600));
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.brand-logo {
  width: 70px !important;
  height: 70px !important;
  max-width: 70px !important;
  max-height: 70px !important;
  min-width: 70px;
  min-height: 70px;
  flex: 0 0 70px;
  display: block;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 70px;
  display: inline-block;
  letter-spacing: 0.02em;
  color: var(--white);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: rgba(245, 246, 247, 0.9);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffd8c1;
}

.menu-toggle {
  border: 0;
  background: transparent;
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  padding: 5.4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
}

.page-hero.small {
  padding: 3.7rem 0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6rem;
  line-height: 1.15;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.15rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

h3 {
  font-size: clamp(1.28rem, 2.2vw, 1.5rem);
}

p {
  margin: 0 0 1rem;
  color: inherit;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.2rem 0.62rem;
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(120deg, rgba(195, 103, 59, 0.95), rgba(76, 138, 99, 0.9));
}

.section-light .eyebrow,
.section-muted .eyebrow {
  color: var(--charcoal-900);
  background: #dbe3e8;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.3rem;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-accent {
  color: var(--white);
  background: linear-gradient(120deg, var(--rust-500), var(--rust-600));
  box-shadow: 0 8px 20px rgba(169, 82, 43, 0.35);
}

.btn-accent:hover {
  box-shadow: 0 10px 24px rgba(169, 82, 43, 0.48);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.section-light .btn-outline,
.section-muted .btn-outline {
  color: var(--charcoal-900);
  border-color: #95a0a8;
  background: transparent;
}

.hero-panel,
.stat-panel {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.2rem;
  box-shadow: var(--shadow-deep);
}

.hero-panel ul,
.stat-panel ul {
  margin: 0;
  padding-left: 1.2rem;
}

.section-head {
  margin-bottom: 1.7rem;
}

.section-head p {
  margin-bottom: 0.55rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius-md);
  border: 1px solid #d7dde2;
  background: linear-gradient(160deg, var(--white) 0%, #f6f8f9 100%);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: #bbc5cc;
}

.card p,
.split-grid p {
  color: var(--text-soft);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list article {
  border-left: 4px solid #cad3d9;
  padding: 0.2rem 0 0.2rem 0.85rem;
}

.section-muted .stat-panel,
.section-light .stat-panel {
  background: linear-gradient(145deg, #242c32, #313a42);
  border: 1px solid #485360;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.section-muted .stat-panel p,
.section-light .stat-panel p,
.section-muted .stat-panel li,
.section-light .stat-panel li {
  color: rgba(239, 243, 246, 0.9);
}

.process-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: process;
}

.process-step {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid #d2d8dd;
  background: linear-gradient(165deg, var(--white), #f2f5f7);
  padding: 1.1rem 1rem 1rem;
  box-shadow: var(--shadow-soft);
}

.process-step::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  top: -11px;
  left: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  background: linear-gradient(120deg, var(--graphite-700), var(--charcoal-900));
  box-shadow: 0 4px 10px rgba(20, 27, 34, 0.35);
}

.process-step p {
  color: var(--text-soft);
}

.cta-band {
  background: linear-gradient(120deg, #1f252a 0%, #343d44 50%, #6e412f 100%);
  color: var(--white);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.map-placeholder {
  margin-top: 1rem;
  border: 1px dashed #9aa7b0;
  border-radius: var(--radius-md);
  padding: 1rem;
  background: linear-gradient(145deg, #f6f8f9 0%, #eceff1 100%);
}

.contact-form-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid #d7dee3;
  background: linear-gradient(160deg, var(--white), #f5f8f9);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem;
}

.contact-form {
  display: grid;
  gap: 0.56rem;
}

.contact-form label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #2f3940;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #c2ccd3;
  background: #fbfbfb;
  padding: 0.7rem 0.76rem;
  font: inherit;
  color: var(--text-main);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #5d7890;
  box-shadow: 0 0 0 3px rgba(93, 120, 144, 0.2);
}

.form-feedback {
  min-height: 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
}

.form-feedback.error {
  color: #a83232;
}

.form-feedback.success {
  color: #2f7450;
}

.site-footer {
  background: linear-gradient(160deg, #1e252a 0%, #2f383f 100%);
  color: rgba(238, 242, 245, 0.95);
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 1rem;
  padding-bottom: 1.3rem;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 0.65rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.site-footer a {
  color: rgba(241, 245, 248, 0.92);
}

.site-footer a:hover {
  color: #ffd8c1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1rem 0;
  text-align: center;
  color: rgba(227, 233, 238, 0.88);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .contact-layout,
  .card-grid.three,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.two,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #212930;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.22s ease;
  }

  .site-nav.open {
    transform: scaleY(1);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.65rem 4%;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
  }

  .menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 640px) {
  .section-light,
  .section-muted,
  .cta-band,
  .hero,
  .page-hero.small {
    padding: 3.2rem 0;
  }

  .card-grid.two,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1;
  }
}
