:root{
  --green:#00674e;
  --gold:#d3ae37;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:#f7f4ef;
  color:#222;
}

.container{
  max-width:1100px;
  margin:auto;
  padding:0 20px;
}

/* HEADER */
.header{
  position:fixed;
  top:0;
  width:100%;
  background:white;
  border-bottom:1px solid #eee;
  z-index:1000;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:70px;
}
.logo{height:42px}
.nav a{
  margin-left:25px;
  text-decoration:none;
  color:#333;
  font-weight:500;
}
.menu-btn{
  display:none;
  background:none;
  border:none;
  font-size:26px;
}
.mobile-menu{
  display:none;
  background:white;
  padding:20px;
}
.mobile-menu a{
  display:block;
  margin:10px 0;
  text-decoration:none;
  color:#333;
}

/* HERO */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}
.hero video{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}
.hero-content{
  position:relative;
  color:white;
  text-align:center;
  top:50%;
  transform:translateY(-50%);
  padding:20px;
}
.hero-content h1{
  font-family:'Playfair Display',serif;
  font-size:48px;
  margin-bottom:15px;
}
.hero-content p{
  font-size:18px;
}
.hero-buttons{
  margin-top:20px;
}
.btn-primary{
  background:var(--green);
  color:white;
  padding:12px 22px;
  border-radius:30px;
  text-decoration:none;
  margin:5px;
  display:inline-block;
}
.btn-glass{
  border:1px solid white;
  color:white;
  padding:12px 22px;
  border-radius:30px;
  text-decoration:none;
  margin:5px;
  display:inline-block;
}

/* SECTIONS */
.section{
  padding:100px 0;
  text-align:center;
}
.section.light{
  background:white;
}
.section h2{
  font-family:'Playfair Display',serif;
  font-size:36px;
  color:var(--green);
}
.lead{
  max-width:600px;
  margin:20px auto;
}

/* SERVICES */
.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:40px;
}
.service{
  padding:20px;
  border-radius:15px;
  background:#f0ece6;
  font-weight:600;
  transition:.3s;
}
.service:hover{
  background:var(--green);
  color:white;
}

/* CONTACT */
.contact-box{
  max-width:500px;
  margin:auto;
}

/* FOOTER */
footer{
  background:#111;
  color:white;
  padding:40px 0;
  text-align:center;
}
.footer-logo{height:40px;margin-bottom:15px}
.footer-links a{
  color:white;
  margin:0 10px;
  text-decoration:none;
}

/* WHATSAPP */
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  background:#25D366;
  color:white;
  padding:12px 20px;
  border-radius:30px;
  text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .services-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:768px){
  .nav{display:none;}
  .menu-btn{display:block;}
  .services-grid{grid-template-columns:1fr;}
  .hero-content h1{font-size:34px;}
}
/* ===== CHI SIAMO ===== */

.chi-section{
  background:#f4efe8;
}

.chi-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:60px;
  align-items:center;
}

.chi-text h2{
  color:#00674e;
  font-family:'Playfair Display',serif;
  font-size:40px;
  margin-bottom:25px;
}

.chi-text h3{
  margin-top:30px;
  color:#00674e;
}

.chi-list{
  list-style:none;
  padding:0;
  margin-top:15px;
}

.chi-list li{
  margin-bottom:10px;
  padding-left:18px;
  position:relative;
}

.chi-list li::before{
  content:"•";
  position:absolute;
  left:0;
  color:#d3ae37;
}

.chi-highlight{
  background:white;
  padding:20px;
  border-radius:15px;
  margin-top:25px;
  border-left:4px solid #00674e;
}

.chi-image img{
  width:100%;
  border-radius:20px;
}

/* ===== TRATTAMENTI ===== */

.trattamenti-section{
  background:white;
}

.trattamenti-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.trattamenti-grid span{
  background:#f4efe8;
  padding:15px;
  border-radius:12px;
  text-align:center;
  font-weight:500;
  transition:.3s;
}

.trattamenti-grid span:hover{
  background:#00674e;
  color:white;
}

/* ===== MAPPA FULL WIDTH ===== */

.map-full{
  width:100%;
  height:450px;
}

.map-full iframe{
  width:100%;
  height:100%;
  border:0;
}

/* ===== RESPONSIVE ===== */

@media(max-width:900px){
  .chi-grid{
    grid-template-columns:1fr;
  }

  .trattamenti-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .trattamenti-grid{
    grid-template-columns:1fr;
  }
}