/* =========================================================
   Bella nails & body art — Atelier di bellezza, Palermo
   Design system: warm editorial / luxury nail atelier
   ========================================================= */

:root {
  /* Palette */
  --ivory: #faf6f1;
  --cream: #f1e9de;
  --blush: #e7d3ca;
  --blush-deep: #d7b4a8;
  --espresso: #221a14;
  --espresso-soft: #4a3a2e;
  --champagne: #b5895f;
  --champagne-light: #c9a57e;
  --line: rgba(34, 26, 20, 0.14);
  --line-soft: rgba(34, 26, 20, 0.08);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;

  /* Fluid scale */
  --step--1: clamp(0.78rem, 0.74rem + 0.2vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2: clamp(1.6rem, 1.4rem + 1vw, 2.2rem);
  --step-3: clamp(2.2rem, 1.8rem + 2vw, 3.4rem);
  --step-4: clamp(3rem, 2.2rem + 4vw, 5.5rem);
  --step-5: clamp(3.6rem, 2.4rem + 6vw, 8.5rem);

  /* Space */
  --section-y: clamp(5rem, 4rem + 8vw, 11rem);
  --gutter: clamp(1.25rem, 0.8rem + 3vw, 4rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.65, 0.05, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--espresso);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--espresso); color: var(--ivory); }

/* Hide native cursor on fine pointers (custom cursor takes over) */
@media (hover: hover) and (pointer: fine) {
  * { cursor: none !important; }
}

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: 0.4; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ---------- Custom cursor ---------- */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; border-radius: 50%; will-change: transform; }
.cursor {
  width: 42px; height: 42px; margin: -21px 0 0 -21px;
  border: 1px solid var(--espresso);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), margin 0.3s var(--ease), background-color 0.3s var(--ease), opacity 0.3s;
  mix-blend-mode: difference; border-color: #fff;
}
.cursor-dot { width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; background: #fff; mix-blend-mode: difference; }
.cursor.is-hover { width: 70px; height: 70px; margin: -35px 0 0 -35px; background: rgba(255,255,255,0.08); }
.cursor.is-view {
  width: 92px; height: 92px; margin: -46px 0 0 -46px;
  background: var(--espresso); border-color: transparent; mix-blend-mode: normal;
}
.cursor.is-view::after { content: "Vedi"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--ivory); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.cursor.is-view ~ .cursor-dot { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-dot { display: none; } }

/* ---------- Loader ---------- */
.loader { position: fixed; inset: 0; z-index: 9500; background: var(--espresso); display: grid; place-items: center; }
.loader__inner { display: flex; align-items: baseline; gap: 0.5rem; color: var(--ivory); }
.loader__mark { font-family: var(--font-display); font-size: clamp(3rem, 10vw, 6rem); font-weight: 300; font-style: italic; }
.loader__count { font-family: var(--font-body); font-size: 1rem; letter-spacing: 0.1em; opacity: 0.6; }
.loader.is-done { transform: translateY(-100%); transition: transform 1s var(--ease); }

/* ---------- Shared ---------- */
.eyebrow {
  font-size: var(--step--1); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--champagne); font-weight: 400;
  display: inline-flex; align-items: center; gap: 0.85rem;
}
.eyebrow::before { content: ""; width: 2.2rem; height: 1px; background: var(--champagne); display: inline-block; }

.h2 {
  font-family: var(--font-display); font-weight: 300; line-height: 1.08;
  font-size: var(--step-3); letter-spacing: -0.01em;
  max-width: 16ch; margin-top: 1.4rem;
}
.h2 em { font-style: italic; color: var(--champagne); }
.lead { font-size: var(--step-1); font-weight: 300; line-height: 1.5; max-width: 46ch; color: var(--espresso-soft); }

