/* ============================================================
   BEAUTY & CARE — Design System "Mare & Beige" (Caldo & Botanico)
   MOBILE-FIRST · Cormorant Garamond + Inter self-hosted
   Base = smartphone; @media (min-width) 760px e 1024px per tablet/desktop.
   ============================================================ */

@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/playfair-400.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/playfair-600.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 400; font-display: swap; src: url('/assets/fonts/playfair-italic.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/inter-600.woff2') format('woff2'); }

:root {
  --bg: #F2F8F7;
  --cream: #E4F3F1;
  --ink: #17332F;
  --text: #44615C;
  --text-mid: #5F7E78;
  --turchese: #0ABAB5;
  --turchese-deep: #087E76;
  --sage: #5FA8A1;
  --line: #D6E6E4;
  --card: #FFFFFF;
  --footer: #0E3A36;
  --tag-bg: #D6EFEC;
  --tag-ink: #0E6B62;
  --radius: 14px;
  --radius-lg: 26px;
  --shadow-sm: 0 6px 18px rgba(23, 51, 47, .07);
  --shadow: 0 16px 36px rgba(23, 51, 47, .12);
  --t: 200ms cubic-bezier(.4, 0, .2, 1);
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, 'Segoe UI', Arial, sans-serif;
  /* spaziature su scala 8px */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 56px;
  /* respiro verticale tra le sezioni */
  --section-gap: 80px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* offset per gli anchor con header sticky */
[id] { scroll-margin-top: 84px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; color: var(--ink); line-height: 1.15; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--turchese-deep); text-decoration: none; transition: color var(--t); }

::selection { background: var(--turchese-deep); color: #fff; }

:focus-visible { outline: 2px solid var(--turchese-deep); outline-offset: 3px; border-radius: 6px; }

a, button, summary { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--turchese-deep);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

.container { max-width: 1180px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }

main { overflow: hidden; }

/* ---------- Reveal leggero (progressive enhancement) ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.is-in { opacity: 1; transform: none; }

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

/* ---------- Immagini: aspect ratio + forme (mobile: rettangolo arrotondato) ---------- */
.hero-photo { position: relative; }
.hero-photo::before { display: none; }
.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}
.card-media { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 24px; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.about-photo { position: relative; }
.about-photo::before {
  content: "";
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  background: #C7E6E3;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  bottom: -16px;
  right: -10px;
  z-index: 0;
}
.about-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 28px;
}
.strip-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 26px; }
.tr-media { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 24px; }
.tr-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Tipografia di sezione ---------- */
.section-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-align: center;
  color: var(--turchese-deep);
  margin: 0 0 10px;
}
.section-subtitle { text-align: center; color: var(--text-mid); font-size: 15px; max-width: 620px; margin: 0 auto var(--sp-4); }

/* Su home: il sottotitolo fa da titolo grande serif */
.services .section-subtitle,
.gallery-strip .section-subtitle {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.15;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto 36px;
}

/* ---------- Header (navbar invariata, solo adattata ai token) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t);
}
.site-header.is-scrolled { box-shadow: 0 6px 20px rgba(46, 53, 46, .08); }

.site-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
}

.brand { display: inline-flex; align-items: center; }
.brand img { height: 42px; width: auto; }

/* Mobile: menu a scomparsa, righe grandi */
.nav-links { display: none; }

.nav-links.open {
  display: flex;
  position: absolute;
  top: 100%; left: 0; right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: var(--card);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 10px 20px 22px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  z-index: 120;
}

.nav-links > a:not(.nav-cta-a3), .nav-drop > a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 4px 0;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.nav-drop { position: relative; }
.nav-drop > a { justify-content: space-between; }

.nav-drop-menu { display: grid; border-bottom: 1px solid var(--line); padding: 4px 0 8px; }
.nav-drop-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 2px 0 2px 14px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.nav-drop-menu a.active, .nav-drop-menu a:hover { color: var(--turchese-deep); }

.lang-switch { display: flex; gap: 18px; padding: 14px 0 4px; font-size: 13px; letter-spacing: .08em; }
.lang-switch a { color: var(--text-mid); min-height: 44px; display: inline-flex; align-items: center; }
.lang-current { color: var(--turchese-deep); font-weight: 600; display: inline-flex; align-items: center; }

