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

body {
  font-family: sans-serif;
  background: #000000;
  overflow-x: hidden;
  cursor: none;
}

/* =========================
   FONTS
========================= */
@font-face {
  font-family: 'BlockBlueprint';
  src: url('./fonts/BlockBlueprint.ttf') format('truetype');
}

@font-face {
  font-family: 'Teknaf';
  src: url('./fonts/TeknafRegular-rv0aB.otf') format('opentype');
}

@font-face {
  font-family: 'Goma';
  src: url('./fonts/GOMA.ttf') format('truetype');
}

/* =========================
   CUSTOM LEAF CURSOR
========================= */
* { cursor: none !important; }

#leafCursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  background-image: url('images/pngtree-realistic-green-leaf-without-background-png-image_11877452\ \(1\).png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: width 0.25s ease, height 0.25s ease, filter 0.25s ease;
  will-change: transform;
  filter: drop-shadow(0 2px 6px rgba(58,133,86,0.5));
  animation: leafSway 2.5s ease-in-out infinite;
}

#leafTrail {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  background-image: url('images/pngtree-realistic-green-leaf-without-background-png-image_11877452\ \(1\).png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.35;
  will-change: transform;
}

#leafCursor.is-hover {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 0 10px rgba(184,232,184,0.9));
}

@keyframes leafSway {
  0%, 100% { rotate: -8deg; }
  50%      { rotate: 8deg; }
}

@media (max-width: 900px) {
  * { cursor: auto !important; }
  #leafCursor, #leafTrail { display: none; }
}

/* ===========================
   TOP NAVBAR — with collapse arrow
=========================== */

#navbar__logo {
  font-family: 'Inter', system-ui, sans-serif;
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
#navbar__logo:hover {
  opacity: 1;
}
.navbar__links {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  opacity: 0.6;
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.navbar__links:hover {
  opacity: 1;
  color: #3a8556;
}
.navbar {
  background-image: linear-gradient(to bottom, #12281b92 0%, #00000000 100%);
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

body.nav-collapsed .navbar {
  transform: translateY(-100%);
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  width: 100%;
  max-width: 1400px;
  padding: 0 50px;
  position: relative;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.navbar__item {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  list-style: none;
}

.navbar__links {
  padding: 8px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Dropdown */
.navbar__dropdown {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 210px;
  list-style: none;
  padding: 8px 0;
  margin: 0;

  background: rgba(12, 22, 14, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  z-index: 1000;
}

.navbar__item:hover .navbar__dropdown,
.navbar__item:focus-within .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
}

.navbar__dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.navbar__dropdown li { list-style: none; }

.navbar__dropdown a {
  display: block;
  padding: 11px 20px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e0e0e0;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.navbar__dropdown a:hover {
  background: rgba(58, 133, 86, 0.18);
  color: #b8e8b8;
  padding-left: 28px;
}

/* Collapse arrow */
#navCollapseBtn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
#navCollapseBtn:hover {
  background: rgba(184, 232, 184, 0.18);
  border-color: rgba(184, 232, 184, 0.5);
  color: #b8e8b8;
}

/* ===========================
   HAMBURGER (shown when nav collapsed)
=========================== */
#menuToggle {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  z-index: 1001;
  background: rgba(12, 22, 14, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s, background 0.2s ease, border-color 0.2s ease;
}
body.nav-collapsed #menuToggle {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s, visibility 0s linear 0.2s, background 0.2s ease, border-color 0.2s ease;
}
body.menu-open #menuToggle {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}
#menuToggle:hover {
  background: rgba(184, 232, 184, 0.18);
  border-color: rgba(184, 232, 184, 0.5);
}
#menuToggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

/* ===========================
   OVERLAY
=========================== */
#menuOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
body.menu-open #menuOverlay {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0s;
}

/* ===========================
   SIDE PANEL
=========================== */
#sidePanel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 340px;
  max-width: 85vw;
  z-index: 1002;
  background: linear-gradient(180deg, #14201a, #0c1310 60%, #14181a);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.6);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
body.menu-open #sidePanel {
  transform: translateX(0);
}

.side-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  flex-shrink: 0;
}

.side-panel__logo {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.side-panel__logo:hover {
  opacity: 1;
  color: #b8e8b8;
}

#menuClose {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
#menuClose:hover {
  background: rgba(184, 232, 184, 0.15);
  border-color: rgba(184, 232, 184, 0.5);
  color: #b8e8b8;
}

.side-panel__nav {
  padding: 28px 0;
  flex: 1;
}

.side-panel__group {
  margin-bottom: 26px;
}
.side-panel__group:last-child {
  margin-bottom: 0;
}

.side-panel__group-label {
  display: block;
  padding: 4px 28px 8px;
  margin: 0 16px 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #b8e8b8;
  opacity: 0.75;
  border-bottom: 1px solid rgba(184, 232, 184, 0.18);
}

.side-panel__nav a {
  display: block;
  padding: 12px 32px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d8d8d8;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-left-color 0.2s ease, padding-left 0.2s ease;
}
.side-panel__nav a:hover {
  background: rgba(184, 232, 184, 0.08);
  color: #b8e8b8;
  border-left-color: #b8e8b8;
  padding-left: 40px;
}

@media screen and (max-width: 960px) {
  .navbar__container { padding: 0 20px; }
  .navbar__menu { gap: 0; }
  .navbar__links { font-size: 0.7rem; padding: 8px 10px; letter-spacing: 0.06em; }
  .navbar__dropdown { min-width: 170px; }
  .navbar__dropdown a { font-size: 0.7rem; padding: 9px 16px; }
  #sidePanel { width: 280px; }
}

/* =========================
   HERO
========================= */
.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  pointer-events: none;
}

