/* ═══════════════════════════════════════
   VANITÀ ESTETIC — style.css
   Font: Figtree 700 (titoli) · Manrope 500 (testo)
   Palette: #503E34 · #AB9785 · #C59C6D
═══════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --espresso: #503E34;
  --clay:     #AB9785;
  --gold:     #C59C6D;
  --gold-lt:  #D8B68A;
  --sand:     #EDE5DA;
  --sand-mid: #DDD0C2;
  --sand-dk:  #C9BAA9;
  --linen:    #F7F2EC;
  --text:     #503E34;
  --soft:     #7A6558;
  --dim:      #9E8C7E;
  --white:    #FDFAF7;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--sand);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── UTILITIES ── */
.label {
  display: inline-block;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.gold-line {
  display: block; width: 48px; height: 1px;
  background: var(--gold); margin-bottom: 1.8rem;
}
.gold-line--center { margin-left: auto; margin-right: auto; }
.h-title {
  font-family: 'Figtree', sans-serif; font-weight: 700;
  line-height: 1.08; color: var(--espresso);
}

/* ── BOTTONI ── */
.btn {
  display: inline-block;
  font-family: 'Manrope', sans-serif; font-size: 0.62rem;
  font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 0.95rem 2.2rem; cursor: pointer;
  transition: background 0.28s, color 0.28s, border-color 0.28s;
  white-space: nowrap; border: 1px solid var(--espresso);
  color: var(--espresso); background: transparent;
}
.btn:hover { background: var(--espresso); color: var(--linen); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--espresso); }
.btn--gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn--outline-gold { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn--outline-gold:hover { background: var(--gold); color: var(--white); }

/* ── ANIMAZIONE SCROLL ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ════════════════════════════════
   NAV
════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 100px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(247,242,236,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sand-dk);
}
.nav__brand img {
  font-family: 'Figtree', sans-serif; font-weight: 700;
  font-size: 1.2rem; color: var(--espresso); letter-spacing: 0.02em; height: 80px;
}
.nav__links { display: flex; gap: 2.2rem; align-items: center; }
.nav__links a {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--soft); transition: color 0.2s;
}
.nav__links a:hover { color: var(--espresso); }
.nav__cta {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 0.48rem 1.3rem;
  border: 1px solid var(--espresso); color: var(--espresso);
  transition: background 0.25s, color 0.25s;
}
.nav__cta:hover { background: var(--espresso); color: var(--linen); }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav__burger span {
  display: block; width: 22px; height: 1px;
  background: var(--espresso); transition: all 0.3s;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  margin-top: 70px;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 70px);
  overflow: hidden;
}
.hero__img { position: relative; overflow: hidden; }
.hero__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85) saturate(0.8);
}
.hero__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--sand) 100%);
}
.hero__content {
  background: var(--sand);
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4.5rem 5rem 3.5rem;
}
.hero__eye {
  display: block; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.hero__h1 {
  font-family: 'Figtree', sans-serif; font-weight: 700;
  font-size: clamp(1.8rem, 5.5vw, 3.3rem);
  line-height: 1.04; color: var(--espresso); margin-bottom: 0.5rem;
}
.hero__h1 em { color: var(--gold); font-style: normal; }
.hero__sub {
  font-size: 1rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--soft); margin-bottom: 2.5rem;
}
.hero__desc {
  font-size: 0.9rem; color: var(--soft);
  line-height: 1.82; max-width: 100%; margin-bottom: 3rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__badges {
  display: flex; gap: 2.5rem; margin-top: 4rem;
  padding-top: 2.5rem; border-top: 1px solid var(--sand-dk);
  flex-wrap: wrap;
}
.badge__num {
  font-family: 'Figtree', sans-serif; font-weight: 700;
  font-size: 2.4rem; color: var(--gold); display: block; line-height: 1;
}
.badge__lbl {
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dim); margin-top: 0.25rem; display: block;
}

/* ════════════════════════════════
   PILLARS
════════════════════════════════ */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--clay);
}
.pillar {
  padding: 3rem 2.5rem; display: flex; align-items: flex-start; gap: 1.3rem;
  border-right: 1px solid rgba(80,62,52,0.2);
}
.pillar:last-child { border-right: none; }
.pillar__icon { width: 32px; height: 32px; flex-shrink: 0; margin-top: 3px; color: var(--white); }
.pillar h3 {
  font-family: 'Figtree', sans-serif; font-weight: 700;
  font-size: 1.1rem; color: var(--white); margin-bottom: 0.35rem;
}
.pillar p { font-size: 0.83rem; color: rgba(247,242,236,0.75); line-height: 1.65; }