.nav-links .nav-cta-a3 { margin-top: 14px; width: 100%; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 19px;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- Bottoni ---------- */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  padding: 14px 26px;
  min-height: 52px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t), box-shadow var(--t);
}
.btn-pill:hover { transform: translateY(-1px); }

.btn-solid { background: var(--turchese); color: #fff; border-color: var(--turchese); }
.btn-solid:hover { background: var(--turchese-deep); border-color: var(--turchese-deep); }

.nav-cta-a3 { background: var(--turchese-deep); border-color: var(--turchese-deep); color: #FFFFFF; padding: 10px 20px; font-size: 11px; }
.nav-cta-a3:hover { background: var(--turchese); border-color: var(--turchese); color: #FFFFFF; }

/* ---------- WhatsApp flottante ---------- */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .4);
  z-index: 95;
  transition: transform var(--t), box-shadow var(--t);
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37, 211, 102, .5); }

/* ---------- Hero ---------- */
.hero-split { display: block; max-width: 1180px; margin: 0 auto; padding: 36px 20px 56px; border-bottom: 1px solid var(--line); }

.hero-copy { padding: var(--sp-3) 0 0; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--turchese-deep);
  margin-bottom: 14px;
}

.hero-title { font-size: 32px; margin-bottom: 14px; }

.hero-lead { color: var(--text-mid); font-size: 15.5px; max-width: 520px; }

.hero-actions { display: grid; gap: 12px; margin-top: var(--sp-4); }
.hero-actions .btn-solid { width: 100%; }

.hero-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.hero-phone span { color: var(--turchese-deep); transition: transform var(--t); }
.hero-phone:hover span { transform: translateX(3px); }

.hero-proof { margin-top: 6px; font-size: 13px; color: var(--text-mid); }

/* ---------- Trust bar ---------- */
.trust-bar {
  display: grid;
  gap: 0;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  padding: 0;
  margin-bottom: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}
.trust-item:last-child { border-bottom: 0; }
.trust-item::before {
  content: "";
  flex: 0 0 auto;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

/* ---------- Servizi (tre mondi) ---------- */
.services { padding-top: var(--section-gap); padding-bottom: var(--section-gap); border-bottom: 1px solid var(--line); }

.services-cols { display: grid; gap: var(--sp-3); }

.service-col {
  display: flex;
  flex-direction: column;
  padding: 0 0 18px;
}

.card-media { margin-bottom: var(--sp-2); }

.service-col-title { font-size: 23px; margin: 0 0 10px; }

.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0 0 14px; padding: 0; }
.svc-tags li {
  background: var(--tag-bg);
  color: var(--tag-ink);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11.5px;
  letter-spacing: .04em;
}

.service-col-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 46px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--turchese-deep);
}
.service-col-link:hover { color: var(--ink); }

/* ---------- Prezzi + Offerte (home) ---------- */
.home-prices { padding-top: var(--section-gap); padding-bottom: var(--section-gap); border-bottom: 1px solid var(--line); }

.price-grid { display: grid; gap: var(--sp-3); }

.offers-preview {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-3);
}

.offers-preview-title,
.price-list-title { font-family: var(--sans); font-size: 17px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 12px; }
.offers-preview-title { color: var(--ink); }

.offer-list { list-style: none; margin: 0 0 6px; padding: 0; }
.offer-row a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14.5px;
  transition: color var(--t);
}
.offer-row:first-child a { border-top: 0; }
.offer-row a:hover { color: var(--turchese-deep); }
.offer-badge {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--turchese-deep);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.offer-badge-save { background: var(--turchese-deep); border-color: var(--turchese-deep); color: #fff; }

.offer-mini-valid { font-size: 13.5px; color: var(--text-mid); margin: 0; }

.price-list-preview {
  background: var(--turchese-deep);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-3);
}
.price-list-preview .price-list-title { color: #fff; }
.price-list-preview p { color: #DCEBE7; font-size: 14.5px; }
.price-list-preview .btn-pill { width: 100%; margin-top: var(--sp-2); background: #fff; color: var(--turchese-deep); border-color: #fff; }
.price-list-preview .btn-pill:hover { background: var(--cream); border-color: var(--cream); }

.offers-preview .cta-btn { margin-top: var(--sp-2); width: 100%; }

/* ---------- About (Chi siamo) ---------- */
.about-overlap { padding-top: var(--section-gap); padding-bottom: var(--section-gap); border-bottom: 1px solid var(--line); }

.about-card { padding: 0; }

.about-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--turchese-deep);
  margin: 0 0 10px;
}
.about-overlap .about-title { margin-top: var(--sp-3); }

.about-copy h2 { font-size: 28px; }

.about-text-p { color: var(--text-mid); font-size: 15px; margin: 0 0 var(--sp-2); }

.about-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.35;
  color: var(--ink);
  margin: var(--sp-2) 0 6px;
}

