/* ============ VARIABLES ============ */
:root{
  --green-dark:#1f3d2b;
  --green:#2f5d3f;
  --green-light:#7fb24a;
  --cream:#fff7ec;
  --cream-2:#fbf3e6;
  --orange:#ef5d3c;
  --orange-light:#ff8a5b;
  --yellow:#f4c44c;
  --text:#2b3328;
  --text-light:#6b7569;
  --radius:18px;
  --shadow:0 10px 30px rgba(31,61,43,0.08);
  --container:1180px;
}

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

html{scroll-behavior:smooth;}

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--cream);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
  font-family:'Poppins',sans-serif;
  color:var(--green-dark);
  line-height:1.2;
}

h2{font-size:clamp(1.8rem,4vw,2.6rem); font-weight:700; margin-bottom:.6rem;}
h3{font-size:1.15rem; font-weight:600;}
h4{font-size:1rem; font-weight:600;}

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

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

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

.center{text-align:center; margin-left:auto; margin-right:auto;}

.section-tag{
  display:inline-block;
  font-family:'Poppins',sans-serif;
  font-weight:600;
  font-size:.8rem;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:.6rem;
}

.section-sub{
  max-width:560px;
  color:var(--text-light);
  margin:0 auto 2.5rem;
}

/* ============ BUTTONS ============ */
.btn{
  display:inline-block;
  padding:.85rem 1.8rem;
  border-radius:50px;
  font-family:'Poppins',sans-serif;
  font-weight:600;
  font-size:.95rem;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border:2px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background:var(--orange);
  color:#fff;
  box-shadow:0 8px 20px rgba(239,93,60,.35);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(239,93,60,.45);
}
.btn-outline{
  border-color:var(--green-dark);
  color:var(--green-dark);
}
.btn-outline:hover{
  background:var(--green-dark);
  color:#fff;
  transform:translateY(-2px);
}

/* ============ HEADER ============ */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,247,236,.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(31,61,43,.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  padding-top:.7rem;
  padding-bottom:.7rem;
}
.logo img{height:46px; width:auto;}

.main-nav{
  display:flex;
  gap:2rem;
  margin-left:auto;
}
.main-nav a{
  font-family:'Poppins',sans-serif;
  font-weight:500;
  font-size:.95rem;
  color:var(--green-dark);
  position:relative;
  padding:.3rem 0;
}
.main-nav a::after{
  content:'';
  position:absolute;
  left:0; bottom:-2px;
  width:0; height:2px;
  background:var(--orange);
  transition:width .25s ease;
}
.main-nav a:hover::after{width:100%;}

.header-cta{margin-left:1.5rem;}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:40px; height:40px;
  background:none; border:none; cursor:pointer;
}
.nav-toggle span{
  display:block; width:24px; height:2px; background:var(--green-dark); margin:0 auto;
  transition:transform .25s ease, opacity .25s ease;
}

/* ============ HERO ============ */
.hero{
  position:relative;
  overflow:hidden;
  padding:5.5rem 0 6rem;
}
.hero-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 85% 15%, rgba(127,178,74,.25), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(239,93,60,.18), transparent 40%),
    radial-gradient(circle at 60% 60%, rgba(244,196,76,.15), transparent 45%);
  z-index:0;
}
.hero-content{
  position:relative; z-index:1;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:3rem;
  align-items:center;
}
.hero-text-col{max-width:560px;}
.hero-media{display:flex; justify-content:center; align-items:center;}
.hero-media img{
  width:100%;
  max-width:440px;
  filter:drop-shadow(0 25px 40px rgba(31,61,43,.15));
  animation:float 7s ease-in-out infinite;
}
.eyebrow{
  font-family:'Poppins',sans-serif;
  font-weight:600;
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:.8rem;
  color:var(--green);
  margin-bottom:1rem;
}
.hero h1{
  font-size:clamp(2.4rem,6vw,4rem);
  font-weight:800;
  margin-bottom:1.2rem;
}
.hero-text{
  font-size:1.05rem;
  color:var(--text-light);
  max-width:540px;
  margin-bottom:2rem;
}
.hero-actions{
  display:flex; gap:1rem; flex-wrap:wrap;
  margin-bottom:3rem;
}
.hero-stats{
  display:flex;
  gap:2.5rem;
  flex-wrap:wrap;
}
.hero-stats div{display:flex; flex-direction:column;}
.hero-stats strong{
  font-family:'Poppins',sans-serif;
  font-size:1.5rem; font-weight:700; color:var(--green-dark);
}
.hero-stats span{
  font-size:.85rem; color:var(--text-light); text-transform:uppercase; letter-spacing:1px;
}

