/* ============================================================
   DOTT.SSA ALEJANDRA MECONCELLI – PSICOLOGA
   Palette: crema caldo, mauve/rosso mattone, sage verde
   Typography: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:        #FAF5F0;
  --cream-alt:    #F4EDE5;
  --cream-dark:   #EDE0D4;
  --mauve:        #C47E6E;
  --mauve-light:  #D4998A;
  --mauve-dark:   #A86052;
  --sage:         #8B9E88;
  --sage-light:   #B5C4B2;
  --blue-soft:    #9BB5C5;
  --charcoal:     #2C2C2C;
  --text:         #4A4040;
  --text-light:   #7A6E6E;
  --white:        #FFFFFF;
  --border:       rgba(196,126,110,0.2);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

  --container:    1120px;
  --section-pad:  96px;
  --radius:       16px;
  --radius-lg:    28px;
  --shadow:       0 4px 24px rgba(44,44,44,.08);
  --shadow-hover: 0 12px 40px rgba(44,44,44,.14);
  --transition:   .28s cubic-bezier(.4,0,.2,1);
}

/* pulsante X chiusura menu: nascosto su desktop */
.nav-close { display: none; }

/* ── Overlay scuro dietro il menu mobile ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,44,44,.45);
  z-index: 998;
  cursor: pointer;
}
.nav-overlay.visible { display: block; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--mauve); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--mauve-dark); }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--mauve);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .04em;
  border: 2px solid var(--mauve);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--mauve-dark);
  border-color: var(--mauve-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,126,110,.35);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--mauve);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .04em;
  border: 2px solid var(--mauve);
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: var(--mauve);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: .88rem; }
.btn-full { width: 100%; text-align: center; justify-content: center; }

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header.light .section-label { color: var(--cream-alt); }
.section-header.light h2 { color: var(--white); }
.section-header.light .divider-line { background: rgba(255,255,255,.4); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  max-width: 580px;
  margin: 16px auto 0;
  color: var(--text-light);
  font-size: .97rem;
}
.divider-line {
  width: 56px;
  height: 2px;
  background: var(--mauve-light);
  margin: 0 auto;
  border-radius: 2px;
}

/* ════════════════════════════════════════
   COOKIE BANNER
════════════════════════════════════════ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #2C2420;
  color: rgba(255,255,255,.92);
  padding: 20px 24px;
  box-shadow: 0 -4px 32px rgba(0,0,0,.2);
}
.cookie-banner.visible { display: block; }
.cookie-inner { max-width: var(--container); margin: 0 auto; }
.cookie-title { font-weight: 600; font-size: .95rem; margin-bottom: 6px; }
.cookie-text { font-size: .83rem; line-height: 1.6; opacity: .88; margin-bottom: 14px; }
.cookie-text a { color: var(--mauve-light); }
.cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cookie-btns button {
  padding: 8px 22px; border-radius: 50px; cursor: pointer;
  font-family: var(--font-body); font-size: .85rem; font-weight: 500; border: none;
  background: var(--mauve); color: var(--white); transition: background var(--transition);
}
.cookie-btns button:hover { background: var(--mauve-dark); }
.cookie-btns .btn-secondary {
  background: transparent; color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.3);
}
.cookie-btns .btn-secondary:hover { background: rgba(255,255,255,.1); }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(250,245,240,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(44,44,44,.08);
  padding: 14px 0;
}
/* fallback per browser senza backdrop-filter */
@supports not (backdrop-filter: blur(1px)) {
  .navbar.scrolled { background: #FAF5F0; }
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: .01em;
}
.logo-title {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mauve);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--mauve);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-link:hover { color: var(--mauve); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.nav-cta {
  background: var(--mauve);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 500;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { background: var(--mauve-dark); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.floral-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.floral-tr {
  top: -20px; right: -20px;
  width: 320px;
  opacity: .7;
}
.floral-bl {
  bottom: 0; left: -20px;
  width: 200px;
  opacity: .5;
}
.hero-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { max-width: 540px; }
.hero-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 20px;
  background: rgba(196,126,110,.1);
  padding: 6px 16px;
  border-radius: 50px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--mauve);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 460px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.badge {
  background: var(--cream-alt);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .82rem;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Photo frame */
.hero-image { display: flex; justify-content: center; align-items: center; }
.photo-frame {
  position: relative;
  width: 380px;
  max-width: 100%;
  /* contiene il pseudo-element decorativo */
  overflow: visible;
}
.photo-frame::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: -16px;
  border: 2px solid var(--mauve-light);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: .5;
  /* su mobile non deve uscire dallo schermo */
  pointer-events: none;
}
.photo-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* ════════════════════════════════════════
   CHI SONO
════════════════════════════════════════ */
.chi-sono {
  padding: var(--section-pad) 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.chi-grid { max-width: 820px; margin: 0 auto; }
.chi-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.chi-text p {
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.8;
}
.chi-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease, box-shadow var(--transition);
}
.info-item.revealed { opacity: 1; transform: none; }
.info-item:hover { box-shadow: var(--shadow); }
.info-icon { font-size: 1.4rem; flex-shrink: 0; }
.info-item strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--mauve-dark);
  margin-bottom: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.info-item p { font-size: .9rem; color: var(--text); margin: 0; line-height: 1.6; }

/* ════════════════════════════════════════
   APPROCCIO
════════════════════════════════════════ */
.approccio {
  padding: var(--section-pad) 0;
  background: var(--mauve);
  position: relative;
  overflow: hidden;
}
.approccio::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.approccio::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.approccio-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.approccio-card {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), background var(--transition);
}
.approccio-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.22);
}
.card-icon { font-size: 2rem; margin-bottom: 16px; }
.approccio-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}
.approccio-card p { color: rgba(255,255,255,.85); font-size: .93rem; line-height: 1.7; }