.about-sign {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--turchese-deep);
  margin: 0;
}

/* ---------- Galleria (mosaico) ---------- */
.gallery-strip { padding-top: var(--section-gap); padding-bottom: var(--section-gap); border-bottom: 1px solid var(--line); }

.strip-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; gap: 12px; }
.strip-grid .big { grid-column: span 2; }

/* ---------- CTA finale ---------- */
.home-cta { padding-top: var(--section-gap); padding-bottom: var(--section-gap); border-bottom: 1px solid var(--line); }

.cta-band {
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: var(--sp-5) var(--sp-3);
  text-align: center;
}

.cta-title { color: var(--ink); font-size: 26px; margin: 0 0 10px; }

.cta-text { color: var(--text-mid); font-size: 14.5px; margin: 0 0 var(--sp-3); }

.cta-btn { background: var(--turchese-deep); color: #fff; border-color: var(--turchese-deep); width: 100%; }
.cta-btn:hover { background: var(--turchese); border-color: var(--turchese); }

/* ---------- Pagine trattamenti ---------- */
.page-hero { padding: var(--sp-5) 0 0; }
.page-hero .section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: .06em;
  color: var(--ink);
  margin-bottom: 10px;
}
.page-hero .section-subtitle { color: var(--text-mid); font-size: 15.5px; margin-bottom: 18px; }

/* Chips: riga scrollabile orizzontale (evita muri di bottoni su mobile) */
.anchor-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 20px 18px;
  margin: 0 -20px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.anchor-chips::-webkit-scrollbar { display: none; }

.anchor-chips a {
  flex: 0 0 auto;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  padding: 0 16px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: var(--text);
  white-space: nowrap;
  transition: border-color var(--t), color var(--t);
}
.anchor-chips a:hover { border-color: var(--turchese); color: var(--turchese-deep); }

.tr-item {
  padding-top: var(--sp-5);
  padding-bottom: var(--sp-5);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  align-items: center;
  border-top: 1px solid var(--line);
}

.tr-num { font-size: 12px; letter-spacing: .3em; color: var(--sage); font-weight: 600; }

.tr-title { font-size: 25px; margin: 4px 0 10px; }

.tr-text { color: var(--text-mid); font-size: 14.5px; }

.tr-meta { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--turchese-deep); font-weight: 600; margin: 0 0 var(--sp-2); }

.tr-item .btn-pill { width: 100%; }

/* ---------- FAQ ---------- */
.faq-list { padding-top: var(--sp-5); padding-bottom: var(--sp-6); display: grid; gap: 10px; }

.faq { border: 1px solid var(--line); border-radius: 16px; background: var(--card); overflow: hidden; transition: border-color var(--t), box-shadow var(--t); }
.faq:hover { border-color: var(--sage); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  padding: 16px 48px 16px 18px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  list-style: none;
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  transition: background var(--t);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  color: var(--turchese-deep);
  font-size: 21px;
  line-height: 1;
}
.faq[open] summary::after { content: "−"; }
.faq summary:hover { background: var(--cream); }
.faq p { padding: 0 18px 18px; margin: 0; font-size: 14px; color: var(--text-mid); }

/* ---------- Contatti ---------- */
.offers.container { padding-top: var(--sp-5); padding-bottom: var(--sp-6); }

.contact-grid { display: grid; gap: var(--sp-3); }

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--sp-3); }

.contact-heading { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); margin: 22px 0 6px; }
.contact-heading:first-child { margin-top: 0; }

