/* Yoga Chiarotta — Editorial Minimal
   Palette: panna caldo + nero morbido (monocromatico)
*/
:root{
  --section-bg: #F4EFFA;
  --card-bg: #FBF9FD;
  --header-bg: #F4EFFA;
  --bg: #E7E2FF;
  --paper: #FFFFFF;
  --ink: #1A1A1A;
  --muted: rgba(26,26,26,.62);
  --line: rgba(26,26,26,.12);
  --accent: #1E2433;      /* blu notte */
  --accent2: #0F6B62;     /* micro-accent (solo per piccoli dettagli se serve) */
  --radius: 18px;
  --shadow: 0 12px 28px rgba(0,0,0,.08);
}

*{ box-sizing: border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left: 16px; top: 16px;
  width:auto; height:auto;
  background: var(--paper);
  padding: 10px 12px;
  border:1px solid var(--line);
  border-radius: 10px;
  z-index: 9999;
}

/* Header */
.header{
  position: sticky;
  top:0;
  background: rgba(248,247,244,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 1000;
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand{
  display:flex; align-items:center; gap: 10px;
}
.brand__mark{
  display:inline-grid; place-items:center;
  width:34px; height:34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .02em;
}
.brand__name{
  font-weight: 500;
  letter-spacing: .01em;
}
.nav{
  display:flex; align-items:center; gap: 16px;
  font-size: 14px;
}
.nav__cta{
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}
.nav__cta:hover{ text-decoration:none; border-color: rgba(26,26,26,.22); }

/* Hero */
.hero{
  padding: 58px 0 28px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
}
.kicker{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
h1,h2{
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  letter-spacing: -0.02em;
}
h1{
  font-size: clamp(38px, 4.2vw, 54px);
  line-height: 1.03;
  margin: 0 0 16px;
}
.lead{
  font-size: 16px;
  color: rgba(26,26,26,.78);
  margin: 0 0 22px;
  max-width: 60ch;
}
.actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.micro{
  margin:0;
  font-size: 13px;
  color: var(--muted);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 14px;
  font-weight: 500;
  text-decoration:none;
}
.btn:hover{ text-decoration:none; border-color: rgba(26,26,26,.22); }
.btn--primary{
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}
.btn--primary:hover{ filter: brightness(0.98); }
.btn--ghost{
  background: transparent;
}
.btn--dark{
  background: #111;
  color: #fff;
  border-color: transparent;
}

/* Panel */
.hero__panel .panel{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.panel__top{
  display:flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.chip{
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(26,26,26,.06);
  border: 1px solid rgba(26,26,26,.12);
  font-size: 13px;
}
.chip--outline{
  background: transparent;
  border-color: var(--line);
}
.panel__label{
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.panel__list{
  margin: 0;
  padding: 0;
  list-style: none;
}
.panel__list li{
  display:flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.panel__bottom{
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 12px;
}
.panel__fine{
  margin:0;
  font-size: 13px;
  color: var(--muted);
}

/* Strip */
.strip{
  padding: 18px 0 10px;
}
.strip__inner{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.strip__item{
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.strip__title{
  margin:0 0 6px;
  font-weight: 500;
}
.strip__text{
  margin:0;
  color: var(--muted);
  font-size: 14px;
}

/* Sections */
.section{
  padding: 54px 0;
}
.section--alt{
  background: rgba(255,255,255,.65);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{
  margin-bottom: 22px;
}
h2{
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 10px;
}
.section__sub{
  margin:0;
  color: var(--muted);
  max-width: 70ch;
}

.grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
}
.card h3{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: .01em;
}
.card__lead{
  margin: 0 0 12px;
  color: var(--muted);
}
.card--accent{
  border-color: rgba(26,26,26,.18);
}
.list{
  margin: 0 0 14px;
  padding-left: 18px;
}
.list li{ margin: 6px 0; }
.card__cta{
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.hint{
  margin:0;
  font-size: 13px;
  color: var(--muted);
}

/* Two columns */
.two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 10px;
}
.callout{
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(248,247,244,.7);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.callout p{ margin:0; max-width: 72ch; }

/* Bio */
.bio{
  display:grid;
  grid-template-columns: .45fr .55fr;
  gap: 18px;
  align-items: start;
}
.bio__photo{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 260px;
  display:grid;
  place-items:center;
}
.photo-placeholder p{
  margin:0;
  font-weight: 500;
}
.bio__text p{
  margin-top: 0;
}
.bio__mini{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0 16px;
}
.mini{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255,255,255,.7);
}
.mini__k{
  margin: 0 0 4px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mini__v{
  margin: 0;
  font-weight: 500;
}

/* FAQ */
.faq{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 10px 0;
}
.faq summary{
  cursor:pointer;
  font-weight: 500;
}
.faq p{
  margin: 10px 0 0;
  color: var(--muted);
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.contact__card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.contact__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0 10px;
}
.contact__note{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255,255,255,.65);
}

.footer{
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.muted{ color: var(--muted); }

/* Responsive */
@media (max-width: 900px){
  .hero__inner{ grid-template-columns: 1fr; }
  .strip__inner{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .two{ grid-template-columns: 1fr; }
  .bio{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .nav{ gap: 10px; }
}

.price{
  margin: 8px 0 14px;
  font-size: 15px;
  color: rgba(26,26,26,.85);
}

.manifesto{
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.dates{
  margin: 16px 0 0;
  color: rgba(26,26,26,.75);
}

.cta-center{
  text-align:center;
  margin-top:24px;
}

.insta-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  padding:0;
}

/* --- Legal pages (minimal) --- */
.legal { padding: 64px 0; border-top: 1px solid var(--line); }
.legal h2 { margin-bottom: 12px; }
.legal h3 { margin-top: 20px; margin-bottom: 8px; font-size: 1rem; }
.legal ul { margin: 10px 0 0 18px; }
.legal li { margin: 6px 0; }
.footer a { text-decoration: underline; text-underline-offset: 3px; }

/* --- Cookie banner --- */
.cookie-banner__inner p { margin: 0 0 10px 0; }
/* --- Cookie preferences modal --- */
.cookie-toggle:first-of-type { border-top: none; }
.cookie-toggle input { width: 18px; height: 18px; }

.cards{display:grid;gap:18px;}
.cards--3{grid-template-columns:repeat(3,minmax(0,1fr));}
@media (max-width: 860px){.cards--3{grid-template-columns:1fr;}}

/* v38b: tighten hero -> pratiche spacing (without removing hero content) */
.hero{padding-bottom:28px;}
#pratiche{padding-top:28px;}
/* Hero */
.hero{padding:64px 0 28px;}
.hero__inner{display:block;}
.hero__kicker{letter-spacing:.18em;text-transform:uppercase;font-size:.85rem;opacity:.7;margin:0 0 14px;}
.hero__title{font-family:"Cormorant Garamond",serif;font-weight:600;font-size:clamp(2.2rem,5vw,3.2rem);line-height:1.05;margin:0 0 14px;}
.hero__lead{max-width:60ch;font-size:1.05rem;line-height:1.6;margin:0;}

/* v39: tighten hero -> pratiche */
#offerte{padding-top:28px;}

/* v40b: compact legal sections */
#info-legali, #privacy, #cookie { padding: 22px 0; }
#info-legali .section__title, #privacy .section__title, #cookie .section__title { font-size: 1.02rem; margin-bottom: 8px; }
#info-legali p, #privacy p, #cookie p { font-size: .88rem; line-height: 1.5; margin: 0 0 8px; }
#info-legali .container, #privacy .container, #cookie .container { max-width: 760px; }

/* v45: further compact legal stack + uniform titles */
#info-legali, #privacy, #cookie { padding: 16px 0; }
#info-legali { margin-bottom: 0; }
#privacy, #cookie { margin-top: 0; }
#info-legali .section__title, #privacy .section__title, #cookie .section__title { font-size: 1.02rem; margin-bottom: 6px; }
#info-legali p, #privacy p, #cookie p { font-size: .86rem; line-height: 1.45; margin: 0 0 6px; }

/* v47: keep Info legali title consistent */
#info-legali .section__title{font-size:1.02rem;margin-bottom:6px;}

/* v50: section & card surfaces */
.header{ background: var(--header-bg); }
.section--alt{ background: var(--section-bg); }

/* specific sections */
#metodo, #ritrova, #newsletter{ background: var(--section-bg); }

/* cards and panels */
.card, .note, .box, .panel, .pricing-card, .offer-card{ background: var(--card-bg); }



/* v58: image in Le pratiche */
.practice-photo{
  margin: 56px auto 56px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: #FBF9FD;
  max-width: 720px;
}
.practice-photo img{
  display: block;
  width: 100%;
  height: auto;
}


/* v61 center text in Le pratiche section */
#offerte .section__head,
#offerte .section__sub{
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

#offerte .section__sub p{
  text-align: center;
}


/* v62 center hero section */
.hero{
  text-align:center;
}
.hero .container{
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}


.bio-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:28px;
}


/* v69 final refinements */
@media (min-width: 900px){
  .hero p,
  .hero__lead{
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero h1,
.hero__title{
  margin-bottom: 28px;
}
