/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ===== TOKENS ===== */
:root {
  --cream:    #FDFAF7;
  --blush:    #F2E4DC;
  --blush-2:  #E8CFC3;
  --sage:     #7A9E8E;
  --sage-dark:#3B5E52;
  --gold:     #C9A96E;
  --ink:      #2A2A2A;
  --ink-soft: #5A5A5A;
  --line:     #E8E0D8;
  --white:    #FFFFFF;
  --max:      1120px;
  --r-sm:     12px;
  --r-md:     20px;
  --r-lg:     32px;
  --shadow:   0 4px 32px rgba(42,42,42,0.08);
  --shadow-lg:0 12px 56px rgba(42,42,42,0.13);
}

/* ===== BASE ===== */
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
@media (max-width: 600px) { .wrap { padding: 0 20px; } }

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,250,247,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  gap: 48px;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
}
.logo span { display: block; font-size: 0.65rem; font-family: 'DM Sans', sans-serif; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); margin-top: 1px; }

nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}
nav ul li { list-style: none; }
nav ul a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
nav ul a:hover, nav ul a.active { color: var(--sage-dark); }

.nav-cta {
  flex-shrink: 0;
  background: var(--sage-dark);
  color: var(--white);
  padding: 11px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--sage); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; gap: 16px; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  nav ul {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }
  nav ul.open { display: flex; }
  nav ul li { width: 100%; }
  nav ul a { display: block; padding: 14px 24px; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage-dark); color: var(--white);
  padding: 14px 32px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; font-weight: 500;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--sage); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--sage-dark);
  padding: 13px 30px; border-radius: 100px;
  border: 1.5px solid var(--sage-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-secondary:hover { background: var(--sage-dark); color: var(--white); transform: translateY(-2px); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 13px 30px; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.6);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
  text-decoration: none;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  padding: 80px 0 100px;
  overflow: hidden;
  position: relative;
}
.hero-blob {
  position: absolute;
  top: -80px; right: -60px;
  width: 520px; height: 520px;
  background: var(--blush);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  opacity: 0.7;
  z-index: 0;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  line-height: 1.08;
}
.hero h1 em { font-style: italic; color: var(--sage-dark); }
.hero p.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  background: var(--blush-2);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; color: var(--sage-dark);
  font-size: 0.85rem; font-weight: 500;
  opacity: 0.6;
}
.hero-photo-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }

.hero-badge {
  position: absolute;
  bottom: 24px; left: -20px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  min-width: 200px;
}
.hero-badge-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }
.hero-badge span { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.hero-badge small { display: block; font-size: 0.72rem; color: var(--ink-soft); font-weight: 400; margin-top: 2px; }

@media (max-width: 860px) {
  .hero { padding: 60px 0 80px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-blob { width: 300px; height: 300px; top: -40px; right: -40px; }
  .hero-photo { max-width: 320px; margin: 0 auto; }
  .hero-badge { left: 0; }
}

/* ===== CREDENZIALI BAND ===== */
.credentials-band {
  background: var(--sage-dark);
  padding: 36px 0;
}
.credentials-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 40px;
}
.credentials-list li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  font-weight: 500;
}
.credentials-list li::before {
  content: '✦';
  color: var(--blush);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about { background: var(--white); padding: 100px 0; }

.about-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 72px;
}
.about-profile-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.about-profile-avatar svg { width: 36px; height: 36px; stroke: var(--sage-dark); fill: none; stroke-width: 1.5; opacity: 0.5; }
.about-profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.about-profile h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600;
  margin-bottom: 6px;
}
.about-profile .role {
  color: var(--sage);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 16px;
}
.about-profile p { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.72; margin-bottom: 10px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.badge {
  background: var(--cream);
  color: var(--sage-dark);
  font-size: 0.78rem; font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
}

.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
@media (max-width: 760px) { .about-cols { grid-template-columns: 1fr; gap: 40px; } }

.about-col-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 28px;
}
.about-formation-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.about-formation-item:first-child { padding-top: 0; }
.about-formation-item:last-child { border-bottom: none; }
.about-formation-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--ink);
  margin-bottom: 4px;
}
.about-formation-item p { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.6; }

