@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ════════════════════════════════════════
   DESIGN TOKENS
   Palette: bordeaux/rose come primario,
   salvia come accento, pergamena come base.
════════════════════════════════════════ */
:root {
  --bg:            #fdf5f2;   /* pergamena calda */
  --bg-alt:        #EEE9E1;   /* pergamena scura */
  --white:         #FEFCF9;   /* bianco caldo */
  --green:         #7a3c54;   /* bordeaux/rose — brand primario */
  --green-mid:     #a05472;   /* rose medio — hover, link */
  --green-light:   #f0d6e2;   /* rose pallido — sfondi card */
  --rose:          #C4526D;   /* accent rose */
  --rose-light:    #F5D0DA;   /* rose tint leggero */
  --text:          #251e22;   /* quasi-nero con vena rosa */
  --text-heading:  #3B1E10;   /* marrone caldo per titoli */
  --text-muted:    #7e6b74;   /* grigio-rosa — testo secondario */
  --border:        #DDD8D0;   /* bordo caldo */
  --shadow-sm:     0 2px 12px rgba(50,20,35,.06);
  --shadow-md:     0 8px 32px rgba(50,20,35,.10);
  --shadow-lg:     0 20px 60px rgba(50,20,35,.14);

  --serif:  'Lora', Georgia, serif;
  --sans:   'Raleway', system-ui, sans-serif;

  --nav-h:    72px;
  --r:        12px;
  --r-lg:     24px;
  --max:      1200px;

  --dur-fast: 150ms;
  --dur-mid:  250ms;
  --dur-slow: 400ms;
}

/* ════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .95s ease, transform .9s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .15s; }
.d2 { transition-delay: .30s; }
.d3 { transition-delay: .45s; }
.d4 { transition-delay: .60s; }
.d5 { transition-delay: .75s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-heading);
}
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-mid);
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  transition: transform var(--dur-mid) ease, box-shadow var(--dur-mid) ease,
              background var(--dur-mid) ease, color var(--dur-mid) ease,
              border-color var(--dur-mid) ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(122,60,84,.32); }

.btn-outline { background: var(--white); color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

.btn-ghost { background: rgba(255,255,255,.92); color: var(--green); border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(122,60,84,.18); }

/* ════════════════════════════════════════
   LAYOUT UTILITIES
════════════════════════════════════════ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-lg { padding: 112px 0; }

/* ════════════════════════════════════════
   IMAGE FILTER — uniforma le foto del sito
════════════════════════════════════════ */
.img-site {
  filter: sepia(0.07) saturate(0.9) contrast(1.04) brightness(1.01);
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(248,245,241,.75);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 rgba(221,216,208,.5);
  transition: background var(--dur-slow) ease, box-shadow var(--dur-slow) ease;
}
#nav.scrolled {
  background: rgba(254,252,249,.97);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img { height: 65px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.91rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .02em;
  transition: color var(--dur-fast) ease;
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--green); }
.nav-links a.nav-active { font-weight: 700; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 8px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--dur-mid) ease;
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 190;
  padding: calc(var(--nav-h) + 24px) 32px 40px;
  flex-direction: column;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  display: block;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  transition: color var(--dur-fast) ease;
}
.nav-overlay a:hover { color: var(--green); }
.nav-overlay .btn {
  background: none;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
  margin-top: 0;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text);
  align-self: stretch;
  justify-content: flex-start;
  gap: 0;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
}
.nav-overlay .btn:hover { color: var(--green); background: none; }

