@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root{
  --navy:#051f46;
  --blue:#0a3466;
  --gold:#c98f27;
  --line:#e7ebf1;
  --muted:#5d7089;
  --bg:#fbfcfe;
  --shadow:0 22px 60px rgba(5,31,70,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,Arial,sans-serif;color:var(--navy);background:white}
a{color:inherit}
.container{width:min(1220px,calc(100% - 56px));margin:0 auto}

.top-strip{
  height:205px;
  background:url('assets/sala-operatoria.jpg') center/cover no-repeat;
  border-bottom:1px solid rgba(5,31,70,.14);
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  min-height:106px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.brand img{
  display:block;
  width:430px;
  max-width:42vw;
  height:auto;
}

.main-menu{
  display:flex;
  align-items:center;
  gap:25px;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
}

.main-menu>a,
.menu-item>button{
  position:relative;
  padding:13px 0;
  border:0;
  background:transparent;
  font:inherit;
  color:var(--navy);
  text-transform:uppercase;
  text-decoration:none;
  cursor:pointer;
}

.main-menu>a.active::after,
.main-menu>a:hover::after,
.menu-item>button:hover::after{
  content:"";
  position:absolute;
  left:0;
  bottom:2px;
  width:36px;
  height:2px;
  background:var(--gold);
}

.menu-item{position:relative}
.menu-item>button::before{content:""}
.menu-item>button::after{
  content:"⌄";
  position:static;
  width:auto;
  height:auto;
  margin-left:7px;
  background:none;
}

.dropdown{
  display:none;
  position:absolute;
  top:48px;
  left:0;
  width:285px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:16px;
  background:white;
  box-shadow:var(--shadow);
  text-transform:none;
}

.contact-dropdown{right:0;left:auto;width:230px}
.menu-item:hover .dropdown{display:block}

.dropdown a{
  display:block;
  padding:14px 12px;
  border-bottom:1px solid var(--line);
  text-decoration:none;
}
.dropdown a:last-child{border-bottom:0}
.dropdown strong{
  display:block;
  margin-bottom:5px;
  font-size:15px;
  color:var(--navy);
}
.dropdown span{
  display:block;
  font-size:13px;
  line-height:1.45;
  color:var(--muted);
}

.cta{
  background:var(--navy)!important;
  color:#fff!important;
  padding:14px 23px!important;
  border-radius:8px;
}
.cta::after{display:none!important}

.hero{
  background:linear-gradient(90deg,#fff 0%,#fff 47%,#f3f7fb 100%);
}

.hero-grid{
  min-height:585px;
  padding:52px 0 45px;
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:58px;
  align-items:center;
}

.hero h1{
  margin:0;
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(46px,5.35vw,76px);
  line-height:1.06;
  letter-spacing:-.02em;
}

.gold-line{
  width:58px;
  height:3px;
  background:var(--gold);
  margin:26px 0;
}
.centered{margin:14px auto 30px}

.lead{
  margin:0;
  max-width:570px;
  color:var(--blue);
  font-size:20px;
  line-height:1.6;
}

.areas{
  margin-top:44px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.areas article{text-align:center}
.service-icon{
  width:62px;
  height:62px;
  display:block;
  margin:0 auto 15px;
  object-fit:contain;
}
.areas h2{
  margin:0 0 11px;
  font-size:15px;
  text-transform:uppercase;
  line-height:1.25;
}
.areas p{
  margin:0;
  font-size:14px;
  line-height:1.55;
}

.studio-card img{
  display:block;
  width:100%;
  border-radius:18px;
  box-shadow:var(--shadow);
}

.sedi{
  padding:46px 0;
  background:linear-gradient(180deg,#fff,var(--bg));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.sedi-grid{
  display:grid;
  grid-template-columns:1.05fr .82fr .72fr;
  gap:30px;
  align-items:center;
}

.sedi h2,.prenota h2,.societa h2{
  margin:0 0 14px;
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(32px,3.2vw,44px);
}
.sedi-title p{
  margin:0;
  color:var(--blue);
  line-height:1.65;
}

.sede-card{
  min-height:150px;
  display:flex;
  gap:16px;
  padding:27px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:17px;
  box-shadow:0 12px 34px rgba(5,31,70,.07);
}
.sede-card.future{
  border-style:dashed;
  box-shadow:none;
}
.pin{
  width:36px;
  height:36px;
  flex:0 0 36px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:var(--blue);
  background:#edf5fb;
  font-weight:900;
}
.sede-card h3{margin:0 0 8px}
.sede-card p{margin:4px 0;color:var(--blue);line-height:1.45}
.sede-card .gold{color:var(--gold)}
.sede-card a{
  display:inline-block;
  margin-top:14px;
  color:var(--blue);
  text-decoration:none;
  font-weight:800;
}

.prenota{
  padding:48px 0 70px;
  text-align:center;
}

.booking-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  text-align:left;
}

.booking-grid article{
  min-height:165px;
  display:flex;
  gap:18px;
  padding:26px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 12px 32px rgba(5,31,70,.07);
}
.round{
  width:52px;
  height:52px;
  flex:0 0 52px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--navy);
  color:#fff;
  font-size:22px;
}
.whatsapp-round{background:#128c55}
.booking-grid h3{
  margin:0 0 7px;
  font-size:15px;
  text-transform:uppercase;
}
.booking-grid p{
  margin:0 0 14px;
  color:var(--muted);
}
.booking-grid a{
  display:inline-block;
  padding:12px 18px;
  border-radius:8px;
  background:var(--navy);
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
}
.booking-grid a.whatsapp{background:#128c55}

.societa{
  padding:58px 0;
  text-align:center;
  background:#f7f9fc;
  border-top:1px solid var(--line);
}

.societa-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,365px));
  justify-content:center;
  gap:24px;
  margin-top:28px;
}
.societa-grid article{
  padding:28px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 10px 30px rgba(5,31,70,.05);
}

footer{
  padding:46px 0;
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.35fr 1fr 1fr 1fr;
  gap:28px;
}
.footer-logo{
  width:260px;
  max-width:100%;
}
footer h3{margin:0 0 10px;font-size:16px}
footer p{margin:0;color:var(--muted);line-height:1.7}
footer a{color:var(--blue);font-weight:700;text-decoration:none}

@media(max-width:1080px){
  .header-inner{flex-direction:column;align-items:flex-start;padding:16px 0}
  .brand img{max-width:88vw;width:360px}
  .main-menu{flex-wrap:wrap;gap:16px}
  .dropdown{position:static;display:block;box-shadow:none;margin-top:6px}
  .hero-grid,.sedi-grid,.booking-grid,.footer-grid{grid-template-columns:1fr}
  .areas{grid-template-columns:1fr}
  .top-strip{height:135px}
}

@media(max-width:640px){
  .container{width:calc(100% - 28px)}
  .top-strip{height:98px}
  .hero-grid{padding:34px 0}
  .lead{font-size:17px}
  .booking-grid article{display:block}
  .round{margin-bottom:15px}
}


/* === Aggiornamento: intestazione fissa con logo reale ben visibile === */
body{
  padding-top: 118px;
}

.top-strip{
  margin-top: 118px;
}

.site-header.fixed-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255,255,255,.97);
  box-shadow: 0 10px 35px rgba(5,31,70,.08);
}

