:root {
  --ink: #182526;
  --muted: #596868;
  --paper: #fdfcf8;
  --paper-2: #f6f9f7;
  --soft: #e9f1ed;
  --mist: #e7edf1;
  --warm: #f7eeea;
  --teal: #246d66;
  --teal-dark: #174f4a;
  --berry: #835064;
  --clay: #a6634e;
  --olive: #667659;
  --line: rgba(24, 37, 38, 0.13);
  --shadow: 0 20px 54px rgba(30, 47, 47, 0.12);
  --max: 1220px;
}

body {
  background: var(--paper);
  letter-spacing: 0;
}

.site-header {
  min-height: 80px;
  border-bottom-color: rgba(24, 37, 38, 0.08);
}

.brand-mark {
  border-radius: 8px;
  background: var(--teal-dark);
  box-shadow: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 500;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 600;
}

.site-nav {
  gap: 2px;
}

.site-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 17px;
}

.hero {
  min-height: min(820px, 88svh);
  align-items: end;
  background: #d5dfda;
}

.hero img {
  object-position: 59% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(249, 248, 243, 0.96) 0%, rgba(249, 248, 243, 0.89) 34%, rgba(249, 248, 243, 0.26) 73%, rgba(20, 42, 40, 0.08) 100%),
    linear-gradient(0deg, rgba(23, 79, 74, 0.11), rgba(23, 79, 74, 0) 50%);
}

.hero-content {
  width: min(690px, calc(100% - 36px));
  margin-left: max(18px, calc((100vw - var(--max)) / 2));
  padding: clamp(84px, 10vw, 132px) 0 clamp(70px, 8vw, 104px);
}

.hero h1 {
  max-width: 13.5ch;
  margin-bottom: 26px;
  font-size: clamp(3.35rem, 6.2vw, 5.65rem);
  line-height: 0.98;
}

.hero h1 em {
  color: var(--teal-dark);
  font-weight: 500;
}

.hero-copy {
  max-width: 570px;
  color: #344746;
  font-size: 1.16rem;
  line-height: 1.68;
}

.eyebrow,
.section-kicker {
  color: var(--berry);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.button {
  min-height: 50px;
  padding-inline: 20px;
}

.hero-notes {
  margin-top: 32px;
  gap: 18px;
}

.hero-notes span {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #415452;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-notes span::before {
  display: none;
}

.hero-notes svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  stroke-width: 1.8;
}

section:not(.hero) {
  padding: clamp(70px, 9vw, 118px) 0;
}

.audience-selector {
  background: #fff;
}

.audience-selector::before,
.editorial-statement::before {
  display: none;
}

.selector-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 0 clamp(30px, 6vw, 84px);
  max-width: none;
  margin-bottom: 40px;
}

.selector-heading .section-kicker {
  grid-column: 1 / -1;
}

.selector-heading h2,
.selector-heading p {
  margin-bottom: 0;
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 330px;
  padding: 34px clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.audience-card:last-child {
  border-right: 0;
}

.audience-card:hover,
.audience-card:focus-visible {
  background: var(--paper-2);
  transform: translateY(-3px);
  outline: none;
}

.audience-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 50%;
}

.audience-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}

.children .audience-icon {
  color: var(--teal-dark);
  background: var(--soft);
}

.teens .audience-icon {
  color: var(--berry);
  background: #f4eaf0;
}

.adults .audience-icon {
  color: #526446;
  background: #edf1e7;
}

.audience-label {
  margin-bottom: 9px;
  color: var(--berry);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-card strong {
  max-width: 15ch;
  margin-bottom: 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.12;
  font-weight: 600;
}

.audience-card > span:not(.audience-icon, .audience-label, .audience-link) {
  color: var(--muted);
}

.audience-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: end;
  margin-top: 26px;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.audience-link svg {
  width: 16px;
  height: 16px;
}

.intro-section {
  background: var(--paper);
}

.intro-section .intro-grid {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
}

.intro-section h2 {
  max-width: 12ch;
}

.intro-text {
  max-width: 740px;
  padding-left: clamp(0px, 3vw, 38px);
  border-left: 1px solid var(--line);
}

.editorial-statement {
  padding: clamp(62px, 7vw, 92px) 0 !important;
  color: #fff;
  background: var(--teal-dark);
}

.statement-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 920px);
  gap: 0 26px;
  align-items: start;
}

.statement-mark {
  color: #a7c7bf;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem;
  line-height: 0.82;
}