.approccio-cbt {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  z-index: 1;
}
.cbt-content h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}
.cbt-content p {
  color: rgba(255,255,255,.88);
  line-height: 1.8;
  margin-bottom: 16px;
}
.cbt-content p:last-of-type { margin-bottom: 24px; }
.cbt-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cbt-list li {
  color: rgba(255,255,255,.9);
  font-size: .93rem;
  padding-left: 20px;
  position: relative;
}
.cbt-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--cream-alt);
  font-size: .7rem;
  top: 4px;
}

/* ════════════════════════════════════════
   SERVIZI
════════════════════════════════════════ */
.servizi {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.servizio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(24px);
  /* tutte le card flex-column per altezza uniforme */
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.servizio-card.revealed { opacity: 1; transform: none; }
.servizio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.servizio-icon { font-size: 2rem; margin-bottom: 16px; flex-shrink: 0; }
.servizio-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
  flex-shrink: 0;
}
.servizio-card p { color: var(--text-light); font-size: .92rem; line-height: 1.7; flex: 1; }
.servizio-card--highlight {
  background: var(--white);
  border-color: var(--border);
}
.servizio-card--highlight:hover {
  background: var(--cream-alt);
  border-color: var(--mauve-light);
}
.servizio-card--highlight .btn-primary { margin-top: 20px; align-self: flex-start; }

/* ════════════════════════════════════════
   COME FUNZIONA
════════════════════════════════════════ */
.come-funziona {
  padding: var(--section-pad) 0;
  background: var(--cream-alt);
}
.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.step:hover { box-shadow: var(--shadow); }
.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--mauve-light);
  opacity: .7;
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.step p { color: var(--text-light); font-size: .92rem; line-height: 1.7; }
.step-arrow {
  font-size: 1.8rem;
  color: var(--mauve-light);
  flex-shrink: 0;
  opacity: .7;
}

/* ════════════════════════════════════════
   CONTATTI
════════════════════════════════════════ */
.contatti {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: flex-start;
}
.contatti-info .section-label { display: block; margin-bottom: 12px; }
.contatti-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contatti-info .divider-line { margin: 0 0 24px; }
.contatti-intro {
  color: var(--text-light);
  font-size: .97rem;
  line-height: 1.8;
  margin-bottom: 36px;
  font-style: italic;
}
.contatti-items { display: flex; flex-direction: column; gap: 20px; }
.contatto-item { display: flex; gap: 14px; align-items: flex-start; }
.contatto-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contatto-item strong {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--mauve-dark);
  margin-bottom: 4px;
}
.contatto-item p, .contatto-item a {
  font-size: .93rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}
.contatto-item a:hover { color: var(--mauve); }

