.t-hero { padding: 80px var(--pad-x) 64px; }
  .t-hero .crumb { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; color: var(--ink-3); text-transform: uppercase; margin-bottom: 28px; }
  .t-hero .crumb a { color: var(--ink-3); }
  .t-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(56px, 8vw, 132px); letter-spacing: -0.025em; line-height: 0.96; text-wrap: balance; max-width: 14ch; }
  .t-hero h1 em { color: var(--terra); }
  .t-hero .lede { margin-top: 36px; max-width: 56ch; font-size: clamp(19px, 1.5vw, 22px); }

  .filter {
    display: flex; gap: 8px; margin: 48px 0 16px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line); padding-top: 24px;
  }
  .filter button {
    padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line);
    font-size: 14px; color: var(--ink-2); background: var(--paper);
    transition: all .2s;
    min-height: 40px;
  }
  .filter button:hover { border-color: var(--ink); color: var(--ink); }
  .filter button.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .filter button[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }

  .roster {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border-top: 1px solid var(--line);
    margin-top: 24px;
  }
  .person {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px;
    display: flex; flex-direction: column; gap: 16px;
    background: var(--paper);
    transition: background .25s;
  }
  .person:hover { background: var(--paper-2); }
  .person:nth-child(3n) { border-right: 0; }
  .person .ph { aspect-ratio: 4/5; }
  .person .portrait { aspect-ratio: 4/5; overflow: hidden; border-radius: 8px; background: var(--sand); position: relative; }
  .person .portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; transition: transform 0.6s ease; }
  .person:hover .portrait img { transform: scale(1.04); }
  .person .portrait.placeholder { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--sand) 0%, var(--paper-2) 100%); }
  .person .portrait.placeholder::after { content: attr(data-initials); font-family: var(--serif); font-size: 72px; color: var(--terra); opacity: 0.35; letter-spacing: -0.02em; }
  .person .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--terra); text-transform: uppercase; }
  .person .name { font-family: var(--serif); font-size: 30px; letter-spacing: -0.01em; line-height: 1.05; }
  .person .bio { color: var(--ink-2); font-size: 16px; line-height: 1.55; max-width: 36ch; }
  .person .creds {
    margin-top: auto; padding-top: 14px;
    border-top: 1px dashed var(--line);
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
    color: var(--ink-3); text-transform: uppercase;
    line-height: 1.5;
  }
  .person .where {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
    color: var(--ink-3); text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .person .where::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--terra); display: inline-block;
  }
  @media (max-width: 900px) {
    .roster { grid-template-columns: 1fr 1fr; }
    .person:nth-child(3n) { border-right: 1px solid var(--line); }
    .person:nth-child(2n) { border-right: 0; }
  }
  @media (max-width: 600px) {
    .roster { grid-template-columns: 1fr; }
    .person { border-right: 0 !important; padding: 24px; }
    .person .name { font-size: 26px; }
  }

  .ethos {
    margin-top: 110px;
    padding: 110px 0;
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .ethos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .ethos h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 4.4vw, 64px); letter-spacing: -0.02em; line-height: 1.02; text-wrap: balance; }
  .ethos h2 em { color: var(--terra); }
  .ethos .body p + p { margin-top: 14px; }
  .ethos .body { color: var(--ink-2); font-size: 18px; line-height: 1.6; }
  .ethos .stats {
    margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
    border-top: 1px solid var(--line); padding-top: 24px;
  }
  .ethos .stats .num { font-family: var(--serif); font-size: 56px; letter-spacing: -0.02em; line-height: 1; }
  .ethos .stats .num em { color: var(--terra); font-style: italic; }
  .ethos .stats .lab { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--ink-3); text-transform: uppercase; margin-top: 6px; line-height: 1.5; }
  @media (max-width: 800px) { .ethos-grid { grid-template-columns: 1fr; gap: 28px; } }

  /* CTA strip — book a visit */
  .cta-strip {
    padding: 80px 0;
    border-bottom: 1px solid var(--line);
  }
  .cta-strip-inner {
    display: flex; justify-content: space-between; align-items: end; gap: 40px;
    flex-wrap: wrap;
  }
  .cta-strip h3 {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(32px, 3.6vw, 48px);
    letter-spacing: -0.015em; line-height: 1.05;
    max-width: 22ch; text-wrap: balance;
  }
  .cta-strip h3 em { color: var(--terra); }
  .cta-strip .actions { display: flex; gap: 12px; flex-wrap: wrap; }

  /* Skip link for screen readers */
  .skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--ink); color: var(--paper);
    padding: 12px 18px; font-family: var(--mono); font-size: 13px;
    z-index: 9999; letter-spacing: 0.1em; text-transform: uppercase;
  }
  .skip-link:focus { left: 16px; top: 16px; }

.collab-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px -12px rgba(1, 57, 74, 0.15); }
        @media (max-width: 800px) { .collab-grid { grid-template-columns: 1fr !important; } }
/* === Regole che nell'anteprima erano stili in linea === */
.collab { padding: 96px 0; margin-top: 24px; }
.collab .collab-intro { max-width: 68ch; }
.collab .collab-intro .lede { color: var(--ink-2); font-size: 18px; line-height: 1.6; }

.collab-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.collab-card {
  padding: 32px 28px;
  background: var(--paper-2);
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.collab-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px -12px rgba(1, 57, 74, 0.15); }
.collab-card .collab-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--terra);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.collab-card .collab-name {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}
.collab-card p { color: var(--ink-2); font-size: 15px; line-height: 1.55; margin: 0; }
@media (max-width: 800px) { .collab-grid { grid-template-columns: 1fr; } }