.statement-inner p {
  max-width: 20ch;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.12;
}

.statement-caption {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-overview {
  background: #f5f8f6;
}

.overview-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.overview-grid article {
  min-height: 285px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.overview-grid article:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
  background: #fcfdfa;
}

.overview-grid span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.overview-grid span svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
}

.profile-band {
  background: linear-gradient(125deg, #e8eff0 0%, #f3f6f3 56%, #f7efec 100%);
}

.facts-panel {
  box-shadow: 0 18px 44px rgba(30, 47, 47, 0.09);
}

.approach-grid {
  gap: clamp(26px, 4vw, 54px);
}

.approach-grid article {
  padding: 26px 0 0;
  border: 0;
  border-top: 2px solid var(--teal);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.approach-grid article:nth-child(2) {
  border-top-color: var(--berry);
}

.approach-grid article:nth-child(3) {
  border-top-color: var(--olive);
}

.approach-grid article:hover {
  border-color: inherit;
  box-shadow: none;
  transform: none;
}

.approach-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 25px;
  color: var(--teal-dark);
  stroke-width: 1.5;
}

.approach-grid article:nth-child(2) .approach-icon {
  color: var(--berry);
}

.approach-grid article:nth-child(3) .approach-icon {
  color: var(--olive);
}

.method-steps {
  border-color: rgba(24, 37, 38, 0.1);
  background: rgba(24, 37, 38, 0.1);
  box-shadow: none;
}

.method-steps span {
  color: var(--teal-dark);
  background: var(--soft);
}

.audience-section {
  background: #f2f7f4;
}

.adult-band {
  background: #fbf5f2;
}

.training-section {
  background: #f1f4ed;
}

.contact-section {
  background:
    linear-gradient(115deg, rgba(23, 79, 74, 0.99), rgba(36, 109, 102, 0.94)),
    var(--teal-dark);
}

.contact-reassurance {
  max-width: 570px;
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.07);
}

.site-footer {
  background: var(--paper);
}

/* Adattamento della grafica editoriale al titolo clinico originale, più lungo. */
.hero {
  min-height: min(720px, 80svh);
  align-items: center;
}

.hero-content {
  padding: clamp(42px, 5vw, 64px) 0;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(3.25rem, 5vw, 4.75rem);
  line-height: 1.01;
}

.hero-copy {
  max-width: 610px;
}

.hero h1 {
  max-width: 13ch;
}

.hero-notes span {
  white-space: nowrap;
}

.core-services {
  background: #f5f8f6;
}

.concise-heading {
  max-width: 760px;
}

.core-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.core-service-card {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  background: #fff;
}

.core-service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--soft);
}

.core-service-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}

.adults-icon {
  color: var(--berry);
  background: #f4eaf0;
}

.assessment-icon {
  color: var(--olive);
  background: #edf1e7;
}