/* Form */
.contatti-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem; /* minimo 16px: evita zoom automatico Safari iOS */
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--mauve);
  box-shadow: 0 0 0 3px rgba(196,126,110,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-privacy { margin-bottom: 24px; }
.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--mauve);
  cursor: pointer;
  padding: 0;
  -webkit-appearance: checkbox;
  appearance: checkbox;
}
.form-feedback {
  margin-top: 14px;
  font-size: .88rem;
  border-radius: 8px;
  padding: 10px 14px;
  display: none;
}
.form-feedback.success { display: block; background: #e8f5e9; color: #2e7d32; }
.form-feedback.error { display: block; background: #fce4ec; color: #c62828; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.8);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mauve-light);
  margin-bottom: 12px;
}
.footer-mission { font-size: .9rem; opacity: .7; }
.footer-links h4, .footer-legal h4 {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mauve-light);
  margin-bottom: 16px;
}
.footer-links a, .footer-legal a {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-links a:hover, .footer-legal a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  line-height: 1.8;
}
.footer-bottom strong { color: rgba(255,255,255,.6); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

/* Tablet landscape */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }
  .hero-container { gap: 40px; }
  .photo-frame { width: 320px; }
  .servizi-grid { grid-template-columns: repeat(2, 1fr); }
  .cbt-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  /* Navbar */
  .hamburger { display: flex; }
  .nav-close { display: flex; }
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 80vw);
    background: var(--cream);
    padding: 80px 32px 40px;
    gap: 24px;
    box-shadow: -4px 0 32px rgba(44,44,44,.12);
    z-index: 1001;
    overflow-y: auto;
    /* stato chiuso: fuori schermo, non interagibile, trasparente */
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
  }
  .nav-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  /* pulsante X di chiusura dentro il pannello */
  .nav-close {
    display: flex;
    position: absolute;
    top: 20px; right: 20px;
    width: 36px; height: 36px;
    align-items: center; justify-content: center;
    background: var(--cream-alt);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1;
  }
  .nav-link { font-size: 1.1rem; }
  .nav-link.nav-cta { margin-top: 8px; padding: 12px 28px; }

  /* Hero */
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-image { order: -1; }
  .photo-frame { width: 260px; margin: 0 auto; }
  .hero-text { max-width: 100%; }
  .hero-sub { margin: 0 auto 28px; }
  .hero-badges { justify-content: center; }
  .hero-actions { justify-content: center; }
  .floral-tr { width: 200px; }

  /* Chi sono */
  .chi-info-grid { grid-template-columns: 1fr; }

  /* Approccio */
  .approccio-cards { grid-template-columns: 1fr; gap: 16px; }
  .approccio-cbt { padding: 28px 24px; }

  /* Servizi */
  .servizi-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step { max-width: 100%; }
  .step-arrow { transform: rotate(90deg); text-align: center; }

  /* Contatti */
  .contatti-grid { grid-template-columns: 1fr; gap: 40px; }
  .contatti-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Mobile */
@media (max-width: 480px) {
  :root { --section-pad: 48px; }
  .hero-title { font-size: 2.1rem; }
  .section-header h2 { font-size: 1.75rem; }
  .contatti-info h2 { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .approccio-cbt { padding: 24px 18px; }
}

/* ════════════════════════════════════════
   HERO — aggiornamenti
════════════════════════════════════════ */
.hero-desc {
  font-size: .97rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 480px;
}
.quando-section {
  background: var(--cream);
  padding: 48px 0 0;
}
.hero-quando {
  padding: 40px 48px;
  background: var(--cream-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
/* versione inline dentro hero-text */
.hero-quando-inline {
  margin: 24px 0 28px;
  padding: 28px 32px;
  background: var(--cream-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.quando-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.quando-text {
  color: var(--text);
  font-size: .97rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.quando-text:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .hero-quando { padding: 24px 20px; margin-top: 40px; }
}

/* ════════════════════════════════════════
   CHI SONO — aggiornamenti
════════════════════════════════════════ */
.chi-h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--mauve-dark);
  margin: 32px 0 12px;
}
.chi-list {
  list-style: none;
  margin: 8px 0 20px;
  padding: 0;
}
.chi-list li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.7;
  border-bottom: 1px solid var(--border);
}
.chi-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--mauve-light);
}
.chi-list li:last-child { border-bottom: none; }

