@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Poppins:wght@300;400;600;700&display=swap');

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

:root{
  --forest:#0f3d2e;
  --emerald:#27ae60;
  --mint:#a3f7bf;
  --dark-bg:#091f17;
  --cream-bg:#f5faf7;
  --warm-white:#fcfffe;
  --bark:#2d1f10;
  --text-body:#1a3329;
  --gold-leaf:#c9a84c;
}

html{scroll-behavior:smooth}
body{font-family:'Poppins',sans-serif;background:var(--cream-bg);color:var(--text-body);line-height:1.75;overflow-x:hidden}
h1,h2,h3,h4{font-family:'Merriweather',serif;color:var(--forest)}
a{color:var(--emerald);text-decoration:none;transition:.3s}
a:hover{color:var(--gold-leaf)}

/* NAV */
.forest-nav{
  position:fixed;top:0;width:100%;z-index:1000;
  background:var(--dark-bg);padding:.8rem 2rem;
  display:flex;align-items:center;justify-content:space-between;
  border-bottom:3px solid var(--emerald);
}
.fn-logo{display:flex;align-items:center;gap:.5rem}
.fn-logo svg{width:34px;height:34px}
.fn-logo span{font-family:'Merriweather',serif;font-size:1.15rem;font-weight:700;color:var(--mint);letter-spacing:1px}
.fn-menu{display:flex;gap:1.5rem}
.fn-menu a{color:rgba(163,247,191,0.8);font-weight:600;font-size:.85rem;text-transform:uppercase;letter-spacing:.5px}
.fn-menu a:hover{color:var(--gold-leaf)}
.fn-burger{display:none;background:none;border:none;cursor:pointer}
.fn-burger span{display:block;width:24px;height:2px;background:var(--mint);margin:5px 0}

.canopy-menu{
  display:none;position:fixed;inset:0;background:rgba(9,31,23,0.98);z-index:998;
  flex-direction:column;align-items:center;justify-content:center;gap:1.8rem;
}
.canopy-menu.active{display:flex}
.canopy-menu a{font-family:'Merriweather',serif;font-size:1.4rem;color:var(--mint)}
.canopy-menu .cm-close{position:absolute;top:1rem;right:1.5rem;font-size:2rem;background:none;border:none;color:var(--mint);cursor:pointer}

