:root {
  --cream: #f7f1df;
  --cream-2: #efe6cc;
  --sage: #5e8f63;
  --sage-light: #a8c19e;
  --mint: #d8e2cb;
  --gold: #e0b84c;
  --brown: #3b2a1a;
  --brown-soft: #6b5846;
  --white: #fffdf8;
  --shadow: 0 16px 40px rgba(59,42,26,.10);
  --radius-lg: 30px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding-bottom: calc(84px + env(safe-area-inset-bottom));
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 76px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247,241,223,.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(59,42,26,.06);
}

.brand img {
  width: 108px;
  height: auto;
  display: block;
}

.menu-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(59,42,26,.08);
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: .25s ease;
}

.mobile-menu {
  position: fixed;
  inset: 76px 0 0;
  z-index: 45;
  padding: 34px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(247,241,223,.98);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.mobile-menu a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(59,42,26,.10);
}

body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

body.menu-open .menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-button span:nth-child(2) { opacity: 0; }
body.menu-open .menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 86svh;
  padding: 132px 20px 48px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(59,42,26,.60) 0%, rgba(59,42,26,.30) 44%, rgba(59,42,26,.08) 78%),
    url("assets/hero-home.webp") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59,42,26,.44), transparent 52%);
  pointer-events: none;
}

.hero__decor {
  position: absolute;
  border: 1px solid rgba(224,184,76,.70);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.hero__decor--one {
  width: 430px;
  height: 260px;
  right: -180px;
  top: 130px;
}

.hero__decor--two {
  width: 310px;
  height: 180px;
  right: -90px;
  top: 190px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 590px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: .16em;
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(50px, 14vw, 78px);
  line-height: .95;
  letter-spacing: -.04em;
}

h2 {
  margin-bottom: 0;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -.025em;
}

.hero__lead {
  max-width: 460px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.55;
}

.actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.button {
  min-height: 54px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 999px;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(59,42,26,.08);
}

.button--primary { background: var(--sage); color: var(--white); }
.button--secondary { background: rgba(255,253,248,.94); color: var(--brown); }
.button--gold { background: var(--gold); color: var(--brown); }

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 26px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
}

.scroll-cue span {
  width: 11px;
  height: 11px;
  border-right: 1.5px solid rgba(255,255,255,.78);
  border-bottom: 1.5px solid rgba(255,255,255,.78);
  transform: rotate(45deg);
  animation: scrollCue 1.7s ease-in-out infinite;
}

@keyframes scrollCue {
  0%,100% { transform: translateY(-2px) rotate(45deg); opacity: .45; }
  50% { transform: translateY(5px) rotate(45deg); opacity: 1; }
}

.section { padding: 48px 18px; }

.section-heading {
  margin-bottom: 22px;
  display: flex;
  gap: 12px;
  align-items: end;
  justify-content: space-between;
}

.text-link {
  flex: none;
  padding-bottom: 4px;
  font-size: 13px;
  font-weight: 800;
  color: var(--sage);
}

.needs-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.need-card {
  min-height: 148px;
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--white);
  box-shadow: var(--shadow);
}