/* Buttons */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 1.05rem 2rem; font-size: var(--step--1); letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 100px; overflow: hidden; font-weight: 400;
  transition: color 0.5s var(--ease);
}
.btn span { position: relative; z-index: 2; }
.btn::before { content: ""; position: absolute; inset: 0; z-index: 1; border-radius: inherit; transition: transform 0.6s var(--ease); }
.btn--solid { color: var(--ivory); }
.btn--solid::before { background: var(--espresso); }
.btn--solid:hover { color: var(--espresso); }
.btn--solid::after { content: ""; position: absolute; inset: 0; z-index: 0; background: var(--champagne-light); border-radius: inherit; transform: translateY(101%); transition: transform 0.6s var(--ease); }
.btn--solid:hover::after { transform: translateY(0); }
.btn--ghost { color: var(--espresso); border: 1px solid var(--line); }
.btn--ghost::before { background: var(--espresso); transform: translateY(101%); }
.btn--ghost:hover { color: var(--ivory); }
.btn--ghost:hover::before { transform: translateY(0); }
.btn--lg { padding: 1.25rem 2.6rem; margin-top: 2.5rem; }
.btn--nav { padding: 0.75rem 1.5rem; color: var(--ivory); }
.btn--nav::before { background: var(--espresso); }
.btn--nav::after { content: ""; position: absolute; inset: 0; background: var(--champagne); transform: translateY(101%); transition: transform 0.5s var(--ease); border-radius: inherit; }
.btn--nav:hover::after { transform: translateY(0); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem var(--gutter);
  transition: padding 0.5s var(--ease), background-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
  mix-blend-mode: difference;
}
.nav.is-scrolled {
  mix-blend-mode: normal; background: rgba(250, 246, 241, 0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  padding: 0.9rem var(--gutter); box-shadow: 0 1px 0 var(--line-soft);
}
.nav__brand { display: flex; flex-direction: column; line-height: 1; color: #fff; }
.nav.is-scrolled .nav__brand { color: var(--espresso); }
.nav__brand-name { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; font-weight: 400; }
.nav__brand-sub { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; margin-top: 0.2rem; opacity: 0.8; }
.nav__links { display: flex; gap: 2.2rem; color: #fff; }
.nav.is-scrolled .nav__links { color: var(--espresso); }
.nav__links a { position: relative; font-size: var(--step--1); letter-spacing: 0.04em; padding: 0.3rem 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav.is-scrolled .btn--nav { color: var(--ivory); }
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 28px; }
.nav__burger span { display: block; height: 1.5px; width: 100%; background: currentColor; color: #fff; transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav.is-scrolled .nav__burger span { background: var(--espresso); }

.menu-mobile {
  position: fixed; inset: 0; z-index: 999; background: var(--espresso); color: var(--ivory);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  transform: translateY(-100%); transition: transform 0.7s var(--ease); pointer-events: none;
}
.menu-mobile.is-open { transform: translateY(0); pointer-events: auto; }
.menu-mobile a { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; }
.menu-mobile__cta { font-family: var(--font-body) !important; font-size: 1rem !important; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.3); padding: 0.9rem 2rem; border-radius: 100px; margin-top: 1rem; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding: var(--gutter); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(34,26,20,0.5) 0%, rgba(34,26,20,0.12) 28%, rgba(34,26,20,0.32) 58%, rgba(34,26,20,0.82) 100%),
    linear-gradient(95deg, rgba(34,26,20,0.62) 0%, rgba(34,26,20,0.28) 42%, rgba(34,26,20,0) 72%);
}
.hero__content { position: relative; color: var(--ivory); max-width: 60rem; padding-bottom: clamp(2rem, 5vw, 5rem); text-shadow: 0 2px 40px rgba(34,26,20,0.45); }
.hero__content .eyebrow { color: var(--cream); }
.hero__content .eyebrow::before { background: var(--cream); }
.hero__title {
  font-family: var(--font-display); font-weight: 300; font-size: var(--step-5);
  line-height: 0.95; letter-spacing: -0.02em; margin: 1.2rem 0 1.8rem;
}
.hero__title em { font-style: italic; font-weight: 300; }
.line { display: block; overflow: hidden; }
.line > span { display: block; transform: translateY(110%); }
.hero__lead { font-size: var(--step-1); font-weight: 300; max-width: 40ch; line-height: 1.45; color: rgba(250,246,241,0.92); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero__actions .btn--ghost { color: var(--ivory); border-color: rgba(250,246,241,0.4); }
.hero__scroll { position: absolute; left: 50%; transform: translateX(-50%); bottom: var(--gutter); display: flex; flex-direction: column; align-items: center; gap: 0.8rem; color: var(--ivory); }
.hero__scroll span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero__scroll-line { width: 1px; height: 50px; background: rgba(250,246,241,0.5); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 50%; background: var(--ivory); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* Reveal helpers */
.reveal-up { opacity: 0; transform: translateY(28px); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.6rem 0; background: var(--cream); }
.marquee__track { display: flex; align-items: center; gap: 2.5rem; width: max-content; will-change: transform; }
.marquee__track span { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 3rem); font-weight: 300; font-style: italic; white-space: nowrap; }
.marquee__track .dot { color: var(--champagne); font-style: normal; }

/* ---------- Atelier ---------- */
.atelier { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 7rem); align-items: center; padding: var(--section-y) var(--gutter); }
.atelier__media { position: relative; }
.parallax-wrap { overflow: hidden; border-radius: 4px; aspect-ratio: 4/5; }
.parallax-wrap img { width: 100%; height: 115%; object-fit: cover; will-change: transform; }
.atelier__badge {
  position: absolute; right: -1.5rem; bottom: -1.5rem; background: var(--ivory);
  width: clamp(8rem, 14vw, 11rem); aspect-ratio: 1; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  box-shadow: 0 30px 60px -25px rgba(34,26,20,0.35); text-align: center;
}
.atelier__badge-num { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; }
.atelier__badge-star { color: var(--champagne); font-size: 0.8rem; letter-spacing: 0.1em; }
.atelier__badge-label { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--espresso-soft); }
.atelier__text .lead { margin-top: 1.8rem; }
.stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem); margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--font-display); font-size: var(--step-3); line-height: 1; font-weight: 300; }
.stat__suffix { font-family: var(--font-display); font-size: var(--step-2); color: var(--champagne); }
.stat__label { font-size: var(--step--1); letter-spacing: 0.08em; text-transform: uppercase; color: var(--espresso-soft); margin-top: 0.6rem; }
.stat { position: relative; }
.stat .stat__num, .stat .stat__suffix { display: inline; }

