* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0f0a;
  color: #e8ede8;
  min-height: 100vh;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  border-bottom: 0.5px solid #1e2e1e;
}

.nav-logo {
  font-size: 13px;
  color: #4a8a4a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 13px;
  color: #6a7a6a;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #4a8a4a;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 7rem 3rem 5rem;
  gap: 50rem;
}

.hero-left {
  max-width: 480px;
}

.hero-tag {
  font-size: 11px;
  color: #4a8a4a;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  color: #e8ede8;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: normal;
  color: #4a8a4a;
}

.hero-sub {
  font-size: 15px;
  color: #6a7a6a;
  line-height: 1.7;
  max-width: 480px;
}

.hero-right {
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PLANTE SVG */
.plant {
  width: 280px;
  height: 280px;
  overflow: visible;
}

.stem {
  stroke: #2d5a2d;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: grow-stem 2s ease-out forwards;
}

.branch {
  stroke: #2d5a2d;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
}

.b1 { animation: grow-stem 0.6s ease-out 1.2s forwards; }
.b2 { animation: grow-stem 0.6s ease-out 1.5s forwards; }
.b3 { animation: grow-stem 0.6s ease-out 1.8s forwards; }
.b4 { animation: grow-stem 0.6s ease-out 2.1s forwards; }

.leaf {
  fill: #2d5a2d;
  opacity: 0;
  transform-origin: center;
}

.l1 { animation: bloom 0.8s ease-out 1.6s forwards; }
.l2 { animation: bloom 0.8s ease-out 1.9s forwards; }
.l3 { animation: bloom 0.8s ease-out 2.2s forwards; }
.l4 { animation: bloom 0.8s ease-out 2.5s forwards; }
.l5 { animation: bloom 1s ease-out 2.8s forwards; fill: #3a7a3a; }

.circle-root {
  fill: none;
  stroke: #1e2e1e;
  stroke-width: 1;
  opacity: 0;
  animation: fadein 1s ease-out 0.2s forwards;
}

.dot {
  fill: #4a8a4a;
  opacity: 0;
  animation: fadein 0.5s ease-out 3s forwards;
}

.breathe {
  animation: breathe 4s ease-in-out 3.5s infinite;
  transform-origin: 140px 140px;
}

@keyframes grow-stem {
  to { stroke-dashoffset: 0; }
}

@keyframes bloom {
  0% { opacity: 0; transform: scale(0); }
  60% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0.85; transform: scale(1); }
}

@keyframes fadein {
  to { opacity: 1; }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* DIVIDER */
.divider {
  height: 0.5px;
  background: #1e2e1e;
  margin: 0 3rem;
}

/* SECTIONS */
.section {
  padding: 4rem 3rem;
}

.section-label {
  font-size: 11px;
  color: #4a8a4a;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

/* PROJETS */
.projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #1e2e1e;
  border: 0.5px solid #1e2e1e;
}

.project-card {
  background: #0a0f0a;
  padding: 2rem;
  transition: background 0.2s;
}

.project-card:hover {
  background: #0f160f;
}

.project-status {
  display: inline-block;
  font-size: 10px;
  color: #4a8a4a;
  border: 0.5px solid #2a4a2a;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
  background: #0f180f;
}

.project-name {
  font-size: 16px;
  font-weight: 500;
  color: #c8d8c8;
  margin-bottom: 0.5rem;
}

.project-desc {
  font-size: 13px;
  color: #4a5a4a;
  line-height: 1.6;
}

/* UNIVERS */
.univers {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tag {
  font-size: 12px;
  color: #4a7a4a;
  border: 0.5px solid #2a4a2a;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  background: #0f180f;
}

/* FOOTER */
.footer {
  padding: 3rem;
  border-top: 0.5px solid #1e2e1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  font-size: 12px;
  color: #3a4a3a;
}

.footer-contact {
  font-size: 13px;
  color: #4a8a4a;
  text-decoration: none;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    padding: 1.5rem;
  }

  .nav-links {
    gap: 1.2rem;
  }

  .hero {
    padding: 4rem 1.5rem 3rem;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-right {
    display: none;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .divider {
    margin: 0 1.5rem;
  }

  .projects {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}