:root{
  --bg:#f6f7f9;
  --text:#1f2937;
  --muted:#6b7280;
  --card:#ffffff;
  --line:rgba(17,24,39,.10);
  --accent:#177f5f;
  --accent2:#0b6b55;
  --radius:14px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{color:inherit}
.container{width:min(1100px, 92%); margin:0 auto}

.topbar{
  position:sticky;
  top:0;
  z-index:10;
  background:#ffffff;
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.logo{font-weight:900; text-decoration:none; letter-spacing:.2px}
.nav{display:flex; gap:16px; align-items:center}
.nav a{opacity:.9; text-decoration:none}
.nav a:hover{opacity:1}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  background:var(--accent);
  color:white;
  font-weight:800;
  text-decoration:none;
  border:1px solid rgba(0,0,0,.06);
  cursor:pointer;
}
.btn--whatsapp{background:var(--accent2)}
.btn--ghost{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
}
.btn--small{padding:10px 12px; border-radius:10px}

.hero{
  padding:46px 0 26px;
  background:var(--bg);      /* <- hero rămâne gri */
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:start;
}
.badge{
  display:inline-block;
  border:1px solid var(--line);
  padding:8px 10px;
  border-radius:999px;
  color:var(--muted);
  font-size:14px;
  background:white;
}
h1{font-size:42px; line-height:1.08; margin:14px 0}
.lead{font-size:18px; color:var(--muted); line-height:1.65}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 14px}

.ticks{list-style:none; padding:0; margin:14px 0 0; color:var(--muted)}
.ticks li{margin:8px 0; padding-left:22px; position:relative}
.ticks li:before{content:"✓"; position:absolute; left:0; color:var(--accent)}

.contact-inline{margin-top:12px; color:var(--muted)}
.contact-inline a{font-weight:700}

.hero__media img{
  width:100%;
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:0 12px 26px rgba(0,0,0,.08);
}
.hero__mini{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:10px;
}
.hero__mini img{height:110px; object-fit:cover; cursor:pointer}
.note{margin-top:8px}

.section{
  padding:46px 0;
  background:#fff;           /* <- asta face Galerie/Utilizare albe */
}
.section--alt{
  background:var(--bg);
  border-top:1px solid rgba(17,24,39,.05);
  border-bottom:1px solid rgba(17,24,39,.05);
}
h2{font-size:28px; margin:0 0 10px}
.muted{color:var(--muted)}
.small{font-size:13px}

.gallery{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.gallery img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:12px;
  border:1px solid var(--line);
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease;
  box-shadow:0 10px 18px rgba(0,0,0,.06);
}
.gallery img:hover{transform:scale(1.02)}

.cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 10px 18px rgba(0,0,0,.05);
}
.card h3{margin:0 0 10px}
.card ul{margin:0; padding-left:18px; color:var(--muted)}
.card li{margin:8px 0}

.quick-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

.use{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}
.use__item{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  background:#fff;
  box-shadow:0 10px 18px rgba(0,0,0,.05);
}
.use__item h3{margin:0 0 8px}
.use__item p{margin:0; color:var(--muted); line-height:1.6}

.contact-cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}
.contact-card{
  display:block;
  text-decoration:none;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 10px 18px rgba(0,0,0,.05);
  transition:transform .15s ease, box-shadow .15s ease;
}
.contact-card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 26px rgba(0,0,0,.08);
}
.contact-card__title{font-weight:900; color:var(--muted); font-size:13px; text-transform:uppercase; letter-spacing:.5px}
.contact-card__value{margin-top:8px; font-weight:900; font-size:18px}
.contact-card__hint{margin-top:6px; color:var(--muted); font-size:13px}
.contact-card--wa .contact-card__value{color:var(--accent2)}

.footer{
  padding:26px 0;
  border-top:1px solid var(--line);
  background:#fff;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* Lightbox */
.lightbox{
  position:fixed; inset:0;
  background:rgba(17,24,39,.70);
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:50;
}
.lightbox.open{display:flex}
.lightbox img{
  max-width:min(1100px, 96vw);
  max-height:85vh;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.20);
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}
.lightbox__close{
  position:absolute; top:18px; right:18px;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(0,0,0,.25);
  color:white;
  font-size:28px;
  cursor:pointer;
}

@media (max-width: 920px){
  .hero__grid{grid-template-columns:1fr}
  h1{font-size:34px}
  .cards, .use, .contact-cards{grid-template-columns:1fr}
  .hero__mini img{height:90px}
  .nav{gap:12px}
}

@media (max-width: 920px){
  .topbar__inner{
    flex-wrap:wrap;
    gap:10px;
  }

  .nav{
    width:100%;
    justify-content:flex-start;
    gap:12px;
    flex-wrap:wrap;
  }
}


@media (max-width: 920px){

  .hero{
    padding:18px 0 20px;
  }

}

@media (max-width: 920px){

  /* pune imaginea prima */
  .hero__media{ order:-1; }

  /* un pic mai strâns, să intre și poza */
  .hero{
    padding:18px 0 20px;
  }

  /* imaginea principală să nu fie prea înaltă */
  .hero__media > img{
    max-height: 260px;
    object-fit: cover;
  }

  /* miniaturile mai joase */
  .hero__mini img{
    height:70px;
  }
  

}


  .hero__media{
  margin-bottom:6px;
}


@media (max-width:920px){

  .hero__grid{
    gap:5px;
  }

}

@media (max-width:920px){

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

}

.price{
  margin: 10px 0 0;
  font-size: 18px;
}