.timeline { margin-top: 0; }
.timeline li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
  color: var(--ink-soft);
  align-items: baseline;
  list-style: none;
}
.timeline li:first-child { padding-top: 0; }
.timeline li:last-child { border-bottom: none; }
.timeline li::before { display: none; }
.timeline .year {
  font-weight: 700; color: var(--ink);
  font-size: 0.8rem; flex-shrink: 0;
  letter-spacing: 0.02em;
}

/* ===== SERVICES ===== */
.services { background: var(--cream); padding: 100px 0; }
.services-head { text-align: center; margin-bottom: 64px; }
.services-head h2 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 16px; }
.services-head p { color: var(--ink-soft); max-width: 520px; margin: 0 auto; font-size: 1.02rem; line-height: 1.7; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card .icon-wrap svg { width: 22px; height: 22px; stroke: var(--sage-dark); fill: none; stroke-width: 1.8; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; }

/* ===== APPROACH ===== */
.approach { background: var(--blush); padding: 100px 0; }
.approach-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 820px) { .approach-inner { grid-template-columns: 1fr; gap: 40px; } }
.approach-left h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.approach-left p { color: var(--ink-soft); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
.approach-steps { display: flex; flex-direction: column; gap: 0; }
.approach-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--blush-2);
}
.approach-step:first-child { padding-top: 0; }
.approach-step:last-child { border-bottom: none; padding-bottom: 0; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--sage-dark);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: right;
}
.step-body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.step-body p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.65; }

/* ===== INFO / DOVE ===== */
.info { background: var(--white); padding: 100px 0; }
.info-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 820px) { .info-inner { grid-template-columns: 1fr; gap: 48px; } }
.info-left h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 14px; }
.info-left p { color: var(--ink-soft); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
.contact-list { display: flex; flex-direction: column; gap: 0; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:first-child { padding-top: 0; }
.contact-item:last-child { border-bottom: none; }
.contact-item .c-icon {
  width: 40px; height: 40px;
  background: var(--blush);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item .c-icon svg { width: 18px; height: 18px; stroke: var(--sage-dark); fill: none; stroke-width: 1.8; }
.contact-item .c-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage); margin-bottom: 3px; }
.contact-item .c-val { font-weight: 600; font-size: 0.97rem; }
.contact-item .c-val a { color: var(--ink); transition: color 0.2s; }
.contact-item .c-val a:hover { color: var(--sage-dark); }

.map-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--cream);
}
.map-card iframe { display: block; width: 100%; height: 260px; border: none; }
.map-card-footer {
  padding: 20px 24px;
  display: flex; align-items: center; gap: 12px;
}
.map-card-footer svg { width: 18px; height: 18px; stroke: var(--sage-dark); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.map-card-footer p { font-size: 0.9rem; color: var(--ink-soft); }
.map-card-footer strong { color: var(--ink); font-weight: 700; display: block; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--sage-dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -120px; left: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.72); max-width: 480px; margin: 0 auto 36px; font-size: 1.05rem; line-height: 1.7; }
.cta-band .btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--sage-dark);
  padding: 15px 36px; border-radius: 100px;
  font-size: 0.95rem; font-weight: 600;
  transition: all 0.2s; text-decoration: none;
}
.cta-band .btn-white:hover { background: var(--blush); transform: translateY(-2px); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--cream);
  padding: 72px 0 60px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 340px; height: 340px;
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.45;
  z-index: 0;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 16px; letter-spacing: -0.01em; }
.page-hero h1 em { font-style: italic; color: var(--sage-dark); }
.page-hero p { color: var(--ink-soft); font-size: 1.05rem; max-width: 560px; line-height: 1.75; }

