:root {
  --bg: #eff6f2;
  --surface: #f9fdfb;
  --surface-soft: #eaf5ef;
  --text: #1b2520;
  --muted: #5a6e65;
  --border: #c8ddd3;
  --primary: #1f8a70;
  --primary-deep: #166a55;
  --primary-soft: #cdebe1;
  --dark: #201d28;
  --shadow: 0 10px 22px rgba(26, 82, 63, 0.09);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 20% 10%, #f4fbf7, transparent 34%),
    radial-gradient(circle at 80% 20%, #e6f4ed, transparent 36%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.25) 0px,
      rgba(255, 255, 255, 0.25) 1px,
      transparent 1px,
      transparent 4px
    ),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

h1,
h2,
h3,
.brand {
  font-family: "Newsreader", "Manrope", serif;
  letter-spacing: -0.02em;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 6.25rem 0;
}

.ambient {
  position: fixed;
  width: 34vw;
  min-width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(76px);
  opacity: 0.16;
  z-index: -1;
  pointer-events: none;
}

.ambient-a {
  top: -8vh;
  right: -10vw;
  background: #8fd4bf;
  animation: float 10s ease-in-out infinite;
}

.ambient-b {
  left: -10vw;
  top: 52vh;
  background: #66bfa0;
  animation: float 12s ease-in-out infinite reverse;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(75, 140, 117, 0.24);
  backdrop-filter: blur(10px);
  background: rgba(239, 246, 242, 0.88);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 118px;
  height: auto;
  object-fit: contain;
  display: block;
}

.menu {
  display: flex;
  gap: 1.45rem;
}

.menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.82;
  transition: opacity 0.2s ease;
}

.menu a:hover {
  opacity: 1;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(130deg, var(--primary), var(--primary-deep));
  color: #fff;
  box-shadow: 0 12px 24px rgba(31, 138, 112, 0.32);
}

.btn-secondary {
  border-color: #a7d5c5;
  background: #ecf8f3;
  color: #1d6652;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  gap: 1.6rem;
}

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

.hero-placeholder {
  min-height: 460px;
  max-height: 520px;
  padding: 0.35rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d7e7df;
  box-shadow: 0 16px 34px rgba(22, 74, 58, 0.2);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hero-placeholder:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 42px rgba(22, 74, 58, 0.28);
}

.hero-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 10px;
}

.kicker {
  margin: 0 0 0.95rem;
  color: #1f7c63;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  max-width: 18ch;
}

.hero-copy > p:not(.kicker) {
  margin: 1.2rem 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
  max-width: 620px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.stat {
  padding: 1.2rem 1.1rem;
}

.stat strong {
  display: block;
  font-size: 1.1rem;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.logo-strip {
  padding: 1.25rem 0;
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, #f5fbf8, #ecf7f2);
}

.logos {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logos span {
  color: #4e6960;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.section-head {
  max-width: 760px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.service-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.service {
  padding: 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.service:hover {
  transform: translateY(-4px);
}

.service h3 {
  margin: 0 0 0.4rem;
}

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

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.showcase-copy {
  padding: 1.8rem;
}

.showcase-copy h2 {
  margin: 0;
}

.showcase-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.showcase-copy ul {
  margin: 1.1rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.8;
}

.timeline {
  padding: 1.6rem;
  display: grid;
  gap: 0.8rem;
  background: linear-gradient(150deg, #e9f6ef, #d9eee4);
}

.timeline div {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border: 1px solid #b8ddcf;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.timeline span {
  width: 36px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #145745;
  background: #cdebe1;
}

.timeline p {
  margin: 0;
  font-weight: 700;
}

.metric-band {
  padding: 1.6rem;
  background: linear-gradient(120deg, #2f2a36, #25222d);
  border-color: #3f3a4c;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric-band article {
  padding: 0.9rem;
}

.metric-band strong {
  display: block;
  color: #fff;
  font-size: 1.65rem;
}

.metric-band p {
  margin: 0.35rem 0 0;
  color: #d8d4e4;
}

.contact {
  padding-bottom: 7rem;
}

.contact-card {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  background: linear-gradient(160deg, #f2faf6, #e5f3ec);
}

.contact-copy h2 {
  margin: 0;
}

.contact-copy p:last-child {
  color: var(--muted);
}

.contact-email-box {
  margin-top: 1.2rem;
  display: inline-block;
  text-decoration: none;
  border: 1px solid #a9d7c7;
  background: linear-gradient(150deg, #f3fbf7, #e7f5ef);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: #1f3f35;
  box-shadow: 0 8px 20px rgba(31, 138, 112, 0.12);
  animation: emailBoxFloat 3.2s ease-in-out infinite;
}

.contact-email-box span {
  display: block;
  font-size: 0.82rem;
  color: #3f7665;
}

.contact-email-box strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.05rem;
}

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

.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.4rem;
  border: 1px solid #bfdecf;
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
  font: inherit;
  background: #fffdfb;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(31, 138, 112, 0.26);
  border-color: #2f9d81;
}

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

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes emailBoxFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(31, 138, 112, 0.12);
  }
  50% {
    transform: translateY(-5px);
    box-shadow: 0 13px 24px rgba(31, 138, 112, 0.18);
  }
}

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

  .hero-placeholder {
    min-height: 300px;
    max-height: 340px;
  }

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

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

  .section {
    padding: 4.2rem 0;
  }

  .service-grid,
  .stats,
  .metric-band {
    grid-template-columns: 1fr;
  }

  .hero-placeholder {
    min-height: 220px;
    max-height: 260px;
  }
}