.service-label {
  margin-bottom: 10px;
  color: var(--berry);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.core-service-card h3 {
  max-width: 21ch;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.58rem;
  font-weight: 600;
  line-height: 1.14;
}

.core-service-card p:not(.service-label) {
  color: var(--muted);
}

.core-service-card .core-service-top {
  text-align: center;
}

.core-service-card .core-service-icon {
  margin-left: auto;
  margin-right: auto;
}

.core-service-card h3 {
  margin-left: auto;
  margin-right: auto;
}

.core-service-card p:not(.service-label) {
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}

.compact-list {
  display: grid;
  gap: 10px;
  max-width: 39ch;
  padding: 20px 0 0;
  margin: 20px auto 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.compact-list li {
  position: relative;
  padding-left: 17px;
  color: #3f5050;
  font-size: 0.92rem;
  font-weight: 620;
  line-height: 1.42;
}

.compact-list li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.profile-compact-grid,
.approach-compact-grid,
.faq-compact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.profile-lead {
  color: #344746 !important;
  font-family: inherit;
  font-size: 1rem !important;
  font-weight: 400;
  line-height: 1.6;
}

.profile-summary {
  display: grid;
  border-top: 1px solid var(--line);
}

.profile-summary div {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.profile-summary span {
  display: block;
  margin-bottom: 5px;
  color: var(--berry);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-summary strong {
  display: block;
  max-width: 42ch;
  line-height: 1.45;
}

.integrated-approach {
  background: var(--paper);
}

.approach-intro h2 {
  max-width: 12ch;
}

.approach-intro p {
  color: var(--muted);
}

.approach-details {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.approach-details article {
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.approach-details article p {
  max-width: 64ch;
  margin-bottom: 0;
  color: var(--muted);
}

.training-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(38px, 6vw, 68px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.training-strip span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #40514f;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.compact-method article {
  min-height: 220px;
}

.faq-compact-grid > div:first-child {
  position: sticky;
  top: 110px;
}

.faq-compact-grid h2 {
  max-width: 11ch;
}

section[id] {
  scroll-margin-top: 82px;
}

@media (max-width: 900px) {
  .selector-heading,
  .intro-section .intro-grid {
    grid-template-columns: 1fr;
  }

  .selector-heading {
    gap: 12px;
  }

  .audience-cards {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audience-card:last-child {
    border-bottom: 0;
  }

  .intro-text {
    padding-left: 0;
    border-left: 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero img {
    object-position: 66% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(249, 248, 243, 0.95), rgba(249, 248, 243, 0.7));
  }

  .core-services-grid {
    grid-template-columns: 1fr;
  }

  .profile-compact-grid,
  .approach-compact-grid,
  .faq-compact-grid {
    grid-template-columns: 1fr;
  }

  .faq-compact-grid > div:first-child {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    margin-left: 16px;
    padding: 44px 0 38px;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: 2.35rem;
    line-height: 1.02;
  }

  .hero-notes {
    display: flex;
    gap: 9px 14px;
  }

  .hero-notes span {
    width: auto;
  }

  .audience-card {
    padding: 28px 18px;
  }

  .statement-inner {
    grid-template-columns: 1fr;
  }

  .statement-mark {
    font-size: 4.5rem;
  }

  .statement-inner p,
  .statement-caption {
    grid-column: 1;
  }

  .hero-notes span {
    white-space: normal;
  }

  .core-service-card {
    padding: 26px 18px;
  }

  .core-service-card h3 {
    font-size: 1.45rem;
  }

  .training-strip {
    display: grid;
  }

  .training-strip span {
    border-radius: var(--radius);
  }

  .compact-method article {
    min-height: auto;
  }
}

/* Versione 08: clinica, contemporanea e autorevole */
:root {
  --ink: #1e2932;
  --muted: #64717a;
  --paper: #ffffff;
  --paper-2: #f4f7f8;
  --soft: #e7eef1;
  --mist: #e8edf0;
  --warm: #f4eef0;
  --teal: #476b7a;
  --teal-dark: #243441;
  --berry: #793d50;
  --clay: #985464;
  --olive: #607467;
  --line: rgba(30, 41, 50, 0.16);
  --shadow: 0 18px 46px rgba(30, 41, 50, 0.12);
}

body {
  color: var(--ink);
  background: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3,
.brand strong,
.core-service-card h3 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 650;
}

h2 {
  font-size: clamp(2.35rem, 4.3vw, 3.7rem);
  line-height: 1.02;
}

.site-header {
  min-height: 76px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(30, 41, 50, 0.11);
}

.brand-mark {
  border-radius: 2px;
  color: #fff;
  background: var(--teal-dark);
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 700;
}

.site-nav .nav-cta,
.button.primary {
  border-radius: 3px;
  color: #fff;
  background: var(--berry);
  box-shadow: none;
}

.site-nav .nav-cta:hover,
.button.primary:hover,
.button.primary:focus-visible {
  background: #5f2f3e;
}

.button {
  border-radius: 3px;
}

.hero {
  min-height: min(770px, 86svh);
  color: #fff;
  background: #243441;
}

.hero img {
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(24, 35, 44, 0.9) 0%, rgba(24, 35, 44, 0.73) 35%, rgba(24, 35, 44, 0.18) 64%, rgba(24, 35, 44, 0.02) 100%),
    linear-gradient(0deg, rgba(20, 29, 36, 0.22), transparent 45%);
}

.hero-content {
  width: min(690px, calc(100% - 36px));
}

.hero h1 {
  max-width: 13ch;
  color: #fff;
  font-size: clamp(3.15rem, 5.25vw, 5.2rem);
  font-weight: 620;
  line-height: 0.98;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.82);
}

.hero .eyebrow {
  color: #d7b4bf;
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero .button.secondary:hover,
.hero .button.secondary:focus-visible {
  color: var(--ink);
  background: #fff;
}

.hero-notes {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-notes span {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow,
.section-kicker,
.service-label,
.profile-summary span {
  color: var(--berry);
}

section:not(.hero) {
  padding: clamp(74px, 8.5vw, 110px) 0;
}

.core-services {
  background: #fff;
}

.core-services-grid {
  gap: 18px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.core-service-card {
  position: relative;
  border: 1px solid rgba(30, 41, 50, 0.14);
  border-radius: 3px;
  box-shadow: none;
}

.core-service-card::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto;
  height: 5px;
  background: var(--teal);
}

.core-service-card:nth-child(2)::before {
  background: var(--berry);
}

.core-service-card:nth-child(3)::before {
  background: var(--olive);
}

.core-service-icon {
  border-radius: 3px;
  color: #365d6c;
  background: #e6eef1;
}

.adults-icon {
  color: var(--berry);
  background: #f2e8eb;
}

.assessment-icon {
  color: #53695b;
  background: #eaf0ec;
}

.profile-band {
  background: #edf2f4;
}

.profile-compact-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.profile-summary {
  padding-left: 26px;
  border-top: 0;
  border-left: 4px solid var(--berry);
}

.integrated-approach {
  background: #fff;
}

.approach-details article {
  padding: 25px 0;
}

.training-strip span {
  border-radius: 3px;
  color: #354651;
  background: #f2f5f6;
}

.method-section {
  color: #fff;
  background: #243441;
}

.method-section .section-kicker {
  color: #d7b4bf;
}

.method-section .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.method-steps {
  gap: 1px;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.method-steps article {
  color: var(--ink);
  background: #fff;
}

.method-steps span {
  border-radius: 3px;
  background: var(--berry);
}

.faq-section {
  background: #f4f7f8;
}

.faq-list details {
  border-radius: 3px;
  background: #fff;
}

.contact-section {
  background: #71384a;
}

.contact-panel {
  border: 0;
  border-radius: 3px;
  box-shadow: 0 20px 48px rgba(38, 17, 24, 0.22);
}

.site-footer {
  color: #cbd2d6;
  background: #1e2932;
  border-top: 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

@media (max-width: 900px) {
  .hero img {
    object-position: 58% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(24, 35, 44, 0.94), rgba(24, 35, 44, 0.66));
  }

  .profile-compact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 690px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .profile-summary {
    padding-left: 18px;
  }
}

/* Versione 09: ottimizzazioni di accessibilita e caricamento */
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: #fff;
  background: #793d50;
  border-radius: 3px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #b85f78;
  outline-offset: 4px;
  box-shadow: 0 0 0 2px #fff;
}

.site-nav a:focus-visible,
.button:focus-visible,
.site-footer a:focus-visible,
.text-link:focus-visible,
.overview-grid a:focus-visible {
  outline: 3px solid #b85f78;
  outline-offset: 4px;
  box-shadow: 0 0 0 2px #fff;
}

.contact-panel a {
  overflow-wrap: anywhere;
}

/* Versione 10: verde petrolio e rame, senza accenti viola */
:root {
  --berry: #3f736b;
  --clay: #9a604b;
}

.site-nav .nav-cta,
.button.primary {
  background: #35655f;
}

.site-nav .nav-cta:hover,
.button.primary:hover,
.button.primary:focus-visible {
  background: #294f4b;
}

.hero .eyebrow,
.method-section .section-kicker {
  color: #c7dad4;
}

.eyebrow,
.section-kicker,
.service-label,
.profile-summary span {
  color: var(--clay);
}

.core-service-card:nth-child(2)::before {
  background: var(--clay);
}

.adults-icon {
  color: #915945;
  background: #f3ebe7;
}

.profile-summary {
  border-left-color: var(--clay);
}

.method-steps span {
  background: var(--berry);
}

.contact-section {
  background: #28534f;
}

.contact-panel {
  box-shadow: 0 20px 48px rgba(15, 47, 44, 0.24);
}

.skip-link {
  background: #35655f;
}

:focus-visible,
.site-nav a:focus-visible,
.button:focus-visible,
.site-footer a:focus-visible,
.text-link:focus-visible,
.overview-grid a:focus-visible {
  outline-color: #a85d42;
}

/* Versione 11: palette petrolio uniforme, senza accenti rame */
:root {
  --berry: #3f736b;
  --clay: #3f736b;
}

.eyebrow,
.section-kicker,
.service-label,
.profile-summary span {
  color: #3f736b;
}

.core-service-card:nth-child(2)::before {
  background: #3f736b;
}

.adults-icon {
  color: #35655f;
  background: #e7f0ee;
}

.profile-summary {
  border-left-color: #4e827a;
}

:focus-visible,
.site-nav a:focus-visible,
.button:focus-visible,
.site-footer a:focus-visible,
.text-link:focus-visible,
.overview-grid a:focus-visible {
  outline-color: #69a198;
}

/* Versione 12: testi ottimizzati dal PDF, con sezioni più leggibili */
.site-nav a {
  padding-inline: 10px;
}

.hero h1 {
  max-width: 14.5ch;
}

.hero-copy {
  max-width: 640px;
}

.content-band {
  background: #fff;
}

.adult-band,
.audience-section,
.assessment-section {
  background: #f4f7f6;
}

.audience-section {
  background: #f7faf8;
}

.assessment-section {
  background: #eef4f2;
}

.wide-split > div:first-child {
  border-color: rgba(36, 109, 102, 0.16);
  background: #fff;
}

.focus-list {
  border-color: rgba(36, 109, 102, 0.2);
  box-shadow: 0 16px 34px rgba(30, 47, 47, 0.08);
}

.focus-list h3 {
  margin-bottom: 16px;
  color: var(--teal-dark);
}

.pathway-grid article,
.stacked-list article {
  border-radius: 3px;
  border-color: rgba(30, 41, 50, 0.13);
  box-shadow: none;
}

.pathway-grid article {
  min-height: 238px;
}

.stacked-list {
  gap: 12px;
}

.stacked-list article {
  padding: 24px;
  background: #fff;
}

.editorial-statement {
  background: #243441;
}

.statement-inner p {
  max-width: 22ch;
}

.statement-caption {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  background: #28534f;
}

@media (max-width: 1100px) {
  .site-nav a {
    font-size: 0.86rem;
    padding-inline: 8px;
  }
}

@media (max-width: 900px) {
  .site-nav a {
    font-size: 0.94rem;
    padding-inline: 12px;
  }

  .wide-split,
  .two-column {
    grid-template-columns: 1fr;
  }

  .pathway-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    max-width: 14ch;
  }

  .pathway-grid article {
    min-height: auto;
  }
}

/* Versione 13: testo PDF esteso con approfondimenti */
.site-nav a {
  padding-inline: 8px;
}

.hero {
  min-height: min(820px, 88svh);
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(2.95rem, 4.7vw, 4.55rem);
  line-height: 1.03;
}

.hero-title-main,
.hero-title-sub {
  display: block;
}

.keep-together {
  white-space: nowrap;
}

.hero-title-line {
  display: block;
}

.hero-title-main {
  max-width: 18ch;
}

.hero-title-sub {
  max-width: none;
  margin-top: 0.34em;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.32rem, 2.1vw, 1.86rem);
  font-weight: 520;
  line-height: 1.18;
  white-space: nowrap;
}

.hero-copy {
  max-width: 680px;
}

.secondary-copy {
  margin-top: -6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.22rem;
  line-height: inherit;
}

.hero .hero-copy,
.hero .hero-copy.secondary-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.22rem;
  line-height: 1.6;
}

.deep-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.deep-intro {
  position: sticky;
  top: 108px;
}

.deep-intro h2 {
  max-width: 12ch;
}

.deep-intro p {
  color: var(--muted);
  font-size: 1.06rem;
}

.text-flow {
  display: grid;
  gap: 18px;
}

.integrated-approach .deep-grid,
.adult-band .deep-grid,
.assessment-section .deep-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(30px, 5.5vw, 70px);
}

.integrated-approach .deep-intro,
.adult-band .deep-intro,
.assessment-section .deep-intro {
  max-width: 720px;
}

.integrated-approach .text-flow,
.adult-band .text-flow,
.assessment-section .text-flow {
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

.text-panel,
.detail-panel {
  border: 1px solid rgba(30, 41, 50, 0.13);
  border-radius: 3px;
  background: #fff;
  box-shadow: none;
}

.text-panel {
  padding: clamp(24px, 3vw, 34px);
}

.text-panel h3 {
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 1.32rem;
}

.text-panel p,
.detail-panel p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.74;
}

.text-panel p:last-child,
.detail-panel p:last-child {
  margin-bottom: 0;
}

.detail-panel {
  overflow: hidden;
}

.detail-panel summary {
  cursor: pointer;
  padding: 20px clamp(22px, 3vw, 30px);
  color: var(--ink);
  font-weight: 800;
  list-style-position: outside;
}

.detail-panel[open] summary {
  border-bottom: 1px solid rgba(30, 41, 50, 0.12);
  background: #f7faf8;
}

.detail-panel > p,
.detail-panel > ul {
  margin: 0;
  padding: 0 clamp(22px, 3vw, 30px) 20px;
}

.detail-panel > p:first-of-type,
.detail-panel > ul:first-of-type {
  padding-top: 22px;
}

.long-list {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.long-list.columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
}

.long-list li {
  line-height: 1.55;
}

.expanded-pathways {
  margin: 2px 0;
}

.expanded-pathways article {
  min-height: auto;
  background: #fff;
}

.method-note {
  max-width: 760px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.contact-reassurance {
  max-width: 660px;
}

@media (max-width: 1180px) {
  .site-nav a {
    font-size: 0.8rem;
    padding-inline: 6px;
  }
}

@media (max-width: 900px) {
  .deep-grid,
  .integrated-approach .deep-grid,
  .adult-band .deep-grid,
  .assessment-section .deep-grid {
    grid-template-columns: 1fr;
  }

  .deep-intro {
    position: static;
  }

  .integrated-approach .text-flow,
  .adult-band .text-flow,
  .assessment-section .text-flow {
    max-width: none;
    justify-self: stretch;
  }

  .site-nav a {
    font-size: 0.94rem;
    padding-inline: 12px;
  }

  .long-list.columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 740px;
  }

  .hero h1 {
    max-width: 16.5ch;
    font-size: 2.14rem;
  }

  .hero-title-main {
    max-width: 16.5ch;
  }

  .hero-title-sub {
    max-width: none;
    font-size: 1.08rem;
    white-space: nowrap;
  }

  .hero-copy,
  .hero-copy.secondary-copy {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .text-panel,
  .detail-panel summary,
  .detail-panel > p,
  .detail-panel > ul {
    padding-left: 18px;
    padding-right: 18px;
  }

  .text-panel p,
  .detail-panel p {
    font-size: 0.98rem;
  }
}

.profile-training {
  display: grid;
  gap: 12px;
}

.profile-training.text-flow {
  gap: 18px;
  align-content: start;
}

.profile-detail {
  overflow: hidden;
  border: 1px solid rgba(30, 41, 50, 0.13);
  border-radius: 3px;
  background: #fff;
}

.profile-detail summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.3;
  list-style-position: outside;
}

.profile-detail[open] summary {
  border-bottom: 1px solid rgba(30, 41, 50, 0.12);
  background: #f7faf8;
}

.profile-detail p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.profile-detail p:first-of-type {
  padding-top: 18px;
}

.child-visible-copy p {
  max-width: 66ch;
}

.adult-band .deep-intro p:not(.section-kicker),
.audience-section .child-visible-copy p:not(.section-kicker),
.assessment-section .deep-intro p:not(.section-kicker) {
  max-width: 66ch;
  color: #344746;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.child-training .detail-panel .long-list {
  margin: 0;
  padding: 18px 20px 18px 38px;
}

.child-training .detail-panel p + .long-list {
  padding-top: 0;
}

.child-training .detail-panel .long-list + p {
  padding-top: 0;
}

.approach-detail summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.adult-detail summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.integrated-approach .deep-intro p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.74;
}

.approach-detail summary span,
.adult-detail summary span {
  font-size: 1.08rem;
}

.approach-detail summary small,
.adult-detail summary small {
  flex: 0 0 auto;
  color: #35655f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.approach-detail[open] summary small,
.adult-detail[open] summary small {
  color: var(--berry);
}

.core-service-card h3 {
  max-width: 24ch;
}

.compact-list {
  max-width: 42ch;
}

.core-service-card:nth-child(3) .core-service-top p:not(.service-label) {
  max-width: 37ch;
}

@media (max-width: 620px) {
  .profile-detail summary,
  .profile-detail p {
    padding-left: 18px;
    padding-right: 18px;
  }

  .approach-detail summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .adult-detail summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

/* Uniforma i titoletti delle sezioni principali. */
.profile-band .section-kicker,
.core-services .section-kicker,
.integrated-approach .deep-intro .section-kicker,
.adult-band .deep-intro .section-kicker,
.audience-section .child-visible-copy .section-kicker,
.assessment-section .deep-intro .section-kicker {
  color: #3f736b !important;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.assessment-section .deep-intro h2.three-line-title {
  max-width: none;
}

.three-line-title span {
  display: block;
}