/* ===== CONTACT PAGE ===== */
.contact-page { background: var(--cream); padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-sidebar {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 88px;
}
.contact-sidebar h3 { font-size: 1.4rem; margin-bottom: 24px; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-row:last-child { margin-bottom: 0; }
.c-icon { width: 40px; height: 40px; background: var(--blush); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon svg { width: 18px; height: 18px; stroke: var(--sage-dark); fill: none; stroke-width: 1.8; }
.c-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage); margin-bottom: 3px; }
.c-value { font-weight: 600; font-size: 0.97rem; }
.c-value a { color: var(--ink); transition: color 0.2s; }
.c-value a:hover { color: var(--sage-dark); }

/* FORM */
.contact-form-wrap { background: var(--white); border-radius: var(--r-lg); padding: 44px; box-shadow: var(--shadow); position: sticky; top: 88px; }
.contact-form-wrap h3 { font-size: 1.8rem; margin-bottom: 6px; }
.contact-form-wrap .subtitle { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 32px; line-height: 1.65; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem; color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(122,158,142,0.15); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-submit { margin-top: 12px; }
.form-submit .btn-primary { width: 100%; justify-content: center; padding: 15px 28px; font-size: 0.95rem; }
.form-feedback { display: none; margin-top: 16px; padding: 14px 18px; border-radius: var(--r-sm); font-weight: 600; font-size: 0.92rem; text-align: center; }
.form-feedback.success { background: #EBF4EE; color: #2E6B40; }
.form-feedback.error { background: #FDEAEA; color: #8B2020; }
.privacy-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 4px; }
.privacy-row input[type=checkbox] { width: auto; margin-top: 4px; flex-shrink: 0; accent-color: var(--sage-dark); }
.privacy-row label { font-size: 0.85rem; color: var(--ink-soft); font-weight: 400; line-height: 1.55; }
.privacy-row a { color: var(--sage-dark); text-decoration: underline; }

/* ===== SERVICES DETAIL ===== */
.services-detail { background: var(--cream); padding: 80px 0; }
.service-detail-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-detail-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
@media (max-width: 600px) { .service-detail-card { grid-template-columns: 1fr; gap: 12px; } }
.svc-icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-icon svg { width: 26px; height: 26px; stroke: var(--sage-dark); fill: none; stroke-width: 1.8; }
.service-detail-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-detail-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.72; }
.service-tag {
  display: inline-block; margin-top: 14px; margin-right: 6px;
  background: var(--cream); color: var(--sage-dark);
  font-size: 0.77rem; font-weight: 600;
  padding: 5px 12px; border-radius: 100px;
  border: 1px solid var(--line);
}

/* ===== FOOTER ===== */
footer { background: var(--ink); padding: 48px 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
footer .logo { color: var(--white); font-size: 1.1rem; }
footer .logo span { color: var(--sage); }
footer p { font-size: 0.83rem; color: rgba(255,255,255,0.45); }

/* ===== FOCUS / A11Y ===== */
a:focus-visible, button:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; } }

/* ============================================================
   AGGIUNTE — incolla in fondo a css/style.css
   Usa i token già esistenti: nessun colore nuovo da configurare.
   ============================================================ */

/* --- 1. Pagina corrente più leggibile nella nav ---
   La regola `nav ul a.active { color: var(--sage-dark); }` esiste già:
   qui aggiungo solo peso e sottolineatura per renderla evidente. */
nav ul a.active {
  font-weight: 600;
  position: relative;
}
nav ul a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}
@media (max-width: 768px) {
  nav ul a.active::after { display: none; }
  nav ul a.active { background: var(--blush); }
}