.header-inner{
  min-height: 118px;
}

.brand img{
  width: 470px;
  max-width: 44vw;
  height: auto;
  object-fit: contain;
}

.main-menu{
  align-self: center;
}

@media(max-width:1080px){
  body{
    padding-top: 148px;
  }

  .top-strip{
    margin-top: 148px;
  }

  .site-header.fixed-header{
    max-height: 148px;
    overflow-y: auto;
  }

  .header-inner{
    min-height: 120px;
  }

  .brand img{
    width: 390px;
    max-width: 90vw;
  }
}

@media(max-width:640px){
  body{
    padding-top: 132px;
  }

  .top-strip{
    margin-top: 132px;
  }

  .site-header.fixed-header{
    max-height: 132px;
  }

  .brand img{
    width: 310px;
    max-width: 88vw;
  }

  .main-menu{
    font-size: 12px;
    gap: 10px;
  }
}


/* Aggiornamento: nessuna icona nelle aree, logo corretto in alto */
.brand img{
  display:block;
  width: 360px;
  max-width: 40vw;
  height: auto;
  object-fit: contain;
}

.footer-logo{
  width: 210px;
  max-width: 100%;
  height: auto;
}

.service-icon,
.icon{
  display:none !important;
}

.areas{
  margin-top: 36px;
}

