/* ==========================================================================
   Centro Medico San Francesco — Prototipo
   ========================================================================== */

/* Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Palette — colori derivati dal logo San Francesco */
  --ink:          #07262E;     /* navy/teal molto scuro */
  --navy:         #145265;     /* navy del logo (CENTRO MEDICO / SAN) */
  --navy-soft:    #2D7889;     /* navy più chiaro per transizioni */
  --navy-deep:    #0E3D4A;     /* navy più scuro per sezioni dark */
  --cream:        #FFFFFF;     /* sfondo principale: bianco (intoccabile) */
  --cream-2:      #EBF3F2;     /* sezioni alternate: teal chiarissimo (in linea col brand) */
  --cream-3:      #D5E7E5;     /* teal molto chiaro */
  --brass:        #50A0A0;     /* teal del logo (croce + FRANCESCO) — accent principale */
  --brass-soft:   #87C5C5;     /* teal chiaro per testi su scuro */
  --line:         #D8E2E1;     /* linee in tono col teal */
  --line-soft:    #E8EFEE;
  --muted:        #6B7B7E;     /* grigio leggermente teal */
  --white:        #FFFFFF;
  --black:        #051A20;

  /* Typography */
  --f-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --f-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1280px;
  --container-wide: 1440px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(80px, 11vw, 140px);
  --radius: 4px;
  --radius-lg: 12px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
}

/* Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* Base
   -------------------------------------------------------------------------- */
html { font-size: 16px; }
body {
  font-family: var(--f-body);
  font-feature-settings: "ss01", "cv11";
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--navy); color: var(--cream); }

/* Typography
   -------------------------------------------------------------------------- */
.display, h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6.4vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.8rem); line-height: 1.08; }
h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); line-height: 1.18; }
h4 { font-size: 1.1rem; font-family: var(--f-body); font-weight: 500; letter-spacing: -0.005em; }

.italic, em, .display em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink);
  max-width: 56ch;
}

p { max-width: 68ch; }

/* Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-wide { max-width: var(--container-wide); }

.section { padding-block: var(--section-y); }
.section-sm { padding-block: clamp(56px, 7vw, 88px); }

.bg-cream    { background: var(--cream); }
.bg-cream-2  { background: var(--cream-2); }
.bg-navy     { background: var(--navy); color: var(--cream); }
.bg-navy-deep{ background: var(--navy-deep); color: var(--cream); }
.bg-ink      { background: var(--ink); color: var(--cream); }
.bg-white    { background: var(--white); }

.bg-navy h1, .bg-navy h2, .bg-navy h3,
.bg-ink h1, .bg-ink h2, .bg-ink h3,
.bg-navy-deep h1, .bg-navy-deep h2, .bg-navy-deep h3 { color: var(--cream); }

/* Su fondo scuro, gli em (italici) virano in ottone chiaro per restare leggibili */
.bg-navy h1 em, .bg-navy h2 em, .bg-navy h3 em,
.bg-ink h1 em, .bg-ink h2 em, .bg-ink h3 em,
.bg-navy-deep h1 em, .bg-navy-deep h2 em, .bg-navy-deep h3 em { color: var(--brass-soft); }

/* Grid helpers */
.grid { display: grid; gap: var(--gutter); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Buttons / Links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: var(--navy);
  color: var(--cream);
  border-radius: 999px;
  transition: background .3s var(--ease), transform .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--navy-deep); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(6px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(246, 241, 232, 0.35);
}
.btn-ghost:hover { background: var(--cream); color: var(--navy); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap .35s var(--ease);
}
.link-arrow:hover { gap: 16px; }

/* Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line-soft);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand__logo {
  height: 64px;
  width: auto;
  display: block;
  transition: height .25s var(--ease);
}
.site-header.is-scrolled .brand__logo {
  height: 52px;
}
/* (regola .site-footer .brand__logo definita più sotto, dopo footer chiaro) */
@media (max-width: 560px) {
  .brand__logo { height: 48px; }
}
.brand__mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.brand__text { line-height: 1; }
.brand__eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
}
.brand__name {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  letter-spacing: -0.005em;
}

