/* ============================================================
   pages.css — Stili condivisi per le pagine interne
   MedEstetica · Dark luxury
   ============================================================ */

/* ── Header pagine interne (sempre solid) ── */
.site-header--dark {
  background: rgba(5, 4, 4, 0.96) !important;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: rgba(240, 207, 152, 0.1) !important;
  color: #f4ece6 !important;
}

.site-header--dark .logo,
.site-header--dark .main-nav a {
  color: #f4ece6;
}

/* Link attivo nella nav */
.nav-active {
  color: #f0cf98 !important;
  font-weight: 600;
}

/* ── Page Hero ── */
.page-hero {
  background: #050404;
  padding: 160px 0 80px;
  border-bottom: 1px solid rgba(240, 207, 152, 0.07);
}

.page-hero-inner {
  max-width: 760px;
}

.page-hero h1 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 16px 0 24px;
  color: #f4ece6;
  letter-spacing: -0.02em;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: #7a706a;
  line-height: 1.75;
  max-width: 560px;
  margin: 0;
}

/* ── Sezioni pagine interne ── */
.page-section {
  padding: 90px 0;
  background: #050404;
}

.page-section--alt {
  background: #0b0909;
}

.page-section--flush {
  padding: 0;
}

/* Header di sezione (label + titolo) */
.page-section-header {
  margin-bottom: 52px;
}

.page-section-header h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 700;
  color: #f4ece6;
  margin: 12px 0 0;
  letter-spacing: -0.01em;
}

/* ── Layout due colonne ── */
.page-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.page-two-col--narrow {
  grid-template-columns: 1.2fr 0.8fr;
}

.page-text h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 700;
  color: #f4ece6;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.page-text p {
  font-size: 1rem;
  color: #7a706a;
  line-height: 1.8;
  margin: 0 0 16px;
}

.page-text p:last-child {
  margin-bottom: 0;
}

.page-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-list li {
  font-size: 0.95rem;
  color: #8a7f79;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.page-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #f0cf98;
  font-size: 0.8rem;
}

/* ── Colonna visual ── */
.page-visual--quote blockquote {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
  font-style: italic;
  color: #f4ece6;
  line-height: 1.5;
  margin: 0;
  padding: 32px;
  border-left: 2px solid #f0cf98;
  background: rgba(240, 207, 152, 0.04);
  border-radius: 0 12px 12px 0;
}

.page-visual--stat {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: "Raleway", sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #f0cf98;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.85rem;
  color: #6b6159;
  line-height: 1.5;
  max-width: 200px;
}

/* Placeholder immagine */
.page-img-placeholder {
  width: 100%;
  background: #151313;
  border-radius: 16px;
  border: 1px solid #3a312c;
  aspect-ratio: 4/3;
}

.page-img-placeholder--tall {
  aspect-ratio: 3/4;
}