/* ════════════════════════════════════════
   HERO — homepage only
════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-image-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 52%;
  overflow: hidden;
}
.hero-image-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, var(--green-light) 0%, var(--rose-light) 100%);
  z-index: 0;
}
.hero-image-panel img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 8s ease;
}
#hero:hover .hero-image-panel img { transform: scale(1.04); }
.hero-image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(248,245,241,.7) 42%, rgba(248,245,241,0) 62%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 580px;
  padding: 60px 0 80px;
}
.hero-content .eyebrow { margin-bottom: 22px; }
.hero-title {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 500;
  font-style: italic;
  color: var(--text-heading);
  margin-bottom: 26px;
  letter-spacing: -.025em;
  line-height: 1.15;
}
.hero-title strong {
  font-weight: 700;
  font-style: normal;
  color: var(--green);
  display: block;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 52px;
}
.hero-discover-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .02em;
  transition: gap var(--dur-fast) ease, color var(--dur-fast) ease;
}
.hero-discover-link:hover { color: var(--green-mid); gap: 10px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .01em;
}
.badge svg { color: var(--green); flex-shrink: 0; }
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 5;
  pointer-events: none;
  line-height: 0;
}

/* ════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════ */
#trust,
.trust-bar {
  background: var(--green);
  padding: 22px 0;
  position: relative;
  z-index: 4;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  flex-shrink: 0;
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
  column-gap: 40px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); }
.trust-item svg { color: var(--rose-light); flex-shrink: 0; }
.trust-item span { font-size: .8rem; font-weight: 500; letter-spacing: .03em; }
.trust-sep { width: 1px; height: 20px; background: rgba(255,255,255,.18); flex-shrink: 0; }
.trust-break { flex-basis: 100%; height: 0; }
.trust-cta { background: #fff; color: var(--green); border-color: rgba(255,255,255,.4); padding: 9px 20px; font-size: .8rem; }
.trust-cta:hover { background: var(--white); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.15); }

/* ════════════════════════════════════════
   ABOUT — CHI SONO
════════════════════════════════════════ */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
}
.about-blob {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 140px; height: 140px;
  background: var(--rose);
  border-radius: 50%;
  opacity: .12;
  animation: breathe 5s ease-in-out infinite;
}
.about-blob-2 {
  position: absolute;
  top: -20px; left: -20px;
  width: 80px; height: 80px;
  background: var(--green);
  border-radius: 50%;
  opacity: .08;
  animation: breathe 7s ease-in-out infinite reverse;
}
@keyframes breathe {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}
.about-text .eyebrow { margin-bottom: 18px; }
.about-text h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); margin-bottom: 24px; color: var(--text-heading); }
.about-text h2 em { font-weight: 400; color: var(--green-mid); }
.about-text p { color: var(--text-muted); margin-bottom: 18px; line-height: 1.85; font-size: .97rem; }
.credentials { display: flex; flex-direction: column; gap: 10px; margin: 28px 0 36px; }
.cred { display: flex; align-items: center; gap: 12px; font-size: .88rem; font-weight: 500; color: var(--text); }
.cred-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* ════════════════════════════════════════
   SERVICES — SPECIALIZZAZIONI
════════════════════════════════════════ */
#services { background: var(--bg); }
.services-header { text-align: center; max-width: 580px; margin: 0 auto 56px; }
.services-header .eyebrow { margin-bottom: 14px; }
.services-header h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 14px; }
.services-header p { color: var(--text-muted); font-size: .95rem; line-height: 1.75; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 32px 26px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform var(--dur-slow) ease, box-shadow var(--dur-slow) ease, border-color var(--dur-slow) ease;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 46px; height: 46px;
  background: var(--green-light);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 18px;
}
.svc-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; color: var(--text-heading); }
.svc-card p { font-size: .84rem; color: var(--text-muted); line-height: 1.7; }

/* Di cosa mi occupo — lista compatta homepage */
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.spec-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--white);
  transition: border-color var(--dur-fast) ease, transform var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}
