/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --emerald-950: #042f23;
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-100: #d1fae5;
  --emerald-50:  #ecfdf5;
  --cream:       #faf8f0;
  --cream-dark:  #f3efe0;
  --cream-mid:   #f9f6ed;
  --brown:       #78350f;
  --brown-light: #a0672a;
  --text-dark:   #1a2e26;
  --text-mid:    #3d5a4c;
  --text-light:  #6b8f7e;
  --white:       #ffffff;
  --shadow-sm:   0 1px 3px rgba(6,95,70,0.08), 0 1px 2px rgba(6,95,70,0.06);
  --shadow-md:   0 4px 16px rgba(6,95,70,0.10), 0 2px 6px rgba(6,95,70,0.07);
  --shadow-lg:   0 12px 40px rgba(6,95,70,0.12), 0 4px 12px rgba(6,95,70,0.08);
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Nunito', 'Segoe UI', sans-serif;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-700);
  background: var(--emerald-100);
  border: 1px solid var(--emerald-500);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--emerald-900);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald-800);
  color: var(--white);
  border-color: var(--emerald-800);
}

.btn-primary:hover {
  background: var(--emerald-700);
  border-color: var(--emerald-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--emerald-800);
  border-color: var(--emerald-800);
}

.btn-secondary:hover {
  background: var(--emerald-50);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--emerald-800);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.88rem;
}

.btn-nav:hover {
  background: var(--emerald-700);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6,95,70,0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  color: var(--emerald-900);
  font-size: 1.05rem;
  line-height: 1.2;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-icon {
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a:not(.btn) {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}

.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald-600);
  border-radius: 2px;
  transition: var(--transition);
}

.main-nav a:not(.btn):hover {
  color: var(--emerald-800);
}

.main-nav a:not(.btn):hover::after {
  width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle-bar {
  width: 24px;
  height: 2.5px;
  background: var(--emerald-900);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  padding-top: 76px;
  min-height: 100vh;
  min-height: 100dvh;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, var(--emerald-50) 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 2px 2px, var(--emerald-800) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-800);
  background: var(--emerald-100);
  border: 1px solid var(--emerald-500);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--emerald-950);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--emerald-600);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--emerald-800);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--emerald-200, #a7f3d0);
}

/* Hero Images */
.hero-image-col {
  position: relative;
  height: 100%;
  min-height: 580px;
}

.hero-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 520/680;
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-float {
  position: absolute;
  bottom: -20px;
  left: -40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 260px;
  border: 4px solid var(--cream);
}

.hero-image-float img {
  width: 100%;
  aspect-ratio: 320/240;
  object-fit: cover;
}

.float-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--emerald-800);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 12px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

/* ===== TREES SECTION ===== */
.trees {
  padding: 100px 0;
  background: var(--white);
}

.trees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tree-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.tree-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.tree-card-img {
  overflow: hidden;
  aspect-ratio: 480/360;
}

.tree-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tree-card:hover .tree-card-img img {
  transform: scale(1.05);
}

.tree-card-body {
  padding: 28px;
}

.tree-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.tree-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--emerald-900);
  font-weight: 400;
}

.tree-card-popular,
.tree-card-rare,
.tree-card-value {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.tree-card-popular {
  background: var(--emerald-100);
  color: var(--emerald-800);
}

.tree-card-rare {
  background: #fef3c7;
  color: #92400e;
}

.tree-card-value {
  background: #dbeafe;
  color: #1e40af;
}

.tree-card-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
}

.tree-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tree-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image-side {
  position: relative;
}

.why-image-side img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 560/700;
  object-fit: cover;
}

.why-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--emerald-100);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.why-content-side .section-desc {
  margin-bottom: 36px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-100);
}

.why-feature h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--emerald-900);
  font-weight: 400;
  margin-bottom: 4px;
}

.why-feature p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== EXPERIENCE ===== */
.experience {
  padding: 100px 0;
  background: var(--white);
}

.experience-header {
  text-align: center;
  margin-bottom: 60px;
}

.experience-header .section-desc {
  margin: 0 auto;
}

.experience-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.step-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--emerald-100);
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--emerald-900);
  font-weight: 400;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.experience-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
}

.exp-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.exp-gallery-item--large {
  grid-row: 1 / 3;
}

.exp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* ===== VISIT ===== */
.visit {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-800) 100%);
  color: var(--white);
}

.visit-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.visit .section-tag {
  background: rgba(255,255,255,0.15);
  color: var(--emerald-100);
  border-color: rgba(255,255,255,0.3);
}

.visit .section-title {
  color: var(--white);
}

.visit .section-desc {
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-detail strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald-100);
  margin-bottom: 4px;
}

.visit-detail span {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.6;
}

.visit-detail a {
  color: var(--white);
  transition: var(--transition);
}

.visit-detail a:hover {
  color: var(--emerald-300, #6ee7b7);
}

.visit-map-side {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 520/420;
}

.visit-map-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-method:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-method svg {
  flex-shrink: 0;
}

.contact-method-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.contact-method-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2px;
}

.contact-method a {
  color: var(--emerald-700);
  transition: var(--transition);
}

.contact-method a:hover {
  color: var(--emerald-900);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form h3,
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--emerald-900);
  font-weight: 400;
  margin-bottom: 24px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  margin: 0 auto 16px;
}

.form-success h3 {
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-mid);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 2px solid var(--emerald-100);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--emerald-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--emerald-950);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.logo-footer {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--emerald-100);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact address {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.footer-contact a {
  color: var(--emerald-300, #6ee7b7);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-image-col {
    min-height: 480px;
  }

  .trees-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }

  .exp-gallery-item--large {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    box-shadow: var(--shadow-lg);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a:not(.btn) {
    font-size: 1.1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 40px 0 60px;
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto 36px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-col {
    order: -1;
    min-height: 360px;
  }

  .hero-image-float {
    left: 10px;
    bottom: -10px;
    width: 200px;
  }

  .trees-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .why-image-side {
    order: -1;
  }

  .why-image-side img {
    aspect-ratio: 4/3;
  }

  .experience-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 48px;
  }

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

  .exp-gallery-item--large {
    grid-column: auto;
  }

  .exp-gallery-item {
    aspect-ratio: 16/9;
  }

  .visit-card {
    grid-template-columns: 1fr;
  }

  .visit-map-side {
    order: -1;
    aspect-ratio: 16/9;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .contact-form-wrap {
    padding: 24px;
  }
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}
