:root {
  --green-900: #062a20;
  --green-800: #0b3d2e;
  --green-700: #145c42;
  --green-600: #1a7a56;
  --gold: #d4a853;
  --gold-light: #f0d48a;
  --cream: #faf7f2;
  --white: #ffffff;
  --text: #1a1f1c;
  --text-muted: #5c6560;
  --border: rgba(11, 61, 46, 0.12);
  --shadow: 0 20px 50px rgba(6, 42, 32, 0.12);
  --radius: 16px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--green-700);
  text-decoration: none;
}

a:hover {
  color: var(--green-800);
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  letter-spacing: -0.02em;
}

.logo-mark.sm {
  width: 36px;
  height: 36px;
  font-size: 0.8rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-size: 1.05rem;
  color: var(--green-900);
}

.logo-text small {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}

.main-nav a:hover {
  color: var(--green-700);
}

.nav-cta {
  background: var(--green-800);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--green-700);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(212, 168, 83, 0.18), transparent),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(20, 92, 66, 0.1), transparent),
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-700);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  color: var(--green-900);
  margin: 0 0 1.25rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, color 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green-800);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-700);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--green-800);
  color: var(--green-800);
}

.btn-outline:hover {
  background: var(--green-800);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--green-800);
}

.btn-block {
  width: 100%;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-size: 1.5rem;
  color: var(--green-800);
  line-height: 1.2;
}

.hero-stats span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Product stack visual */
.product-stack {
  position: relative;
  height: 380px;
}

.stack-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 160px;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-900);
  text-align: center;
}

.stack-icon {
  font-size: 2.5rem;
}

.card-1 { top: 10%; left: 5%; transform: rotate(-6deg); }
.card-2 { top: 5%; right: 8%; transform: rotate(4deg); z-index: 2; }
.card-3 { bottom: 28%; left: 15%; transform: rotate(3deg); z-index: 3; }
.card-4 { bottom: 15%; right: 5%; transform: rotate(-3deg); z-index: 1; }

/* Trust bar */
.trust-bar {
  background: var(--green-900);
  color: var(--white);
  padding: 1.25rem 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.trust-inner > p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.9;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-tags span {
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  opacity: 0.85;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--white);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--green-900);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.section-head p {
  color: var(--text-muted);
  margin: 0;
}

.about-grid {
  max-width: 720px;
}

.about-grid p {
  color: var(--text-muted);
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.about-points li {
  padding-left: 1.5rem;
  position: relative;
  font-weight: 500;
}

.about-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 700;
}

/* Brand grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.brand-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.brand-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: color-mix(in srgb, var(--accent) 15%, white);
  border-radius: 14px;
  margin-bottom: 1rem;
}

.brand-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--green-900);
}

.brand-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-item {
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.section-alt .service-item {
  background: var(--cream);
}

.service-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.service-item h3 {
  margin: 0.5rem 0;
  color: var(--green-900);
}

.service-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Coverage */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.coverage-grid p {
  color: var(--text-muted);
}

.coverage-map {
  position: relative;
  height: 320px;
  background: linear-gradient(145deg, var(--green-800), var(--green-600));
  border-radius: var(--radius);
  overflow: hidden;
}

.coverage-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(212, 168, 83, 0.15) 0%, transparent 40%);
}

.map-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--green-900);
  font-weight: 800;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(212, 168, 83, 0.3);
  z-index: 2;
}

.map-pin {
  position: absolute;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.map-pin::before {
  content: "📍";
  margin-right: 0.25rem;
}

.pin-1 { top: 18%; left: 12%; }
.pin-2 { top: 22%; right: 10%; }
.pin-3 { bottom: 28%; left: 18%; }
.pin-4 { bottom: 20%; right: 15%; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-list strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin: 0 0 1.25rem;
  color: var(--green-900);
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--cream);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--green-600);
  outline-offset: 1px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0.75rem 0 0;
}

/* Footer */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand strong {
  display: block;
  color: var(--white);
}

.footer-brand p {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  opacity: 0.75;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.6;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile */
@media (max-width: 900px) {
  .hero-grid,
  .coverage-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .product-stack {
    height: 260px;
    max-width: 360px;
    margin: 0 auto;
  }

  .stack-card {
    width: 130px;
    padding: 1rem 0.75rem;
    font-size: 0.8rem;
  }

  .stack-icon {
    font-size: 2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}