/* ════════════════════════════════════════
   ACCORDION
════════════════════════════════════════ */
.accordion { display: flex; flex-direction: column; gap: 10px; }

.acc-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.acc-item:hover { box-shadow: var(--shadow); }
.acc-item.open { border-color: var(--mauve-light); }

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  text-align: left;
  transition: color var(--transition);
}
.acc-trigger:hover { color: var(--mauve); }
.acc-item.open .acc-trigger { color: var(--mauve-dark); }
.acc-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--mauve);
  line-height: 1;
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.acc-body p,
.acc-body h4,
.acc-body ul {
  padding: 0 24px;
}
.acc-body p {
  font-size: .93rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}
.acc-body h4 {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mauve-dark);
  margin: 16px 0 8px;
}
.acc-body ul {
  list-style: none;
  margin-bottom: 12px;
  padding-left: 24px;
}
.acc-body li {
  position: relative;
  padding-left: 16px;
  font-size: .93rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 4px;
}
.acc-body li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--mauve-light);
}
.acc-body > *:last-child { padding-bottom: 20px; }

/* ════════════════════════════════════════
   TARIFFE
════════════════════════════════════════ */
.tariffe {
  padding: var(--section-pad) 0;
  background: var(--cream-alt);
}
.tariffe-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.tariffe-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: .93rem;
}
.tariffe-table th {
  background: var(--mauve);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.tariffe-table td {
  padding: 14px 20px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.tariffe-table tr:last-child td { border-bottom: none; }
.tariffe-table tr:nth-child(even) td { background: var(--cream); }
.tariffe-table td:nth-child(2),
.tariffe-table td:nth-child(3) {
  font-weight: 600;
  color: var(--mauve-dark);
  text-align: center;
  white-space: nowrap;
}
.tariffe-table th:nth-child(2),
.tariffe-table th:nth-child(3) { text-align: center; }
.tariffe-nota {
  margin-top: 20px;
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.7;
  text-align: center;
}

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

/* ════════════════════════════════════════
   SOCIAL LINKS (contatti)
════════════════════════════════════════ */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .83rem;
  color: var(--text);
  background: var(--cream);
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--mauve);
  color: var(--white);
  border-color: var(--mauve);
}

/* note privacy form */
.form-privacy-nota {
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 12px;
  font-style: italic;
}

/* ════════════════════════════════════════
   FOTO STUDIO
════════════════════════════════════════ */
.studio-photo {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.studio-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.studio-photo img:hover { transform: scale(1.03); }

/* ════════════════════════════════════════
   CARD APPROCCIO CON IMMAGINI
════════════════════════════════════════ */
.card-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  mix-blend-mode: multiply;
}
.approccio-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

/* ════════════════════════════════════════
   CITAZIONE CURA DI SÉ
════════════════════════════════════════ */
.cura-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.cura-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}
.cura-img {
  width: 320px;
  mix-blend-mode: multiply;
}
.cura-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
  margin: 0;
  position: relative;
  padding: 0 16px;
}
.cura-quote::before {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--mauve-light);
  margin: 0 auto 24px;
}
.cura-quote::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--mauve-light);
  margin: 24px auto 0;
}
.cura-btn {
  padding: 16px 48px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .cura-img { width: 220px; }
  .cura-btn { width: 100%; text-align: center; }
}

/* Fix 7: titoletti chi-h3 leggermente più grandi */
.chi-h3 {
  font-size: 1.45rem !important;
}

/* Frase ricevo su appuntamento */
.contatti-ricevo {
  font-size: .95rem;
  color: var(--text);
  margin-top: 8px;
  margin-bottom: 0;
}

/* ════════════════════════════════════════
   FAQ COLORATE
════════════════════════════════════════ */
#accordion-faq .acc-item {
  background: var(--cream-alt);
  border-color: var(--mauve-light);
}
#accordion-faq .acc-item.open {
  background: var(--cream-dark);
}
#accordion-faq .acc-trigger:hover { color: var(--mauve-dark); }

/* Tariffe SEO subtitle */
.tariffe-seo {
  font-size: 1.1rem;
  color: var(--mauve-dark);
  margin: 8px 0 16px;
}