.nav-primary { display: flex; align-items: center; gap: 36px; }
.nav-primary a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 450;
  color: var(--ink);
  padding-block: 6px;
  transition: color .25s var(--ease);
}
.nav-primary a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass);
  transition: right .35s var(--ease);
}
.nav-primary a:hover,
.nav-primary a.is-active { color: var(--navy); }
.nav-primary a:hover::after,
.nav-primary a.is-active::after { right: 0; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-cta .tel {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  position: relative;
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-primary,
  .header-cta .tel { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 88px;
  right: 0;
  bottom: 0;
  left: 0;
  height: calc(100vh - 88px);
  height: calc(100dvh - 88px);
  z-index: 49;
  background: var(--cream);
  padding: 32px var(--gutter) 60px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .5s var(--ease), opacity .35s var(--ease);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav-drawer.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-drawer ul { display: flex; flex-direction: column; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav-drawer a {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 6.4vw, 2.4rem);
  font-weight: 380;
  line-height: 1.15;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
}
.nav-drawer a em { font-style: italic; color: var(--navy); }
.nav-drawer .drawer-meta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}
.nav-drawer .drawer-meta strong { color: var(--ink); font-weight: 500; }

/* Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(80px, 12vw, 140px);
  padding-bottom: clamp(80px, 10vw, 120px);
  background: var(--cream);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
}

.hero__title {
  font-size: clamp(2.6rem, 7.4vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 350;
  max-width: 12ch;
}
.hero__title em { color: var(--navy); }

.hero__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.hero__meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }

.hero__side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-self: end;
  padding-bottom: 12px;
}
.hero__side p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  max-width: 42ch;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__visual {
  margin-top: clamp(60px, 7vw, 96px);
  position: relative;
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #1B3A6B 0%, #2A4F86 50%, #122A52 100%);
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 47, 0) 60%, rgba(10, 26, 47, 0.35) 100%);
}

@media (max-width: 720px) {
  .hero__visual { aspect-ratio: 4 / 5; }
}

/* Marquee */
.marquee {
  border-block: 1px solid var(--line-soft);
  overflow: hidden;
  padding-block: 22px;
  background: var(--cream);
}
.marquee__track {
  display: flex;
  gap: 56px;
  animation: marquee 60s linear infinite;
  width: max-content;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  color: var(--navy);
  white-space: nowrap;
}
.marquee__item::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brass);
  margin-left: 56px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Intro / Manifesto
   -------------------------------------------------------------------------- */
.manifesto__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) {
  .manifesto__grid { grid-template-columns: 1fr; }
}
.manifesto__title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.015em;
}
.manifesto__title em { color: var(--navy); }
.manifesto__body p + p { margin-top: 1.2em; }
.manifesto__body p {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink);
}

/* Values strip */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--line-soft);
}
@media (max-width: 900px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values { grid-template-columns: 1fr; } }

.value {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--line-soft);
}
.value:last-child { border-right: 0; }
@media (max-width: 900px) {
  .value:nth-child(2) { border-right: 0; }
  .value:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
}
.value__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brass);
  margin-bottom: 14px;
}
.value__title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--ink);
}
.value__text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 32ch;
}

/* Specialità — preview griglia (home) */
.areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}
@media (max-width: 900px) { .areas { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .areas { grid-template-columns: 1fr; } }

.area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  padding: 36px 32px;
  min-height: 240px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
  transition: background .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.area:hover { background: var(--cream-2); }
.area__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--brass);
}
.area__title {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 380;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.area__title em { color: var(--navy); }
.area__count {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.area__arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  color: var(--navy);
}
.area:hover .area__arrow { opacity: 1; transform: translate(0, 0); }

/* Section header */
.section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 720px) { .section-header { grid-template-columns: 1fr; } }
.section-header__lead {
  max-width: 36ch;
  color: var(--muted);
  font-size: 1.02rem;
  align-self: end;
}
.section-header h2 em { color: var(--navy); }

/* Numbers strip */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 760px) { .numbers { grid-template-columns: repeat(2, 1fr); } }
.number {
  padding: 40px 32px;
  border-right: 1px solid rgba(246, 241, 232, 0.18);
}
.number:last-child { border-right: 0; }
@media (max-width: 760px) {
  .number:nth-child(2n) { border-right: 0; }
  .number:nth-child(-n+2) { border-bottom: 1px solid rgba(246, 241, 232, 0.18); }
}
.number__value {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-weight: 350;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.number__value em { color: var(--brass-soft); font-style: italic; }
.number__label {
  margin-top: 14px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.7);
}

