:root {
  --green: #3a9d44;
  --green-light: #4caf50;
  --green-deep: #1f5f28;
  --green-glow: rgba(58, 157, 68, 0.35);
  --black: #080808;
  --dark: #101210;
  --dark-elevated: #171917;
  --ink: #111111;
  --muted: #6b6b66;
  --paper: #f5f5f2;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(17, 17, 17, 0.08);
  --radius: 16px;
  --nav-height: 112px;
  --font: "Outfit", system-ui, sans-serif;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1160px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  height: 96px;
  width: auto;
}

.brand-logo--footer {
  height: 90px;
}

.section-head--brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-logo {
  width: min(100%, 360px);
  height: auto;
  margin-bottom: 1.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
}

.nav-cta {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--white) !important;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--green-light);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 3rem) 0 5rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(58, 157, 68, 0.18), transparent 35%),
    radial-gradient(circle at 10% 80%, rgba(58, 157, 68, 0.08), transparent 30%),
    linear-gradient(160deg, #0a0c0a 0%, #121512 55%, #0d100d 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 90%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  color: var(--green-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--green);
}

.hero h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.hero-lead {
  margin: 0 0 2.25rem;
  max-width: 54ch;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.68);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 40px var(--green-glow);
}

.btn-primary:hover {
  background: var(--green-light);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel-label {
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stats {
  display: grid;
  gap: 1rem;
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-row strong {
  font-size: 1rem;
  font-weight: 700;
}

.stat-row span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  text-align: right;
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-head {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-dark .section-label {
  color: var(--green-light);
}

.section-head h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.62);
}

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

.pillar {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line-dark);
}

.pillar-num {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.pillar h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.service-card {
  position: relative;
  padding: 2.25rem;
  border-radius: calc(var(--radius) + 2px);
  background: var(--dark-elevated);
  border: 1px solid var(--line);
  scroll-margin-top: calc(var(--nav-height) + 1rem);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(58, 157, 68, 0.35);
}

.service-card:hover::before {
  opacity: 1;
}

.service-tag {
  display: inline-flex;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(58, 157, 68, 0.12);
  color: var(--green-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
}

.service-card p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.62);
}

.service-list {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
}

.service-list li {
  margin-bottom: 0.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green-light);
  font-weight: 600;
  font-size: 0.92rem;
}

.service-link:hover {
  color: var(--white);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-wrap h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.contact-wrap p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-form-wrap {
  display: grid;
  gap: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  padding: 2rem;
  border-radius: calc(var(--radius) + 2px);
  background: var(--white);
  border: 1px solid var(--line-dark);
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(58, 157, 68, 0.55);
  box-shadow: 0 0 0 3px rgba(58, 157, 68, 0.12);
}

.form-row textarea {
  resize: vertical;
  min-height: 130px;
}

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-submit {
  width: 100%;
  border: none;
  cursor: pointer;
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin: 0;
  min-height: 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.form-status.success {
  color: var(--green-deep);
}

.form-status.error {
  color: #b42318;
}

.contact-meta {
  display: grid;
  gap: 1rem;
}

.contact-item {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line-dark);
}

.contact-item span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item strong {
  font-size: 1.02rem;
  color: var(--ink);
}

.contact-item a:hover {
  color: var(--green-deep);
}

.site-footer {
  padding: 2rem 0 2.5rem;
  background: var(--black);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
}

.footer-inner .brand-logo--footer {
  height: 90px;
  opacity: 0.95;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .pillars,
  .services-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--nav-height) 0 auto;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.75rem 0;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }
}