.spec-row:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.spec-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.spec-row-text { flex: 1; min-width: 0; }
.spec-row-text h3 { font-size: .92rem; font-weight: 600; color: var(--text-heading); margin-bottom: 3px; }
.spec-row-text p { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }
.spec-arrow { flex-shrink: 0; color: var(--text-muted); transition: transform var(--dur-fast) ease, color var(--dur-fast) ease; }
.spec-row:hover .spec-arrow { transform: translateX(3px); color: var(--green); }
@media (max-width: 700px) {
  .spec-list { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   APPROACH TEASER — homepage section
════════════════════════════════════════ */
#approach {
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.approach-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  animation: breathe 6s ease-in-out infinite;
}
.approach-orb-1 { width: 400px; height: 400px; top: -150px; right: -100px; }
.approach-orb-2 { width: 220px; height: 220px; bottom: -80px; left: -60px; animation-duration: 9s; }
.approach-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.approach-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  line-height: 1.55;
  position: relative;
  padding-top: 16px;
}
.approach-quote::before {
  content: '\201C';
  position: absolute;
  top: -24px; left: -8px;
  font-size: 7rem;
  line-height: 1;
  color: rgba(255,255,255,.12);
  font-family: var(--serif);
  font-style: normal;
}
.approach-text .eyebrow { color: var(--rose-light); margin-bottom: 16px; }
.approach-text h2 { color: #fff; font-size: clamp(1.3rem, 2vw, 1.6rem); margin-bottom: 16px; }
.approach-text p { color: rgba(255,255,255,.8); line-height: 1.85; margin-bottom: 30px; font-size: .95rem; }

/* ════════════════════════════════════════
   LOCATIONS — DOVE VISITO
════════════════════════════════════════ */
#locations { background: var(--white); }
.locations-header { text-align: center; margin-bottom: 48px; }
.locations-header .eyebrow { margin-bottom: 12px; }
.locations-header h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.loc-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--dur-slow) ease, transform var(--dur-slow) ease;
}
.loc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.loc-card iframe { width: 100%; height: 100%; border: 0; display: block; }
.loc-body { padding: 28px 28px 32px; }
.loc-city { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.loc-sub { color: var(--text-muted); font-size: .85rem; margin-bottom: 20px; }
.loc-details { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.loc-details li { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; color: var(--text-muted); line-height: 1.4; }
.loc-details svg { color: var(--green); flex-shrink: 0; margin-top: 1px; }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
#testimonials { background: var(--bg); }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-header .eyebrow { margin-bottom: 12px; }
.testimonials-header h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 32px 26px;
  border: 1px solid var(--border);
  transition: box-shadow var(--dur-slow) ease;
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-stars { color: var(--rose); font-size: 1rem; letter-spacing: 2px; margin-bottom: 18px; }
.testi-text { font-family: var(--serif); font-style: italic; font-size: .95rem; color: var(--text); line-height: 1.75; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 600; font-size: .95rem;
  color: var(--rose); flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .87rem; color: var(--text); }
.testi-meta { font-size: .75rem; color: var(--text-muted); margin-top: 2px; }

/* ════════════════════════════════════════
   INSTAGRAM
════════════════════════════════════════ */
#instagram { background: var(--white); padding: 80px 0; }
.ig-header { text-align: center; margin-bottom: 36px; }
.ig-header .eyebrow { margin-bottom: 12px; }
.ig-header h2 { font-size: clamp(1.7rem, 2.5vw, 2.2rem); margin-bottom: 8px; }
.ig-header p { color: var(--text-muted); font-size: .9rem; }
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 32px; }
.ig-post { aspect-ratio: 1; border-radius: var(--r); overflow: hidden; position: relative; cursor: pointer; }
.ig-post img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.ig-post:hover img { transform: scale(1.06); }
.ig-post-fill {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 600; color: var(--text-muted);
  transition: transform .5s ease;
}
.ig-overlay {
  position: absolute; inset: 0;
  background: rgba(45,90,71,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-slow) ease;
}
.ig-overlay svg { color: #fff; opacity: 0; transition: opacity var(--dur-mid) ease; }
.ig-post:hover .ig-overlay { background: rgba(122,60,84,.45); }
.ig-post:hover .ig-overlay svg { opacity: 1; }
.ig-cta { text-align: center; }

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
#contact { background: var(--bg); }
.contact-channels-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 40px; }
.ch {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  color: var(--text);
  transition: border-color var(--dur-mid) ease, transform var(--dur-mid) ease, box-shadow var(--dur-mid) ease;
}
.ch:hover { border-color: var(--green); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.ch-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ch-icon.g { background: var(--green-light); color: var(--green); }
.ch-icon.w { background: #e7f5ee; color: #1aad19; }
.ch-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.ch-value { font-weight: 600; font-size: .93rem; }

/* ════════════════════════════════════════
   WA STICKY CHIP
════════════════════════════════════════ */
.wa-chip {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 13px 20px 13px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(37,211,102,.38);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(37,211,102,.48);
  color: #fff;
}
.wa-chip svg { flex-shrink: 0; }
@media (max-width: 600px) {
  .wa-chip span { display: none; }
  .wa-chip { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
#footer { background: var(--text); color: rgba(255,255,255,.65); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr .8fr .8fr 1.6fr; gap: 48px; margin-bottom: 52px; }
.footer-logo { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: #fff; line-height: 1.25; margin-bottom: 14px; display: block; }
.footer-logo small { display: block; font-family: var(--sans); font-size: .6rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 4px; }
.footer-desc { font-size: .84rem; line-height: 1.75; max-width: 270px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.footer-social a:hover { background: var(--rose); color: #fff; }
.fcol h4 { font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.flinks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.flinks a { font-size: .84rem; transition: color var(--dur-fast) ease; }
.flinks a:hover { color: #fff; }
.footer-contact-list li { display: flex; align-items: center; gap: 9px; font-size: .84rem; flex-wrap: wrap; }
.footer-contact-list li svg { flex-shrink: 0; color: var(--rose-light); }
.footer-contact-note { color: rgba(255,255,255,.45); font-size: .78rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: .76rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--dur-fast) ease; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }


/* ════════════════════════════════════════
   PAGE HERO — pagine interne (non homepage)
════════════════════════════════════════ */
.page-hero {
  padding-top: var(--nav-h);
  background: var(--bg);
  overflow: hidden;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0 64px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span:last-child { color: var(--text); font-weight: 500; }
.breadcrumb-sep { opacity: .5; }
.page-hero-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  font-style: italic;
  color: var(--text-heading);
  margin-bottom: 20px;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.page-hero-title em { color: var(--green); font-style: italic; }
.page-hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 32px;
}
.page-hero-image {
  position: relative;
}
.page-hero-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-lg);
}

/* ════════════════════════════════════════
   SEZIONE METAFORA (approccio)
════════════════════════════════════════ */
.metaphor-section { background: var(--white); }
.metaphor-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.metaphor-header .eyebrow { margin-bottom: 14px; }
.metaphor-header h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); margin-bottom: 16px; }
.metaphor-header p { color: var(--text-muted); line-height: 1.85; font-size: .97rem; }

.metaphor-quote-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--r-lg);
  padding: 36px 48px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.metaphor-quote-block::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 16px;
  font-size: 9rem;
  line-height: 1;
  color: rgba(122,60,84,.06);
  font-family: var(--serif);
  pointer-events: none;
}
.metaphor-quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: var(--text-heading);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.metaphor-quote-text strong { font-style: normal; color: var(--green); }

.metaphor-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.metaphor-node { flex-shrink: 0; width: 200px; display: flex; flex-direction: column; align-items: center; }
.metaphor-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 200px; height: 200px;
  padding: 16px;
  box-sizing: border-box;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  transition: box-shadow var(--dur-slow) ease, transform var(--dur-slow) ease;
}
.metaphor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.metaphor-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.metaphor-card-icon {
  width: 54px; height: 54px;
  background: none;
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  margin: 0 auto;
}
.metaphor-card h3 { font-size: .85rem; font-weight: 700; margin: 0; color: var(--text-heading); }
.metaphor-row { justify-content: center; }
.metaphor-connector { width: 48px; flex-shrink: 0; display: flex; align-items: center; color: var(--border); }
.metaphor-connector svg { width: 100%; display: block; }
.metaphor-descs { display: flex; align-items: flex-start; justify-content: center; margin-bottom: 40px; }
.metaphor-desc { width: 200px; flex-shrink: 0; font-size: .82rem; color: var(--text-muted); line-height: 1.65; text-align: center; padding: 0 8px; box-sizing: border-box; }
.metaphor-gap { width: 48px; flex-shrink: 0; }

/* Pillars nav overview */
.pillars-nav-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pillar-nav-card {
  display: flex; flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow var(--dur-slow) ease, transform var(--dur-slow) ease, border-color var(--dur-slow) ease;
}
.pillar-nav-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--green-light); }
.pillar-nav-img { width: 100%; aspect-ratio: 3/4; flex-shrink: 0; overflow: hidden; }
.pillar-nav-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.pillar-nav-body { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.pillar-nav-num { display: block; font-size: 2.2rem; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 12px; font-family: var(--ff-heading); }
.pillar-nav-title { font-size: .95rem; font-weight: 700; color: var(--text-heading); margin: 0 0 10px; }
.pillar-nav-sub { font-size: .82rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.pillar-nav-cta { font-size: .8rem; color: var(--green); font-weight: 600; }
.metaphor-conclusion {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: .97rem;
}

/* ════════════════════════════════════════
   PILLARS — 3 pilastri dell'approccio
════════════════════════════════════════ */
.pillar-section { overflow: hidden; }
.pillar-section.bg-white { background: var(--white); }
.pillar-section.bg-bg    { background: var(--bg); }

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.pillar-grid.reverse .pillar-text { order: 2; }
.pillar-grid.reverse .pillar-image { order: 1; }

.pillar-number {
  display: block;
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.02em;
}
.pillar-text .eyebrow { margin-bottom: 8px; }
.pillar-text h2 { font-size: clamp(1.7rem, 2.5vw, 2.2rem); margin-bottom: 18px; color: var(--text-heading); }
.pillar-text > p { color: var(--text-muted); line-height: 1.85; margin-bottom: 28px; font-size: .97rem; }
.pillar-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

/* Zone 2×2 — Osteopatia */
.zone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 4px; }
.zone-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 16px;
  transition: box-shadow var(--dur-mid) ease;
}
.zone-card:hover { box-shadow: var(--shadow-sm); }
.zone-card h4 { font-size: .88rem; font-weight: 700; color: var(--text-heading); margin-bottom: 6px; }
.zone-card p { font-size: .8rem; color: var(--text-muted); line-height: 1.65; }