/* ============ ABOUT ============ */
.about{padding:6rem 0; background:#fff;}
.about-inner{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:4rem;
  align-items:center;
}
.about-media{
  position:relative;
  height:380px;
  display:flex; align-items:center; justify-content:center;
}
.about-blob{
  position:absolute;
  border-radius:50% 50% 45% 55% / 55% 45% 55% 45%;
}
.blob-1{
  width:280px; height:280px;
  background:linear-gradient(135deg, var(--green-light), var(--green));
  opacity:.18;
  top:0; left:10%;
}
.blob-2{
  width:220px; height:220px;
  background:linear-gradient(135deg, var(--orange-light), var(--orange));
  opacity:.18;
  bottom:0; right:10%;
}
.about-emoji{
  position:absolute;
  font-size:4.5rem;
  filter:drop-shadow(0 10px 20px rgba(0,0,0,.08));
  top:40%; left:42%;
  animation:float 6s ease-in-out infinite;
}
.emoji-2{
  font-size:5.5rem;
  top:15%; left:55%;
  animation:float 7s ease-in-out infinite reverse;
}
.emoji-3{
  font-size:3.5rem;
  top:60%; left:20%;
  animation:float 5.5s ease-in-out infinite;
}
@keyframes float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-18px);}
}
.about-text p{color:var(--text-light); margin-bottom:1.1rem;}
.about-points{
  list-style:none;
  margin-top:1.5rem;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.8rem 1.5rem;
}
.about-points li{
  display:flex; align-items:center; gap:.6rem;
  font-family:'Poppins',sans-serif;
  font-weight:500;
  font-size:.95rem;
  color:var(--green-dark);
}
.about-points span{font-size:1.3rem;}

/* ============ MENU ============ */
.menu{padding:6rem 0;}
.menu-tabs{
  display:flex;
  justify-content:center;
  gap:.8rem;
  flex-wrap:wrap;
  margin-bottom:3rem;
}
.tab-btn{
  font-family:'Poppins',sans-serif;
  font-weight:600;
  font-size:.95rem;
  padding:.7rem 1.6rem;
  border-radius:50px;
  border:2px solid var(--green-dark);
  background:transparent;
  color:var(--green-dark);
  cursor:pointer;
  transition:all .25s ease;
}
.tab-btn.active, .tab-btn:hover{
  background:var(--green-dark);
  color:#fff;
}

.menu-panel{display:none;}
.menu-panel.active{display:block; animation:fadeIn .4s ease;}
@keyframes fadeIn{from{opacity:0; transform:translateY(8px);} to{opacity:1; transform:translateY(0);}}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(280px,1fr));
  gap:1.5rem;
}
.menu-item{
  background:#fff;
  border-radius:var(--radius);
  padding:1.6rem;
  box-shadow:var(--shadow);
  border:1px solid rgba(31,61,43,.05);
  transition:transform .25s ease, box-shadow .25s ease;
}
.menu-item:hover{
  transform:translateY(-5px);
  box-shadow:0 16px 36px rgba(31,61,43,.12);
}
.menu-item.highlight{
  background:linear-gradient(135deg, rgba(127,178,74,.08), rgba(244,196,76,.08));
  border:1px solid rgba(127,178,74,.25);
}
.menu-item-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:1rem;
  margin-bottom:.5rem;
}
.menu-item-head h3{display:flex; flex-wrap:wrap; align-items:center; gap:.5rem;}
.menu-item p{color:var(--text-light); font-size:.92rem;}
.price{
  font-family:'Poppins',sans-serif;
  font-weight:700;
  color:var(--orange);
  white-space:nowrap;
}
.price::before{content:"CHF ";font-size:.7rem; font-weight:600; color:var(--text-light);}
.qty{
  font-size:.7rem;
  font-weight:600;
  background:var(--cream-2);
  color:var(--green);
  padding:.15rem .5rem;
  border-radius:50px;
  letter-spacing:.5px;
}
.tag{
  font-size:.65rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  background:var(--orange);
  color:#fff;
  padding:.2rem .55rem;
  border-radius:50px;
}