/* ---------- Services ---------- */
.services { padding: var(--section-y) var(--gutter); background: var(--espresso); color: var(--ivory); }
.services__head { max-width: 60rem; margin: 0 auto clamp(3rem, 6vw, 5rem); text-align: center; }
.services__head .eyebrow { color: var(--champagne-light); }
.services__head .h2 { margin-left: auto; margin-right: auto; max-width: 20ch; }
.services__list { max-width: 70rem; margin: 0 auto; }
.service {
  position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.5rem;
  padding: clamp(1.6rem, 3vw, 2.6rem) 1.5rem; border-top: 1px solid rgba(250,246,241,0.14);
  transition: padding-left 0.5s var(--ease), color 0.5s var(--ease);
}
.service:last-child { border-bottom: 1px solid rgba(250,246,241,0.14); }
.service::before { content: ""; position: absolute; inset: 0; background: var(--ivory); transform: scaleY(0); transform-origin: bottom; transition: transform 0.5s var(--ease); z-index: 0; }
.service:hover { color: var(--espresso); }
.service:hover::before { transform: scaleY(1); transform-origin: top; }
.service > * { position: relative; z-index: 1; }
.service:hover { padding-left: 2.5rem; }
.service__index { font-size: var(--step--1); letter-spacing: 0.1em; color: var(--champagne-light); }
.service:hover .service__index { color: var(--champagne); }
.service__name { font-family: var(--font-display); font-weight: 300; font-size: var(--step-2); line-height: 1.1; }
.service__desc { font-size: var(--step-0); color: rgba(250,246,241,0.6); max-width: 52ch; margin-top: 0.4rem; }
.service:hover .service__desc { color: var(--espresso-soft); }
.service__arrow { font-size: 1.6rem; transform: translateX(-8px); opacity: 0; transition: transform 0.5s var(--ease), opacity 0.4s; }
.service:hover .service__arrow { transform: translateX(0); opacity: 1; }