.floating-images {
  position: absolute;
  inset: 0;
  z-index: 20;
}

.floating-images img {
  margin-left: -80px;
  position: absolute;
  width: 110%;
  height: auto;
  transition: transform 3s ease, opacity 3s ease;
}

/* =========================
   BACK VIDEOS
========================= */
.back-videos-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.back-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(160%);
  z-index: 0;
  pointer-events: none;
}

.back-video.active {
  z-index: 1;
}

/* =========================
   PAGE 3 — NOW APPEARS FIRST
========================= */
#page3 {
  width: 100%;
  height: 100vh;
  margin-top: 400vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  overflow: hidden;
  background: linear-gradient(
    to right,
    #bbb476,
    #a5e3e4,
    #f0c3e9,
    #e0dfa2
  );
}

.page3-wrapper {
  position: relative;
  width: 60vw;
  max-width: 700px;
  margin-top: -70px;
  height: auto;
}

.page3-fullimg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  pointer-events: none;
}

.page3-title {
  font-family: 'Teknaf', 'Inter', sans-serif;
  margin-top: -550px;
  margin-left: 55px;
  position: absolute;
  font-size: 3.5rem;
  font-weight: 600;
  color: #3333331b;
  text-align: center;
  letter-spacing: 0.03em;
}

/* ZINE COVER OVERLAY */
.zine-cover {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: linear-gradient(
    to right,
    #bbb476,
    #a5e3e4,
    #f0c3e9,
    #e0dfa2
  );
  transition: opacity 0.8s ease, visibility 0s linear 0.8s;
}

.zine-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.zine-cover__bg-text {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Goma', 'Inter', sans-serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 1.5px rgba(219, 219, 219, 0);
  color: rgba(0, 0, 0, 0.532);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.zine-cover__img {
  position: relative;
  max-width: 38vw;
  max-height: 60vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transform: rotate(-2deg);
  transition: transform 0.8s ease;
  z-index: 2;
}

.zine-cover:hover .zine-cover__img {
  transform: rotate(0deg) scale(1.02);
}

.zine-cover__caption {
  display: flex;
  align-items: baseline;
  gap: 18px;
  z-index: 2;
}

.zine-cover__number {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: rgba(0,0,0,0.6);
  font-weight: 500;
}

.zine-cover__label {
  font-family: 'Teknaf', 'Inter', sans-serif;
  font-size: 1.6rem;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.zine-cover__btn {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.4);
  border-radius: 50px;
  padding: 14px 36px;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  animation: zineBtnPulse 2.4s ease-in-out infinite;
}

.zine-cover__btn:hover {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
  transform: scale(1.05);
  animation: none;
}

@keyframes zineBtnPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0.25);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(0,0,0,0);
  }
}

/* HOVER ZONES */
.hover-zone {
  position: absolute;
  width: 50%;
  height: 50%;
  z-index: 5;
}

.zone1 { top: 0; left: 0; }
.zone2 { bottom: 0; left: 0; }
.zone3 { bottom: 0; right: 0; }
.zone4 { top: 0; right: 0; }

