@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --forest: #1a3a2a;
  --deep: #0d1f17;
  --moss: #2d5a3d;
  --leaf: #4a9e6b;
  --lime: #7bc67e;
  --gold: #c9a84c;
  --cream: #f5f0e8;
  --white: #ffffff;
  --dark: #0a1510;
  --text: #2c3e30;
  --muted: #6b8f72;
  --glass: rgba(255,255,255,0.06);
  --glassborder: rgba(255,255,255,0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; cursor: auto !important; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--deep);
  color: var(--cream);
  cursor: auto !important;
  overflow-x: hidden;
  overflow-y: auto;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--leaf); border-radius: 2px; }

/* NAVIGATION */
nav {
  cursor: pointer;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(10, 21, 16, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glassborder);
  padding: 14px 60px;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo img {
  height: 52px; width: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(74,158,107,0.5));
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.nav-brand span { color: var(--lime); display: block; font-size: 0.65rem; font-family: 'Outfit', sans-serif; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
  background: var(--lime);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--lime); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--leaf), var(--lime));
  color: var(--deep) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74,158,107,0.4) !important;
}
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); transition: 0.3s; }

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1510 0%, #1a3a2a 40%, #0d2518 100%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,158,107,0.4), transparent);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(74,158,107,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(74,158,107,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-3d-mushroom {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px;
  animation: float3D 6s ease-in-out infinite;
}
@keyframes float3D {
  0%, 100% { transform: translateY(-50%) rotate(-2deg); }
  50% { transform: translateY(calc(-50% - 20px)) rotate(2deg); }
}
.mushroom-svg { width: 100%; height: 100%; filter: drop-shadow(0 20px 60px rgba(74,158,107,0.3)); }
.hero-content {
  position: relative; z-index: 10;
  max-width: 700px;
  padding: 0 40px;
  margin-left: 8%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,158,107,0.15);
  border: 1px solid rgba(74,158,107,0.3);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--lime);
  margin-bottom: 28px;
  animation: slideInLeft 1s ease forwards;
  opacity: 0;
}
.hero-badge::before { content: '🌿'; font-size: 14px; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: slideInLeft 1s 0.2s ease forwards;
  opacity: 0;
}
.hero-title .accent { color: var(--lime); font-style: italic; }
.hero-title .outline { -webkit-text-stroke: 1.5px var(--lime); color: transparent; }
.hero-desc {
  font-size: 1.1rem; font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8; margin-bottom: 42px;
  max-width: 540px;
  animation: slideInLeft 1s 0.4s ease forwards;
  opacity: 0;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: slideInLeft 1s 0.6s ease forwards;
  opacity: 0;
}
.btn-primary {
  background: linear-gradient(135deg, var(--leaf), var(--lime));
  color: var(--deep); padding: 16px 40px;
  border-radius: 50px; font-weight: 700;
  font-size: 0.95rem; text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 0 rgba(74,158,107,0);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(74,158,107,0.4);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white); padding: 16px 40px;
  border-radius: 50px; font-weight: 500;
  font-size: 0.95rem; text-decoration: none;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--lime); color: var(--lime);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex; gap: 48px; margin-top: 60px;
  animation: slideInLeft 1s 0.8s ease forwards;
  opacity: 0;
}
.stat-item {}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 900;
  color: var(--lime);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: bounce 2s infinite;
}
.hero-scroll span { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--lime), transparent); }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* REVEAL ANIMATIONS */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* SECTION COMMONS */
section { position: relative; }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--lime); margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 30px; height: 1px; background: var(--lime); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.15;
  color: var(--white);
}
.section-title .accent { color: var(--lime); font-style: italic; }
.section-sub {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  line-height: 1.8; max-width: 560px; margin-top: 16px;
}