/* ---------- Gallery ---------- */
.gallery { padding: var(--section-y) 0; overflow: hidden; }
.gallery__head { padding: 0 var(--gutter); margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.gallery__scroll { width: 100%; }
.gallery__track { display: flex; gap: clamp(1rem, 2vw, 2rem); padding: 0 var(--gutter); width: max-content; will-change: transform; }
.gcard { position: relative; width: clamp(16rem, 28vw, 26rem); aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; flex-shrink: 0; }
.gcard--tall { aspect-ratio: 3/5; }
.gcard img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.gcard:hover img { transform: scale(1.06); }
.gcard figcaption { position: absolute; left: 1.2rem; bottom: 1.2rem; color: var(--ivory); font-size: var(--step--1); letter-spacing: 0.1em; text-transform: uppercase; padding: 0.45rem 0.9rem; background: rgba(34,26,20,0.4); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-radius: 100px; transform: translateY(8px); opacity: 0; transition: transform 0.5s var(--ease), opacity 0.4s; }
.gcard:hover figcaption { transform: translateY(0); opacity: 1; }

/* ---------- Reviews ---------- */
.reviews { padding: var(--section-y) var(--gutter); background: var(--blush); text-align: center; }
.reviews__inner { max-width: 50rem; margin: 0 auto; }
.reviews__quote { font-family: var(--font-display); font-weight: 300; font-size: var(--step-3); line-height: 1.25; letter-spacing: -0.01em; margin: 1.8rem 0; }
.reviews__meta { display: inline-flex; align-items: center; gap: 1rem; font-size: var(--step--1); letter-spacing: 0.06em; text-transform: uppercase; color: var(--espresso-soft); }
.reviews__stars { color: var(--champagne); letter-spacing: 0.15em; font-size: 1rem; }
.reviews__stage { min-height: 4.5em; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.reviews__quote { transition: opacity 0.4s ease; }
.reviews__author { margin-top: 1.4rem; font-size: var(--step--1); letter-spacing: 0.1em; text-transform: uppercase; color: var(--espresso-soft); transition: opacity 0.4s ease; }
.reviews__meta { flex-wrap: wrap; }
.reviews__link { color: var(--champagne); position: relative; }
.reviews__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease); }
.reviews__link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- Contact ---------- */
.contact { padding: var(--section-y) var(--gutter); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: stretch; }
.contact__rows { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.contact__row { display: flex; gap: 1.5rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.contact__label { flex: 0 0 7rem; font-size: var(--step--1); letter-spacing: 0.12em; text-transform: uppercase; color: var(--champagne); }
.contact__row a { font-size: var(--step-1); position: relative; }
.contact__row a:hover { color: var(--champagne); }
.contact__row--hours { align-items: flex-start; }
.hours { width: 100%; }
.hours li { display: flex; justify-content: space-between; padding: 0.35rem 0; font-size: var(--step-0); }
.hours li span:first-child { color: var(--espresso-soft); }
.hours .closed { color: var(--blush-deep); }
.contact__tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.tag { font-size: var(--step--1); letter-spacing: 0.06em; padding: 0.45rem 1rem; border: 1px solid var(--line); border-radius: 100px; color: var(--espresso-soft); }
.contact__map { border-radius: 4px; overflow: hidden; min-height: 26rem; box-shadow: 0 40px 80px -40px rgba(34,26,20,0.3); }
.contact__map iframe { width: 100%; height: 100%; min-height: 26rem; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* ---------- Footer ---------- */
.footer { background: var(--espresso); color: var(--ivory); padding: clamp(3rem, 6vw, 6rem) var(--gutter) 2rem; }
.footer__big { font-family: var(--font-display); font-weight: 300; font-size: var(--step-5); line-height: 0.95; letter-spacing: -0.02em; padding-bottom: clamp(2rem, 5vw, 4rem); border-bottom: 1px solid rgba(250,246,241,0.16); }
.footer__big em { font-style: italic; }
.footer__cols { display: flex; flex-wrap: wrap; gap: clamp(2rem, 6vw, 6rem); padding: clamp(2rem, 4vw, 3.5rem) 0; }
.footer__label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne-light); display: block; margin-bottom: 0.8rem; }
.footer__cols p { color: rgba(250,246,241,0.75); line-height: 1.8; }
.footer__cols a:hover { color: var(--champagne-light); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; border-top: 1px solid rgba(250,246,241,0.16); font-size: var(--step--1); color: rgba(250,246,241,0.5); letter-spacing: 0.04em; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .atelier { grid-template-columns: 1fr; }
  .atelier__media { max-width: 28rem; }
  .atelier__badge { right: 0; }
  .contact__grid { grid-template-columns: 1fr; }
  .hero__scroll { display: none; } /* su mobile sovrapporrebbe i CTA */
  .service { grid-template-columns: auto 1fr; }
  .service__arrow { display: none; }
  .service:hover { padding-left: 1.5rem; }
}
@media (max-width: 560px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .contact__row { flex-direction: column; gap: 0.3rem; }
  .contact__label { flex: 0 0 auto; } /* evita il buco: in colonna la larghezza fissa diventava altezza */
  .footer__bottom { flex-direction: column; }
}

/* ---------- Sezioni extra (tier premium): team, faq, listino, offerta ---------- */
/* Team / Chi siamo */
.team { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 7rem); align-items: center; padding: var(--section-y) var(--gutter); }
.team__media .parallax-wrap { aspect-ratio: 4 / 5; }
.team__text .lead { margin-top: 1.8rem; }
.team__text .btn { margin-top: 2.2rem; }
@media (max-width: 900px) { .team { grid-template-columns: 1fr; } .team__media { order: -1; max-width: 28rem; } }