.addons-card{
  margin-top:2.5rem;
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:2rem;
}
.addons-card h4{
  margin-bottom:1.2rem;
  font-size:1.2rem;
}
.addons-card h4 span{
  display:block;
  font-family:'Inter',sans-serif;
  font-weight:400;
  font-size:.85rem;
  color:var(--text-light);
  margin-top:.2rem;
}
.addons-list{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(200px,1fr));
  gap:.6rem 2rem;
}
.addons-list li{
  display:flex;
  justify-content:space-between;
  padding:.5rem 0;
  border-bottom:1px dashed rgba(31,61,43,.12);
  font-size:.95rem;
}
.addons-list li span:last-child{
  font-weight:700;
  color:var(--orange);
}
.addons-list li span:last-child::before{content:"CHF ";font-size:.7rem; font-weight:600; color:var(--text-light);}

/* ============ BUILD YOUR OWN ============ */
.build{
  padding:6rem 0;
  background:var(--green-dark);
  color:#fff;
}
.build-inner{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:4rem;
  align-items:center;
}
.build h2{color:#fff;}
.build .section-tag{color:var(--yellow);}
.build > .container > .build-inner > .build-text > p{color:rgba(255,255,255,.75); margin-bottom:2rem;}
.build-steps{
  display:flex;
  flex-direction:column;
  gap:1.4rem;
  margin-bottom:2.2rem;
}
.build-step{
  display:flex;
  gap:1rem;
  align-items:flex-start;
}
.step-num{
  flex-shrink:0;
  width:38px; height:38px;
  border-radius:50%;
  background:var(--orange);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family:'Poppins',sans-serif;
  font-weight:700;
}
.build-step h4{color:#fff; margin-bottom:.2rem;}
.build-step p{color:rgba(255,255,255,.65); font-size:.92rem;}

.build-visual{display:flex; align-items:center; justify-content:center;}
.build-circle{
  width:280px; height:280px;
  border-radius:50%;
  background:linear-gradient(135deg, rgba(127,178,74,.25), rgba(244,196,76,.18));
  display:flex; align-items:center; justify-content:center;
  font-size:7rem;
  animation:spin 18s linear infinite;
}
@keyframes spin{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}
.build-circle span{display:inline-block; animation:counterspin 18s linear infinite;}
@keyframes counterspin{
  from{transform:rotate(0deg);}
  to{transform:rotate(-360deg);}
}

/* ============ GALLERY ============ */
.gallery{padding:6rem 0; background:#fff;}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  grid-auto-rows:280px;
  gap:1.2rem;
  margin-top:2rem;
}
.gallery-item{
  border-radius:var(--radius);
  display:flex; align-items:flex-end;
  padding:1.2rem;
  font-family:'Poppins',sans-serif;
  font-weight:600;
  font-size:1.05rem;
  color:#fff;
  position:relative;
  overflow:hidden;
  isolation:isolate;
}
.gallery-item::before{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 35%, rgba(15,30,20,.75));
  z-index:1;
  transition:background .35s ease;
}
.gallery-item img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.gallery-item:hover img{transform:scale(1.06);}
.gallery-item:hover::before{background:linear-gradient(180deg, rgba(31,61,43,.15) 35%, rgba(15,30,20,.85));}
.gallery-item span{position:relative; z-index:2; letter-spacing:.3px;}
.g1, .g5{grid-column:span 2;}

/* ============ REVIEWS ============ */
.reviews{padding:6rem 0; background:var(--cream-2);}
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:1.5rem;
  margin-top:1rem;
}
.review-card{
  background:#fff;
  border-radius:var(--radius);
  padding:1.8rem;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.stars{color:var(--yellow); letter-spacing:2px; font-size:1.1rem;}
.review-text{color:var(--text-light); font-size:.95rem; flex-grow:1;}
.review-author{display:flex; align-items:center; gap:.8rem;}
.avatar{
  width:42px; height:42px;
  border-radius:50%;
  background:var(--green-dark);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family:'Poppins',sans-serif;
  font-weight:700;
  font-size:.85rem;
  flex-shrink:0;
}
.review-author strong{
  display:block;
  font-family:'Poppins',sans-serif;
  font-size:.92rem;
  color:var(--green-dark);
}
.review-author span{font-size:.8rem; color:var(--text-light);}

/* ============ LOCATION ============ */
.location{padding:6rem 0; background:var(--cream-2);}
.location-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:start;
}
.info-block{margin-bottom:1.8rem;}
.info-block h4{margin-bottom:.5rem;}
.info-block p{color:var(--text-light);}
.info-block a{color:var(--text-light); transition:color .2s;}
.info-block a:hover{color:var(--orange);}
.hours-list{list-style:none;}
.hours-list li{
  display:flex; justify-content:space-between;
  padding:.4rem 0;
  border-bottom:1px dashed rgba(31,61,43,.12);
  font-size:.95rem;
  color:var(--text-light);
}
.hours-list li span:first-child{font-weight:600; color:var(--green-dark);}
.social-links{display:flex; gap:1rem; margin-top:.5rem;}
.social-links a{
  font-family:'Poppins',sans-serif;
  font-weight:600;
  font-size:.85rem;
  padding:.5rem 1.2rem;
  border:2px solid var(--green-dark);
  border-radius:50px;
  color:var(--green-dark);
  transition:all .2s ease;
}
.social-links a:hover{background:var(--green-dark); color:#fff;}

.location-map{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  height:100%;
  min-height:420px;
}
.location-map iframe{
  width:100%; height:100%; min-height:420px; border:0;
}

/* ============ FOOTER ============ */
.site-footer{
  background:var(--green-dark);
  color:rgba(255,255,255,.7);
  padding:4rem 0 0;
}
.footer-inner{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:2rem;
  padding-bottom:2.5rem;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-brand img{
  height:42px;
  margin-bottom:1rem;
}
.footer-brand p{max-width:260px; font-size:.9rem;}
.footer-links, .footer-legal{
  display:flex; flex-direction:column; gap:.7rem;
}
.footer-links a:hover, .footer-legal a:hover{color:#fff;}
.footer-bottom{
  text-align:center;
  padding:1.5rem 0;
  font-size:.85rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width:900px){
  .hero-content{grid-template-columns:1fr;}
  .hero-media{order:-1;}
  .hero-media img{max-width:300px;}
  .about-inner, .build-inner, .location-inner{grid-template-columns:1fr;}
  .about-media{height:260px; order:2;}
  .footer-inner{grid-template-columns:1fr; text-align:left;}
  .gallery-grid{grid-template-columns:repeat(2,1fr); grid-auto-rows:220px;}
  .g1, .g5{grid-column:span 1;}
}

@media (max-width:760px){
  .main-nav{
    position:absolute;
    top:100%; left:0; right:0;
    background:var(--cream);
    flex-direction:column;
    padding:1.5rem 24px;
    gap:1rem;
    box-shadow:0 12px 24px rgba(0,0,0,.08);
    transform:translateY(-10px);
    opacity:0;
    pointer-events:none;
    transition:all .25s ease;
  }
  .main-nav.open{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }
  .header-cta{display:none;}
  .nav-toggle{display:flex;}
  .hero{padding:3.5rem 0 4rem;}
  .hero-stats{gap:1.5rem;}
  .about, .menu, .build, .gallery, .location{padding:4rem 0;}
}

@media (max-width:480px){
  .gallery-grid{grid-template-columns:1fr; grid-auto-rows:200px;}
  .about-points{grid-template-columns:1fr;}
}