/* ABOUT STRIP */
.about-strip {
  padding: 100px 60px;
  background: linear-gradient(180deg, var(--deep) 0%, var(--dark) 100%);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-images { position: relative; height: 580px; }
.img-main {
  position: absolute; top: 0; left: 0;
  width: 72%; height: 78%;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.img-secondary {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 52%;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 3px solid var(--forest);
}
.img-main img, .img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.img-badge {
  position: absolute; top: 45%; left: 64%;
  background: linear-gradient(135deg, var(--leaf), var(--lime));
  color: var(--deep); padding: 18px 22px;
  border-radius: 16px; text-align: center;
  font-weight: 700; box-shadow: 0 12px 40px rgba(74,158,107,0.4);
  z-index: 10;
}
.img-badge .big { font-family: 'Playfair Display', serif; font-size: 2rem; line-height: 1; }
.img-badge .small { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.about-content { padding: 20px 0; }
.about-content p { color: rgba(255,255,255,0.6); line-height: 1.9; margin-bottom: 20px; font-size: 0.95rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.value-card {
  background: var(--glass);
  border: 1px solid var(--glassborder);
  border-radius: 12px; padding: 20px;
  transition: all 0.3s;
}
.value-card:hover { background: rgba(74,158,107,0.1); border-color: rgba(74,158,107,0.3); transform: translateY(-4px); }
.value-icon { font-size: 1.8rem; margin-bottom: 8px; }
.value-title { font-weight: 600; font-size: 0.9rem; color: var(--lime); margin-bottom: 4px; }
.value-text { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* SERVICES / PRODUCTS */
.services {
  padding: 100px 60px;
  background: var(--forest);
  position: relative; overflow: hidden;
}
.services::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,158,107,0.15), transparent 70%);
  border-radius: 50%;
}
.services-header { max-width: 1200px; margin: 0 auto 60px; display: flex; align-items: flex-end; justify-content: space-between; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.service-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--glassborder);
  border-radius: 24px; padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--leaf), var(--lime));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-10px); border-color: rgba(74,158,107,0.3); background: rgba(74,158,107,0.06); }
.service-card:hover::before { transform: scaleX(1); }
.service-number { font-size: 5rem; font-weight: 900; color: rgba(74,158,107,0.08); position: absolute; top: 16px; right: 24px; font-family: 'Playfair Display', serif; line-height: 1; }
.service-icon { font-size: 3rem; margin-bottom: 20px; }
.service-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.service-desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.8; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--lime); font-size: 0.82rem; font-weight: 600; text-decoration: none; margin-top: 20px; letter-spacing: 1px; text-transform: uppercase; transition: gap 0.3s; }
.service-link:hover { gap: 12px; }

/* PARALLAX STORY */
.story-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.story-parallax-bg {
  position: absolute; inset: -20%;
  background: linear-gradient(135deg, #0d2518, #1a4a30);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='rgba(74,158,107,0.1)' stroke-width='1'/%3E%3Ccircle cx='100' cy='100' r='50' fill='none' stroke='rgba(74,158,107,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  will-change: transform;
}
.story-content { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; padding: 120px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-timeline { position: relative; }
.story-timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--leaf), transparent); }
.timeline-item { padding-left: 60px; padding-bottom: 48px; position: relative; }
.timeline-dot { position: absolute; left: 12px; top: 6px; width: 18px; height: 18px; border-radius: 50%; background: var(--leaf); border: 3px solid var(--dark); box-shadow: 0 0 0 4px rgba(74,158,107,0.2); }
.timeline-year { font-size: 0.72rem; letter-spacing: 2px; color: var(--lime); text-transform: uppercase; margin-bottom: 6px; }
.timeline-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.timeline-text { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.story-visual { position: relative; }
.story-image-stack { position: relative; height: 520px; }
.stack-img {
  position: absolute; border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.stack-img img { width: 100%; height: 100%; object-fit: cover; }
.stack-1 { width: 80%; height: 65%; top: 0; left: 10%; }
.stack-2 { width: 55%; height: 55%; bottom: 0; left: 0; border: 3px solid var(--forest); }
.stack-3 { width: 45%; height: 45%; bottom: 10%; right: 0; }
.story-quote {
  background: linear-gradient(135deg, rgba(74,158,107,0.15), rgba(74,158,107,0.05));
  border-left: 3px solid var(--lime);
  padding: 28px 32px; border-radius: 0 16px 16px 0;
  margin-top: 40px;
}
.story-quote p { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,0.8); line-height: 1.7; }

/* TRAINING SECTION */
.training {
  padding: 100px 60px;
  background: var(--dark);
}
.training-inner { max-width: 1200px; margin: 0 auto; }
.training-header { text-align: center; margin-bottom: 64px; }
.training-header .section-sub { margin: 16px auto 0; }
.training-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.training-card {
  background: linear-gradient(135deg, var(--forest), #1d3d2a);
  border: 1px solid rgba(74,158,107,0.15);
  border-radius: 24px; overflow: hidden;
  display: grid; grid-template-columns: 200px 1fr;
  transition: all 0.4s;
}
.training-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.training-img { height: 100%; min-height: 200px; overflow: hidden; }
.training-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.training-card:hover .training-img img { transform: scale(1.08); }
.training-body { padding: 32px 28px; }
.training-badge { display: inline-block; background: rgba(74,158,107,0.2); color: var(--lime); padding: 4px 14px; border-radius: 50px; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.training-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.training-desc { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 16px; }
.training-meta { display: flex; gap: 20px; }
.meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* GALLERY */
.gallery {
  padding: 100px 60px;
  background: var(--forest);
}
.gallery-inner { max-width: 1200px; margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 56px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 16px;
}
.gallery-item {
  border-radius: 16px; overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,21,16,0.7), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }

/* CONTACT */
.contact {
  padding: 100px 60px;
  background: var(--dark);
}
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info { }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(74,158,107,0.15); border: 1px solid rgba(74,158,107,0.25); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-label { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--lime); margin-bottom: 4px; }
.contact-value { font-size: 1rem; color: var(--white); font-weight: 500; }
.contact-value a { color: var(--white); text-decoration: none; transition: color 0.3s; }
.contact-value a:hover { color: var(--lime); }
.contact-form { background: rgba(255,255,255,0.04); border: 1px solid var(--glassborder); border-radius: 24px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 14px 18px;
  color: var(--white); font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--leaf);
  background: rgba(74,158,107,0.08);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--forest); }

