/* ===== ABOUT (chi sono) ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-l);
  align-items: start;
}
.about-grid__media {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.about-grid__media picture {
  display: block;
  max-width: 340px;
  margin-inline: auto;
}
.about-grid__media img {
  width: 100%;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-grid__text p { margin-bottom: var(--space-s); }
.about-sign { margin-top: var(--space-s); }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid__media { max-width: 460px; }
  .about-grid__media picture,
  .about-grid__media img { position: static; }
}

/* ===== CONTATTI ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-l);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list { list-style: none; padding: 0; display: grid; gap: var(--space-m); margin-bottom: var(--space-l); }
.contact-list li { display: flex; gap: var(--space-s); align-items: flex-start; }
.contact-list__ico {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--cream-2);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-list__ico svg { width: 24px; height: 24px; }

.contact-hours { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-m); box-shadow: var(--shadow-s); }
.contact-hours h2 { font-size: var(--step-1); margin-bottom: var(--space-s); }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: var(--space-s); }
.hours-table th, .hours-table td { text-align: left; padding: 0.45rem 0; border-bottom: 1px solid var(--line); font-size: var(--step--1); }
.hours-table th { font-weight: 500; color: var(--ink-soft); }
.hours-table td { text-align: right; color: var(--ink); }
.contact-note { color: var(--muted); font-size: var(--step--1); margin-bottom: var(--space-s); }

.contact-map {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 420px;
  height: 100%;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ===== PROMOZIONI ===== */
.promo-hero {
  position: relative; color: #fff; overflow: hidden;
  display: flex; align-items: flex-end; min-height: min(46vh, 400px);
}
.promo-hero__media { position: absolute; inset: 0; z-index: 0; }
.promo-hero__media picture, .promo-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.promo-hero__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(24,58,55,0.86), rgba(24,58,55,0.25)); }
.promo-hero__inner { position: relative; z-index: 1; padding-block: var(--space-l); }
.promo-hero__inner h1 { color: #fff; }

.promo-card { display: flex; flex-direction: column; }
.promo-card__media { aspect-ratio: 16/10; overflow: hidden; }
.promo-card__media img { width: 100%; height: 100%; object-fit: cover; }
.promo-card__body { padding: var(--space-m); display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-start; }

.empty-state {
  max-width: 620px; margin-inline: auto;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: var(--space-xl) var(--space-l);
  box-shadow: var(--shadow-s);
}
.empty-state .lotus-mark { display: inline-block; margin-bottom: var(--space-s); }
.empty-state h2 { font-size: var(--step-2); margin-bottom: 0.4rem; }

/* ===== GALLERIA CHI SONO ===== */
.about-gallery {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-m);
  align-items: start;
  max-width: 820px;
  margin-inline: auto;
}
@media (max-width: 760px) { .about-gallery { grid-template-columns: 1fr; } }
.about-gallery__item { margin: 0; }
.about-gallery__item picture, .about-gallery__item img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.about-gallery__item--portrait img { aspect-ratio: 3 / 4; }
.about-gallery__item--wide img { aspect-ratio: 4 / 3; }
.about-gallery__item figcaption {
  margin-top: var(--space-s);
  color: var(--ink-soft);
  font-size: var(--step--1);
  text-align: center;
}

/* ===== METODO ESCLUSIVO (chi sono) ===== */
.method-band {
  background:
    radial-gradient(120% 100% at 20% 10%, #2a7671 0%, #1e5652 50%, #163f3c 100%);
  color: #fff;
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.method-band__inner { max-width: 780px; margin-inline: auto; }
.method-band__name {
  color: #fff;
  font-size: clamp(2.4rem, 1.7rem + 3.6vw, 4.2rem);
  line-height: 1.05;
  margin: 0.3rem 0 var(--space-s);
}
.method-band__name em { font-style: italic; color: var(--lime); }
.method-band__text { color: #f2e9dc; max-width: 60ch; margin: 0 auto var(--space-m); }

/* ===== SPECIALIZZAZIONI (chi sono) ===== */
.specialties {
  list-style: none;
  padding: 0;
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-s);
}
@media (max-width: 640px) { .specialties { grid-template-columns: 1fr; } }
.specialty {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 500;
  box-shadow: var(--shadow-s);
}
.specialty__ico {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid; place-items: center;
}

/* ===== LEGAL ===== */
.legal h2 { font-size: var(--step-1); margin-top: var(--space-l); margin-bottom: 0.3rem; }
.legal p { margin-bottom: var(--space-s); }
.legal-note { color: var(--muted); font-size: var(--step--1); margin-top: var(--space-l); }
