:root {
  color-scheme: light;
  --ink: #0f1c17;
  --forest: #315538;
  --sage: #bad39d;
  --moss: #1f3b2c;
  --mist: #eef2ea;
  --sand: #f7f5f0;
  --sunset: #e3bda6;
  --card: #ffffff;
  --shadow: 0 30px 60px rgba(15, 28, 23, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1140px;
  --transition: 0.35s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "General Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.site-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  filter: blur(0px);
  opacity: 0.8;
}

.orb-one {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, #d7e7c6, transparent 70%);
  top: -200px;
  left: -120px;
}

.orb-two {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 70% 30%, #f4d1be, transparent 65%);
  bottom: -120px;
  right: -80px;
}

.orb-three {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 40% 60%, #c7d9cf, transparent 70%);
  top: 240px;
  right: 15%;
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(49, 85, 56, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(49, 85, 56, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.25;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(247, 245, 240, 0.8);
  border-bottom: 1px solid rgba(49, 85, 56, 0.08);
  z-index: 10;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.5px;
  color: var(--forest);
}

.logo span {
  color: var(--sage);
}

.brand-mark {
  font-weight: 600;
  color: var(--forest);
  text-transform: lowercase;
}

.brand-mark span {
  color: var(--sage);
}

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--forest);
  color: var(--forest);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), color var(--transition);
}

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

.button-primary {
  background: var(--forest);
  color: #fff;
}

.button-secondary {
  background: var(--sage);
  color: var(--moss);
}

.button-ghost {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
  padding-top: 40px;
}

.hero-content h1 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--moss);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: rgba(31, 59, 44, 0.7);
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  font-size: 13px;
  color: rgba(31, 59, 44, 0.7);
}

.hero-stats strong {
  display: block;
  font-size: 15px;
  color: var(--moss);
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(49, 85, 56, 0.08);
  box-shadow: var(--shadow);
  min-height: 420px;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.alt {
  background: rgba(255, 255, 255, 0.7);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(49, 85, 56, 0.08);
}

.section-heading h2 {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--moss);
  margin-bottom: 16px;
}

.section-heading p {
  max-width: 620px;
}

.image-band {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(49, 85, 56, 0.08);
  box-shadow: var(--shadow);
}

.image-band img {
  width: 100%;
  height: clamp(220px, 32vw, 360px);
  object-fit: cover;
  display: block;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.case-study {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(49, 85, 56, 0.08);
  box-shadow: 0 20px 40px rgba(15, 28, 23, 0.08);
}

.case-study span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: rgba(31, 59, 44, 0.6);
}

.case-study h3 {
  margin: 12px 0 8px;
}

.case-study strong {
  display: block;
  margin-top: 16px;
  font-size: 22px;
  color: var(--forest);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature,
.service,
.timeline-step,
.partner-card,
.contact-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(49, 85, 56, 0.08);
  box-shadow: 0 20px 40px rgba(15, 28, 23, 0.08);
}

.feature h3 {
  margin-bottom: 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-grid.detailed {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service h3 {
  margin-bottom: 12px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.package {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(49, 85, 56, 0.08);
  box-shadow: 0 20px 40px rgba(15, 28, 23, 0.08);
}

.package h3 {
  margin-bottom: 12px;
}

.package ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(31, 59, 44, 0.8);
}

.package ul li::before {
  content: "•";
  color: var(--sage);
  margin-right: 8px;
}

.service ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(31, 59, 44, 0.8);
}

.service ul li::before {
  content: "•";
  color: var(--sage);
  margin-right: 8px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.timeline-step span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(31, 59, 44, 0.6);
}

.timeline-step h3 {
  margin: 12px 0;
}

.partner-card {
  background: linear-gradient(135deg, #ffffff, #f1f4ec);
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--forest);
  color: #fff;
  padding: 42px;
  border-radius: var(--radius-lg);
}

.cta h2 {
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 12px;
}

.page-hero {
  padding-top: 40px;
  max-width: 720px;
}

.page-hero h1 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 16px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.approach-grid article {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid rgba(49, 85, 56, 0.08);
}

.expectations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.expectations div {
  padding: 24px;
  border-radius: var(--radius-md);
  background: #fefbf7;
  border: 1px solid rgba(49, 85, 56, 0.08);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.faq-item {
  background: #fefbf7;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(49, 85, 56, 0.08);
}

.faq-item h3 {
  margin-bottom: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(49, 85, 56, 0.08);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 500;
}

input,
textarea {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(49, 85, 56, 0.2);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(49, 85, 56, 0.15);
}

.contact-card h2 {
  margin-bottom: 16px;
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.image-card-content {
  padding: 24px;
}

.contact-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.contact-details {
  font-weight: 500;
  color: rgba(31, 59, 44, 0.8);
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  border-top: 1px solid rgba(49, 85, 56, 0.08);
}

.site-footer h4 {
  margin-bottom: 12px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(31, 59, 44, 0.8);
}

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

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

@media (max-width: 960px) {
  .nav {
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section.alt {
    padding: 32px;
  }

  .hero-image-card {
    min-height: 320px;
  }

  .feature,
  .service,
  .timeline-step,
  .partner-card,
  .contact-card,
  .case-study,
  .package,
  .faq-item {
    padding: 20px;
  }
}