/* CTA banner */
.cta-banner {
  border-block: 1px solid var(--line-soft);
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--cream);
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
@media (max-width: 900px) { .cta-banner__inner { grid-template-columns: 1fr; } }
.cta-banner h2 {
  font-size: clamp(2.4rem, 5.4vw, 4.8rem);
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.cta-banner h2 em { color: var(--navy); }
.cta-banner__side { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.cta-banner__side p { color: var(--muted); }

/* Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--cream);
  color: var(--ink);
  padding-top: 100px;
  padding-bottom: 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .brand__name { color: var(--navy); }
.footer-brand p {
  margin-top: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 36ch;
}

.footer-col h4 {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.98rem;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.footer-col a:hover { color: var(--navy); }
.footer-col p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
}
.footer-col strong { color: var(--ink); font-weight: 500; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* Email mailto: mai a capo su tutto il sito */
a[href^="mailto:info@centromedicosanfrancesco.com"] {
  white-space: nowrap;
  word-break: keep-all;
}

/* Social links nel footer-brand */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.social-links a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.social-links svg {
  width: 18px;
  height: 18px;
}
.footer-bottom a { transition: color .25s var(--ease); }
.footer-bottom a:hover { color: var(--navy); }

/* Logo nel footer: stesso PNG dell'header, niente filter (sfondo ora chiaro) */
.site-footer .brand__logo {
  height: 72px;
  filter: none;
  opacity: 1;
}

/* Specialità page
   -------------------------------------------------------------------------- */
.page-hero {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(60px, 8vw, 100px);
  background: var(--cream);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
@media (max-width: 900px) { .page-hero__grid { grid-template-columns: 1fr; } }

.page-hero h1 {
  font-size: clamp(2.6rem, 6.8vw, 5.8rem);
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: 350;
}
.page-hero h1 em { color: var(--navy); }
.page-hero__breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 28px;
}
.page-hero__lead {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink);
  max-width: 38ch;
}

/* Lista specialità (pagina dedicata) */
.specialita-list {
  display: flex;
  flex-direction: column;
}

.specialita {
  display: grid;
  grid-template-columns: 1fr 2.4fr 0.4fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: start;
  padding: clamp(36px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  transition: padding-left .4s var(--ease);
}
.specialita:first-child { border-top: 1px solid var(--line-soft); }
.specialita:hover { padding-left: 12px; }
.specialita__head { display: flex; flex-direction: column; gap: 8px; }
.specialita__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brass);
}
.specialita__title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 380;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.specialita__body {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 70ch;
}
.specialita__body strong {
  display: block;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.specialita__arrow {
  align-self: center;
  justify-self: end;
  color: var(--navy);
  transition: transform .4s var(--ease);
}
.specialita:hover .specialita__arrow { transform: translateX(8px); }

@media (max-width: 760px) {
  .specialita { grid-template-columns: 1fr; gap: 12px; }
  .specialita__arrow { display: none; }
}

/* Specialisti — directory monogrammata
   -------------------------------------------------------------------------- */
.specialisti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}
@media (max-width: 900px) { .specialisti-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .specialisti-grid { grid-template-columns: 1fr; } }

.specialista {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  padding: 32px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  min-height: 240px;
  background: transparent;
  transition: background .35s var(--ease);
}
.specialista:hover { background: var(--cream-2); }
.specialista__mono {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.specialista__body { display: flex; flex-direction: column; gap: 8px; }
.specialista__name {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.specialista__role {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}

/* Filtri */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 12px;
  margin-bottom: 32px;
}
.filter-chip {
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 450;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* Form
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 64px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid transparent;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--navy);
  background: var(--cream-2);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%231B3A6B' stroke-width='1.5' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--muted);
  cursor: pointer;
}
.checkbox input { margin-top: 4px; accent-color: var(--navy); }
.checkbox a { color: var(--ink); border-bottom: 1px solid currentColor; }

/* Contatti
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-block {
  padding: clamp(32px, 5vw, 60px) clamp(32px, 5vw, 60px) clamp(32px, 5vw, 60px) 0;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.contact-block:nth-child(2n) {
  padding-left: clamp(32px, 5vw, 60px);
  padding-right: 0;
  border-right: 0;
}
@media (max-width: 900px) {
  .contact-block { padding-inline: 0 !important; border-right: 0; }
}
.contact-block h4 {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
}
.contact-block .value {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  padding: 0;
  border: 0;
}
.contact-block p {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}
.contact-block a { color: inherit; }

.map {
  margin-top: 80px;
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.map iframe { width: 100%; height: 100%; border: 0; }

/* Reveal animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

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

/* =========================================================
   HOME — versione ricca / emotiva
   ========================================================= */