/* --- 2. Accordion "Formazione continua" (chi-sono.html) --- */
.cpd {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.cpd summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color 0.2s;
}
.cpd summary:hover { color: var(--sage-dark); }
.cpd summary::-webkit-details-marker { display: none; }
.cpd summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 0.25s ease;
}
.cpd[open] summary::after { transform: rotate(45deg); }
.cpd-body { padding-top: 20px; }
.cpd-body > p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 18px;
}
.cpd-body ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cpd-body li {
  position: relative;
  padding-left: 16px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.cpd-body li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
}
.cpd-body li strong { color: var(--ink); font-weight: 600; }

/* --- 3. Respiro tra paragrafi multipli nelle schede servizi --- */
.service-detail-card p + p { margin-top: 12px; }

/* --- 4. Badge sotto la bio, ora che i paragrafi sono due --- */
.about-profile .badge-row { margin-top: 12px; }

/* ============================================================
   AGGIUNTE — incolla in fondo a css/style.css
   Usa solo i token già esistenti: nessun colore nuovo.
   ============================================================ */

/* --- 1. Pagina corrente più leggibile nella nav ---
   `nav ul a.active { color: var(--sage-dark) }` esiste già:
   qui aggiungo solo peso e sottolineatura. */
nav ul a.active { font-weight: 600; position: relative; }
nav ul a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}
@media (max-width: 768px) {
  nav ul a.active::after { display: none; }
  nav ul a.active { background: var(--blush); }
}

/* --- 2. Respiro tra paragrafi multipli nelle schede servizi --- */
.service-detail-card p + p { margin-top: 12px; }


/* ============================================================
   PAGINA CHI SONO
   ============================================================ */

/* --- Bio: foto a sinistra, testo a destra --- */
.bio { background: var(--white); padding: 100px 0; }
.bio-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.bio-media { position: sticky; top: 104px; }
.bio-media .hero-photo { max-width: 100%; }
.bio-badges { justify-content: flex-start; margin-top: 20px; }

.bio-text h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.bio-text p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}
.bio-text p + p { margin-top: 18px; }

.bio-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.bio-facts li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.bio-facts li span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}

@media (max-width: 860px) {
  .bio { padding: 72px 0; }
  .bio-inner { grid-template-columns: 1fr; gap: 40px; }
  .bio-media { position: static; max-width: 340px; }
  .bio-facts { grid-template-columns: 1fr; gap: 18px; }
}

/* --- Percorso --- */
.path { background: var(--cream); padding: 100px 0; }
.path-head { text-align: center; margin-bottom: 64px; }
.path-head h2 { font-size: clamp(2.1rem, 4vw, 2.9rem); margin-bottom: 16px; }
.path-head p {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.7;
}

.path-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

/* Esperienze in card */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
@media (max-width: 900px) { .exp-grid { grid-template-columns: 1fr; } }
.exp-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.exp-year {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--blush);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.exp-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.exp-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.68; }
.exp-card strong { color: var(--ink); font-weight: 600; }

/* Formazione su due colonne */
.path-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) { .path-cols { grid-template-columns: 1fr; gap: 48px; } }

.path-cols .about-formation-item { border-bottom-color: var(--line); }
.path-cols .about-formation-item h4 { font-size: 1.15rem; margin-bottom: 8px; }
.path-cols .about-formation-item em { color: var(--ink-soft); }
.item-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.item-meta .badge { background: var(--white); font-size: 0.72rem; padding: 4px 11px; }

/* --- Accordion formazione continua --- */
.cpd {
  margin-top: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 24px;
}
.cpd summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color 0.2s;
}
.cpd summary:hover { color: var(--sage-dark); }
.cpd summary::-webkit-details-marker { display: none; }
.cpd summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 0.25s ease;
}
.cpd[open] summary::after { transform: rotate(45deg); }
.cpd[open] summary { margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.cpd-body > p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.68;
  margin-bottom: 20px;
}
.cpd-body ul { display: flex; flex-direction: column; gap: 14px; }
.cpd-body li {
  position: relative;
  padding-left: 16px;
  font-size: 0.87rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.cpd-body li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
}
.cpd-body li strong { color: var(--ink); font-weight: 600; }