/* ════════════════════════════════
   CHI SONO
════════════════════════════════ */
.chi { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }
.chi__img { position: relative; overflow: hidden; }
.chi__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.8) saturate(0.78);
}
.chi__quote {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(80,62,52,0.9) 40%, transparent);
  padding: 3rem 2.5rem;
}
.chi__quote blockquote {
  font-size: 1.05rem; font-style: italic; font-weight: 500;
  color: var(--linen); line-height: 1.55;
}
.chi__text {
  background: var(--linen); padding: 5rem 4.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.chi__text h2 { font-size: clamp(2.2rem, 3.5vw, 3.2rem); margin-bottom: 1.5rem; }
.chi__text h2 em { color: var(--gold); font-style: normal; }
.chi__text p {
  font-size: 0.92rem; color: var(--soft);
  line-height: 1.85; margin-bottom: 1.2rem; max-width: 460px;
}
.chi__text p strong { color: var(--espresso); font-weight: 600; }

/* ════════════════════════════════
   TRATTAMENTI
════════════════════════════════ */
.tratt { padding: 7rem 2rem; background: var(--sand); }
.tratt__head {
  max-width: 1200px; margin: 0 auto 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end;
}
.tratt__head h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.tratt__head-right { display: flex; flex-direction: column; justify-content: flex-end; }
.tratt__head-right p {
  font-size: 0.92rem; color: var(--soft);
  line-height: 1.8; max-width: 400px; margin-bottom: 1.8rem;
}
.tgrid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--sand-dk);
}
.tcard {
  background: var(--linen); padding: 2.8rem 2.2rem;
  position: relative; overflow: hidden; transition: background 0.35s;
}
.tcard::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.tcard:hover { background: var(--sand-mid); }
.tcard:hover::after { opacity: 1; }
.tcard__num {
  font-family: 'Figtree', sans-serif; font-weight: 700;
  font-size: 2.8rem; color: var(--sand-dk);
  line-height: 1; margin-bottom: 0.9rem; transition: color 0.35s;
}
.tcard:hover .tcard__num { color: var(--clay); }
.tcard h3 {
  font-family: 'Figtree', sans-serif; font-weight: 700;
  font-size: 1.15rem; color: var(--espresso); margin-bottom: 0.65rem; line-height: 1.2;
}
.tcard p { font-size: 0.84rem; color: var(--soft); line-height: 1.7; }
.tcard__tag {
  display: inline-block; margin-top: 1.3rem;
  font-size: 0.57rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px;
}
.ig-strip {
  max-width: 1200px; margin: 3rem auto 0; padding: 2.4rem 2.5rem;
  border: 1px solid var(--sand-dk);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.ig-strip__text { font-size: 1.2rem; font-weight: 700; color: var(--espresso); }
.ig-strip__text span { color: var(--gold); }
.ig-strip__link {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--espresso); border: 1px solid var(--espresso);
  padding: 0.85rem 1.8rem; transition: background 0.3s, color 0.3s;
}
.ig-strip__link:hover { background: var(--espresso); color: var(--linen); }
.ig-strip__link svg { width: 15px; height: 15px; }

/* ════════════════════════════════
   BIOSLIMMING
════════════════════════════════ */
.bio { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; overflow: hidden; }
.bio__img { position: relative; overflow: hidden; }
.bio__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.8) saturate(0.78);
}
.bio__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 45%, var(--linen) 100%);
}
.bio__content {
  background: var(--linen); padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.bio__content h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1.2rem; }