/* HERO FULLBLEED (split foto + claim)
   --------------------------------------------------------- */
.hero-fullbleed {
  position: relative;
  min-height: clamp(640px, 92vh, 920px);
  background: var(--cream);
  overflow: hidden;
}
.hero-fullbleed__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-fullbleed__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-fullbleed__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 26, 47, 0.7) 0%, rgba(10, 26, 47, 0.35) 45%, rgba(10, 26, 47, 0) 80%),
    linear-gradient(180deg, rgba(10, 26, 47, 0.25) 0%, rgba(10, 26, 47, 0) 40%, rgba(10, 26, 47, 0.55) 100%);
}
.hero-fullbleed__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(640px, 92vh, 920px);
  padding-block: clamp(120px, 14vw, 180px) clamp(40px, 5vw, 64px);
  color: var(--cream);
}
.hero-fullbleed__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 36px;
}
.hero-fullbleed__eyebrow::before,
.hero-fullbleed__eyebrow::after {
  content: "";
  width: 32px; height: 1px;
  background: var(--brass-soft);
  opacity: 0.65;
}
.hero-fullbleed__eyebrow::after { display: none; }

.hero-fullbleed__title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 8.5vw, 7.8rem);
  font-weight: 320;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 14ch;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero-fullbleed__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brass-soft);
}

.hero-fullbleed__bottom {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-top: clamp(40px, 8vw, 96px);
}
@media (max-width: 900px) {
  .hero-fullbleed__bottom { grid-template-columns: 1fr; gap: 32px; }
}
.hero-fullbleed__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: rgba(246, 241, 232, 0.92);
  max-width: 44ch;
}
.hero-fullbleed__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 900px) {
  .hero-fullbleed__cta { justify-content: flex-start; }
}
.hero-fullbleed__cta .btn { background: var(--cream); color: var(--navy); }
.hero-fullbleed__cta .btn:hover { background: var(--white); }
.hero-fullbleed__cta .btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(246, 241, 232, 0.4); }
.hero-fullbleed__cta .btn-ghost:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

.hero-fullbleed__scroll {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.65);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@media (max-width: 720px) { .hero-fullbleed__scroll { display: none; } }

/* HERO STATS strip (sotto la hero)
   --------------------------------------------------------- */
.hero-stats {
  background: var(--ink);
  color: var(--cream);
  padding-block: 36px;
}
.hero-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 760px) { .hero-stats__grid { grid-template-columns: repeat(2, 1fr); } }
.hero-stat {
  padding: 8px 24px;
  border-right: 1px solid rgba(246, 241, 232, 0.16);
}
.hero-stat:last-child { border-right: 0; }
@media (max-width: 760px) {
  .hero-stat:nth-child(2n) { border-right: 0; }
  .hero-stat:nth-child(-n+2) { padding-bottom: 24px; border-bottom: 1px solid rgba(246, 241, 232, 0.16); margin-bottom: 16px; }
}
.hero-stat__value {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 350;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.hero-stat__value em { color: var(--brass-soft); font-style: italic; }
.hero-stat__label {
  margin-top: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.7);
}

/* EDITORIAL BLOCK (testo + foto grande alternati)
   --------------------------------------------------------- */
.editorial-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.editorial-block.reverse { grid-template-columns: 1fr 1fr; direction: rtl; }
.editorial-block.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .editorial-block,
  .editorial-block.reverse { grid-template-columns: 1fr; direction: ltr; }
}
.editorial-block__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
.editorial-block__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.editorial-block:hover .editorial-block__image img { transform: scale(1.04); }
.editorial-block__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(10, 26, 47, 0.18) 100%);
}
.editorial-block__caption {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream);
  z-index: 2;
  letter-spacing: 0.01em;
}
.editorial-block__body h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  letter-spacing: -0.018em;
  line-height: 1.04;
  margin-bottom: 28px;
}
.editorial-block__body h2 em { color: var(--navy); }
.editorial-block__body p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink);
}
.editorial-block__body p + p { margin-top: 1.1em; }
.editorial-block__body .eyebrow { margin-bottom: 24px; }
.editorial-block__body .link-arrow { margin-top: 32px; display: inline-flex; }