/* ============================================================
   HOME — "Di cosa mi occupo": tiles solo titolo
   ============================================================ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.area-grid .area-tile:last-child { grid-column: 1 / -1; }
@media (max-width: 720px) {
  .area-grid { grid-template-columns: 1fr; }
  .area-grid .area-tile:last-child { grid-column: auto; }
}

.area-tile {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.area-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.area-tile .icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}
.area-tile .icon-wrap svg { width: 22px; height: 22px; stroke: var(--sage-dark); fill: none; stroke-width: 1.8; }
.area-tile:hover .icon-wrap { background: var(--blush-2); }

.area-tile h3 {
  flex: 1;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}
.area-arrow {
  flex-shrink: 0;
  font-size: 1.05rem;
  color: var(--sage);
  transition: transform 0.25s, color 0.25s;
}
.area-tile:hover .area-arrow { transform: translateX(4px); color: var(--sage-dark); }

@media (max-width: 480px) {
  .area-tile { padding: 20px 22px; gap: 16px; }
  .area-tile h3 { font-size: 1.05rem; }
}

/* Atterraggio pulito sotto l'header sticky quando arrivi da un'ancora */
.service-detail-card[id] { scroll-margin-top: 96px; }

/* ============================================================
   AGGIUNTE — incolla in fondo a css/style.css
   Usa solo i token già esistenti: nessun colore nuovo.
   ============================================================ */

/* --- 1. Pagina corrente più leggibile nella nav ---
   `nav ul a.active { color: var(--sage-dark) }` esiste già:
   qui aggiungo solo peso e sottolineatura. */
nav ul a.active { font-weight: 600; position: relative; }
nav ul a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}
@media (max-width: 768px) {
  nav ul a.active::after { display: none; }
  nav ul a.active { background: var(--blush); }
}

/* --- 2. Respiro tra paragrafi multipli nelle schede servizi --- */
.service-detail-card p + p { margin-top: 12px; }


/* ============================================================
   PAGINA CHI SONO
   ============================================================ */

/* --- Bio: foto a sinistra, testo a destra --- */
.bio { background: var(--white); padding: 100px 0; }
.bio-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.bio-media { position: sticky; top: 104px; }
.bio-media .hero-photo { max-width: 100%; }
.bio-badges { justify-content: flex-start; margin-top: 20px; }

.bio-text h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.bio-text p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}
.bio-text p + p { margin-top: 18px; }

.bio-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.bio-facts li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.bio-facts li span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}

@media (max-width: 860px) {
  .bio { padding: 72px 0; }
  .bio-inner { grid-template-columns: 1fr; gap: 40px; }
  .bio-media { position: static; max-width: 340px; }
  .bio-facts { grid-template-columns: 1fr; gap: 18px; }
}

/* --- Percorso --- */
.path { background: var(--cream); padding: 100px 0; }
.path-head { text-align: center; margin-bottom: 64px; }
.path-head h2 { font-size: clamp(2.1rem, 4vw, 2.9rem); margin-bottom: 16px; }
.path-head p {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.7;
}

.path-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

/* Esperienze in card */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
@media (max-width: 900px) { .exp-grid { grid-template-columns: 1fr; } }
.exp-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.exp-year {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--blush);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.exp-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.exp-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.68; }
.exp-card strong { color: var(--ink); font-weight: 600; }

/* Formazione su due colonne */
.path-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) { .path-cols { grid-template-columns: 1fr; gap: 48px; } }

.path-cols .about-formation-item { border-bottom-color: var(--line); }
.path-cols .about-formation-item h4 { font-size: 1.15rem; margin-bottom: 8px; }
.path-cols .about-formation-item em { color: var(--ink-soft); }
.item-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.item-meta .badge { background: var(--white); font-size: 0.72rem; padding: 4px 11px; }