/* ── Steps (metodo) ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.step-card {
  background: #151313;
  border: 1px solid #3a312c;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}

.step-card:hover {
  border-color: rgba(240, 207, 152, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.step-number {
  font-family: "Raleway", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240, 207, 152, 0.35);
  line-height: 1;
  letter-spacing: -0.04em;
}

.step-card h3 {
  font-family: "Raleway", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f4ece6;
  margin: 0;
}

.step-card p {
  font-size: 0.9rem;
  color: #7a706a;
  line-height: 1.7;
  margin: 0;
}

/* ── Valori ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 0;
  border-top: 1px solid #2a2220;
}

.value-icon {
  color: #f0cf98;
  font-size: 1rem;
}

.value-item h3 {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f4ece6;
  margin: 0;
}

.value-item p {
  font-size: 0.88rem;
  color: #7a706a;
  line-height: 1.7;
  margin: 0;
}

/* ── Trattamenti grid ── */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.treatment-card {
  background: #151313;
  border: 1px solid #3a312c;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}

.treatment-card:hover {
  border-color: rgba(240, 207, 152, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.treatment-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f0cf98;
  font-weight: 600;
}

.treatment-card h3 {
  font-family: "Raleway", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f4ece6;
  margin: 0;
}

.treatment-card p {
  font-size: 0.88rem;
  color: #7a706a;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.treatment-cta {
  font-size: 0.82rem;
  color: #f0cf98;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 4px;
  transition: opacity 200ms ease;
}

.treatment-cta:hover {
  opacity: 0.75;
}

/* ── Risultati ── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.result-card {
  background: #151313;
  border: 1px solid #3a312c;
  border-radius: 16px;
  overflow: hidden;
}

.result-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.result-img {
  position: relative;
}

.result-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #1e1917;
}

.result-img-label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 236, 230, 0.6);
  background: rgba(0, 0, 0, 0.5);
  padding: 3px 8px;
  border-radius: 4px;
}

.result-info {
  padding: 20px 24px 24px;
}

.result-info h3 {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f4ece6;
  margin: 0 0 8px;
}

.result-info p {
  font-size: 0.85rem;
  color: #7a706a;
  line-height: 1.65;
  margin: 0;
}

.results-disclaimer {
  font-size: 0.78rem;
  color: #4a4340;
  margin-top: 32px;
  text-align: center;
}

/* ── Testimonianze ── */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #151313;
  border: 1px solid #3a312c;
  border-radius: 16px;
  padding: 28px;
  margin: 0;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #b2a89f;
  line-height: 1.75;
  margin: 0 0 16px;
  font-style: italic;
}

.testimonial-card footer {
  font-size: 0.78rem;
  color: #5a5150;
  letter-spacing: 0.04em;
}

/* ── Team ── */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.team-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
}

.team-card--reverse {
  grid-template-columns: 1fr 340px;
}

.team-card--reverse .team-photo-wrap {
  order: 2;
}

.team-card--reverse .team-info {
  order: 1;
}

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #151313;
  border-radius: 20px;
  border: 1px solid #3a312c;
}

.team-role {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f0cf98;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-name {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 700;
  color: #f4ece6;
  margin: 0 0 20px;
}

.team-info p {
  font-size: 0.95rem;
  color: #7a706a;
  line-height: 1.8;
  margin: 0 0 14px;
}

/* ── Spazi (esperienza) ── */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.space-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.space-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: #151313;
  border-radius: 14px;
  border: 1px solid #3a312c;
}

.space-card h3 {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f4ece6;
  margin: 0;
}

.space-card p {
  font-size: 0.88rem;
  color: #7a706a;
  line-height: 1.7;
  margin: 0;
}

/* ── Recensioni ── */
.rating-overview {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 40px;
  background: #151313;
  border: 1px solid #3a312c;
  border-radius: 20px;
  max-width: 680px;
}

.rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.rating-number {
  font-family: "Raleway", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #f0cf98;
  line-height: 1;
}

.rating-stars {
  color: #f0cf98;
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-count {
  font-size: 0.75rem;
  color: #5a5150;
  text-align: center;
  max-width: 120px;
  line-height: 1.4;
}

.rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: #5a5150;
}

.rating-bar {
  flex: 1;
  height: 4px;
  background: #2a2220;
  border-radius: 2px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: #f0cf98;
  border-radius: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #151313;
  border: 1px solid #3a312c;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 280ms ease;
}