/* Lista riabilitazione */
.rehab-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.rehab-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--text-muted); line-height: 1.55;
}
.rehab-list li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* Tag condizioni trattate */
.conditions-block { margin-top: 8px; }
.conditions-label { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.conditions-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.conditions-tags span {
  background: var(--green-light);
  color: var(--green);
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 100px;
}

/* Griglia benefici — Movimento */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.benefit-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  font-size: .85rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  transition: border-color var(--dur-mid) ease;
}
.benefit-item:hover { border-color: var(--green); }
.benefit-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ════════════════════════════════════════
   PAGE CTA — sezione finale pagine interne
════════════════════════════════════════ */
.page-cta {
  background: var(--green);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-cta::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: -200px; right: -150px;
  animation: breathe 8s ease-in-out infinite;
}
.page-cta-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.page-cta-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 20px;
}
.page-cta-sub { color: rgba(255,255,255,.75); margin-bottom: 36px; font-size: .97rem; }


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section    { padding: 60px 0; }
  .section-lg { padding: 72px 0; }

  /* Nav */
  .nav-links  { display: none; }
  .nav-burger { display: flex; }
  .trust-sep  { display: none; }
  .trust-row  { gap: 20px; }

  /* Hero homepage */
  #hero { min-height: auto; flex-direction: column; padding-top: var(--nav-h); align-items: stretch; }
  .hero-image-panel { position: relative; width: 100%; height: auto; min-height: 0; max-height: none; order: -1; }
  .hero-image-panel img { position: relative; inset: auto; width: 100%; height: auto; object-fit: unset; }
  .hero-image-panel::after { background: linear-gradient(to bottom, var(--bg) 0%, transparent 25%); }
  .hero-content { padding: 36px 0 64px; }
  .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badges { gap: 7px; }
  .badge { font-size: .7rem; padding: 7px 11px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Approach teaser */
  .approach-grid { grid-template-columns: 1fr; gap: 36px; }
  .approach-quote::before { font-size: 5rem; }

  /* Locations */
  .locations-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid {
    display: flex; overflow-x: auto; gap: 16px;
    padding-bottom: 12px; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testi-card { min-width: 78vw; scroll-snap-align: start; flex-shrink: 0; }

  /* Instagram */
  .ig-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-channels-grid { grid-template-columns: 1fr; }

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

  /* Page hero (interne) */
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 48px; }
  .page-hero-image { order: -1; }
  .page-hero-image img { aspect-ratio: auto; object-fit: unset; height: auto; }

  /* Metaphor */
  .metaphor-row { flex-direction: column; }
  .metaphor-connector { transform: rotate(90deg); flex: none; height: 32px; width: 100%; justify-content: center; }
  .metaphor-connector svg { width: 40px; }
  .metaphor-descs { flex-direction: column; align-items: center; gap: 24px; }
  .metaphor-desc { width: 100%; max-width: 320px; padding: 0; }
  .metaphor-gap { display: none; }
  .pillars-nav-grid { grid-template-columns: 1fr; }
  .metaphor-quote-block { padding: 28px 24px; }

  /* Pillars */
  .pillar-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillar-grid.reverse .pillar-text { order: 0; }
  .pillar-grid.reverse .pillar-image { order: 0; }
  .pillar-image img { aspect-ratio: 16/9; }
  .zone-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .metaphor-quote-text { font-size: 1.1rem; }
}