/* EDITORIAL QUOTE (citazione grande tipo rivista)
   --------------------------------------------------------- */
.editorial-quote {
  padding-block: clamp(80px, 11vw, 140px);
  background: var(--cream);
  border-block: 1px solid var(--line-soft);
}
.editorial-quote__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: var(--gutter);
  text-align: center;
}
.editorial-quote__mark {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--brass);
  margin-bottom: 24px;
}
.editorial-quote__text {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 340;
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 36px;
}
.editorial-quote__text em { color: var(--navy); }
.editorial-quote__attr {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* STEPS — Come funziona una visita
   --------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--line-soft);
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step:last-child { border-right: 0; padding-right: 0; }
@media (max-width: 900px) {
  .step:nth-child(2n) { border-right: 0; padding-right: 0; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
}
@media (max-width: 560px) {
  .step { border-right: 0; padding-right: 0; }
  .step:not(:last-child) { border-bottom: 1px solid var(--line-soft); }
}
.step__num {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--brass);
}
.step__num .digit {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
  font-style: normal;
}
.step__num .total {
  font-size: 0.85rem;
  color: var(--muted);
}
.step__title {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-top: 8px;
  letter-spacing: -0.005em;
}
.step__body {
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--muted);
  max-width: 32ch;
}

/* GALLERY MOSAIC
   --------------------------------------------------------- */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
  margin-top: clamp(48px, 6vw, 80px);
}
.gallery-mosaic figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 2px;
  background: var(--cream-2);
}
.gallery-mosaic img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.gallery-mosaic figure:hover img { transform: scale(1.05); }
.gallery-mosaic figure:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.gallery-mosaic figure:nth-child(2) { grid-column: span 3; }
.gallery-mosaic figure:nth-child(3) { grid-column: span 2; }
.gallery-mosaic figure:nth-child(4) { grid-column: span 1; }
.gallery-mosaic figure figcaption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream);
  text-shadow: 0 1px 2px rgba(10, 26, 47, 0.4);
  z-index: 2;
}
.gallery-mosaic figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 26, 47, 0.55) 100%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: 240px 240px 240px 240px; }
  .gallery-mosaic figure:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-mosaic figure:nth-child(2) { grid-column: span 2; }
  .gallery-mosaic figure:nth-child(3),
  .gallery-mosaic figure:nth-child(4) { grid-column: span 1; }
}

/* TECH CARDS
   --------------------------------------------------------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: clamp(48px, 6vw, 80px);
}
@media (max-width: 900px) { .tech-grid { grid-template-columns: 1fr; } }
.tech-card {
  background: var(--cream);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tech-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-3);
}
.tech-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.tech-card:hover .tech-card__image img { transform: scale(1.05); }
.tech-card__body { padding: 32px 0 0; }
.tech-card__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}
.tech-card__title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.tech-card__title em { color: var(--navy); }
.tech-card__body p {
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--muted);
}

/* TECH BANNER + LIST (Strumentazione interna)
   --------------------------------------------------------- */
.tech-banner {
  margin: clamp(48px, 6vw, 80px) 0 clamp(56px, 6vw, 88px);
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.tech-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.8s var(--ease);
}
.tech-banner:hover img { transform: scale(1.03); }
.tech-banner__caption {
  position: absolute;
  bottom: 24px;
  left: 32px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
  text-shadow: 0 1px 3px rgba(10, 26, 47, 0.5);
}
.tech-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 26, 47, 0.35) 100%);
}
@media (max-width: 720px) {
  .tech-banner { aspect-ratio: 4 / 3; }
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
@media (max-width: 900px) { .tech-list { grid-template-columns: 1fr; } }

.tech-col {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.tech-col:last-child { border-right: 0; }
@media (max-width: 900px) {
  .tech-col { border-right: 0; padding-right: 0; }
}
.tech-col__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}
.tech-col__eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
}
.tech-list-items {
  display: flex;
  flex-direction: column;
}
.tech-list-items li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.96rem;
  line-height: 1.45;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.tech-list-items li:last-child { border-bottom: 0; }
.tech-list-items li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brass);
  margin-top: 9px;
  flex-shrink: 0;
}

