:root {
  --black: #050706;
  --deep-green: #0c2118;
  --lime: #baff00;
  --cream: #f2f4e6;
  --line: rgba(232, 255, 228, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}

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

.site-header {
  min-height: 88px;
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--black);
}

.brand img {
  display: block;
  width: 130px;
  height: auto;
}

.navigation {
  display: flex;
  gap: 24px;
}

.navigation a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navigation a:hover {
  color: var(--lime);
}

@media (max-width: 600px) {
  .site-header {
    min-height: auto;
    flex-direction: column;
  }

  .navigation {
    gap: 16px;
  }
}
.hero {
  min-height: calc(100vh - 88px);
  padding: 72px 8%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
  background:
    linear-gradient(135deg, rgba(5, 7, 6, 0.9), rgba(5, 7, 6, 0.45)),
    url("assets/images/584.png") center / cover;
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--lime);
}

.hero-text {
  max-width: 540px;
  margin: 26px 0 32px;
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-block;
  padding: 15px 18px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.button:hover {
  transform: translate(-3px, -3px);
}

.button-primary {
  background: var(--lime);
  color: var(--black);
}

.button-primary:hover {
  box-shadow: 5px 5px 0 #f15f83;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(5, 7, 6, 0.35);
}

.button-secondary:hover {
  box-shadow: 5px 5px 0 #236141;
}

.hero-art {
  width: min(100%, 390px);
  justify-self: end;
  padding: 14px;
  background: var(--lime);
  color: var(--black);
  box-shadow: 12px 12px 0 #143d2d;
  transform: rotate(3deg);
}

.hero-art img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  image-rendering: pixelated;
}

.hero-art p {
  margin: 10px 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding: 70px 8% 48px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-art {
    width: min(78vw, 330px);
    justify-self: center;
  }

  .hero-text {
    font-size: 17px;
  }
}
.about {
  padding: 110px 8%;
  background: var(--cream);
  color: var(--black);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 72px;
}

.section-label {
  margin: 0 0 16px;
  color: #3c775a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.section-intro {
  max-width: 500px;
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
}

.stats {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #9aac9f;
}

.stat {
  padding: 20px 16px 0;
  border-right: 1px solid #9aac9f;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.07em;
}

.stat span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .about {
    padding: 76px 8%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro {
    font-size: 17px;
  }

  .stats {
    margin-top: 45px;
  }

  .stat {
    padding: 16px 8px 0;
  }

  .stat strong {
    font-size: 27px;
  }

  .stat span {
    font-size: 9px;
  }
}
.drops {
  padding: 110px 8%;
  background: var(--deep-green);
}

.drops-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

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

.drops-heading h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.drops-heading > p {
  max-width: 350px;
  margin: 0;
  color: var(--mist);
  line-height: 1.55;
}

.drop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.drop-card {
  position: relative;
  min-height: 460px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.drop-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3, 8, 5, 0.94),
    rgba(3, 8, 5, 0.08)
  );
}

.drop-card > * {
  position: relative;
}

.drop-one {
  background-image: url("assets/images/drop1-01.jpg");
}

.drop-two {
  background-image: url("assets/images/575.png");
}

.drop-status {
  margin: 0;
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drop-card h3 {
  max-width: 500px;
  margin: 12px 0;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.drop-card p:not(.drop-status) {
  max-width: 390px;
  margin: 0 0 20px;
  line-height: 1.55;
}

.drop-card a {
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
}

.drop-card a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .drops {
    padding: 76px 8%;
  }

  .drops-heading {
    display: block;
  }

  .drops-heading > p {
    margin-top: 24px;
  }

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

  .drop-card {
    min-height: 390px;
    padding: 24px;
  }
}
.drop-one-gallery {
  padding: 110px 8%;
  background: var(--black);
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.gallery-heading h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.gallery-heading > p {
  max-width: 330px;
  margin: 0;
  color: var(--mist);
  line-height: 1.55;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  image-rendering: pixelated;
  transition: transform 0.25s;
}

.gallery-grid img:hover {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .drop-one-gallery {
    padding: 76px 8%;
  }

  .gallery-heading {
    display: block;
  }

  .gallery-heading > p {
    margin-top: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.community {
  position: relative;
  overflow: hidden;
  padding: 120px 8%;
  text-align: center;
  background:
    radial-gradient(circle at 50% 100%, #456e2a, transparent 42%),
    #112c20;
}

.community::before {
  content: "✦  ✦  ✦";
  position: absolute;
  top: 10px;
  left: 50%;
  color: rgba(186, 255, 0, 0.16);
  font-size: 100px;
  letter-spacing: 70px;
  white-space: nowrap;
  transform: translateX(-50%);
}

.community > * {
  position: relative;
}

.community h2 {
  max-width: 760px;
  margin: 16px auto 22px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.community > p:not(.section-label) {
  max-width: 540px;
  margin: 0 auto 30px;
  color: var(--mist);
  font-size: 19px;
  line-height: 1.55;
}

.community-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 760px) {
  .community {
    padding: 82px 8%;
  }

  .community::before {
    font-size: 70px;
    letter-spacing: 38px;
  }

  .community > p:not(.section-label) {
    font-size: 17px;
  }
}
.site-footer {
  padding: 26px 8%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #7aa492;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--lime);
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .site-header {
    min-height: 80px;
    flex-direction: row;
    position: relative;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--cream);
  }

  .site-header .navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 14px 8% 22px;
    flex-direction: column;
    gap: 18px;
    border-top: 1px solid var(--line);
    background: var(--black);
  }

  .site-header .navigation.is-open {
    display: flex;
  }
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--cream);
}

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