/* ════════════════════════════════════════
   CHI SONO PAGE
════════════════════════════════════════ */
.page-hero-sub p { margin-bottom: 16px; }
.page-hero-sub p:last-child { margin-bottom: 32px; }

/* Formation */
.formation-section { background: var(--bg); }
.formation-header { text-align: center; margin-bottom: 56px; }
.formation-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.formation-col h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-light);
}
.formation-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.formation-item:last-child { border-bottom: none; }
.formation-dot {
  width: 7px;
  height: 7px;
  background: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.formation-text strong { display: block; font-size: .88rem; color: var(--text); font-weight: 600; margin-bottom: 2px; }
.formation-text small { font-size: .76rem; color: var(--text-muted); }
.formation-text small.formation-inst { display: block; margin-top: 3px; font-style: italic; }

/* Experience */
.exp-section { background: var(--white); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.exp-card {
  background: var(--bg);
  border-radius: var(--r);
  border: 1px solid var(--border);
  padding: 28px;
}
.exp-card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.exp-card-role {
  font-size: .78rem;
  color: var(--rose);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 16px;
}
.exp-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.exp-card ul li {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.exp-card ul li::before { content: '·'; color: var(--rose); position: absolute; left: 0; font-weight: 700; }
.exp-card hr.exp-divider { border: none; border-top: 1px dashed var(--border); margin: 14px 0; }

/* ════════════════════════════════════════
   DOVE VISITO PAGE
════════════════════════════════════════ */
.studio-section { background: var(--white); }
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.studio-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--dur-slow) ease, transform var(--dur-slow) ease;
}
.studio-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.studio-map { width: 100%; height: 240px; display: block; border: 0; }
.studio-body { padding: 28px 28px 32px; }
.studio-city {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 20px;
}
.studio-sub { color: var(--text-muted); font-size: .85rem; margin-bottom: 20px; }
.studio-details { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.studio-details li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--text-muted); line-height: 1.5; }
.studio-details svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.studio-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green);
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 5px 12px;
  border-radius: 100px;
}
.booking-section { background: var(--bg-alt); }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.booking-card {
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  padding: 28px;
}
.booking-card-city {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 14px;
}
.booking-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.8; }
.booking-card strong { color: var(--text); }
.booking-cta { text-align: center; padding-top: 16px; }