/* TESTIMONIALS
   --------------------------------------------------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid rgba(246, 241, 232, 0.2);
  border-left: 1px solid rgba(246, 241, 232, 0.2);
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  padding: 40px 32px;
  border-right: 1px solid rgba(246, 241, 232, 0.2);
  border-bottom: 1px solid rgba(246, 241, 232, 0.2);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.testimonial__mark {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 3.5rem;
  line-height: 0.5;
  color: var(--brass-soft);
}
.testimonial__quote {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 380;
  line-height: 1.45;
  color: var(--cream);
  letter-spacing: -0.005em;
  flex: 1;
}
.testimonial__attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(246, 241, 232, 0.18);
}
.testimonial__name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
}
.testimonial__role {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.6);
}

/* CONVENTIONS / TRUST
   --------------------------------------------------------- */
.conventions {
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 900px) { .conventions { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .conventions { grid-template-columns: repeat(2, 1fr); } }
.convention {
  height: 110px;
  border-right: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  opacity: 0.65;
  transition: opacity .3s var(--ease), color .3s var(--ease);
}
.convention:last-child { border-right: 0; }
.convention:hover { opacity: 1; color: var(--navy); }
@media (max-width: 900px) {
  .convention:nth-child(3n) { border-right: 0; }
  .convention:nth-child(-n+3) { border-bottom: 1px solid var(--line-soft); }
}
@media (max-width: 560px) {
  .convention:nth-child(odd) { border-right: 1px solid var(--line-soft); }
  .convention:nth-child(even) { border-right: 0; }
  .convention:nth-child(-n+4) { border-bottom: 1px solid var(--line-soft); }
}

/* FAQ
   --------------------------------------------------------- */
.faq {
  display: flex;
  flex-direction: column;
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--line-soft);
}
.faq__item {
  border-bottom: 1px solid var(--line-soft);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: color .25s var(--ease);
}
.faq__q em { color: var(--navy); font-style: italic; }
.faq__q:hover { color: var(--navy); }
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--navy);
  top: 50%; left: 50%;
  transition: transform .35s var(--ease);
}
.faq__icon::before { width: 18px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 1.5px; height: 18px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease), padding-bottom .55s var(--ease);
}
.faq__item.is-open .faq__a { max-height: 800px; padding-bottom: 32px; }
.faq__a p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 70ch;
}

/* CTA FOTO (CTA banner con immagine)
   --------------------------------------------------------- */
.cta-photo {
  position: relative;
  min-height: clamp(480px, 65vh, 680px);
  overflow: hidden;
  color: var(--cream);
  display: flex;
  align-items: center;
}
.cta-photo__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-photo__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-photo__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 26, 47, 0.75) 0%, rgba(10, 26, 47, 0.45) 60%, rgba(10, 26, 47, 0.15) 100%);
}
.cta-photo__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(80px, 10vw, 140px);
  max-width: 720px;
}
.cta-photo h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 24px;
}
.cta-photo h2 em { color: var(--brass-soft); }
.cta-photo p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(246, 241, 232, 0.88);
  margin-bottom: 36px;
  max-width: 52ch;
}
.cta-photo .btn { background: var(--cream); color: var(--navy); }
.cta-photo .btn:hover { background: var(--white); }

/* PULL QUOTE inline
   --------------------------------------------------------- */
.pull-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2.05rem);
  font-weight: 380;
  line-height: 1.32;
  color: var(--navy);
  border-left: 2px solid var(--brass);
  padding-left: 28px;
  margin: 48px 0;
  max-width: 38ch;
}

/* PHOTO CARD (foto + didascalia ridotta)
   --------------------------------------------------------- */
.photo-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.photo-card__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream-3);
}
.photo-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.photo-card:hover .photo-card__img img { transform: scale(1.04); }
.photo-card__caption {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
}

/* SECTION HEADER VARIATIONS
   --------------------------------------------------------- */
.section-header.dark h2,
.section-header.dark .eyebrow { color: var(--cream); }
.section-header.dark .eyebrow { color: var(--brass-soft); }
.section-header.dark .section-header__lead { color: rgba(246, 241, 232, 0.7); }

/* Aree v2 - card più ricche con descrizione
   --------------------------------------------------------- */