.review-card:hover {
  border-color: rgba(240, 207, 152, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(240, 207, 152, 0.12);
  color: #f0cf98;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  color: #f4ece6;
  font-size: 0.9rem;
  display: block;
}

.review-stars {
  color: #f0cf98;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.review-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5a5150;
  margin: 0;
}

.review-card blockquote {
  font-size: 0.9rem;
  color: #a79a92;
  line-height: 1.75;
  margin: 0;
  font-style: italic;
  flex: 1;
}

/* ── Contatti layout ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  color: #f4ece6;
  margin: 0 0 32px;
}

/* Override: nel contatti il form non ha max-width */
.contact-form-wrap .contact-form {
  max-width: 100%;
  margin-top: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-detail {
  font-size: 1rem;
  color: #f4ece6;
  text-decoration: none;
  transition: color 200ms ease;
}

.contact-detail:hover {
  color: #f0cf98;
}

.contact-map-link {
  font-size: 0.82rem;
  color: #f0cf98;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 200ms ease;
}

.contact-map-link:hover {
  opacity: 0.75;
}

.contact-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #7a706a;
}

.contact-socials {
  display: flex;
  gap: 20px;
}

.contact-socials a {
  font-size: 0.82rem;
  color: #f0cf98;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: opacity 200ms ease;
}

.contact-socials a:hover {
  opacity: 0.75;
}

/* Mappa placeholder */
.map-placeholder {
  width: 100%;
  height: 380px;
  background: #0b0909;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #2a2220;
}

.map-placeholder span {
  font-size: 0.82rem;
  color: #3a312c;
  letter-spacing: 0.1em;
}

/* ── Page CTA (fondo pagine) ── */
.page-cta {
  padding: 110px 0;
  background: #0b0909;
  border-top: 1px solid rgba(240, 207, 152, 0.07);
  text-align: center;
}

.page-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 580px;
  margin: 0 auto;
}

.page-cta-inner h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #f4ece6;
  margin: 0;
  line-height: 1.2;
}

.page-cta-inner p {
  font-size: 1rem;
  color: #7a706a;
  margin: 0;
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .steps-grid,
  .values-grid,
  .spaces-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card,
  .team-card--reverse {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .page-hero {
    padding: 120px 0 60px;
  }

  .page-two-col,
  .page-two-col--narrow {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .steps-grid,
  .values-grid,
  .spaces-grid,
  .treatments-grid,
  .testimonials-row,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .team-card,
  .team-card--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .team-card--reverse .team-photo-wrap,
  .team-card--reverse .team-info {
    order: unset;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .rating-overview {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
}

/* ── Numeri categoria grandi (01, 02) ── */
.treatments-category-num {
  font-family: "Raleway", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(240, 207, 152, 0.12);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 12px;
}

/* ── Card highlight "su misura" ── */
.tcard--highlight {
  border: 1px solid rgba(240, 207, 152, 0.2);
  background: rgba(240, 207, 152, 0.04) !important;
}

.tcard--highlight .tcard-tag {
  opacity: 1;
}

/* ── Epilazione Laser Section ── */
.laser-section {
  margin-top: 80px;
  padding: 72px 64px;
  border-top: 1px solid rgba(240, 207, 152, 0.08);
  border: 1px solid rgba(240, 207, 152, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.laser-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(240, 207, 152, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.laser-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  position: relative;
}

.laser-text .treatments-category-num {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(240, 207, 152, 0.12);
  line-height: 1;
  letter-spacing: -0.04em;
}

.laser-text h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 300;
  color: #f4ece6;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 24px;
}

.laser-text p {
  font-size: 0.96rem;
  line-height: 1.78;
  color: #7a706a;
  margin-bottom: 16px;
}

/* Lista feature destra */
.laser-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.laser-features li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(240, 207, 152, 0.06);
  flex: 1;
}

.laser-features li:first-child {
  padding-top: 0;
}

.laser-features li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.laser-feature-icon {
  color: #f0cf98;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.laser-features strong {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f4ece6;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.laser-features p {
  font-size: 0.87rem;
  line-height: 1.65;
  color: #7a706a;
  margin: 0;
}

@media (max-width: 900px) {
  .laser-section {
    padding: 48px 32px;
  }
  .laser-section-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ── Team Manifesto ── */
.team-manifesto {
  padding: 100px 0 80px;
  max-width: 820px;
}

.team-manifesto .teaser-label {
  display: block;
  margin-bottom: 28px;
}

.team-manifesto-title {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 200;
  color: #f4ece6;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 32px;
}

.team-manifesto-title em {
  font-style: italic;
  color: #f0cf98;
}

.team-manifesto-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #7a706a;
  max-width: 620px;
}

/* ── Valori strip ── */
.team-values-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(240, 207, 152, 0.08);
  border-bottom: 1px solid rgba(240, 207, 152, 0.08);
  margin-bottom: 100px;
}

.team-value-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(240, 207, 152, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-value-item:last-child {
  border-right: none;
}

.team-value-num {
  font-family: "Raleway", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #f0cf98;
  opacity: 0.6;
}

.team-value-item strong {
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f4ece6;
  letter-spacing: 0.01em;
}

.team-value-item p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: #5a5150;
  margin: 0;
}

/* ── Filosofia ── */
.team-philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 0 100px;
  border-bottom: 1px solid rgba(240, 207, 152, 0.08);
}

.team-philosophy-text .teaser-label {
  display: block;
  margin-bottom: 20px;
}

.team-philosophy-text h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 300;
  color: #f4ece6;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 28px;
}

.team-philosophy-text p {
  font-size: 0.96rem;
  line-height: 1.78;
  color: #7a706a;
  margin-bottom: 16px;
}

.team-philosophy-quote {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: #c8b89a;
  line-height: 1.65;
  border-left: 2px solid rgba(240, 207, 152, 0.25);
  padding-left: 32px;
  margin: 0;
}

/* ── Badge Professionista Consulente Esterna ── */
.team-profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0cf98;
  background: rgba(240, 207, 152, 0.08);
  border: 1px solid rgba(240, 207, 152, 0.28);
  border-radius: 3px;
  padding: 6px 14px;
  margin-bottom: 8px;
}