/* FOOTER */
footer {
  background: var(--deep);
  border-top: 1px solid var(--glassborder);
  padding: 80px 60px 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand img { height: 56px; width: 56px; object-fit: contain; margin-bottom: 16px; filter: drop-shadow(0 0 8px rgba(74,158,107,0.4)); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; margin-top: 12px; }
.footer-title { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--lime); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid var(--glassborder); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.social-links { display: flex; gap: 12px; }
.social-link { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--glassborder); display: flex; align-items: center; justify-content: center; font-size: 1rem; text-decoration: none; transition: all 0.3s; }
.social-link:hover { background: rgba(74,158,107,0.2); border-color: rgba(74,158,107,0.4); transform: translateY(-3px); }

/* PAGE HEADERS */
.page-hero {
  padding: 160px 60px 100px;
  background: linear-gradient(135deg, var(--deep) 0%, var(--forest) 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(74,158,107,0.12), transparent 50%),
                    radial-gradient(circle at 70% 50%, rgba(201,168,76,0.06), transparent 50%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.breadcrumb a { color: var(--lime); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* MOBILE NAV - hidden by default using position, not display:none */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: rgba(10,21,16,0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--glassborder);
  padding: 80px 40px;
  z-index: 999;
  transition: right 0.4s ease;
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu .nav-links { flex-direction: column; gap: 0; display: flex; }
.mobile-menu .nav-links li { border-bottom: 1px solid var(--glassborder); }
.mobile-menu .nav-links a { padding: 18px 0; display: block; font-size: 1rem; color: var(--white); }

/* LOADING */
.page-loader {
  position: fixed; inset: 0;
  background: var(--deep); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity 0.6s, visibility 0.6s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--lime); }
.loader-bar { width: 200px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 1px; overflow: hidden; }
.loader-progress { height: 100%; background: linear-gradient(90deg, var(--leaf), var(--lime)); width: 0; animation: loadBar 1.5s ease forwards; }
@keyframes loadBar { to { width: 100%; } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* Force body scrollable always */
  body { overflow-y: auto !important; overflow-x: hidden; }

  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero fixes - force all animated elements visible */
  .hero-title,
  .hero-desc,
  .hero-actions,
  .hero-stats,
  .hero-badge {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  /* Force all reveal elements visible on mobile */
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-content { margin-left: 0; text-align: center; align-items: center; display: flex; flex-direction: column; padding: 120px 24px 60px; }
  .hero-3d-mushroom { display: none; }
  .hero-stats { justify-content: center; gap: 24px; }
  .about-grid, .story-content, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 300px; }
  .services-grid { grid-template-columns: 1fr; }
  .services, .about-strip, .training, .gallery, .contact { padding: 60px 24px; }
  .story-content { padding: 60px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item { height: 160px; }
  .gallery-item.large, .gallery-item.tall { grid-column: span 1; grid-row: span 1; height: 160px; }
  .training-cards { grid-template-columns: 1fr; }
  .training-card { grid-template-columns: 1fr; }
  .training-img { min-height: 200px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 60px 24px 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .story-image-stack { height: 320px; }
  .page-hero { padding: 120px 24px 60px; }
}