.areas-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .areas-v2 { grid-template-columns: 1fr; } }
.area-v2 {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 28px;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  transition: border-color .35s var(--ease), transform .4s var(--ease), background .35s var(--ease);
  min-height: 280px;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.area-v2:hover {
  border-color: var(--navy);
  background: var(--white);
  transform: translateY(-2px);
}
.area-v2__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.area-v2__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brass);
}
.area-v2__count {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.area-v2__title {
  font-family: var(--f-display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.area-v2__title em { color: var(--navy); }
.area-v2__desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}
.area-v2__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
  transition: gap .3s var(--ease);
}
.area-v2:hover .area-v2__link { gap: 16px; color: var(--navy); }

/* Sezione "Riconosciuti da" — micro-trust
   --------------------------------------------------------- */
.recognition {
  padding-block: 56px;
  background: var(--cream-2);
}
.recognition__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.recognition__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.recognition__items {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}
.recognition__item {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  opacity: 0.7;
}

/* SPECIALITÀ — Grid Card (NON lista menù)
   --------------------------------------------------------- */
.spec-hero {
  position: relative;
  min-height: clamp(420px, 56vh, 560px);
  overflow: hidden;
  color: var(--cream);
  display: flex;
  align-items: flex-end;
}
.spec-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.spec-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.spec-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 47, 0.45) 0%, rgba(10, 26, 47, 0.7) 100%);
}
.spec-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(80px, 10vw, 120px) clamp(56px, 7vw, 80px);
  width: 100%;
}
.spec-hero__breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 32px;
}
.spec-hero__breadcrumb a { color: rgba(246, 241, 232, 0.7); }
.spec-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 320;
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--cream);
}
.spec-hero h1 em {
  font-style: italic;
  color: var(--brass-soft);
}
.spec-hero__meta {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.spec-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-hero__meta-value {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--brass-soft);
}
.spec-hero__meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, 0.7);
}

/* Filtri categoria — styled per pagina */
.spec-filters {
  background: var(--cream);
  border-bottom: 1px solid var(--line-soft);
  padding-block: 28px;
  position: sticky;
  top: 88px;
  z-index: 20;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(246, 241, 232, 0.92);
}
.spec-filters__inner {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.spec-filters__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 16px;
}

/* Specialità Grid */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .spec-grid { grid-template-columns: 1fr; } }

.spec-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 32px 32px;
  min-height: 320px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  cursor: pointer;
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.spec-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -28px rgba(10, 26, 47, 0.25);
}
.spec-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: var(--navy);
  transition: height .4s var(--ease);
  z-index: -1;
}
.spec-card:hover::before { height: 3px; }

.spec-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.spec-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  color: var(--navy);
  transition: background .35s var(--ease), color .35s var(--ease), transform .5s var(--ease);
}
.spec-card:hover .spec-card__icon {
  background: var(--navy);
  color: var(--cream);
  transform: rotate(-8deg);
}
.spec-card__icon svg { width: 26px; height: 26px; }

.spec-card__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--brass);
}

.spec-card__body { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.spec-card__title {
  font-family: var(--f-display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.spec-card__title em { color: var(--navy); font-style: italic; }
.spec-card__desc {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}

.spec-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.spec-card__count {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.spec-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.spec-card:hover .spec-card__cta { gap: 14px; color: var(--navy); }

/* Detail modal/panel */
.spec-detail {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  justify-content: flex-end;
  pointer-events: none;
}
.spec-detail.is-open { display: flex; pointer-events: auto; }
.spec-detail__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 47, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.spec-detail.is-open .spec-detail__backdrop { opacity: 1; }
.spec-detail__panel {
  position: relative;
  width: min(620px, 100%);
  height: 100%;
  background: var(--cream);
  padding: 40px clamp(32px, 4vw, 56px) 56px;
  overflow-y: auto;
  transform: translateX(40px);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .35s var(--ease);
}
.spec-detail.is-open .spec-detail__panel { transform: none; opacity: 1; }
.spec-detail__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--ink);
  transition: background .25s var(--ease);
}
.spec-detail__close:hover { background: var(--ink); color: var(--cream); }
.spec-detail__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}
.spec-detail__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 380;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.spec-detail__title em { color: var(--navy); font-style: italic; }
.spec-detail__section { margin-bottom: 36px; }
.spec-detail__section h4 {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.spec-detail__list {
  display: flex;
  flex-direction: column;
}
.spec-detail__list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1rem;
  line-height: 1.45;
  color: var(--ink);
}
.spec-detail__list li::before {
  content: "·";
  color: var(--brass);
  margin-right: 10px;
  font-weight: 700;
}
.spec-detail__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* SCHEDA SPECIALISTA — pagina dedicata
   --------------------------------------------------------- */
.doctor-hero {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
  background: var(--cream);
  border-bottom: 1px solid var(--line-soft);
}
.doctor-hero__breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.doctor-hero__breadcrumb a { color: var(--muted); }
.doctor-hero__breadcrumb a:hover { color: var(--navy); }

.doctor-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
@media (max-width: 900px) {
  .doctor-hero__grid { grid-template-columns: 1fr; }
}
.doctor-role {
  font-family: var(--f-body);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
}
.doctor-name {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6.4vw, 5.4rem);
  font-weight: 340;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}