.bio__content h2 em { color: var(--gold); font-style: normal; }
.bio__content p { font-size: 0.9rem; color: var(--soft); line-height: 1.8; margin-bottom: 1rem; }
.bio__list { margin: 1.5rem 0 2.5rem; display: flex; flex-direction: column; gap: 0.85rem; }
.bio__item { display: flex; align-items: center; gap: 1rem; font-size: 0.85rem; color: var(--text); }
.bio__item::before {
  content: ''; display: block; width: 24px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

/* ════════════════════════════════
   STAR SHAPE
════════════════════════════════ */
.starshape {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px; overflow: hidden;
  background: var(--espresso);
}
.starshape__content {
  padding: 5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.starshape__content .label { color: var(--gold); }
.starshape__content h2 {
  font-family: 'Figtree', sans-serif; font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--linen); line-height: 1.1; margin-bottom: 1.2rem;
}
.starshape__content h2 em { color: var(--gold); font-style: normal; }
.starshape__content > p {
  font-size: 0.9rem; color: var(--clay); line-height: 1.82; margin-bottom: 0.8rem;
}
.starshape__list { margin: 1.4rem 0 0; display: flex; flex-direction: column; gap: 0.8rem; }
.starshape__item { display: flex; align-items: center; gap: 1rem; font-size: 0.85rem; color: var(--sand-mid); }
.starshape__item::before {
  content: ''; display: block; width: 24px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.starshape__promo {
  margin: 2rem 0 2.5rem; padding: 1.4rem 1.8rem;
  border: 1px solid rgba(197,156,109,0.4);
  background: rgba(197,156,109,0.1);
}
.starshape__badge {
  display: inline-block; margin-bottom: 0.65rem;
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  background: var(--gold); color: var(--espresso); padding: 0.22rem 0.65rem;
}
.starshape__promo p {
  font-size: 1rem; font-weight: 600; color: var(--linen); line-height: 1.4; margin: 0;
}
.starshape__promo small {
  display: block; margin-top: 0.3rem; font-size: 0.8rem; color: var(--clay); font-weight: 400;
}
.starshape__img { position: relative; overflow: hidden; }
.starshape__img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; filter: brightness(0.75) saturate(0.75);
}
.starshape__img::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to left, transparent 55%, var(--espresso) 100%);
}

/* ════════════════════════════════
   CARD PREPAGATE
════════════════════════════════ */
.prepagate {
  background: var(--espresso); padding: 7rem 2rem;
  text-align: center; position: relative; overflow: hidden;
}
.prepagate::before {
  content: 'VE'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Figtree', sans-serif; font-weight: 700;
  font-size: 28rem; line-height: 1;
  color: rgba(171,151,133,0.1); pointer-events: none; user-select: none;
}
.prepagate__inner { position: relative; max-width: 600px; margin: 0 auto; }
.prepagate__inner .label { color: var(--gold); }
.prepagate__inner h2 {
  font-family: 'Figtree', sans-serif; font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--linen); line-height: 1.1; margin-bottom: 1.2rem;
}
.prepagate__inner h2 em { color: var(--gold); font-style: normal; }
.prepagate__inner p { font-size: 0.93rem; color: var(--clay); line-height: 1.8; margin-bottom: 2.5rem; }