.zone-text {
  position: absolute;
  padding: 12px 18px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: white;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 10;
  pointer-events: none;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.text1 {
  top: 0;
  left: -260px;
  max-width: 250px;
  background: rgba(188, 100, 63, 0.75);
}
.text2 {
  bottom: -210px;
  left: 0;
  max-width: 700px;
  background: rgba(93, 161, 76, 0.75);
}
.text3 {
  bottom: -210px;
  right: 0;
  max-width: 700px;
  background: rgba(63, 116, 154, 0.75);
  text-align: right;
}
.text4 {
  top: 0;
  right: -260px;
  max-width: 250px;
  background: rgba(122, 63, 154, 0.75);
  text-align: right;
}

.zone1:hover ~ .text1,
.zone2:hover ~ .text2,
.zone3:hover ~ .text3,
.zone4:hover ~ .text4 {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   PAGE 2 — BRANDING GRID (enhanced)
========================= */
#page2 {
  position: relative;
  width: 100%;
  background: rgb(177, 168, 160);
  z-index: 3;
  overflow: hidden;
}

#page2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 2px 2px;
  pointer-events: none;
  z-index: 1;
}

.page2-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 50vh;
  gap: 0;
}

.grid-tile {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* IMAGE TILES */
.grid-tile--img {
  background: #1a1a1a;
}

.grid-tile--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  filter: saturate(0.85) contrast(1.05);
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.8s ease;
}

.grid-tile--img:hover img {
  transform: scale(1);
  filter: saturate(1.15) contrast(1.1);
}

/* Dark gradient veil that lifts on hover */
.grid-tile--img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.45), rgba(0,0,0,0.05) 60%);
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 2;
}
.grid-tile--img:hover::after {
  opacity: 0.15;
}

/* Corner index label on each image */
.grid-tile--img::before {
  content: attr(data-label);
  position: absolute;
  bottom: 18px;
  left: 22px;
  z-index: 3;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.grid-tile--img:hover::before {
  opacity: 1;
  transform: translateY(0);
}

/* Thin accent border that draws in on hover */
.grid-tile--img:hover {
  box-shadow: inset 0 0 0 2px rgba(184, 232, 184, 0.5);
}

/* TEXT TILE */
.grid-tile--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
  background:
    radial-gradient(circle at 20% 20%, rgba(58,133,86,0.18), transparent 60%),
    linear-gradient(135deg, #2a2622, #1a1714);
  position: relative;
}

.grid-tile--text::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #3a8556, #b8e8b8);
}

.grid-tile--text-right {
  align-items: flex-end;
  text-align: right;
}

.tile__number {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: #b8e8b8;
  font-weight: 500;
  margin-bottom: 18px;
}

.tile__title {
  font-family: 'Teknaf', 'Inter', sans-serif;
  font-size: 3.4rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 22px;
}

.tile__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.82);
  max-width: 460px;
}

/* =========================
   PAGE 4 / GENESIS VIDEO
========================= */
#page4 {
  width: 100%;
  min-height: 100vh;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  position: relative;
  z-index: 10;
}

.page4-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page4-video {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 55vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
}

/* =========================
   PAGE 7 — CONTACT
========================= */
#page7 {
  min-height: 30vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-color: rgb(162, 152, 139);
  position: relative;
  z-index: 20;
}

.page7-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
}

.page7-left,
.page7-right {
  width: 45%;
}

.page7-left h1,
.page7-right h1 {
  font-size: 3rem;
  font-family: 'Teknaf', sans-serif;
  margin-bottom: 14px;
  color: #ffffff;
}

.page7-right h1 {
  text-align: right;
}

.page7-left p,
.page7-right p {
  font-size: 1rem;
  font-family: 'Teknaf', sans-serif;
  margin: 6px 0;
  color: #ffffff;
}

.page7-right p {
  text-align: right;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  #page2 {
    padding: 100px 30px;
  }

  .page2-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .grid-tile {
    height: 60vh;
  }

  .grid-tile--text {
    height: auto;
    padding: 80px 30px;
  }

  .grid-tile--text-right {
    align-items: flex-start;
    text-align: left;
  }

  .tile__title {
    font-size: 2.4rem;
  }

  .zine-cover__bg-text {
    font-size: 3.5rem;
    top: 10%;
  }

  .zine-cover__img {
    max-width: 75vw;
    max-height: 50vh;
  }

  .zine-cover__label {
    font-size: 1.2rem;
  }
}