/* --- Accordion formazione continua --- */
.cpd {
  margin-top: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 24px;
}
.cpd summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color 0.2s;
}
.cpd summary:hover { color: var(--sage-dark); }
.cpd summary::-webkit-details-marker { display: none; }
.cpd summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 0.25s ease;
}
.cpd[open] summary::after { transform: rotate(45deg); }
.cpd[open] summary { margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.cpd-body > p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.68;
  margin-bottom: 20px;
}
.cpd-body ul { display: flex; flex-direction: column; gap: 14px; }
.cpd-body li {
  position: relative;
  padding-left: 16px;
  font-size: 0.87rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.cpd-body li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
}
.cpd-body li strong { color: var(--ink); font-weight: 600; }


/* ============================================================
   HOME — "Di cosa mi occupo": card solo titolo
   ============================================================ */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.area-card {
  flex: 0 1 calc((100% - 40px) / 3);
  min-width: 260px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 32px 28px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.area-card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s;
}
.area-card .icon-wrap svg { width: 22px; height: 22px; stroke: var(--sage-dark); fill: none; stroke-width: 1.8; }
.area-card:hover .icon-wrap { background: var(--blush-2); }

.area-card h3 {
  font-size: 1.22rem;
  line-height: 1.25;
  margin: 0 0 22px;
  min-height: 2.5em;
}

.area-more {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color 0.25s;
}
.area-more em { font-style: normal; transition: transform 0.25s; }
.area-card:hover .area-more { color: var(--sage-dark); }
.area-card:hover .area-more em { transform: translateX(4px); }

@media (max-width: 900px) {
  .area-card { flex: 0 1 calc((100% - 20px) / 2); }
  .area-card h3 { min-height: 0; }
}
@media (max-width: 560px) {
  .area-card { flex: 1 1 100%; min-width: 0; padding: 26px 24px 22px; }
  .area-card h3 { font-size: 1.1rem; margin-bottom: 18px; }
}

/* Atterraggio pulito sotto l'header sticky quando arrivi da un'ancora */
.service-detail-card[id] { scroll-margin-top: 96px; }

/* ============================================================
   AGGIUNTE — incolla in fondo a css/style.css
   Usa solo i token già esistenti: nessun colore nuovo.
   ============================================================ */

/* --- 1. Pagina corrente più leggibile nella nav ---
   `nav ul a.active { color: var(--sage-dark) }` esiste già:
   qui aggiungo solo peso e sottolineatura. */
nav ul a.active { font-weight: 600; position: relative; }
nav ul a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}
@media (max-width: 768px) {
  nav ul a.active::after { display: none; }
  nav ul a.active { background: var(--blush); }
}

/* --- 2. Respiro tra paragrafi multipli nelle schede servizi --- */
.service-detail-card p + p { margin-top: 12px; }


/* ============================================================
   PAGINA CHI SONO
   ============================================================ */

/* --- Bio: foto a sinistra, testo a destra --- */
.bio { background: var(--white); padding: 100px 0; }
.bio-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.bio-media { position: sticky; top: 104px; }
.bio-media .hero-photo { max-width: 100%; }
.bio-badges { justify-content: flex-start; margin-top: 20px; }

.bio-text h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.bio-text p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}
.bio-text p + p { margin-top: 18px; }

.bio-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.bio-facts li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.bio-facts li span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}

@media (max-width: 860px) {
  .bio { padding: 72px 0; }
  .bio-inner { grid-template-columns: 1fr; gap: 40px; }
  .bio-media { position: static; max-width: 340px; }
  .bio-facts { grid-template-columns: 1fr; gap: 18px; }
}

/* --- Percorso --- */
.path { background: var(--cream); padding: 100px 0; }
.path-head { text-align: center; margin-bottom: 64px; }
.path-head h2 { font-size: clamp(2.1rem, 4vw, 2.9rem); margin-bottom: 16px; }
.path-head p {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.7;
}

.path-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