/* HERO */
.grove-hero{
  margin-top:58px;padding:5rem 3rem;
  background:linear-gradient(145deg,var(--dark-bg) 0%,#0d3324 40%,var(--forest) 100%);
  display:flex;align-items:center;gap:4rem;flex-wrap:wrap;justify-content:center;
  min-height:85vh;
}
.gh-text{max-width:540px}
.gh-text h1{font-size:2.6rem;color:var(--mint);margin-bottom:1rem;line-height:1.2}
.gh-text p{color:rgba(163,247,191,0.7);font-size:1rem;margin-bottom:2rem}
.grove-btn{
  display:inline-block;background:var(--emerald);color:#fff;padding:.85rem 2rem;
  border-radius:8px;font-weight:700;font-size:.9rem;text-transform:uppercase;letter-spacing:1px;transition:.3s;
}
.grove-btn:hover{background:var(--gold-leaf);color:var(--forest)}

.gh-visual{width:260px;height:260px;border-radius:50%;background:radial-gradient(circle,var(--emerald),var(--forest));display:flex;align-items:center;justify-content:center;box-shadow:0 0 40px rgba(39,174,96,0.2)}
.gh-visual svg{width:140px;height:140px}

/* INFO BAR */
.info-bar{
  display:flex;justify-content:center;gap:0;background:var(--emerald);
}
.ib-item{
  flex:1;text-align:center;padding:1rem;color:#fff;font-weight:700;font-size:.9rem;
  border-right:1px solid rgba(255,255,255,0.2);
}
.ib-item:last-child{border-right:none}

/* GAME */
.game-clearing{padding:3.5rem 2rem;text-align:center;background:var(--cream-bg)}
.game-clearing h2{font-size:1.9rem;margin-bottom:.5rem}
.game-clearing .gc-sub{color:#5a7a6a;margin-bottom:1.5rem}
.gc-wrap{
  max-width:960px;margin:0 auto;border-radius:10px;overflow:hidden;
  border:3px solid var(--forest);box-shadow:0 6px 25px rgba(15,61,46,0.12);
}
.gc-wrap iframe{width:100%;height:580px;border:none;display:block}

/* THREE COL */
.triple{display:grid;grid-template-columns:repeat(3,1fr);gap:0;background:var(--dark-bg)}
.tri-block{padding:2.5rem 2rem;border-right:1px solid rgba(163,247,191,0.1)}
.tri-block:last-child{border-right:none}
.tri-block h3{color:var(--mint);font-size:1.1rem;margin-bottom:.6rem}
.tri-block p{color:rgba(163,247,191,0.6);font-size:.9rem}

/* NATURE SECTION */
.nature-sec{padding:4rem 2rem;background:#eaf7ef}
.nature-sec h2{text-align:center;font-size:1.8rem;margin-bottom:2rem}
.nature-cards{display:flex;flex-wrap:wrap;gap:1.5rem;justify-content:center;max-width:1100px;margin:0 auto}
.nc{
  flex:1 1 300px;background:var(--warm-white);border-radius:10px;padding:1.8rem;
  border-left:4px solid var(--emerald);box-shadow:0 2px 10px rgba(15,61,46,0.05);
}
.nc h4{color:var(--forest);font-size:1.05rem;margin-bottom:.5rem}
.nc p{font-size:.9rem;color:#3d6b55}

/* CONTENT */
.text-page{padding:6rem 2rem 4rem;max-width:880px;margin:0 auto}
.text-page h1{font-size:2.2rem;margin-bottom:1.5rem}
.text-page h2{font-size:1.35rem;margin-top:2rem;margin-bottom:.7rem;color:var(--emerald)}
.text-page p{margin-bottom:1.1rem}
.text-page ul{margin:1rem 0 1.5rem 1.5rem}
.text-page ul li{margin-bottom:.5rem}

/* PLAY */
.play-canopy{margin-top:58px;padding:3.5rem 2rem;background:var(--forest);text-align:center}
.play-canopy h1{color:var(--mint);font-size:2.1rem;margin-bottom:.7rem}
.play-canopy p{color:rgba(163,247,191,0.7);max-width:620px;margin:0 auto}

/* FOOTER */
.root-footer{background:var(--dark-bg);padding:2.5rem 2rem;text-align:center}
.rf-nav{display:flex;flex-wrap:wrap;justify-content:center;gap:1.3rem;margin-bottom:1rem}
.rf-nav a{color:rgba(163,247,191,0.5);font-size:.85rem}
.rf-resp{font-size:.78rem;color:rgba(163,247,191,0.3);margin-top:.7rem}
.rf-resp a{color:var(--emerald);margin:0 .4rem}
.rf-copy{margin-top:1rem;font-size:.72rem;color:rgba(163,247,191,0.15)}

/* AGE */
.age-gate{position:fixed;inset:0;background:rgba(9,31,23,0.97);z-index:9999;display:flex;align-items:center;justify-content:center}
.ag-box{background:var(--forest);border:2px solid var(--mint);border-radius:12px;padding:2.5rem 2rem;text-align:center;max-width:420px;width:92%}
.ag-box h2{color:var(--mint);margin-bottom:.8rem;font-size:1.5rem}
.ag-box p{color:rgba(163,247,191,0.7);margin-bottom:1.5rem}
.ag-btns{display:flex;gap:1rem;justify-content:center}
.ag-btns button{padding:.7rem 1.6rem;font-family:'Merriweather',serif;font-weight:700;font-size:.95rem;border:none;border-radius:8px;cursor:pointer;transition:.3s}
.ag-y{background:var(--emerald);color:#fff}
.ag-y:hover{background:var(--gold-leaf);color:var(--forest)}
.ag-n{background:transparent;border:2px solid var(--mint)!important;color:var(--mint)}
.ag-n:hover{background:rgba(163,247,191,0.1)}
.ag-block{display:none;color:#e85050;margin-top:1rem;font-weight:600}

@media(max-width:768px){
  .fn-menu{display:none}.fn-burger{display:block}
  .grove-hero{flex-direction:column;text-align:center;padding:4rem 1.5rem;min-height:auto}
  .gh-text h1{font-size:2rem}
  .gh-visual{width:180px;height:180px}
  .gh-visual svg{width:100px;height:100px}
  .info-bar{flex-direction:column}
  .ib-item{border-right:none;border-bottom:1px solid rgba(255,255,255,0.2)}
  .triple{grid-template-columns:1fr}
  .tri-block{border-right:none;border-bottom:1px solid rgba(163,247,191,0.1)}
  .gc-wrap iframe{height:400px}
  .text-page{padding:5rem 1.2rem 3rem}
}
@media(max-width:480px){
  .gh-text h1{font-size:1.5rem}
  .gc-wrap iframe{height:300px}
}