.contact-line { font-size: 15px; color: var(--text); margin: 0 0 4px; }
.contact-line a { color: var(--turchese-deep); font-weight: 600; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid var(--line); }
.hours-table tr:last-child td { border-bottom: 0; }

.map-embed { width: 100%; aspect-ratio: 4 / 3; border: 0; border-radius: var(--radius); margin-top: 10px; filter: saturate(.9); }

.contact-band { margin-bottom: var(--sp-3); }
.contact-band .cta-title { font-size: 24px; }

.contact-form { display: grid; gap: 6px; }
.contact-form label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mid); margin-top: 10px; }
.contact-form input, .contact-form textarea {
  font-family: var(--sans);
  font-size: 16px; /* 16px: niente zoom automatico su iOS */
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--turchese); border-color: var(--turchese); }
.contact-form .btn-pill { margin-top: var(--sp-2); width: 100%; }

.form-note { font-size: 12px; color: var(--text-mid); margin-top: 10px; }
.form-fallback { font-size: 14.5px; color: var(--text-mid); }
.service-text { font-size: 14.5px; color: var(--text-mid); }

/* ---------- Legali ---------- */
.legal-page h1 { margin-bottom: var(--sp-3); }
.legal-page .section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: .06em;
  color: var(--ink);
}
.legal-page p { font-size: 14.5px; color: var(--text-mid); }

/* ---------- 404 ---------- */
.notfound { padding-top: var(--sp-6); padding-bottom: var(--sp-6); text-align: center; }
.notfound .section-title { font-family: var(--serif); font-size: 40px; color: var(--ink); }
.notfound .section-subtitle { margin-bottom: var(--sp-3); }

/* ---------- Prodotti ---------- */
.prodotti { padding-top: var(--section-gap); padding-bottom: var(--section-gap); border-bottom: 1px solid var(--line); }
.prodotti-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.prodotto { margin: 0; }
.prodotto img, .prodotto video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  background: var(--cream);
}
.prodotto figcaption { font-size: 13.5px; color: var(--text-mid); padding: 10px 2px 0; }
.prodotti-note { font-size: 12.5px; color: var(--text-mid); margin-top: var(--sp-3); }

/* ---------- Prima e dopo dentro i trattamenti corpo ---------- */
.tr-pd { margin-top: var(--sp-3); background: var(--cream); border: 1px solid var(--line); border-radius: 18px; padding: 14px; max-width: 460px; }
.tr-pd-cap {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.tr-pd-imgs { display: flex; gap: 10px; flex-wrap: wrap; }
.tr-pd-imgs img {
  flex: 1 1 140px;
  max-width: 200px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.pd-note-wrap { padding-bottom: var(--sp-5); }
.pd-note { font-size: 12.5px; color: var(--text-mid); margin: 0; }

/* ---------- Mappa del sito ---------- */
.sitemap-page { padding-top: var(--sp-5); padding-bottom: var(--sp-6); }
.sitemap-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.sitemap-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  width: 100%;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: color var(--t), padding-left var(--t);
}
.sitemap-list a:hover { color: var(--turchese-deep); padding-left: 6px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer); color: rgba(255, 255, 255, .84); }

.footer-grid { display: grid; gap: var(--sp-4); padding-top: var(--sp-6); padding-bottom: var(--sp-4); }

.footer-logo { font-family: var(--serif); font-size: 21px; color: #fff; margin-bottom: 10px; }

.footer-col p { font-size: 14px; margin-bottom: 8px; }
.footer-col a { color: rgba(255, 255, 255, .86); }
.footer-col a:hover { color: #fff; }

.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.footer-list a { font-size: 14px; min-height: 40px; display: inline-flex; align-items: center; }

.footer-langs { display: flex; gap: 18px; }
.footer-legal { display: flex; gap: 18px; margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .16);
  text-align: center;
  font-size: 12.5px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, .62);
}

/* ============================================================
   TABLET — da 760px
   ============================================================ */

