*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0e0f0a;
  --green: #1a2e1a;
  --lime: #c8d44e;
  --offwhite: #f0ede6;
  --muted: #6b7c5a;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--offwhite);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.8rem 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: difference;
  transition:
    background 0.4s,
    backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(14, 15, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-left {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
}

.nav-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  color: var(--offwhite);
  letter-spacing: 0.12em;
  text-decoration: none;
}

.nav-location {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--offwhite);
  opacity: 0.35;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--offwhite);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.nav-links a:hover {
  opacity: 1;
}

.hero {
  min-height: 86vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6vw 9rem;
  overflow: hidden;
  background: var(--black);
}

.hero-leaf {
  position: absolute;
  top: -10vh;
  right: -8vw;
  width: 65vw;
  max-width: 800px;
  opacity: 0.88;
  pointer-events: none;
}

.hero-leaf path {
  fill: var(--green);
}

.hero .eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 14vw, 14rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--offwhite);
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.hero h1 span {
  color: var(--lime);
  display: block;
}

.hero .description {
  margin-top: 2.5rem;
  max-width: 420px;
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(240, 237, 230, 0.4);
  position: relative;
  z-index: 1;
}

.hero .cta {
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--lime);
  padding: 1rem 2rem;
  position: relative;
  z-index: 1;
  align-self: flex-start;
  transition:
    background 0.3s,
    color 0.3s;
}

.hero .cta:hover {
  background: var(--offwhite);
}

.hero .scroll {
  position: absolute;
  right: 6vw;
  bottom: 6rem;
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero .scroll::before {
  content: "";
  display: block;
  width: 1px;
  height: 4rem;
  background: var(--muted);
}

.wave-down {
  display: block;
  width: 100%;
  margin-bottom: -2px;
}

.about {
  background: var(--green);
  position: relative;
  padding: 8rem 6vw;
  overflow: hidden;
}

.about .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about .label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.about .label::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--lime);
}

.about h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--offwhite);
  margin-bottom: 2rem;
}

.about .body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(240, 237, 230, 0.9);
  max-width: 360px;
}

.about .right {
  position: relative;
  display: flex;
  justify-content: center;
}

.about .right .leaf {
  width: 100%;
  max-width: 480px;
  opacity: 0.25;
  position: absolute;
  right: -8vw;
  top: 50%;
  transform: translateY(-50%);
}

.about .right .stats {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  color: var(--lime);
  line-height: 1;
}

.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--offwhite);
  margin-top: 0.3rem;
}

.wave-up {
  display: block;
  width: 100%;
  margin-top: -2px;
}

.plants {
  background: var(--black);
  padding: 6vw 8rem;
  position: relative;
  overflow: hidden;
}

.plants .header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.plants .header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--offwhite);
}

.plants .header h2 em {
  font-family: "Cormorant", serif;
  font-style: italic;
  color: var(--lime);
}

.view-all {
  text-decoration: none;
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  border-bottom: 1px solid var(--muted);
  padding-bottom: 2px;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 1rem;
  transition:
    color 0.3s,
    border-color 0.3s;
}

.view-all:hover {
  color: var(--lime);
  border-color: var(--lime);
}

.plants .leaf {
  position: absolute;
  right: -6vw;
  top: 10%;
  max-width: 400px;
  transform: rotate(-20deg);
  opacity: 0.2;
}

.plants .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  max-width: 1200px;
  margin: 0 auto;
}

.plant-card {
  position: relative;
  overflow: hidden;
  background: var(--green);
  cursor: pointer;
}

.plant-card:first-child {
  grid-row: 1 / 3;
}

.plant-card .img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.8);
  transition:
    transform 0.6s,
    filter 0.5s;
}

.plant-card:hover .img {
  transform: scale(1.05);
  filter: saturate(0.9) brightness(0.95);
}

.plant-card:first-child .img {
  min-height: 600px;
}

.plant-card .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
}

.plant-card .info .name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: var(--offwhite);
  letter-spacing: 0.04em;
}

.plant-card .info .meta {
  font-size: 0.6rem;
  color: var(--lime);
  margin-top: 0.3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.visit {
  background: var(--lime);
  position: relative;
  padding: 10rem 6vw 8rem;
  overflow: hidden;
}

.visit-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: end;
}

.visit h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.88;
  color: var(--black);
}

.visit-details {
  padding-bottom: 1rem;
}

.visit-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(14, 15, 10, 0.12);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.visit-detail-row:first-child {
  border-top: 1px solid rgba(14, 15, 10, 0.12);
}

.visit-detail-label {
  color: rgba(14, 15, 10, 0.45);
  text-transform: uppercase;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
}

.visit-detail-value {
  color: var(--black);
}

.visit-leaf {
  position: absolute;
  bottom: -10vh;
  left: -5vw;
  width: 40vw;
  max-width: 500px;
  opacity: 0.12;
  pointer-events: none;
  transform: rotate(30deg);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}
.reveal-delay-2 {
  transition-delay: 0.3s;
}
.reveal-delay-3 {
  transition-delay: 0.45s;
}

@media (max-width: 768px) {
  .nav-location {
    display: none;
  }
  .nav-links {
    gap: 1.4rem;
  }

  .hero {
    padding: 0 6vw 6rem;
    min-height: 86vh;
  }

  .hero h1 {
    font-size: clamp(8rem, 18vw, 10rem);
  }

  .hero-leaf {
    width: 90vw;
    top: -5vh;
    right: -15vw;
    opacity: 0.5;
  }

  .hero .description {
    max-width: 100%;
  }

  .hero .scroll {
    display: none;
  }

  .about {
    padding: 5rem 6vw;
  }

  .about .inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about .right .leaf {
    position: absolute;
    bottom: -4rem;
    right: -6rem;
    width: 180px;
    max-width: none;
    top: auto;
    transform: rotate(-30deg);
    opacity: 0.15;
  }

  .about .right .stats {
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .plants {
    padding: 5rem 6vw;
  }

  .plants .leaf {
    display: none;
  }

  .plants .header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .plants .grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .plant-card:first-child {
    grid-row: auto;
  }

  .plant-card .img,
  .plant-card:first-child .img {
    min-height: 260px;
  }

  .visit {
    padding: 6rem 6vw 5rem;
  }

  .visit-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .visit-leaf {
    display: none;
  }
}