.need-card:nth-child(2) { background: var(--mint); }
.need-card:nth-child(3) { background: #f0dfac; }
.need-card:nth-child(4) { background: #dfe9d7; }

.need-card__icon {
  margin-bottom: auto;
  font-family: Georgia, serif;
  font-size: 28px;
  color: var(--sage);
}

.need-card strong { font-size: 17px; }
.need-card small { margin-top: 4px; color: var(--brown-soft); }

.section--treatments { overflow: hidden; }

.treatment-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  padding: 2px 20px 18px 0;
}

.treatment-carousel::-webkit-scrollbar { display: none; }

.treatment-card {
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.treatment-card__image {
  position: relative;
  aspect-ratio: 4 / 3.15;
  overflow: hidden;
}

.treatment-card__image::before,
.treatment-card__image::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(.2px);
}

.treatment-card__image::before {
  width: 70%;
  height: 70%;
  right: -10%;
  top: -8%;
  background: rgba(255,255,255,.18);
}

.treatment-card__image::after {
  width: 46%;
  height: 46%;
  left: 8%;
  bottom: -8%;
  background: rgba(59,42,26,.12);
}

.treatment-card__image--one { background: linear-gradient(145deg,#7f9f7a,#d7c278); }
.treatment-card__image--two { background: linear-gradient(145deg,#d4b867,#eadfbd); }
.treatment-card__image--three { background: linear-gradient(145deg,#b5c8a6,#6f956f); }
.treatment-card__image--four { background: linear-gradient(145deg,#efe1c0,#c5d8ba); }

.treatment-card__image span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 12px;
  font-family: Georgia, serif;
  font-size: 52px;
  color: rgba(255,255,255,.68);
}

.treatment-card__body { padding: 18px; }
.treatment-card h3 { margin-bottom: 7px; font-size: 23px; }
.treatment-card p { margin-bottom: 0; color: var(--brown-soft); line-height: 1.5; }

.swipe-hint {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--brown-soft);
}

.section--how { background: var(--brown); color: var(--cream); }

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

.steps article {
  min-width: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(247,241,223,.25);
}

.steps article > .step-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.step-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steps h3 { margin-bottom: 6px; font-size: 16px; }
.steps p { margin-bottom: 0; font-size: 12px; line-height: 1.45; color: rgba(247,241,223,.72); }

.section--trust { padding-top: 24px; padding-bottom: 42px; }

.trust-card {
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(224,184,76,.18), transparent 45%),
    var(--white);
  box-shadow: var(--shadow);
}

blockquote {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.14;
}

.sticky-contact {
  position: fixed;
  z-index: 60;
  left: 12px;
  right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(59,42,26,.22);
  background: var(--sage);
}

.sticky-contact a {
  min-height: 58px;
  padding: 9px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 750;
}

.sticky-contact a + a { border-left: 1px solid rgba(255,255,255,.28); }
.sticky-contact small { margin-top: 2px; font-size: 10px; opacity: .75; }

@media (min-width: 760px) {
  body { padding-bottom: 0; }
  .site-header { padding-left: max(24px, calc((100vw - 1120px)/2)); padding-right: max(24px, calc((100vw - 1120px)/2)); }
  .hero, .section { padding-left: max(24px, calc((100vw - 1120px)/2)); padding-right: max(24px, calc((100vw - 1120px)/2)); }
  .hero { min-height: 760px; }
  .needs-row { grid-template-columns: repeat(4,1fr); }
  .treatment-carousel { grid-auto-columns: 31%; }
  .sticky-contact { width: 430px; left: auto; right: 24px; }
  .mobile-menu { left: auto; width: 420px; box-shadow: -20px 20px 50px rgba(59,42,26,.10); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}


/* Pagina trattamenti */
.treatments-page {
  padding-top: 76px;
}

.page-hero {
  padding: 56px 18px 34px;
  background:
    radial-gradient(circle at 90% 10%, rgba(224,184,76,.20), transparent 28%),
    radial-gradient(circle at 10% 15%, rgba(94,143,99,.15), transparent 28%),
    var(--cream);
}

.page-hero h1 {
  color: var(--brown);
  font-size: clamp(48px, 13vw, 72px);
  margin-bottom: 18px;
}

.page-hero > p:last-child {
  max-width: 680px;
  color: var(--brown-soft);
  font-size: 17px;
  line-height: 1.6;
}

.category-chips {
  position: sticky;
  top: 76px;
  z-index: 30;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 18px;
  background: rgba(247,241,223,.94);
  backdrop-filter: blur(14px);
  border-block: 1px solid rgba(59,42,26,.07);
  scrollbar-width: none;
}

.category-chips::-webkit-scrollbar { display: none; }

.category-chips a {
  flex: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--brown);
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 5px 18px rgba(59,42,26,.06);
}

.treatment-group {
  scroll-margin-top: 140px;
  padding: 46px 18px 12px;
}

.treatment-group__heading {
  margin-bottom: 18px;
}

.treatment-group__heading h2 {
  color: var(--brown);
}

.service-card {
  display: grid;
  gap: 18px;
  margin-bottom: 14px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--brown-soft);
  line-height: 1.6;
}

.service-meta {
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(59,42,26,.09);
}

.service-meta span {
  color: var(--sage);
  font-size: 13px;
  font-weight: 750;
}

.service-meta strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.treatment-cta {
  margin: 34px 18px 48px;
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(224,184,76,.17), transparent 55%),
    var(--mint);
}

.treatment-cta h2 {
  margin-bottom: 14px;
  color: var(--brown);
}

.treatment-cta > p:not(.eyebrow) {
  color: var(--brown-soft);
  line-height: 1.6;
}

.treatment-cta .button {
  margin-top: 22px;
}

.needs-row--categories {
  grid-template-columns: repeat(2, minmax(0,1fr));
}

.needs-row--categories .need-card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 760px) {
  .page-hero,
  .treatment-group {
    padding-left: max(24px, calc((100vw - 900px)/2));
    padding-right: max(24px, calc((100vw - 900px)/2));
  }

  .category-chips {
    justify-content: center;
  }

  .service-card {
    grid-template-columns: 1fr 150px;
    align-items: end;
  }

  .service-meta {
    padding-top: 0;
    padding-left: 22px;
    border-top: 0;
    border-left: 1px solid rgba(59,42,26,.09);
  }

  .treatment-cta {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .needs-row--categories {
    grid-template-columns: repeat(5,1fr);
  }

  .needs-row--categories .need-card--wide {
    grid-column: auto;
  }
}


/* Sede e contatti */
.section--location {
  background: var(--cream-2);
}

.location-card,
.contact-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.location-card strong {
  font-size: 18px;
}

.location-card p {
  margin: 4px 0 0;
  color: var(--brown-soft);
}

.location-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.contact-grid {
  display: grid;
  gap: 14px;
  padding: 34px 18px 12px;
}

.contact-card h2 {
  margin-bottom: 12px;
}

.contact-card > p:not(.eyebrow) {
  color: var(--brown-soft);
  line-height: 1.6;
}

.contact-card .button {
  margin-top: 22px;
}

@media (min-width: 760px) {
  .contact-grid {
    max-width: 900px;
    margin: 0 auto;
    grid-template-columns: repeat(2,1fr);
  }

  .location-actions {
    grid-template-columns: 1fr 1fr;
  }
}


.location-list {
  display: grid;
  gap: 12px;
}

.location-city {
  display: block;
  margin-bottom: 4px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.location-note {
  margin: 12px 2px 0;
  color: var(--brown-soft);
  font-size: 13px;
  line-height: 1.5;
}

.contact-card--phone {
  background:
    linear-gradient(135deg, rgba(224,184,76,.14), transparent 55%),
    var(--white);
}

@media (min-width: 760px) {
  .location-list {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: repeat(3,1fr);
  }
}


/* Pagina Chi sono */
.about-page {
  padding-top: 76px;
}

.about-hero {
  padding: 24px 18px 42px;
  display: grid;
  gap: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(224,184,76,.14), transparent 30%),
    var(--cream);
}

.about-portrait-wrap {
  position: relative;
}

.about-portrait-wrap::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -12px;
  width: 68%;
  height: 36%;
  border-radius: 999px;
  border: 1px solid rgba(224,184,76,.55);
  transform: rotate(-8deg);
  pointer-events: none;
}

.about-portrait {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.about-hero__copy h1 {
  color: var(--brown);
  font-size: clamp(46px, 12vw, 72px);
  margin-bottom: 18px;
}

.about-lead {
  margin-bottom: 0;
  color: var(--brown-soft);
  font-size: 18px;
  line-height: 1.6;
}

.about-story {
  padding: 50px 18px;
  display: grid;
  gap: 24px;
}

.about-story__intro h2 {
  color: var(--brown);
}

.about-story__text p {
  color: var(--brown-soft);
  font-size: 17px;
  line-height: 1.7;
}

.about-story__text p:last-child {
  margin-bottom: 0;
}


.about-quote {
  margin: 0 18px 48px;
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(224,184,76,.20), transparent 55%), var(--brown);
  color: var(--cream);
}

.about-quote blockquote {
  font-size: 29px;
}

.about-quote .button {
  margin-top: 24px;
}

@media (min-width: 760px) {
  .about-hero {
    max-width: 1120px;
    margin: 0 auto;
    padding-top: 54px;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .about-story {
    max-width: 900px;
    margin: 0 auto;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
  }

  .about-values {
    max-width: 900px;
    margin: 0 auto;
    grid-template-columns: repeat(3,1fr);
  }

  .about-quote {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}


.treatment-card--all {
  display: flex;
  min-height: 100%;
  background: var(--brown);
  color: var(--cream);
}

.treatment-card__body--all {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.treatment-card__all-mark {
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247,241,223,.42);
  border-radius: 50%;
  font-size: 22px;
}

.treatment-card--all p {
  color: rgba(247,241,223,.72);
}


.home-motto {
  margin: 10px 18px 34px;
  padding: 34px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    radial-gradient(circle at 80% 10%, rgba(224,184,76,.18), transparent 30%),
    var(--mint);
}

.home-motto h2 {
  color: var(--brown);
  margin-bottom: 10px;
}

.home-motto > p:last-child {
  margin-bottom: 0;
  color: var(--brown-soft);
  font-size: 17px;
}

@media (min-width: 760px) {
  .home-motto {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}


.contact-city {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--brown);
}

.venue-name,
.location-venue {
  display: block;
  margin: 0 0 10px;
  color: var(--brown-soft);
  font-size: 14px;
  font-weight: 600;
}

.location-city {
  display: block;
  margin-bottom: 5px;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}


.about-quote .button--primary {
  background: var(--gold);
  color: var(--brown);
}


.service-note {
  margin-top: 12px !important;
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
  background: rgba(224,184,76,.10);
  color: var(--brown) !important;
  font-size: 13px;
  line-height: 1.45 !important;
}

.treatment-card__category {
  display: block;
  margin-top: 12px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}


.treatment-card__image--photo {
  background-size: cover !important;
  background-position: center center !important;
}

.treatment-card__image--photo::before {
  background: linear-gradient(to top, rgba(59,42,26,.18), rgba(59,42,26,0) 55%);
  width: 100%;
  height: 100%;
  inset: 0;
  border-radius: 0;
}

.treatment-card__image--photo::after {
  display: none;
}

.treatment-card__image--photo span {
  text-shadow: 0 1px 10px rgba(59,42,26,.35);
}


/* Hero fotografico */
.hero__decor { display: none; }

@media (max-width: 759px) {
  .hero {
    background-position: 58% center;
  }
}

/* Icone macro-categorie */
.need-card__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: auto;
  color: rgba(94,143,99,.72);
}

.need-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.need-card--corpo .need-card__icon { color: rgba(176,143,63,.72); }
.need-card--sport .need-card__icon { color: rgba(107,88,70,.68); }
.need-card--viso .need-card__icon { color: rgba(94,143,99,.66); }
.need-card--maternita .need-card__icon { color: rgba(176,143,63,.68); }


.need-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}


/* Offset delle singole card quando si apre un trattamento tramite #ancora */
.service-card {
  scroll-margin-top: 140px;
}

@media (max-width: 759px) {
  .service-card {
    scroll-margin-top: 120px;
  }
}


/* Instagram, pacchetti e buoni regalo */
.home-instagram {
  padding-top: 24px;
  padding-bottom: 24px;
}

.social-card,
.treatment-extras {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.social-card h2,
.treatment-extras h2 {
  margin-bottom: 12px;
  color: var(--brown);
}

.social-card > p:not(.eyebrow),
.treatment-extras > p:not(.eyebrow) {
  color: var(--brown-soft);
  line-height: 1.6;
}

.social-card .button {
  margin-top: 20px;
}

.button--instagram {
  background: linear-gradient(135deg, #833ab4 0%, #c13584 30%, #e1306c 52%, #f56040 72%, #f77737 86%, #fcaf45 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(193,53,132,.24);
}

.instagram-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.instagram-label svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.instagram-label .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.treatment-extras {
  margin: 28px 18px 38px;
  padding: 30px 24px;
  background:
    linear-gradient(135deg, rgba(224,184,76,.15), transparent 55%),
    var(--white);
}

.treatment-extras__actions {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.instagram-inline {
  padding: 6px 2px;
}

.contact-card--instagram {
  background:
    linear-gradient(135deg, rgba(94,143,99,.11), transparent 55%),
    var(--white);
}

@media (min-width: 760px) {
  .social-card {
    max-width: 900px;
    margin: 0 auto;
  }

  .treatment-extras {
    max-width: 900px;
    margin: 34px auto 46px;
    padding: 34px 30px;
  }

  .treatment-extras__actions {
    grid-template-columns: minmax(240px, 360px) 1fr;
    align-items: center;
  }
}


/* Più respiro tra la sezione pacchetti e la CTA finale */
.treatment-extras + .treatment-cta {
  margin-top: 0;
}

@media (max-width: 759px) {
  .treatment-extras {
    margin-left: 18px;
    margin-right: 18px;
  }
}


/* Immagini delle card: elementi reali per permettere lazy loading */
.treatment-card__image--photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Navigazione da tastiera */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}


/* Correzioni mobile contatti e icona viso */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.contact-grid,
.contact-card,
.contact-card > * {
  min-width: 0;
}

.contact-card {
  width: 100%;
  max-width: 100%;
}

.contact-card h2 {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.contact-card--instagram h2 {
  font-size: clamp(24px, 7.2vw, 32px);
  line-height: 1.08;
}

.contact-card .button {
  width: 100%;
  min-width: 0;
}

.need-card--viso .need-card__icon img {
  width: 34px;
  height: 34px;
  max-width: none;
}

@media (max-width: 759px) {
  .contact-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .sticky-contact {
    max-width: calc(100vw - 24px);
  }
}