/* FAQ */
.faq { padding: var(--section-y) var(--gutter); max-width: 60rem; margin: 0 auto; }
.faq__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.faq__head .h2 { margin-left: auto; margin-right: auto; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.5rem 0; text-align: left; font-family: var(--font-display); font-weight: 300; font-size: var(--step-1); color: var(--espresso); }
.faq__ico { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq__ico::before, .faq__ico::after { content: ""; position: absolute; background: var(--champagne); transition: transform 0.4s var(--ease); }
.faq__ico::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq__ico::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq__item.is-open .faq__ico::after { transform: scaleY(0); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height 0.5s var(--ease); }
.faq__a p { padding: 0 0 1.5rem; color: var(--espresso-soft); max-width: 54ch; font-size: var(--step-0); }
.faq__item.is-open .faq__a { max-height: 18rem; }

/* Listino prezzi */
.listino { padding: var(--section-y) var(--gutter); max-width: 58rem; margin: 0 auto; }
.listino__head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.listino__head .h2 { margin-left: auto; margin-right: auto; }
.listino__row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.6rem 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line-soft); }
.listino__name { font-family: var(--font-display); font-weight: 300; font-size: var(--step-1); }
.listino__dots { flex: 1; min-width: 2rem; border-bottom: 1px dotted var(--line); transform: translateY(-0.35em); }
.listino__price { font-family: var(--font-display); color: var(--champagne); font-size: var(--step-1); white-space: nowrap; }
.listino__desc { flex-basis: 100%; font-size: var(--step--1); color: var(--espresso-soft); }