/* Esperienze in card */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
@media (max-width: 900px) { .exp-grid { grid-template-columns: 1fr; } }
.exp-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.exp-year {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--blush);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.exp-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.exp-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.68; }
.exp-card strong { color: var(--ink); font-weight: 600; }

/* Formazione su due colonne */
.path-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) { .path-cols { grid-template-columns: 1fr; gap: 48px; } }

.path-cols .about-formation-item { border-bottom-color: var(--line); }
.path-cols .about-formation-item h4 { font-size: 1.15rem; margin-bottom: 8px; }
.path-cols .about-formation-item em { color: var(--ink-soft); }
.item-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.item-meta .badge { background: var(--white); font-size: 0.72rem; padding: 4px 11px; }

/* --- Accordion formazione continua --- */
.cpd {
  margin-top: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 24px;
}
.cpd summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color 0.2s;
}
.cpd summary:hover { color: var(--sage-dark); }
.cpd summary::-webkit-details-marker { display: none; }
.cpd summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 0.25s ease;
}
.cpd[open] summary::after { transform: rotate(45deg); }
.cpd[open] summary { margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.cpd-body > p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.68;
  margin-bottom: 20px;
}
.cpd-body ul { display: flex; flex-direction: column; gap: 14px; }
.cpd-body li {
  position: relative;
  padding-left: 16px;
  font-size: 0.87rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.cpd-body li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
}
.cpd-body li strong { color: var(--ink); font-weight: 600; }


/* ============================================================
   HOME — "Di cosa mi occupo": card solo titolo
   ============================================================ */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.area-card {
  flex: 0 1 calc((100% - 40px) / 3);
  min-width: 260px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 32px 28px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.area-card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s;
}
.area-card .icon-wrap svg { width: 22px; height: 22px; stroke: var(--sage-dark); fill: none; stroke-width: 1.8; }
.area-card:hover .icon-wrap { background: var(--blush-2); }

.area-card h3 {
  font-size: 1.22rem;
  line-height: 1.25;
  margin: 0 0 22px;
  min-height: 2.5em;
}

.area-more {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color 0.25s;
}
.area-more em { font-style: normal; transition: transform 0.25s; }
.area-card:hover .area-more { color: var(--sage-dark); }
.area-card:hover .area-more em { transform: translateX(4px); }

@media (max-width: 900px) {
  .area-card { flex: 0 1 calc((100% - 20px) / 2); }
  .area-card h3 { min-height: 0; }
}
@media (max-width: 560px) {
  .area-card { flex: 1 1 100%; min-width: 0; padding: 26px 24px 22px; }
  .area-card h3 { font-size: 1.1rem; margin-bottom: 18px; }
}

/* Atterraggio pulito sotto l'header sticky quando arrivi da un'ancora */
.service-detail-card[id] { scroll-margin-top: 96px; }


/* ============================================================
   FIX MOBILE
   ============================================================ */

/* --- Hamburger allineato al bordo destro ---
   Il <nav> resta un flex item a larghezza zero: con space-between
   il toggle finisce al centro. Lo spingo a destra con margin auto. */
@media (max-width: 768px) {
  .nav { justify-content: flex-start; gap: 0; }
  .menu-toggle { margin-left: auto; }
}

/* --- Contatti: niente sticky in colonna singola ---
   Form e sidebar sono entrambi sticky: impilati si sovrappongono. */
@media (max-width: 820px) {
  .contact-form-wrap,
  .contact-sidebar { position: static; top: auto; }
  .contact-grid > *:last-child { order: -1; }
}

/* --- Pulsanti centrati su mobile --- */
@media (max-width: 768px) {
  .hero-actions { justify-content: center; }

  .approach-left .btn-primary,
  .info-left .btn-primary,
  .bio-text .btn-primary,
  .services > .wrap > div > .btn-primary {
    display: flex;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- Footer centrato su mobile --- */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
  }
  footer .footer-inner .logo img { height: 92px; }
  footer p { line-height: 1.9; }
}