/* ════════════════════════════════
   GALLERIA + LIGHTBOX
════════════════════════════════ */
.gallery { padding: 6rem 2rem; background: var(--sand); }
.gallery__head {
  max-width: 1200px; margin: 0 auto 3rem;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.gallery__head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.gallery__head h2 span { color: var(--gold); }
.gallery__head p { font-size: 0.88rem; color: var(--soft); margin-top: 0.4rem; }
.gallery__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.gallery__item {
  aspect-ratio: 1; overflow: hidden; position: relative;
  cursor: pointer; background: var(--sand-mid);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.88);
  transition: transform 0.45s ease, filter 0.35s ease;
}
.gallery__item:hover img { transform: scale(1.06); filter: saturate(1); }
.gallery__item__over {
  position: absolute; inset: 0;
  background: rgba(80,62,52,0); transition: background 0.35s;
  display: flex; align-items: center; justify-content: center;
}
.gallery__item:hover .gallery__item__over { background: rgba(80,62,52,0.32); }
.gallery__zoom {
  color: white; opacity: 0; transform: scale(0.75);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery__item:hover .gallery__zoom { opacity: 1; transform: scale(1); }
.gallery__zoom svg { width: 32px; height: 32px; }

/* lightbox */
.lb {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(20,14,10,0.94);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.lb.open { display: flex; }
.lb__inner {
  position: relative; max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lb__img {
  max-width: 90vw; max-height: 88vh; object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lb__close {
  position: fixed; top: 1.4rem; right: 1.6rem;
  background: none; border: none; cursor: pointer;
  color: var(--sand-mid); font-size: 2rem; line-height: 1;
  transition: color 0.2s; z-index: 501;
}
.lb__close:hover { color: var(--gold); }
.lb__prev, .lb__next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(80,62,52,0.55); border: none; cursor: pointer;
  color: var(--linen); width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s; z-index: 501;
}
.lb__prev:hover, .lb__next:hover { background: var(--espresso); }
.lb__prev { left: 1rem; }
.lb__next { right: 1rem; }
.lb__prev svg, .lb__next svg { width: 22px; height: 22px; }
.lb__counter {
  position: fixed; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--clay); z-index: 501;
}

/* ════════════════════════════════
   CONTATTI
════════════════════════════════ */
.contatti { display: grid; grid-template-columns: 1fr 1fr; }
.contatti__left {
  background: var(--sand-mid); padding: 6rem 4.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.contatti__left h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1rem; }
.contatti__left h2 em { color: var(--gold); font-style: normal; }
.contatti__left > p {
  font-size: 0.9rem; color: var(--soft); line-height: 1.8; margin-bottom: 2.5rem;
}
.c-row {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.4rem; font-size: 0.88rem; color: var(--text);
}
.c-row svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.c-row a { color: inherit; transition: color 0.2s; }
.c-row a:hover { color: var(--gold); }
.contatti__right {
  background: var(--linen); padding: 6rem 4.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.contatti__right h3 {
  font-family: 'Figtree', sans-serif; font-weight: 700;
  font-size: 1.6rem; color: var(--espresso); margin-bottom: 0.4rem;
}
.contatti__right > p { font-size: 0.85rem; color: var(--dim); margin-bottom: 2rem; }
.fg { margin-bottom: 1.3rem; }
.fg label {
  display: block; font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 0.45rem;
}
.fg input, .fg textarea {
  width: 100%; background: var(--white);
  border: 1px solid var(--sand-dk); padding: 0.9rem 1.1rem;
  font-family: 'Manrope', sans-serif; font-size: 0.88rem; font-weight: 500;
  color: var(--text); outline: none; transition: border-color 0.25s;
  border-radius: 0; -webkit-appearance: none; appearance: none;
}
.fg input:focus, .fg textarea:focus { border-color: var(--gold); }
.fg textarea { min-height: 110px; resize: vertical; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-ok { display: none; margin-top: 1rem; font-size: 0.82rem; color: var(--gold); }

/* ════════════════════════════════
   MAPPA
════════════════════════════════ */
.mappa { height: 380px; }
.mappa iframe {
  width: 100%; height: 100%; border: none; display: block;
  filter: sepia(20%) saturate(0.75) brightness(0.95);
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background: var(--espresso); padding: 4rem 2rem; text-align: center;
  border-top: 1px solid rgba(171,151,133,0.2);
}
.footer__brand {
  font-family: 'Figtree', sans-serif; font-weight: 700;
  font-size: 1.9rem; color: var(--gold); display: block; margin-bottom: 0.25rem;
}
.footer__sub {
  font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--clay);
}
.footer__sep { width: 36px; height: 1px; background: var(--gold); margin: 1.4rem auto; }
footer p { font-size: 0.82rem; color: var(--clay); margin-bottom: 0.3rem; }
footer a { color: var(--clay); transition: color 0.2s; }
footer a:hover { color: var(--gold); }
footer small { font-size: 0.68rem; color: rgba(171,151,133,0.45); }

/* ════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem;
}
.wa-float__num {
  background: var(--espresso); color: var(--gold);
  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.06em;
  padding: 0.25rem 0.8rem; white-space: nowrap;
}
.wa-float__btn {
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.32);
  transition: transform 0.22s;
}
.wa-float__btn:hover { transform: scale(1.07); }
.wa-float__btn svg { width: 30px; height: 30px; fill: white; }



.reviews { padding: 7rem 2rem; background: var(--linen); }
.reviews__head {
  max-width: 1200px; margin: 0 auto 1.5rem;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.reviews__head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.reviews__head h2 span { color: var(--gold); }
.reviews__head p { font-size: 0.88rem; color: var(--soft); margin-top: 0.3rem; }
.reviews__score {
  display: flex; align-items: center; gap: 1rem; flex-shrink: 0;
  padding: 1rem 1.6rem; background: var(--sand);
  border: 1px solid var(--sand-dk);
}
.reviews__score-num {
  font-family: 'Figtree', sans-serif; font-weight: 700;
  font-size: 2.8rem; color: var(--espresso); line-height: 1;
}
.reviews__score-right { display: flex; flex-direction: column; gap: 0.3rem; }
.reviews__stars { display: flex; gap: 3px; }
.reviews__stars svg { width: 16px; height: 16px; fill: var(--gold); }
.reviews__score-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); }
.reviews__source { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: var(--soft); }
.reviews__source svg { width: 16px; height: 16px; flex-shrink: 0; }

.reviews__grid {
  max-width: 1200px; margin: 3rem auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--sand-dk);
}
.rcard {
  background: var(--white); padding: 2.2rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background 0.3s;
}
.rcard:hover { background: var(--sand); }
.rcard__stars { display: flex; gap: 3px; }
.rcard__stars svg { width: 14px; height: 14px; fill: var(--gold); }
.rcard__text {
  font-size: 0.9rem; color: var(--text); line-height: 1.75;
  flex: 1;
}
.rcard__text::before { content: '\201C'; font-family: 'Figtree', sans-serif; font-size: 1.8rem; line-height: 0; vertical-align: -0.5rem; color: var(--gold); margin-right: 3px; }
.rcard__text::after  { content: '\201D'; font-family: 'Figtree', sans-serif; font-size: 1.8rem; line-height: 0; vertical-align: -0.5rem; color: var(--gold); margin-left: 3px; }
.rcard__footer { display: flex; align-items: center; gap: 0.8rem; padding-top: 1rem; border-top: 1px solid var(--sand-dk); }
.rcard__avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--clay); display: flex; align-items: center; justify-content: center;
  font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--white);
}
.rcard__name { font-size: 0.82rem; font-weight: 600; color: var(--espresso); }
.rcard__treatment { font-size: 0.72rem; color: var(--dim); margin-top: 0.1rem; }

.reviews__cta { max-width: 1200px; margin: 3rem auto 0; text-align: center; }
.reviews__cta p { font-size: 0.85rem; color: var(--soft); margin-bottom: 1.2rem; }

@media (max-width: 900px) {
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .reviews__head { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}
@media (max-width: 480px) {
  .reviews { padding: 5rem 1.5rem; }
  .reviews__grid { grid-template-columns: 1fr; }
}




/* ════════════════════════════════
   RESPONSIVE — tablet (max 900px)
════════════════════════════════ */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--linen); border-bottom: 1px solid var(--sand-dk);
    padding: 2rem 2.5rem; gap: 1.4rem; z-index: 199;
  }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__img { height: 80vw; min-height: 260px; }
  .hero__img::after { background: linear-gradient(to bottom, transparent 50%, var(--sand) 100%); }
  .hero__content { padding: 3rem 2rem 4rem; }
  .hero__badges { gap: 2rem; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(80,62,52,0.2); }
  .pillar:last-child { border-bottom: none; }
  .chi { grid-template-columns: 1fr; min-height: auto; }
  .chi__img { height: 90vw; min-height: 280px; }
  .chi__text { padding: 3.5rem 2rem; }
  .tratt__head { grid-template-columns: 1fr; gap: 1.5rem; }
  .tgrid { grid-template-columns: 1fr 1fr; }
  .bio { grid-template-columns: 1fr; }
  .bio__img { height: 102vw; min-height: 260px; }
  .bio__img::after { background: linear-gradient(to bottom, transparent 45%, var(--linen) 100%); }
  .bio__content { padding: 3.5rem 2rem; }
  .starshape { grid-template-columns: 1fr; }
  .starshape__img { height: 135vw; min-height: 280px; order: -1; }
  .starshape__img::before { background: linear-gradient(to bottom, transparent 50%, var(--espresso) 100%); }
  .starshape__content { padding: 3.5rem 2rem; }
  .contatti { grid-template-columns: 1fr; }
  .contatti__left, .contatti__right { padding: 3.5rem 2rem; }
  .fg-row { grid-template-columns: 1fr; }
  .ig-strip { flex-direction: column; align-items: flex-start; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .gallery__head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .lb__prev { left: 0.3rem; }
  .lb__next { right: 0.3rem; }
}

/* ════════════════════════════════
   RESPONSIVE — mobile (max 480px)
════════════════════════════════ */
@media (max-width: 480px) {
  .nav { padding: 0 1.2rem; }
  .hero__content { padding: 2.5rem 1.5rem 3.5rem; }
  .hero__h1 { font-size: 2.4rem; }
  .hero__badges { gap: 1.5rem; }
  .badge__num { font-size: 2rem; }
  .pillar { padding: 2rem 1.5rem; }
  .chi__text { padding: 3rem 1.5rem; }
  .tratt { padding: 5rem 1.2rem; }
  .tgrid { grid-template-columns: 1fr; }
  .tcard { padding: 2rem 1.5rem; }
  .bio__content { padding: 3rem 1.5rem; }
  .starshape__content { padding: 3rem 1.5rem; }
  .starshape__promo { padding: 1rem 1.2rem; }
  .prepagate { padding: 5rem 1.5rem; }
  .prepagate::before { font-size: 14rem; }
  .gallery__grid { grid-template-columns: repeat(1, 1fr); gap: 3px; }
  .contatti__left, .contatti__right { padding: 3rem 1.5rem; }
  .btn { padding: 0.85rem 1.6rem; font-size: 0.6rem; }
  .wa-float { bottom: 1.2rem; right: 1.2rem; }
  .nav__brand img { height: 60px;}
  .nav { height: 80px;}
}