/* Offerta / Promo */
.offerta { margin: 0 var(--gutter) var(--section-y); }
.offerta__inner { background: var(--espresso); color: var(--ivory); border-radius: 6px; padding: clamp(2.5rem, 6vw, 5rem); text-align: center; max-width: 70rem; margin: 0 auto; }
.offerta__inner .eyebrow { color: var(--champagne-light); }
.offerta__inner .h2 { margin: 1rem auto; color: var(--ivory); }
.offerta__inner .h2 em { color: var(--champagne-light); }
.offerta__inner p { color: rgba(250, 246, 241, 0.75); max-width: 46ch; margin: 0 auto 2.2rem; }

/* ---------- LIBRERIA VARIANTI (per siti diversi tra loro) ---------- */
/* Hero "split": testo su pannello a sinistra, immagine piena a destra (≠ full-bleed di Bella) */
.hero-split { min-height: 100svh; display: grid; grid-template-columns: 1.05fr 1fr; }
.hero-split__panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 6vw, 6rem); background: var(--ivory); }
.hero-split__media { position: relative; overflow: hidden; background: var(--cream); }
.hero-split__media img { width: 100%; height: 100%; object-fit: cover; }
.hero-split__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.6rem, 5vw, 5.2rem); line-height: 1.02; letter-spacing: -0.02em; margin: 1.2rem 0 1.4rem; }
.hero-split__title em { font-style: italic; color: var(--champagne); }
.hero-split .hero__actions { margin-top: 2rem; }
@media (max-width: 900px) { .hero-split { grid-template-columns: 1fr; } .hero-split__media { min-height: 44vh; order: -1; } }

/* Servizi a "carte": griglia di card (≠ lista espresso di Bella) */
.svc-cards { padding: var(--section-y) var(--gutter); }
.svc-cards__head { text-align: center; max-width: 60rem; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.svc-cards__head .h2 { margin-left: auto; margin-right: auto; }
.svc-cards__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: clamp(1rem, 2vw, 1.6rem); max-width: 74rem; margin: 0 auto; }
.svc-card { padding: clamp(1.6rem, 3vw, 2.4rem); border: 1px solid var(--line); border-radius: 8px; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(34, 26, 20, 0.35); }
.svc-card__num { font-size: var(--step--1); color: var(--champagne); letter-spacing: 0.1em; }
.svc-card__name { font-family: var(--font-display); font-weight: 300; font-size: var(--step-2); margin: 0.8rem 0 0.6rem; }
.svc-card__desc { color: var(--espresso-soft); font-size: var(--step-0); }

/* ---------- Brand lockup + crown ---------- */
.nav__brand { flex-direction: row; align-items: center; gap: 0.7rem; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.crown { width: 30px; height: auto; flex-shrink: 0; }
.crown--footer { width: 54px; color: var(--champagne-light); margin-bottom: 1.1rem; }

/* ---------- WhatsApp floating button ---------- */
.wa-fab {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 950;
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; width: 56px; border-radius: 100px;
  background: #25d366; color: #fff;
  box-shadow: 0 16px 34px -10px rgba(37, 211, 102, 0.55);
  overflow: hidden; transition: width 0.45s var(--ease), padding 0.45s var(--ease), transform 0.3s var(--ease);
}
.wa-fab svg { width: 30px; height: 30px; flex-shrink: 0; }
.wa-fab__label { white-space: nowrap; max-width: 0; opacity: 0; overflow: hidden; font-size: var(--step--1); letter-spacing: 0.04em; transition: max-width 0.45s var(--ease), opacity 0.3s, margin 0.45s var(--ease); }
.wa-fab:hover { width: auto; padding: 0 1.3rem; }
.wa-fab:hover .wa-fab__label { max-width: 8rem; opacity: 1; margin-left: 0.55rem; }

/* ---------- WhatsApp button (contact) ---------- */
.btn--wa { background: #25d366; color: #fff; gap: 0.55rem; }
.btn--wa::before, .btn--wa::after { display: none; }
.btn--wa:hover { background: #1ebe59; color: #fff; }
.btn--wa svg { width: 20px; height: 20px; }
.contact__cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal-up { opacity: 1; transform: none; }
  .line > span { transform: none; }
}
