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

html {
  scroll-behavior: smooth;
}

body {
  background: #eef0ec;
  color: #101510;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

img,
video {
  max-width: 100%;
  display: block;
}

/* HEADER */

.gallery-header {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1180px;
  z-index: 50;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(6, 46, 29, 0.12);
}

.brand img {
  height: 42px;
  width: auto;
}

.gallery-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.gallery-header nav a {
  text-decoration: none;
  color: #101510;
  font-size: 14px;
  font-weight: 800;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 170px 7% 90px;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("./images/hero.jpg") center/cover no-repeat;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 24, 15, 0.9), rgba(3, 24, 15, 0.55), rgba(3, 24, 15, 0.18)),
    linear-gradient(180deg, rgba(3, 24, 15, 0.15), rgba(3, 24, 15, 0.8));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow,
.section-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #5d7f25;
}

.eyebrow {
  color: #c9f13a;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(3.3rem, 7.6vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

.hero-content > p {
  max-width: 620px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 26px;
}

.hero-note {
  max-width: 430px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c9f13a;
  color: #101510;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
}

/* INTRO */

.intro {
  padding: 90px 7% 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.intro h2,
.gallery-heading h2,
.process-copy h2,
.future-section h2,
.contact-cta h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-top: 12px;
}

.intro > p,
.gallery-heading > p,
.future-section p,
.contact-cta p {
  color: rgba(16, 21, 16, 0.68);
  max-width: 520px;
}

/* CATEGORY CARDS */

.category-grid {
  padding: 30px 7% 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 360px;
  background: #062e1d;
  box-shadow: 0 22px 60px rgba(6, 46, 29, 0.12);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: 0.6s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.category-card div {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #fff;
}

.category-card span,
.caption span {
  color: #c9f13a;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.category-card h3 {
  font-size: 1.35rem;
  line-height: 1.05;
  margin-top: 8px;
}

.category-card:hover img {
  transform: scale(1.08);
}

/* PROCESS */

.process-section {
  background: #062e1d;
  color: #fff;
  padding: 90px 7%;
  display: grid;
  grid-template-columns: 0.85fr 1.5fr;
  gap: 60px;
}

.section-tag.light {
  color: #c9f13a;
}

.process-copy p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 20px;
}

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

.process-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
  border-radius: 24px;
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-card span {
  color: #c9f13a;
  font-weight: 900;
}

.process-card h3 {
  margin: 18px 0 10px;
  font-size: 1.2rem;
}

.process-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

/* GALLERY */

.gallery-section {
  padding: 90px 7%;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-bottom: 40px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #062e1d;
  box-shadow: 0 20px 50px rgba(6, 46, 29, 0.12);
}

.media-card.large {
  grid-column: span 3;
  grid-row: span 2;
}

.media-card.wide {
  grid-column: span 3;
  grid-row: span 2;
}

.media-card:not(.large):not(.wide) {
  grid-column: span 2;
  grid-row: span 2;
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.55s ease;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72));
}

.caption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #fff;
}

.caption p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.media-card:hover img,
.media-card:hover video {
  transform: scale(1.07);
}

.play-btn {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #c9f13a;
  color: #101510;
  font-weight: 900;
  cursor: pointer;
}

/* FUTURE */

.future-section {
  margin: 0 7% 80px;
  padding: 70px;
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(6, 46, 29, 0.94), rgba(6, 46, 29, 0.74)),
    url("./images/delivery.jpg") center/cover no-repeat;
  color: #fff;
}

.future-section p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 22px;
}

/* CONTACT */

.contact-cta {
  margin: 0 7% 70px;
  padding: 34px;
  border-radius: 28px;
  background: #062e1d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-cta h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 10px;
}

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

.contact-actions a {
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 900;
  color: #101510;
  background: #c9f13a;
}

.contact-actions a:nth-child(2),
.contact-actions a:nth-child(3) {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* FOOTER */

footer {
  padding: 28px 7%;
  color: rgba(16, 21, 16, 0.62);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .gallery-header nav {
    gap: 14px;
  }

  .intro,
  .gallery-heading,
  .process-section {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .masonry-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .media-card,
  .media-card.large,
  .media-card.wide,
  .media-card:not(.large):not(.wide) {
    grid-column: span 1;
    grid-row: span 2;
  }

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

@media (max-width: 600px) {
  .gallery-header {
    width: 94%;
    top: 12px;
    padding: 10px 14px;
  }

  .brand img {
    height: 34px;
  }

  .gallery-header nav a {
    font-size: 12px;
  }

  .gallery-header nav a:nth-child(2) {
    display: none;
  }

  .hero {
    padding: 140px 7% 70px;
  }

  .category-grid,
  .process-grid,
  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .future-section {
    padding: 36px;
  }

  footer {
    flex-direction: column;
  }
}