@media (min-width: 760px) {
  :root { --section-gap: 120px; }

  .container { padding-left: 32px; padding-right: 32px; }

  .hero-split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 52px;
    align-items: center;
    padding: 48px 32px 72px;
  }
  .hero-photo { position: relative; }
  .hero-photo::before {
    display: block;
    content: "";
    position: absolute;
    width: 70%;
    aspect-ratio: 1;
    background: #C7E6E3;
    border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
    top: -18px;
    left: -12px;
    z-index: 0;
  }
  .hero-photo img {
    aspect-ratio: 16 / 10;
    border-radius: 28px;
    box-shadow: none;
  }
  .hero-copy { padding: 0; }
  .hero-title { font-size: 42px; }
  .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: var(--sp-5); }
  .hero-actions .btn-solid { width: auto; }

  .trust-bar { grid-template-columns: repeat(3, 1fr); }
  .trust-item, .trust-item:last-child { border-bottom: 0; border-right: 1px solid var(--line); justify-content: center; padding: 16px 8px; }
  .trust-item:last-child { border-right: 0; }

  .services-cols { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .service-col { border-left: 1px solid var(--line); padding: 0 26px 6px; }
  .service-col:first-child { border-left: 0; padding-left: 0; }

  .price-grid { grid-template-columns: 1fr 1fr; gap: 26px; }

  .about-overlap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; align-items: center; }
  .about-overlap .about-title { margin-top: 0; }

  .strip-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; gap: 14px; }
  .strip-grid .big { grid-column: span 2; grid-row: span 2; }

  .cta-band { padding: var(--sp-6) var(--sp-5); }
  .cta-btn { width: auto; }

  .anchor-chips { flex-wrap: wrap; overflow-x: visible; margin: 0; padding: 2px 0 18px; }

  .tr-item { grid-template-columns: 1fr 1fr; gap: var(--sp-5); padding-top: var(--sp-6); padding-bottom: var(--sp-6); }
  .tr-item:nth-child(even) .tr-media { order: 2; }
  .tr-item .btn-pill { width: auto; }

  .prodotti-grid { grid-template-columns: repeat(4, 1fr); }

  .contact-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  .card { padding: var(--sp-4); }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-5); padding-top: var(--sp-6); padding-bottom: var(--sp-4); }
}

/* ============================================================
   DESKTOP — da 1024px
   ============================================================ */

@media (min-width: 1024px) {
  .site-nav { padding: 16px 34px; min-height: 76px; }
  .brand img { height: 52px; }

  .nav-toggle { display: none; }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 26px;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
    max-height: none;
    overflow: visible;
  }

  .nav-links > a:not(.nav-cta-a3), .nav-drop > a {
    display: inline-flex;
    min-height: 0;
    padding: 6px 0;
    font-size: 11.5px;
    border-bottom: 0;
    position: relative;
    color: var(--text);
    transition: color var(--t);
  }

  .nav-links > a::after, .nav-drop > a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1.5px;
    background: var(--turchese);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
  }
  .nav-links > a:not(.nav-cta-a3):hover, .nav-drop:hover > a, .nav-drop[data-active="true"] > a { color: var(--ink); }
  .nav-links > a.active { color: var(--ink); font-weight: 600; }
  .nav-links > a:hover::after, .nav-links > a.active::after,
  .nav-drop:hover > a::after, .nav-drop[data-active="true"] > a::after { transform: scaleX(1); }

  .nav-drop > a { display: inline-flex; align-items: center; gap: 4px; }

  .nav-drop-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -16px;
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 10px 0;
    min-width: 232px;
    border-bottom: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity var(--t), transform var(--t), visibility var(--t);
    z-index: 50;
  }
  .nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-drop-menu a {
    display: block;
    min-height: 0;
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--text);
    transition: background var(--t), color var(--t);
  }
  .nav-drop-menu a:hover, .nav-drop-menu a.active { background: var(--cream); color: var(--turchese-deep); }

  .lang-switch { border-left: 1px solid var(--line); padding: 0 0 0 26px; gap: 12px; }
  .lang-switch a, .lang-current { min-height: 0; }
  .lang-switch a { opacity: .65; }
  .lang-switch a:hover { opacity: 1; }

  .nav-links .nav-cta-a3 { width: auto; margin-top: 0; }

  .hero-split { grid-template-columns: 1.05fr .95fr; }
  .hero-title { font-size: 46px; }

  .about-overlap { grid-template-columns: 380px 1fr; }
}