.doctor-name em {
  color: var(--navy);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.doctor-lead {
  font-size: 1.08rem;
  line-height: 1.62;
  color: var(--muted);
  max-width: 46ch;
}

/* Foto: 3:4 verticale, placeholder silhouette se manca */
.doctor-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  background: var(--cream-2);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.doctor-photo__placeholder {
  width: 55%;
  max-width: 240px;
  color: var(--brass);
  opacity: 0.28;
  margin-bottom: -4%;
}
.doctor-photo__caption {
  position: absolute;
  bottom: 14px;
  left: 18px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.02em;
}

/* Corpo scheda: biografia editoriale */
.doctor-body {
  padding-block: clamp(72px, 8vw, 120px);
}
.doctor-body__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) {
  .doctor-body__grid { grid-template-columns: 1fr; gap: 32px; }
}
.doctor-body__heading h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.015em;
  line-height: 1.08;
}
.doctor-body__heading h2 em { color: var(--navy); }
.doctor-body__text p {
  font-size: 1.06rem;
  line-height: 1.68;
  color: var(--ink);
}
.doctor-body__text p + p { margin-top: 1.1em; }
.doctor-body__text strong { font-weight: 600; color: var(--navy); }

/* Grid info: formazione, aree, ricevimento, ordine */
.doctor-info {
  padding-block: clamp(60px, 8vw, 100px);
  background: var(--cream-2);
  border-block: 1px solid var(--line-soft);
}
.doctor-info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 720px) { .doctor-info__grid { grid-template-columns: 1fr; } }

.doctor-info__card {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.doctor-info__card h4 {
  font-family: var(--f-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
}
.doctor-info__card ul {
  display: flex;
  flex-direction: column;
}
.doctor-info__card ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--ink);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.doctor-info__card ul li:last-child { border-bottom: 0; }
.doctor-info__card ul li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brass);
  margin-top: 9px;
  flex-shrink: 0;
}
.doctor-info__card p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink);
}
.doctor-info__card p strong {
  display: inline-block;
  color: var(--navy);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  margin-right: 8px;
}
.doctor-info__card p + p { margin-top: 14px; }

/* Card a tutta larghezza per elenchi lunghi (es. prestazioni) */
.doctor-info__card--wide { grid-column: 1 / -1; }
@media (min-width: 721px) {
  .doctor-info__card--wide ul { display: block; column-count: 2; column-gap: 48px; }
  .doctor-info__card--wide ul li { break-inside: avoid; }
}

/* Prossimo/precedente specialista */
.doctor-nav {
  border-top: 1px solid var(--line-soft);
  padding-block: 40px;
}
.doctor-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.doctor-nav a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--ink);
  transition: color .25s var(--ease), gap .3s var(--ease);
}
.doctor-nav a:hover { color: var(--navy); gap: 20px; }
.doctor-nav__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}
.doctor-nav__name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}

/* Specialista card in directory — resa cliccabile quando ha scheda */
.specialista.has-page {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background .35s var(--ease), padding-left .35s var(--ease);
}
.specialista.has-page:hover {
  background: var(--cream-2);
  padding-left: calc(32px + 6px);
}
.specialista.has-page .specialista__body::after {
  content: "→";
  font-family: var(--f-display);
  color: var(--brass);
  margin-left: 8px;
  transition: margin .3s var(--ease);
  display: inline-block;
}
.specialista.has-page:hover .specialista__body::after { margin-left: 16px; }

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; } .mt-4 { margin-top: 60px; }
.mb-1 { margin-bottom: 12px; } .mb-2 { margin-bottom: 24px; } .mb-3 { margin-bottom: 40px; } .mb-4 { margin-bottom: 60px; }
.flex { display: flex; }
.gap-1 { gap: 12px; } .gap-2 { gap: 24px; } .gap-3 { gap: 40px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