/* ════════════════════════════════════════
   DICONO DI ME PAGE
════════════════════════════════════════ */
.reviews-section { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-stars { display: flex; gap: 3px; }
.review-stars svg { color: #c4a030; width: 16px; height: 16px; }
.review-text {
  font-family: var(--serif);
  font-size: .94rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  flex: 1;
}
.review-author-wrap { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 36px; height: 36px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 600; font-size: .9rem;
  color: var(--rose); flex-shrink: 0;
}
.review-name { font-size: .84rem; font-weight: 700; color: var(--text); }
.review-meta { font-size: .75rem; color: var(--text-muted); margin-top: 1px; }
.reviews-cta-block { text-align: center; }

/* ════════════════════════════════════════
   FAQ PAGE
════════════════════════════════════════ */
.faq-section { background: var(--white); }
.faq-intro { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.faq-intro p { color: var(--text-muted); line-height: 1.8; font-size: .95rem; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--dur-slow) ease;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--green-light); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  transition: color var(--dur) ease;
}
.faq-question:hover { color: var(--green); }
.faq-item.open .faq-question { color: var(--green); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) ease;
}
.faq-icon svg { color: var(--green); transition: transform var(--dur-slow) ease; }
.faq-item.open .faq-icon { background: var(--green); }
.faq-item.open .faq-icon svg { color: white; transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: .91rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ════════════════════════════════════════
   RESPONSIVE — NUOVE PAGINE (768px)
════════════════════════════════════════ */
@media (max-width: 768px) {
  .bio-grid,
  .bio-grid.reverse { grid-template-columns: 1fr; }
  .bio-grid.reverse .bio-image { order: 0; }
  .bio-image img { aspect-ratio: 4/3; }
  .formation-cols { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .studio-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .faq-question { font-size: .88rem; padding: 18px 20px; }
  .faq-answer-inner { padding: 0 20px 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* === Pillar Modals === */
body.modal-open { overflow: hidden; }
.pillar-modal { display: none; position: fixed; inset: 0; z-index: 900; align-items: center; justify-content: center; padding: 16px; }
.pillar-modal.is-open { display: flex; }
.pillar-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.pillar-modal-box { position: relative; background: var(--white); border-radius: var(--r-lg); max-width: 680px; width: 100%; max-height: 88vh; overflow-y: auto; box-shadow: 0 24px 64px rgba(0,0,0,.2); }
.pillar-modal-head { display: flex; justify-content: space-between; align-items: flex-start; padding: 28px 32px 20px; border-bottom: 1px solid var(--border); gap: 16px; }
.pillar-modal-head h2 { font-size: 1.2rem; margin: 0; line-height: 1.3; }
.pillar-modal-body { padding: 28px 32px 36px; }
.pillar-modal-close { flex-shrink: 0; background: none; border: 1px solid var(--border); cursor: pointer; color: var(--text-muted); padding: 6px; border-radius: var(--r); line-height: 0; transition: background var(--dur) ease, color var(--dur) ease; }
.pillar-modal-close:hover { color: var(--text-heading); background: var(--bg); }
@media (max-width: 600px) {
  .pillar-modal-head, .pillar-modal-body { padding-left: 20px; padding-right: 20px; }
  .pillar-modal-head h2 { font-size: 1rem; }
}