.areas article{
  text-align: left;
  padding: 0 10px;
}

.areas h2{
  margin: 0 0 12px;
}

.areas p{
  margin: 0;
}

@media(max-width:1080px){
  .brand img{
    width: 300px;
    max-width: 80vw;
  }
  .areas article{
    text-align:left;
    padding:0;
  }
}

@media(max-width:640px){
  .brand img{
    width: 240px;
    max-width: 78vw;
  }
}


/* === Logo firma elegante === */
.brand img{
  display:block;
  width: 390px;
  max-width: 40vw;
  height: auto;
  object-fit: contain;
}

.footer-logo{
  width: 260px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.header-inner{
  min-height: 112px;
}

body{
  padding-top: 112px;
}

.top-strip{
  margin-top: 112px;
}

@media(max-width:1080px){
  .brand img{
    width: 330px;
    max-width: 82vw;
  }
  body{
    padding-top: 145px;
  }
  .top-strip{
    margin-top: 145px;
  }
}

@media(max-width:640px){
  .brand img{
    width: 255px;
    max-width: 78vw;
  }
  body{
    padding-top: 128px;
  }
  .top-strip{
    margin-top: 128px;
  }
}


/* === Pagina Chi sono === */
.page-hero{
  padding: 90px 0 70px;
  background: linear-gradient(90deg,#fff 0%,#fff 55%,#f3f7fb 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner{
  max-width: 850px;
}

.page-kicker{
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .22em;
  font-size: 12px;
}

.page-hero h1{
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(46px,5vw,72px);
  line-height: 1.08;
  color: var(--navy);
}

.page-hero p{
  max-width: 760px;
  font-size: 20px;
  line-height: 1.7;
  color: var(--blue);
}

.content-page{
  padding: 70px 0;
  background: #fff;
}

.content-grid{
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 28px;
  align-items: start;
}

.content-card{
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(5,31,70,.07);
}

.content-card h2,
.content-card h3{
  margin: 0 0 18px;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
}

.content-card p,
.content-card li{
  color: var(--muted);
  line-height: 1.75;
}

.content-card ul{
  margin: 0;
  padding-left: 20px;
}

@media(max-width:900px){
  .content-grid{
    grid-template-columns: 1fr;
  }
}


/* === Pagina Contatti === */
.contact-grid-page{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.contact-detail-card.full{
  grid-column: 1 / -1;
}

.contact-detail-card h2{
  margin-bottom: 14px;
}

.big-contact-button{
  display:inline-block;
  margin-top: 14px;
  padding: 14px 20px;
  border-radius: 9px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.big-contact-button.whatsapp{
  background:#138f55;
}

.big-contact-button.outline{
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

@media(max-width:900px){
  .contact-grid-page{
    grid-template-columns:1fr;
  }
}


/* === Pagina SEO Chirurgia di parete === */
.seo-content-grid{display:grid;grid-template-columns:1.35fr .75fr;gap:28px;align-items:start}
.seo-article h2{margin-top:32px}
.seo-article h2:first-child{margin-top:0}
.seo-article p{line-height:1.8}
.seo-list{margin:12px 0 28px;padding-left:22px}
.seo-list li{margin-bottom:10px;line-height:1.6}
.seo-side-card{position:sticky;top:145px}
.seo-side-card a{color:var(--blue);font-weight:800;text-decoration:none}
.seo-cta-box{margin-top:34px;padding:28px;border-radius:16px;background:#f7f9fc;border:1px solid var(--line)}
.area-link{display:inline-block;margin-top:13px;color:var(--blue);font-weight:800;text-decoration:none}
.faq-section{padding:58px 0;background:#f7f9fc;border-top:1px solid var(--line)}
.faq-section h2{margin:0 0 28px;font-family:'Playfair Display',Georgia,serif;font-size:clamp(32px,3.2vw,44px);text-align:center}
.faq-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.faq-grid article{padding:26px;background:#fff;border:1px solid var(--line);border-radius:18px;box-shadow:0 10px 30px rgba(5,31,70,.05)}
.faq-grid h3{margin:0 0 12px}
.faq-grid p{margin:0;line-height:1.7;color:var(--muted)}
@media(max-width:900px){.seo-content-grid,.faq-grid{grid-template-columns:1fr}.seo-side-card{position:static}}