.team-profile-badge::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f0cf98;
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── Profili label intro ── */
.team-profiles-label {
  padding: 80px 0 60px;
}

.team-profiles-label .teaser-label {
  display: block;
  margin-bottom: 20px;
}

.team-profiles-label h2 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: #f4ece6;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 24px;
}

.team-profiles-note {
  max-width: 620px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #7a706a;
  margin: 0;
  border-left: 2px solid rgba(240, 207, 152, 0.3);
  padding-left: 18px;
}

/* ── Team About (vecchio — rimosso) ── */
.team-about,
.team-about-col,
.team-about-values,
.team-about-value-num { display: none; }

@media (max-width: 900px) {
  .team-values-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-value-item:nth-child(2) {
    border-right: none;
  }
  .team-value-item:nth-child(3) {
    border-right: 1px solid rgba(240, 207, 152, 0.08);
  }
  .team-philosophy {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 540px) {
  .team-values-strip {
    grid-template-columns: 1fr;
  }
  .team-value-item {
    border-right: none;
    border-bottom: 1px solid rgba(240, 207, 152, 0.08);
  }
  .team-value-item:last-child {
    border-bottom: none;
  }
}

/* ── Team About (presentazione centro) ── */
.team-about { display: none; }

/* ── Partners Section ── */
.partners-section {
  margin: 80px 0 72px;
  padding-top: 64px;
  border-top: 1px solid rgba(240, 207, 152, 0.08);
}

.partners-header {
  text-align: center;
  margin-bottom: 52px;
}

.partners-header .teaser-label {
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #f0cf98;
}

.partners-sub {
  font-size: 1rem;
  color: #7a706a;
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card singolo partner */
.partner-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(240, 207, 152, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.partner-card:hover {
  border-color: rgba(240, 207, 152, 0.35);
  transform: translateY(-4px);
}

/* Slot foto */
.partner-card-img {
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  box-sizing: border-box;
}

.partner-card-img img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Corpo testo */
.partner-card-body {
  padding: 24px 22px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.partner-card-name {
  font-family: "Raleway", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f0cf98;
  margin: 0;
}

.partner-card-desc {
  font-size: 0.9rem;
  color: #7a706a;
  line-height: 1.65;
  margin: 0;
}

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

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}
