:root{
  /* Palette FRESCA: azzurro pastello dominante, bianco freddo, rosa cipria + salvia come accenti naturali */
  --azzurro-aria:  #F2F8FC;  /* sfondo principale, bianco con appena un fiato di azzurro */
  --azzurro-luce:  #E4EFF7;  /* secondo livello sfondo */
  --azzurro-soft:  #C9DEEC;
  --azzurro-medio: #9CC2DA;
  --azzurro:       #6FA8C8;
  --azzurro-deep:  #4A88AD;  /* azzurro vivido, bottoni e accenti */
  --azzurro-ink:   #2E6489;  /* azzurro profondo, sostituisce il nero — ancora arioso, mai cupo */

  --rosa-aria:     #FDF1ED;
  --rosa-soft:     #F8DED7;
  --rosa:          #EFC5BC;

  --salvia-aria:   #EEF2E8;
  --salvia-soft:   #D5DFC8;
  --salvia:        #A2B891;  /* tocco "erboristico", per piccoli accenti */

  --bianco:        #FFFFFF;
  --avorio:        #F2F8FC;  /* manteniamo l'alias per compatibilità con il resto del codice */
  --crema:         #E4EFF7;

  --inchiostro:    #1F3A4D;  /* testo principale: blu notte, mai nero pieno */
  --testo:         #34526A;  /* testo secondario */
  --grigio:        #6B8090;
  --grigio-soft:   #A8B8C5;

  --ombra-luce:   0 1px 2px rgba(31,58,77,.04), 0 8px 24px rgba(31,58,77,.06);
  --ombra-card:   0 2px 4px rgba(31,58,77,.04), 0 20px 60px -20px rgba(31,58,77,.18);

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 28px;
  --r-xl: 44px;

  --display: 'Fraunces', 'Times New Roman', serif;
  --body: 'Manrope', system-ui, -apple-system, sans-serif;
}

*{ box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
body{
  font-family: var(--body);
  font-weight: 400;
  color: var(--inchiostro);
  background: var(--azzurro-aria);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}
.page{ overflow-x: hidden; }
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- TOPOGRAFIA ---------- */
h1, h2, h3, h4{
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--azzurro-ink);
}
.eyebrow{
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--azzurro-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before{
  content:""; width: 28px; height: 1px; background: currentColor;
}
.italic{ font-style: italic; font-weight: 300; }

/* ---------- LAYOUT ---------- */
.wrap{ max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section{ padding: 120px 0; position: relative; overflow: hidden; }
@media (max-width: 768px){
  .wrap{ padding: 0 20px; }
  .section{ padding: 80px 0; }
}

/* ---------- NAV ---------- */
.nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: all .35s ease;
  backdrop-filter: blur(0px);
}
.nav.scrolled{
  background: rgba(242, 248, 252, .85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(46, 100, 137, .1);
}
.nav-inner{
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
}
.logo-mark{
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
}
.logo-mark .logo-circle{
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.logo-mark .logo-leaf{
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.logo-mark .logo-text{
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: var(--azzurro-ink);
}
.logo-mark .logo-text small{
  display: block;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grigio);
  font-weight: 500;
  margin-top: 2px;
}
/* "Dottoressa Emy" è una parola molto più corta di "Parafarmacia · Erboristeria":
   la stessa spaziatura assoluta (0.22em) su un testo più breve si percepisce
   otticamente più larga. La riduciamo qui per un effetto visivo equilibrato. */
.logo-mark .logo-text small.tight{
  letter-spacing: 0.10em;
}

.menu{ display: flex; align-items: center; gap: 36px; }
.menu a{
  font-size: 14px; font-weight: 500;
  position: relative;
  padding: 6px 0;
  color: var(--inchiostro);
  transition: color .25s;
}
.menu a::after{
  content: ""; position: absolute;
  left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--azzurro-deep);
  transition: width .3s ease;
}
.menu a:hover, .menu a.active{ color: var(--azzurro-deep); }
.menu a:hover::after, .menu a.active::after{ width: 100%; }

.menu-cta{
  background: var(--azzurro-deep);
  color: var(--bianco) !important;
  padding: 12px 22px !important;
  border-radius: 100px;
  font-size: 13px !important;
  letter-spacing: 0.02em;
  transition: all .3s ease;
}
.menu-cta:hover{ background: var(--azzurro-ink); transform: translateY(-2px); }
.menu-cta::after{ display: none !important; }

.burger{
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.burger span{
  width: 22px; height: 1.5px; background: var(--inchiostro);
  transition: all .3s;
}
.burger.open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 980px){
  .menu{
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #F2F8FC;          /* opaco pieno: copre del tutto la pagina */
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 92px 26px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 200;                 /* sopra a tutto, anche alla nav */
    box-shadow: -20px 0 60px rgba(31,58,77,.12);
  }
  .menu.open{ transform: translateX(0); }
  .menu a{
    font-size: 22px;
    font-family: var(--display);
    font-weight: 400;
    color: var(--inchiostro);
    padding: 18px 4px;
    border-bottom: 1px solid rgba(31,58,77,.08);
    width: 100%;
    text-align: left;
    letter-spacing: -.01em;
  }
  .menu a::after{ display: none; }
  .menu a.active{ color: var(--azzurro-deep); }
  .menu a.menu-cta{
    margin-top: 28px;
    padding: 14px 26px !important;
    border-bottom: none;
    align-self: center;
    width: auto;
    min-width: 200px;
    text-align: center;
    font-family: var(--body);
    font-size: 14px !important;
  }
  .burger{ display: flex; position: relative; z-index: 210; }
  body.menu-open{ overflow: hidden; }
}

@media (max-width: 420px){
  .menu{ padding: 88px 22px 32px; }
  .menu a{ font-size: 19px; padding: 16px 2px; }
}

/* ---------- PAGINE ---------- */
.page{ display: none; padding-top: 90px; }
.page.active{ display: block; animation: fadeUp .7s ease both; }
@keyframes fadeUp{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: none; }
}

/* ===================== HOME ===================== */

/* HERO */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero-bg{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 700px at 85% 20%, var(--azzurro-soft) 0%, transparent 55%),
    radial-gradient(ellipse 700px 600px at 15% 85%, var(--rosa-soft) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 50% 50%, var(--azzurro-luce) 0%, transparent 70%),
    linear-gradient(180deg, var(--bianco) 0%, var(--azzurro-aria) 100%);
  z-index: -2;
}
.grain{
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.23 0 0 0 0 0.30 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .35;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.hero-eyebrow{
  margin-bottom: 36px;
  animation: rise .9s .1s both;
}
.hero h1{
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 300;
  margin-bottom: 32px;
  animation: rise .9s .25s both;
}
.hero h1 em{
  font-style: italic;
  color: var(--azzurro-deep);
  font-weight: 400;
}
.hero-lead{
  font-size: 18px;
  color: var(--grigio);
  max-width: 480px;
  margin-bottom: 44px;
  animation: rise .9s .4s both;
}
.hero-cta-row{
  display: flex; gap: 18px; flex-wrap: wrap;
  animation: rise .9s .55s both;
}
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 30px;
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em;
  transition: all .35s ease;
  cursor: pointer;
}
.btn-primary{
  background: var(--azzurro-deep);
  color: var(--bianco);
  box-shadow: 0 6px 16px -6px rgba(74,136,173,.5);
}
.btn-primary:hover{
  background: var(--azzurro-ink);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -10px var(--azzurro-deep);
}
.btn-secondary{
  background: transparent;
  color: var(--azzurro-deep);
  border: 1px solid var(--azzurro-deep);
}
.btn-secondary:hover{
  background: var(--azzurro-deep);
  color: var(--bianco);
}
.btn .arrow{
  display: inline-block;
  transition: transform .3s;
}
.btn:hover .arrow{ transform: translateX(4px); }

@keyframes rise{
  from{ opacity: 0; transform: translateY(24px); }
  to{ opacity: 1; transform: none; }
}

/* Hero ginkgo visual */
.hero-visual{
  position: relative;
  aspect-ratio: 1;
  animation: rise 1.2s .3s both;
}
.hero-visual .circle{
  position: absolute; inset: 8% 0 0 5%;
  width: 88%; aspect-ratio: 1;
  background: var(--azzurro-deep);
  border-radius: 50%;
  box-shadow: 0 30px 80px -20px rgba(74,136,173,.45);
}
.hero-visual .ginkgo{
  position: absolute; inset: 0;
  display: grid; place-items: center;
  animation: floaty 8s ease-in-out infinite;
}
.hero-visual .ginkgo img{ width: 58%; height: auto; display: block; }
.hero-visual .leaf-deco-1 img,
.hero-visual .leaf-deco-2 img{ width: 100%; height: auto; display: block; }
.hero-visual .leaf-deco-1{
  position: absolute;
  top: -8%; right: -4%;
  width: 160px;
  opacity: .6;
  transform: rotate(35deg);
  animation: floaty 9s ease-in-out infinite reverse;
}
.hero-visual .leaf-deco-2{
  position: absolute;
  bottom: -5%; left: -8%;
  width: 130px;
  opacity: .45;
  transform: rotate(-15deg);
  animation: floaty 11s ease-in-out infinite;
}
@keyframes floaty{
  0%, 100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-12px) rotate(2deg); }
}

@media (max-width: 900px){
  .hero{ min-height: auto; padding-top: 30px; }
  .hero-grid{ grid-template-columns: 1fr; gap: 50px; }
  .hero-visual{ max-width: 380px; margin: 0 auto; }
}

/* MARQUEE */
.marquee-section{
  padding: 30px 0;
  background: linear-gradient(90deg, var(--azzurro-ink) 0%, var(--azzurro-deep) 50%, var(--azzurro-ink) 100%);
  color: var(--bianco);
  overflow: hidden;
  position: relative;
}
.marquee{
  display: flex;
  gap: 60px;
  animation: scroll 28s linear infinite;
  white-space: nowrap;
}
.marquee span{
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--avorio);
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee span::after{
  content: "✦";
  color: var(--rosa);
  font-style: normal;
  font-size: 14px;
}
@keyframes scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* INTRO STORY */
.intro-section{
  background: var(--azzurro-aria);
  position: relative;
}
.intro-section::before{
  content: "";
  position: absolute;
  top: 10%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--azzurro-soft) 0%, transparent 70%);
  border-radius: 50%;
  opacity: .6;
  pointer-events: none;
}
.intro-section::after{
  content: "";
  position: absolute;
  bottom: 5%; left: -8%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--rosa-soft) 0%, transparent 70%);
  border-radius: 50%;
  opacity: .5;
  pointer-events: none;
}
.intro-grid{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.intro-grid h2{
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
}
.intro-grid h2 em{ color: var(--azzurro-deep); font-weight: 400; }
.intro-text p{
  font-size: 17px;
  color: var(--grigio);
  margin-bottom: 22px;
}
.intro-text p:first-of-type::first-letter{
  font-family: var(--display);
  font-size: 64px;
  float: left;
  line-height: 0.9;
  margin: 8px 12px 0 0;
  color: var(--azzurro-deep);
  font-weight: 400;
}
.intro-stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(31,58,77,.12);
}
.stat-num{
  font-family: var(--display);
  font-size: 44px;
  color: var(--azzurro-ink);
  font-weight: 400;
  line-height: 1;
}
.stat-label{
  font-size: 13px;
  color: var(--grigio);
  margin-top: 8px;
  letter-spacing: 0.02em;
}
@media (max-width: 900px){
  .intro-grid{ grid-template-columns: 1fr; gap: 40px; }
  .intro-stats{ grid-template-columns: repeat(2, 1fr); }
}

/* STOREFRONT (foto vere del negozio) — slideshow automatico */
.storefront-section{ padding-top: 0; }
.storefront-viewport{
  overflow: hidden;
  padding: 4px 4px 24px;
  margin: 0 -4px;
}
.storefront-track{
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform 1.1s cubic-bezier(.65,0,.35,1);
}
.storefront-track.no-transition{ transition: none; }
.storefront-photo{
  position: relative;
  flex: 0 0 calc(25% - 18px);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--ombra-card);
  aspect-ratio: 9 / 16;
  background: var(--azzurro-luce);
}
.storefront-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.storefront-caption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 18px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(31,58,77,.8) 100%);
  color: var(--bianco);
}
.storefront-caption .eyebrow{ color: var(--azzurro-soft); font-size: 11px; }
.storefront-caption p{
  font-size: 13px;
  margin-top: 6px;
  color: var(--bianco);
  opacity: .92;
}
@media (max-width: 900px){
  .storefront-photo{ flex-basis: calc(50% - 12px); }
}
@media (max-width: 600px){
  .storefront-viewport{ padding: 4px 4px 20px; }
  .storefront-track{ gap: 14px; }
  .storefront-photo{ flex-basis: 82%; }
}
@media (prefers-reduced-motion: reduce){
  .storefront-track{ transition: none; }
}

/* PILLARS */
.pillars-section{
  background:
    radial-gradient(ellipse 800px 500px at 80% 100%, var(--rosa-soft) 0%, transparent 60%),
    linear-gradient(180deg, var(--azzurro-luce) 0%, var(--azzurro-aria) 100%);
}
.section-header{
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}
.section-header h2{
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  margin-top: 18px;
}
.section-header h2 em{ color: var(--azzurro-deep); font-weight: 400; }
.section-header .lead{
  margin-top: 22px;
  color: var(--grigio);
  font-size: 17px;
}
.pillars{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar{
  background: var(--bianco);
  padding: 36px 28px 30px;
  border-radius: var(--r-md);
  border: 1px solid rgba(31,58,77,.06);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}
.pillar:nth-child(2n){ background: var(--azzurro-luce); }
.pillar::before{
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: var(--rosa-soft);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .4s, transform .6s ease;
}
.pillar:hover{
  transform: translateY(-8px);
  box-shadow: var(--ombra-card);
}
.pillar:hover::before{ opacity: .6; transform: scale(1.4); }
.pillar-icon{
  width: 48px; height: 48px;
  background: var(--azzurro-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 14px -4px rgba(74,136,173,.4);
}
.pillar h3{
  font-size: 22px;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.pillar p{
  font-size: 15px;
  color: var(--grigio);
  position: relative; z-index: 1;
}
.pillar{ display: block; }
.pillar-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--azzurro-deep);
  position: relative;
  z-index: 1;
}
.pillar-link .arrow{ transition: transform .3s ease; }
.pillar:hover .pillar-link .arrow{ transform: translateX(4px); }
@media (max-width: 980px){ .pillars{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px){ .pillars{ grid-template-columns: 1fr; } }

/* QUOTE */
.quote-section{
  background: linear-gradient(135deg, var(--azzurro-ink) 0%, var(--azzurro-deep) 100%);
  color: var(--bianco);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before{
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 65%);
  pointer-events: none;
}
.quote-section::after{
  content: "";
  position: absolute;
  bottom: -150px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(239,197,188,.25) 0%, transparent 70%);
  pointer-events: none;
}
.quote{
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.quote-mark{
  font-family: var(--display);
  font-size: 120px;
  color: var(--azzurro-soft);
  line-height: 0;
  margin-bottom: 30px;
}
.quote p{
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--bianco);
}
.quote .signature{
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--azzurro-soft);
  margin-top: 40px;
  font-style: normal;
}

/* BRANDS */
.brands-section{
  background: linear-gradient(180deg, var(--azzurro-aria) 0%, var(--azzurro-luce) 100%);
}
.brands-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(31,58,77,.1);
  background: var(--bianco);
  border-radius: var(--r-md);
  overflow: hidden;
}
.brand-cell{
  padding: 50px 30px;
  text-align: center;
  border-right: 1px solid rgba(31,58,77,.08);
  border-bottom: 1px solid rgba(31,58,77,.08);
  transition: all .35s ease;
  cursor: default;
}
.brand-cell:nth-child(4n){ border-right: none; }
.brand-cell:nth-last-child(-n+4){ border-bottom: none; }
.brand-cell:hover{
  background: var(--azzurro-luce);
  transform: scale(1.03);
}
.brand-name{
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  color: var(--azzurro-ink);
  letter-spacing: -0.01em;
}
.brand-tag{
  display: block;
  font-family: var(--body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--grigio-soft);
  margin-top: 8px;
}
@media (max-width: 900px){
  .brands-grid{ grid-template-columns: repeat(2, 1fr); }
  .brand-cell{ border-right: 1px solid rgba(31,58,77,.08); }
  .brand-cell:nth-child(2n){ border-right: none; }
  .brand-cell:nth-last-child(-n+4){ border-bottom: 1px solid rgba(31,58,77,.08); }
  .brand-cell:nth-last-child(-n+2){ border-bottom: none; }
  .brand-cell{ padding: 36px 16px; }
  .brand-name{ font-size: 22px; }
}

/* CTA FINALE HOME */
.cta-section{
  padding: 130px 0;
  background:
    radial-gradient(ellipse 700px 500px at 30% 40%, var(--rosa-soft) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 80% 70%, var(--azzurro-soft) 0%, transparent 60%),
    radial-gradient(ellipse 500px 400px at 50% 100%, var(--salvia-soft) 0%, transparent 65%),
    var(--azzurro-aria);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section h2{
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  margin-bottom: 28px;
}
.cta-section h2 em{ color: var(--azzurro-deep); font-weight: 400; }
.cta-section .lead{
  font-size: 18px; color: var(--grigio);
  max-width: 560px; margin: 0 auto 44px;
}

/* ===================== RECENSIONI GOOGLE ===================== */
.reviews-section{
  padding: 110px 0 130px;
  background: var(--bianco);
}
.reviews-section .wrap > .eyebrow,
.reviews-section .wrap > h2{
  text-align: center;
}
.reviews-section .wrap > .eyebrow{ justify-content: center; display: flex; }
.reviews-section h2{
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 300;
  text-align: center;
  margin: 10px auto 20px;
}
.reviews-section h2 em{ color: var(--azzurro-deep); font-weight: 400; font-style: italic; }

.reviews-summary{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 52px;
  flex-wrap: wrap;
}
.reviews-summary .stars{ display: inline-flex; gap: 2px; }
.reviews-summary .stars svg{ width: 20px; height: 20px; }
.reviews-summary .score{
  font-family: var(--display);
  font-size: 22px;
  color: var(--inchiostro);
}
.reviews-summary .count{
  font-size: 14px;
  color: var(--grigio);
}

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card{
  background: var(--azzurro-aria);
  border: 1px solid rgba(46,100,137,.08);
  border-radius: var(--r-md);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease;
}
.review-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--ombra-card);
}
.review-card .review-head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-card .review-avatar{
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--azzurro-soft);
  flex-shrink: 0;
}
.review-card .review-avatar-fallback{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--azzurro-medio);
  color: var(--bianco);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 17px;
  flex-shrink: 0;
}
.review-card .review-author{
  font-size: 15px;
  color: var(--inchiostro);
  font-weight: 600;
  line-height: 1.3;
}
.review-card .review-time{
  font-size: 12px;
  color: var(--grigio-soft);
}
.review-card .stars svg{ width: 15px; height: 15px; }
.review-card .review-stars{ margin-bottom: 10px; display: inline-flex; gap: 2px; }
.review-card .review-text{
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--testo);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews-empty{
  text-align: center;
  color: var(--grigio);
  font-size: 15px;
  padding: 30px 0 10px;
}

.reviews-footer{
  display: flex;
  justify-content: center;
  margin-top: 46px;
}
.reviews-google-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(46,100,137,.14);
  background: var(--bianco);
  color: var(--testo);
  font-size: 14px;
  text-decoration: none;
  transition: box-shadow .3s ease, transform .3s ease;
}
.reviews-google-badge:hover{
  box-shadow: var(--ombra-luce);
  transform: translateY(-2px);
}
.reviews-google-badge svg{ width: 18px; height: 18px; }

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

/* ===================== SERVIZI ===================== */
.page-header{
  padding: 80px 0 60px;
  text-align: center;
  background:
    radial-gradient(ellipse 700px 400px at 70% 20%, var(--azzurro-soft) 0%, transparent 60%),
    radial-gradient(ellipse 500px 400px at 20% 80%, var(--rosa-soft) 0%, transparent 65%),
    linear-gradient(180deg, var(--azzurro-luce) 0%, var(--azzurro-aria) 100%);
}
.page-header h1{
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 300;
  margin-top: 20px;
}
.page-header h1 em{ color: var(--azzurro-deep); font-weight: 400; }
.page-header .lead{
  margin-top: 24px;
  color: var(--grigio);
  font-size: 18px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.services-list{ padding: 60px 0 100px; }
.service{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(31,58,77,.1);
}
.service:nth-child(even) .service-visual{ order: -1; }
.service-num{
  font-family: var(--display);
  font-size: 18px;
  color: var(--azzurro-deep);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 12px;
}
.service-num::after{
  content: ""; width: 60px; height: 1px; background: currentColor;
}
.service h2{
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  margin-bottom: 22px;
}
.service h2 em{ color: var(--azzurro-deep); font-weight: 400; }
.service p{
  font-size: 17px;
  color: var(--grigio);
  margin-bottom: 18px;
}
.service ul{
  list-style: none;
  margin-top: 28px;
  padding: 0;
}
.service ul li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--inchiostro);
}
.service ul li::before{
  content: "❋";
  position: absolute;
  left: 0;
  color: var(--azzurro-deep);
}
.service-visual{
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  background: var(--azzurro-luce);
  display: grid; place-items: center;
}
.service-visual.var-1{ background: linear-gradient(135deg, var(--azzurro-soft) 0%, var(--rosa-soft) 100%); }
.service-visual.var-2{ background: linear-gradient(135deg, var(--rosa-soft) 0%, var(--azzurro-luce) 100%); }
.service-visual.var-3{ background: linear-gradient(135deg, var(--crema) 0%, var(--azzurro-soft) 100%); }
.service-visual svg{ width: 65%; max-width: 260px; }

@media (max-width: 900px){
  .service{ grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .service:nth-child(even) .service-visual{ order: 0; }
}

/* ===================== TISANE ===================== */
.tisane-hero{
  padding: 60px 0 40px;
  text-align: center;
  background:
    radial-gradient(ellipse 600px 400px at 20% 30%, var(--salvia-soft) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 80% 70%, var(--rosa-soft) 0%, transparent 65%),
    linear-gradient(180deg, var(--azzurro-luce) 0%, var(--azzurro-aria) 100%);
  position: relative;
  overflow: hidden;
}
.tisane-hero h1{
  font-size: clamp(50px, 8vw, 110px);
  font-weight: 300;
  font-style: italic;
}
.tisane-hero h1 em{
  font-style: normal;
  font-weight: 400;
  color: var(--azzurro-deep);
}

.tisane-story{
  padding: 80px 0 100px;
  max-width: 820px;
  margin: 0 auto;
}
.tisane-story .chapter{
  margin-bottom: 90px;
  position: relative;
}
.chapter-num{
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--azzurro-deep);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.chapter h3{
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 26px;
  color: var(--azzurro-ink);
}
.chapter p{
  font-size: 17px;
  color: var(--inchiostro);
  margin-bottom: 18px;
  line-height: 1.75;
}
.chapter:first-of-type p:first-of-type::first-letter{
  font-family: var(--display);
  font-size: 80px;
  float: left;
  line-height: 0.85;
  margin: 4px 14px -2px 0;
  color: var(--azzurro-deep);
  font-weight: 400;
  font-style: italic;
}
.tisane-divider{
  text-align: center;
  margin: 60px 0;
  font-size: 16px;
  letter-spacing: 0.6em;
  color: var(--azzurro);
}

.herbs-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 60px 0;
}
.herb{
  background: var(--bianco);
  padding: 22px 20px 26px;
  border-radius: var(--r-md);
  text-align: center;
  border: 1px solid rgba(31,58,77,.06);
  transition: all .35s;
  cursor: pointer;
}
.herb:hover{
  background: var(--azzurro-luce);
  transform: translateY(-4px);
  box-shadow: var(--ombra-luce);
}
.herb-thumb{
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--azzurro-luce);
}
.herb-thumb img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.herb-name{
  font-family: var(--display);
  font-size: 19px;
  font-style: italic;
  color: var(--azzurro-ink);
  margin-bottom: 6px;
}
.herb-action{
  font-size: 12px;
  color: var(--grigio);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 700px){ .herbs-grid{ grid-template-columns: repeat(2, 1fr); } }

/* ===================== CONTATTI ===================== */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 0 100px;
}
.contact-info{
  background: linear-gradient(160deg, var(--azzurro-ink) 0%, var(--azzurro-deep) 100%);
  color: var(--bianco);
  padding: 60px 50px;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.contact-info::before{
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,.18) 0%, transparent 70%);
  opacity: .8;
}
.contact-info::after{
  content: "";
  position: absolute;
  bottom: -120px; left: -80px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(239,197,188,.3) 0%, transparent 70%);
  pointer-events: none;
}
.contact-info h2{
  color: var(--bianco);
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 20px;
  position: relative;
}
.contact-info h2 em{ color: var(--azzurro-soft); font-weight: 400; }
.contact-info > p{
  color: var(--azzurro-soft);
  margin-bottom: 50px;
  position: relative;
}

.contact-item{
  display: flex; gap: 22px;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.18);
  position: relative;
}
.contact-item:last-child{ border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-icon{
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-label{
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--azzurro-soft);
  margin-bottom: 4px;
}
.contact-value{
  font-family: var(--display);
  font-size: 20px;
  color: var(--bianco);
  font-weight: 400;
}
.contact-value a:hover{ color: var(--rosa-soft); }

.contact-details{
  padding: 30px 10px;
}
.contact-details h3{
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 16px;
}
.contact-details h3 em{ color: var(--azzurro-deep); font-weight: 400; }
.contact-details p{
  color: var(--grigio);
  margin-bottom: 14px;
  font-size: 16px;
}
.hours{
  margin-top: 36px;
  padding: 28px 0;
  border-top: 1px solid rgba(31,58,77,.1);
  border-bottom: 1px solid rgba(31,58,77,.1);
}
.hours h4{
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azzurro-deep);
  margin-bottom: 18px;
}
.hours-row{
  display: flex; justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 15px;
  gap: 20px;
}
.hours-row span:first-child{ color: var(--inchiostro); white-space: nowrap; }
.hours-row .time-stack{
  font-family: var(--display);
  color: var(--grigio);
  text-align: right;
  line-height: 1.5;
}
.hours-row .time-stack .closed-tag{
  display: inline-block;
  font-family: var(--body);
  font-size: 12px;
  color: var(--rosa);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-style: normal;
}

.address-block{
  margin-top: 30px;
  padding: 26px;
  background: var(--azzurro-luce);
  border-radius: var(--r-md);
}
.address-block h4{
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azzurro-deep);
  margin-bottom: 12px;
}
.address-block p{
  font-family: var(--display);
  font-size: 18px;
  color: var(--azzurro-ink);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; gap: 30px; }
  .contact-info{ padding: 50px 32px; }
  .contact-details{ padding: 10px 0; }
}

/* ===================== SCRIVICI (FORM) ===================== */
.form-page{ padding: 60px 0 120px; }
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.form-intro h2{
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  margin-bottom: 22px;
}
.form-intro h2 em{ color: var(--azzurro-deep); font-weight: 400; }
.form-intro p{
  color: var(--grigio); font-size: 17px; margin-bottom: 22px;
}
.form-perks{ list-style: none; margin-top: 30px; padding: 0; }
.form-perks li{
  position: relative; padding-left: 30px;
  margin-bottom: 14px;
  font-size: 15px;
}
.form-perks li::before{
  content: "→";
  position: absolute; left: 0;
  color: var(--azzurro-deep);
  font-family: var(--display);
}

.contact-form{
  background: var(--bianco);
  padding: 50px 44px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(31,58,77,.08);
  box-shadow: var(--ombra-card);
}
.field{ margin-bottom: 26px; position: relative; }
.field label{
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--azzurro-deep);
  margin-bottom: 10px;
  font-weight: 600;
}
.field input,
.field textarea{
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid rgba(31,58,77,.15);
  background: transparent;
  font-family: var(--body);
  font-size: 16px;
  color: var(--inchiostro);
  transition: border-color .3s;
  outline: none;
}
.field input:focus,
.field textarea:focus{
  border-bottom-color: var(--azzurro-deep);
}
.field textarea{
  resize: vertical;
  min-height: 130px;
  padding: 14px 0;
  line-height: 1.6;
}
.field input::placeholder,
.field textarea::placeholder{
  color: var(--grigio-soft);
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.form-submit{
  margin-top: 14px;
  width: 100%;
  padding: 18px;
  background: var(--azzurro-deep);
  color: var(--bianco);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all .35s;
  box-shadow: 0 6px 16px -6px rgba(74,136,173,.5);
}
.form-submit:hover{
  background: var(--azzurro-ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px var(--azzurro-deep);
}
.form-privacy{
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--grigio);
  line-height: 1.5;
}
.form-privacy input{ margin-top: 4px; flex-shrink: 0; }
.form-privacy a{
  color: var(--azzurro-deep);
  text-decoration: underline;
}

.form-success{
  background: var(--azzurro-luce);
  padding: 24px;
  border-radius: var(--r-md);
  margin-bottom: 24px;
  display: none;
  border-left: 3px solid var(--azzurro-deep);
}
.form-success.visible{ display: block; }
.form-success p{
  font-size: 15px;
  color: var(--azzurro-ink);
}
.form-success p strong{
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
}

@media (max-width: 900px){
  .form-grid{ grid-template-columns: 1fr; gap: 40px; }
  .contact-form{ padding: 36px 26px; }
  .form-row{ grid-template-columns: 1fr; gap: 0; }
}

/* ===================== PRIVACY ===================== */
.privacy-page{
  padding: 60px 0 120px;
  max-width: 820px;
  margin: 0 auto;
}
.privacy-page h2{
  font-size: 26px;
  font-weight: 400;
  margin: 50px 0 18px;
  color: var(--azzurro-ink);
}
.privacy-page p{
  font-size: 16px;
  color: var(--grigio);
  margin-bottom: 14px;
  line-height: 1.7;
}
.privacy-page ul{ margin: 14px 0 14px 24px; }
.privacy-page ul li{
  font-size: 15px;
  color: var(--grigio);
  margin-bottom: 8px;
}

/* ===================== INSTAGRAM ===================== */
.ig-hero{
  padding: 60px 0 50px;
  background:
    radial-gradient(ellipse 700px 400px at 80% 30%, var(--rosa-soft) 0%, transparent 65%),
    radial-gradient(ellipse 600px 400px at 20% 70%, var(--azzurro-soft) 0%, transparent 60%),
    linear-gradient(180deg, var(--azzurro-luce) 0%, var(--azzurro-aria) 100%);
  position: relative;
  overflow: hidden;
}
.ig-hero-inner{
  text-align: center;
  position: relative;
}
.ig-hero h1{
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  margin-top: 18px;
}
.ig-hero h1 em{ color: var(--azzurro-deep); font-weight: 400; }

/* Profile card */
.ig-profile-card{
  max-width: 880px;
  margin: 60px auto 0;
  background: var(--bianco);
  border-radius: var(--r-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: center;
  box-shadow: var(--ombra-card);
  border: 1px solid rgba(46,100,137,.08);
  position: relative;
  overflow: hidden;
}
.ig-profile-card::before{
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--rosa-soft) 0%, transparent 70%);
  pointer-events: none;
}
.ig-avatar-wrap{
  position: relative;
  width: 140px; height: 140px;
  flex-shrink: 0;
}
.ig-avatar-ring{
  position: absolute; inset: -5px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--azzurro-deep) 0%,
    var(--rosa) 30%,
    var(--salvia) 60%,
    var(--azzurro-medio) 90%,
    var(--azzurro-deep) 100%
  );
  animation: rotate 12s linear infinite;
}
@keyframes rotate{ to { transform: rotate(360deg); } }
.ig-avatar{
  position: absolute; inset: 0;
  width: 140px; height: 140px;
  background: var(--bianco);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 2;
  padding: 6px;
}
.ig-avatar-inner{
  width: 100%; height: 100%;
  border-radius: 50%;
  display: grid; place-items: center;
}

.ig-profile-info{
  position: relative;
  z-index: 1;
}
.ig-handle{
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--azzurro-ink);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ig-verified{
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  background: var(--azzurro-deep);
  color: white;
  border-radius: 50%;
  font-size: 12px;
}
.ig-name{
  font-size: 16px;
  color: var(--testo);
  font-weight: 600;
  margin-bottom: 18px;
}
.ig-bio-line{
  font-size: 15px;
  color: var(--testo);
  margin-bottom: 6px;
  line-height: 1.55;
}
.ig-bio-line .label-emoji{
  display: inline-block;
  width: 22px;
  color: var(--azzurro-deep);
  font-family: var(--display);
  font-style: italic;
}
.ig-cta-row{
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ig-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(135deg, #4A88AD 0%, #2E6489 100%);
  color: white;
  transition: all .35s;
  box-shadow: 0 8px 20px -6px rgba(74,136,173,.5);
}
.ig-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -8px rgba(46,100,137,.6);
}
.ig-btn-secondary{
  background: transparent;
  color: var(--azzurro-deep);
  border: 1px solid var(--azzurro-deep);
  box-shadow: none;
}
.ig-btn-secondary:hover{
  background: var(--azzurro-luce);
  transform: translateY(-3px);
}

@media (max-width: 700px){
  .ig-profile-card{
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
    gap: 24px;
  }
  .ig-avatar-wrap{ margin: 0 auto; }
  .ig-handle{ justify-content: center; word-break: break-word; }
  .ig-cta-row{ justify-content: center; }
  .ig-profile-card::before{
    width: 180px; height: 180px;
    top: -60px; right: -60px;
  }
}

@media (max-width: 540px){
  .ig-hero{ padding: 40px 0 30px; }
  .ig-hero h1{ font-size: clamp(36px, 9vw, 50px); }

  .ig-profile-card{
    padding: 32px 20px;
    margin-top: 40px;
    gap: 20px;
    border-radius: var(--r-md);
  }
  .ig-avatar-wrap{
    width: 110px; height: 110px;
  }
  .ig-avatar{
    width: 110px; height: 110px;
  }
  .ig-avatar .ig-avatar-inner svg{
    width: 48px; height: 48px;
  }
  .ig-handle{
    font-size: 19px;
    gap: 8px;
    line-height: 1.25;
  }
  .ig-verified{ width: 18px; height: 18px; }
  .ig-name{ font-size: 14px; margin-bottom: 14px; }
  .ig-bio-line{
    font-size: 14px;
    padding: 0 4px;
  }
  .ig-bio-line .label-emoji{
    width: auto;
    margin-right: 6px;
  }
  .ig-cta-row{
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  .ig-cta-row .ig-btn{
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 13px;
  }

  .ig-feed-section{ padding: 50px 0 70px; }
  .ig-feed-header{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 30px;
  }
  .ig-feed-header h2{ font-size: 32px; }

  .ig-cta-banner{
    margin-top: 50px;
    padding: 50px 24px;
    border-radius: var(--r-md);
  }
  .ig-cta-banner h3{ font-size: 28px; }
  .ig-cta-banner p{ font-size: 15px; }
  .ig-cta-banner .ig-btn{
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 400px){
  .ig-profile-card{
    padding: 28px 16px;
  }
  .ig-handle{ font-size: 17px; }
  .ig-avatar-wrap, .ig-avatar{ width: 96px; height: 96px; }
  .ig-bio-line{ font-size: 13.5px; }
}

/* Section heading per griglia */
.ig-feed-section{
  padding: 80px 0 100px;
}
.ig-feed-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.ig-feed-header h2{
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
}
.ig-feed-header h2 em{ color: var(--azzurro-deep); font-weight: 400; font-style: italic; }
.ig-feed-tag{
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grigio);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ig-feed-tag::before{
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--salvia);
  box-shadow: 0 0 0 4px rgba(162,184,145,.25);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse{
  0%, 100%{ box-shadow: 0 0 0 4px rgba(162,184,145,.25); }
  50%{ box-shadow: 0 0 0 8px rgba(162,184,145,.05); }
}

/* GRIGLIA IG */
.ig-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.ig-post{
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .4s ease;
}
.ig-post:hover{ transform: scale(.98); }

/* Sfondi gradient per le card */
.ig-post.bg-1{ background: linear-gradient(135deg, #C9DEEC 0%, #9CC2DA 100%); }
.ig-post.bg-2{ background: linear-gradient(135deg, #F8DED7 0%, #EFC5BC 100%); }
.ig-post.bg-3{ background: linear-gradient(135deg, #D5DFC8 0%, #A2B891 100%); }
.ig-post.bg-4{ background: linear-gradient(135deg, #2E6489 0%, #4A88AD 100%); }
.ig-post.bg-5{ background: linear-gradient(135deg, #FDF1ED 0%, #F8DED7 100%); }
.ig-post.bg-6{ background: linear-gradient(135deg, #E4EFF7 0%, #C9DEEC 100%); }
.ig-post.bg-7{ background: linear-gradient(135deg, #EEF2E8 0%, #D5DFC8 100%); }
.ig-post.bg-8{ background: linear-gradient(135deg, #C9DEEC 0%, #F8DED7 100%); }
.ig-post.bg-9{ background: linear-gradient(135deg, #4A88AD 0%, #6FA8C8 100%); }

.ig-post-content{
  text-align: center;
  padding: 24px;
  position: relative;
  z-index: 2;
}
.ig-post-content svg{
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  opacity: .9;
}
.ig-post-label{
  font-family: var(--display);
  font-size: clamp(13px, 1.6vw, 17px);
  font-style: italic;
  font-weight: 400;
  color: var(--inchiostro);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.ig-post.bg-4 .ig-post-label,
.ig-post.bg-9 .ig-post-label{ color: white; }
.ig-post.bg-4 svg path,
.ig-post.bg-4 svg circle,
.ig-post.bg-4 svg rect,
.ig-post.bg-9 svg path,
.ig-post.bg-9 svg circle,
.ig-post.bg-9 svg rect{ stroke: white; }

/* Overlay hover */
.ig-post-overlay{
  position: absolute; inset: 0;
  background: rgba(46,100,137,.92);
  display: grid; place-items: center;
  color: white;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 3;
}
.ig-post:hover .ig-post-overlay{ opacity: 1; }
.ig-post-overlay svg{ width: 32px; height: 32px; }
.ig-post-overlay .ig-hover-label{
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  margin-top: 10px;
}

@media (max-width: 540px){
  .ig-grid{ gap: 4px; }
  .ig-post-content svg{ width: 38px; height: 38px; margin-bottom: 8px; }
  .ig-post-label{ font-size: 11px; }
}

/* Stato widget reale - quando Behold.so o altro è attivo */
.ig-real-feed{
  display: none;
}
.ig-real-feed.active{ display: block; }
.ig-real-feed.active ~ .ig-fallback-feed{ display: none; }

/* === GRIGLIA POST REALI (da instagram.json) ===
   Stessa impaginazione del profilo Instagram: 3 colonne di quadrati con
   pochissimo gutter. Le foto restano 3 colonne anche su mobile, come
   nell'app — è quello che rende la sezione riconoscibile a colpo d'occhio. */
.ig-real-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.ig-tile{
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--azzurro-luce);
  border-radius: 3px;
  isolation: isolate;
}
.ig-tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.ig-tile:hover img{ transform: scale(1.06); }

/* Badge d'angolo: carosello / reel */
.ig-tile-badge{
  position: absolute;
  top: 10px; right: 10px;
  width: 20px; height: 20px;
  color: #fff;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.5));
}
.ig-tile-badge svg{ width: 100%; height: 100%; display: block; }

/* Overlay con caption e data */
.ig-tile-overlay{
  position: absolute; inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 16px;
  background: linear-gradient(to top, rgba(31,58,77,.88) 0%, rgba(31,58,77,.45) 45%, rgba(31,58,77,0) 100%);
  color: #fff;
  opacity: 0;
  transition: opacity .35s ease;
}
.ig-tile:hover .ig-tile-overlay,
.ig-tile:focus-visible .ig-tile-overlay{ opacity: 1; }
.ig-tile:focus-visible{
  outline: 2px solid var(--azzurro-deep);
  outline-offset: 2px;
}
.ig-tile-caption{
  font-size: 13px;
  line-height: 1.45;
  /* La caption viene già accorciata dall'agente, ma i post lunghi esistono:
     tagliamo a 4 righe così l'overlay non deborda mai dal quadrato. */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ig-tile-date{
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
}

/* Su touch il :hover non esiste: mostriamo solo un velo in basso, così la
   data resta leggibile senza coprire la foto. */
@media (hover: none){
  .ig-tile-overlay{
    opacity: 1;
    background: linear-gradient(to top, rgba(31,58,77,.75) 0%, rgba(31,58,77,0) 55%);
    padding: 10px;
  }
  .ig-tile-caption{ display: none; }
}

@media (max-width: 640px){
  .ig-real-grid{ gap: 3px; }
  .ig-tile-badge{ width: 15px; height: 15px; top: 7px; right: 7px; }
  .ig-tile-date{ font-size: 9.5px; letter-spacing: .05em; }
}

@media (prefers-reduced-motion: reduce){
  .ig-tile img{ transition: none; }
  .ig-tile:hover img{ transform: none; }
}

/* CTA Banda finale */
.ig-cta-banner{
  margin-top: 80px;
  padding: 70px 40px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse 600px 400px at 80% 30%, var(--rosa-soft) 0%, transparent 65%),
    radial-gradient(ellipse 500px 400px at 20% 70%, var(--salvia-soft) 0%, transparent 65%),
    linear-gradient(135deg, var(--azzurro-luce) 0%, var(--azzurro-aria) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ig-cta-banner h3{
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  margin-bottom: 14px;
}
.ig-cta-banner h3 em{ color: var(--azzurro-deep); font-weight: 400; }
.ig-cta-banner p{
  color: var(--grigio);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 30px;
}

/* ===================== BLOG ===================== */

/* HERO BLOG */
.blog-header{
  padding: 60px 0 50px;
  text-align: center;
  background:
    radial-gradient(ellipse 800px 500px at 70% 20%, var(--azzurro-soft) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 20% 80%, var(--salvia-soft) 0%, transparent 65%),
    radial-gradient(ellipse 500px 400px at 90% 90%, var(--rosa-soft) 0%, transparent 65%),
    linear-gradient(180deg, var(--azzurro-luce) 0%, var(--azzurro-aria) 100%);
  position: relative;
  overflow: hidden;
}
.blog-header h1{
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 300;
  margin-top: 18px;
}
.blog-header h1 em{ color: var(--azzurro-deep); font-weight: 400; }
.blog-header .lead{
  margin-top: 24px;
  color: var(--grigio);
  font-size: 18px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* Indicator auto-aggiornamento */
.blog-live-tag{
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 30px;
  padding: 8px 18px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(46,100,137,.12);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--azzurro-ink);
  font-weight: 600;
}
.blog-live-tag::before{
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--salvia);
  box-shadow: 0 0 0 4px rgba(162,184,145,.3);
  animation: pulse 2.5s ease-in-out infinite;
}

/* FILTRI CATEGORIA */
.blog-filters{
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}
.blog-filter{
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--bianco);
  color: var(--testo);
  border: 1px solid rgba(46,100,137,.12);
  cursor: pointer;
  transition: all .3s ease;
}
.blog-filter:hover{
  border-color: var(--azzurro-deep);
  color: var(--azzurro-deep);
  transform: translateY(-2px);
}
.blog-filter.active{
  background: var(--azzurro-deep);
  color: var(--bianco);
  border-color: var(--azzurro-deep);
  box-shadow: 0 6px 14px -4px rgba(74,136,173,.4);
}

/* FEATURED ARTICLE */
.blog-featured{
  padding: 70px 0 30px;
}
.featured-article{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bianco);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--ombra-card);
  border: 1px solid rgba(46,100,137,.06);
  cursor: pointer;
  transition: all .4s ease;
}
.featured-article:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 80px -20px rgba(31,58,77,.25);
}
.featured-img{
  aspect-ratio: 4/3;
  background: var(--azzurro-luce);
  position: relative;
  overflow: hidden;
}
.featured-img img,
.blog-card-img img,
.article-hero-img img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.featured-content{
  padding: 50px 50px 50px 0;
}
.featured-content .blog-tag{
  margin-bottom: 18px;
}
.featured-content h2{
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 300;
  margin-bottom: 22px;
  line-height: 1.15;
}
.featured-content h2 em{
  color: var(--azzurro-deep);
  font-style: italic;
  font-weight: 400;
}
.featured-content .excerpt{
  color: var(--grigio);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.featured-meta{
  display: flex; align-items: center; gap: 18px;
  color: var(--grigio);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.featured-meta .dot{
  width: 4px; height: 4px;
  background: var(--azzurro-medio);
  border-radius: 50%;
}

@media (max-width: 900px){
  .featured-article{ grid-template-columns: 1fr; gap: 0; }
  .featured-content{ padding: 40px; }
}
@media (max-width: 540px){
  .featured-content{ padding: 28px 22px 32px; }
}

/* BLOG TAG (categoria pill) */
.blog-tag{
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--azzurro-luce);
  color: var(--azzurro-deep);
}
.blog-tag.cat-omeopatia{ background: var(--rosa-soft); color: #B25849; }
.blog-tag.cat-naturopatia{ background: var(--salvia-soft); color: #5F764B; }
.blog-tag.cat-cura-del-corpo{ background: var(--azzurro-soft); color: var(--azzurro-ink); }
.blog-tag.cat-erboristeria{ background: #E4EFE0; color: #5F764B; }

/* GRIGLIA ARTICOLI */
.blog-grid-section{
  padding: 30px 0 100px;
}
.blog-grid-header{
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 14px;
}
.blog-grid-header h3{
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
}
.blog-grid-header h3 em{ color: var(--azzurro-deep); font-style: normal; }
.blog-grid-counter{
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--grigio);
}

.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card{
  background: var(--bianco);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(46,100,137,.06);
  cursor: pointer;
  transition: all .4s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--ombra-card);
}
.blog-card-img{
  aspect-ratio: 16/10;
  background: var(--azzurro-luce);
  overflow: hidden;
  position: relative;
}
.blog-card:hover .blog-card-img img{
  transform: scale(1.05);
}
.blog-card-img img{
  transition: transform .6s ease;
}
.blog-card-body{
  padding: 26px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-body .blog-tag{
  align-self: flex-start;
  margin-bottom: 16px;
}
.blog-card-body h4{
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.2;
  color: var(--azzurro-ink);
}
.blog-card-body h4 em{ color: var(--azzurro-deep); font-style: italic; font-weight: 400; }
.blog-card-body p{
  font-size: 15px;
  color: var(--grigio);
  line-height: 1.6;
  margin-bottom: 22px;
  flex: 1;
}
.blog-card-meta{
  display: flex; align-items: center; gap: 12px;
  font-size: 12px;
  color: var(--grigio);
  letter-spacing: 0.05em;
  padding-top: 18px;
  border-top: 1px solid rgba(46,100,137,.08);
}
.blog-card-meta .read-more{
  margin-left: auto;
  color: var(--azzurro-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .3s;
}
.blog-card:hover .blog-card-meta .read-more{ gap: 8px; }

@media (max-width: 1000px){ .blog-grid{ grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 600px){ .blog-grid{ grid-template-columns: 1fr; gap: 20px; } }

/* STATO VUOTO */
.blog-empty,
.blog-loading,
.blog-error{
  text-align: center;
  padding: 80px 20px;
  color: var(--grigio);
}
.blog-empty p,
.blog-loading p,
.blog-error p{
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
}
.blog-loading{ display: none; }
.blog-loading.visible{ display: block; }
.blog-loading .spinner{
  width: 36px; height: 36px;
  border: 2px solid var(--azzurro-soft);
  border-top-color: var(--azzurro-deep);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}
@keyframes spin{ to { transform: rotate(360deg); } }

/* ============== SINGOLO ARTICOLO ============== */
.single-article{
  background: var(--azzurro-aria);
}
.article-hero{
  position: relative;
  padding-bottom: 60px;
  background:
    radial-gradient(ellipse 700px 400px at 80% 30%, var(--azzurro-soft) 0%, transparent 65%),
    linear-gradient(180deg, var(--azzurro-luce) 0%, var(--azzurro-aria) 100%);
  overflow: hidden;
}
.article-back{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 60px 0 30px;
  font-size: 13px;
  color: var(--azzurro-deep);
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: gap .3s;
  cursor: pointer;
}
.article-back:hover{ gap: 14px; }
.article-back::before{
  content: "←";
  font-family: var(--display);
  font-size: 20px;
}

.article-meta-row{
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--grigio);
  letter-spacing: 0.04em;
}
.article-meta-row .dot{
  width: 4px; height: 4px;
  background: var(--azzurro-medio);
  border-radius: 50%;
}

.article-title{
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 30px;
  max-width: 880px;
}
.article-title em{
  color: var(--azzurro-deep);
  font-style: italic;
  font-weight: 400;
}

.article-hero-img{
  margin-top: 50px;
  aspect-ratio: 21/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--azzurro-luce);
  box-shadow: 0 30px 80px -20px rgba(31,58,77,.25);
}

/* CONTENUTO ARTICOLO */
.article-content{
  padding: 80px 0 40px;
  max-width: 760px;
  margin: 0 auto;
}
.article-content .excerpt-lead{
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  font-weight: 300;
  font-style: italic;
  color: var(--azzurro-ink);
  padding: 30px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(46,100,137,.12);
}
.article-content h2{
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 400;
  margin: 50px 0 22px;
  line-height: 1.2;
}
.article-content h3{
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  margin: 36px 0 16px;
  color: var(--azzurro-ink);
}
.article-content p{
  font-size: 17px;
  line-height: 1.8;
  color: var(--testo);
  margin-bottom: 22px;
}
.article-content p:first-of-type:not(.excerpt-lead)::first-letter{
  font-family: var(--display);
  font-size: 68px;
  float: left;
  line-height: 0.9;
  margin: 8px 14px 0 0;
  color: var(--azzurro-deep);
  font-weight: 400;
  font-style: italic;
}
.article-content ul,
.article-content ol{
  margin: 22px 0 22px 18px;
  padding-left: 8px;
}
.article-content ul li,
.article-content ol li{
  font-size: 16px;
  color: var(--testo);
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 8px;
}
.article-content ul li::marker{ color: var(--azzurro-deep); }
.article-content blockquote{
  margin: 36px 0;
  padding: 26px 30px;
  border-left: 3px solid var(--azzurro-deep);
  background: var(--azzurro-luce);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  color: var(--azzurro-ink);
  line-height: 1.5;
}
.article-content strong{
  color: var(--azzurro-ink);
  font-weight: 600;
}

/* PRODOTTI CONSIGLIATI */
.article-products{
  margin: 80px auto;
  max-width: 980px;
  padding: 50px;
  background: var(--bianco);
  border-radius: var(--r-lg);
  border: 1px solid rgba(46,100,137,.08);
}
.article-products .section-eyebrow{
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azzurro-deep);
  font-weight: 600;
  margin-bottom: 12px;
}
.article-products h3{
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 300;
  margin-bottom: 12px;
}
.article-products h3 em{ color: var(--azzurro-deep); font-weight: 400; font-style: italic; }
.article-products .products-lead{
  color: var(--grigio);
  font-size: 15px;
  margin-bottom: 36px;
  max-width: 580px;
}
.products-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card{
  padding: 28px 22px;
  background: var(--azzurro-aria);
  border-radius: var(--r-md);
  border: 1px solid rgba(46,100,137,.06);
  transition: all .35s;
}
.product-card:hover{
  background: var(--azzurro-luce);
  transform: translateY(-3px);
}
.product-brand{
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azzurro-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.product-card h4{
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.2;
}
.product-card p{
  font-size: 14px;
  color: var(--grigio);
  line-height: 1.55;
}
@media (max-width: 900px){
  .article-products{ padding: 36px 26px; margin: 50px auto; }
  .products-grid{ grid-template-columns: 1fr; gap: 14px; }
}

/* FONTI */
.article-sources{
  max-width: 760px;
  margin: 0 auto 30px;
  padding: 30px 0;
  border-top: 1px solid rgba(46,100,137,.12);
  border-bottom: 1px solid rgba(46,100,137,.12);
}
.article-sources h5{
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--azzurro-deep);
  font-weight: 600;
  margin-bottom: 16px;
}
.article-sources ul{ list-style: none; padding: 0; }
.article-sources li{
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}
.article-sources li::before{
  content: "↗";
  position: absolute; left: 0;
  color: var(--azzurro-deep);
  font-family: var(--display);
}
.article-sources a{
  color: var(--testo);
  text-decoration: underline;
  text-decoration-color: rgba(46,100,137,.3);
  text-underline-offset: 3px;
}
.article-sources a:hover{ color: var(--azzurro-deep); }

/* DISCLAIMER */
.article-disclaimer{
  max-width: 760px;
  margin: 0 auto 50px;
  padding: 24px;
  background: var(--rosa-aria);
  border-left: 3px solid var(--rosa);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--testo);
}
.article-disclaimer strong{
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--azzurro-ink);
  font-size: 14px;
}

/* CTA FINALE ARTICOLO */
.article-cta{
  margin: 60px auto;
  max-width: 980px;
  padding: 60px 40px;
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse 500px 350px at 30% 40%, var(--rosa-soft) 0%, transparent 65%),
    radial-gradient(ellipse 500px 350px at 80% 70%, var(--azzurro-soft) 0%, transparent 65%),
    var(--bianco);
  text-align: center;
}
.article-cta h3{
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 300;
  margin-bottom: 16px;
}
.article-cta h3 em{ color: var(--azzurro-deep); font-weight: 400; }
.article-cta p{
  color: var(--grigio);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ARTICOLI CORRELATI */
.related-articles{
  padding: 80px 0 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.related-articles h3{
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  text-align: center;
  margin-bottom: 50px;
}
.related-articles h3 em{ color: var(--azzurro-deep); font-weight: 400; font-style: italic; }
.related-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1000px){ .related-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .related-grid{ grid-template-columns: 1fr; } }

@media (max-width: 540px){
  .blog-header{ padding: 40px 0 30px; }
  .blog-header h1{ font-size: clamp(36px, 9vw, 50px); }
  .blog-header .lead{ font-size: 15px; }
  .blog-filters{ margin-top: 28px; gap: 8px; }
  .blog-filter{ padding: 9px 16px; font-size: 12px; }
  .blog-featured{ padding: 40px 0 20px; }
  .blog-grid-section{ padding: 20px 0 70px; }
  .article-back{ padding: 30px 0 18px; }
  .article-title{ font-size: clamp(30px, 8vw, 44px); }
  .article-content{ padding: 50px 0 30px; }
  .article-content p{ font-size: 16px; }
  .article-content .excerpt-lead{ font-size: 18px; }
  .article-content p:first-of-type:not(.excerpt-lead)::first-letter{ font-size: 52px; }
  .article-hero-img{ margin-top: 30px; aspect-ratio: 16/10; }
  .article-cta{ padding: 40px 24px; margin: 40px auto; }
}

/* ===================== FOOTER ===================== */
footer{
  background: linear-gradient(180deg, var(--azzurro-ink) 0%, var(--azzurro-deep) 100%);
  color: var(--azzurro-soft);
  padding: 90px 0 30px;
  position: relative;
  overflow: hidden;
}
footer::before{
  content: "";
  position: absolute;
  top: -100px; right: 5%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(239,197,188,.18) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  position: relative;
}
.footer-brand{
  display: flex; flex-direction: column; gap: 18px;
}
.footer-brand p{
  font-size: 14px;
  color: var(--azzurro-soft);
  max-width: 320px;
  margin-top: 8px;
}
.footer-col h5{
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rosa-soft);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-col ul{ list-style: none; padding: 0; }
.footer-col li{ margin-bottom: 12px; }
.footer-col a,
.footer-col li{
  font-size: 14px;
  color: var(--bianco);
  transition: color .25s;
}
.footer-col a:hover{ color: var(--rosa-soft); }

.footer-legal{
  padding-top: 30px;
  display: flex; justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}
.footer-legal p,
.footer-legal a,
.footer-legal span{
  font-size: 12px;
  color: var(--azzurro-soft);
  letter-spacing: 0.04em;
}
.footer-legal a:hover{ color: var(--rosa-soft); }
.footer-meta{
  display: flex; gap: 24px; flex-wrap: wrap;
}

@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 40px 30px; }
  .footer-brand{ grid-column: span 2; }
}
@media (max-width: 540px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-brand{ grid-column: span 1; }
}

/* ===================== RIFINITURA MOBILE GLOBALE ===================== */

/* Mobile medio (telefoni standard) */
@media (max-width: 540px){
  .hero{ padding: 30px 0 60px; }
  .hero h1{ font-size: clamp(38px, 9vw, 56px); }
  .hero-lead{ font-size: 16px; margin-bottom: 32px; }
  .hero-cta-row .btn{
    padding: 14px 22px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
  .hero-cta-row{ width: 100%; gap: 12px; }
  .hero-visual{ max-width: 280px; }

  .marquee span{ font-size: 18px; gap: 40px; }
  .marquee{ gap: 40px; }

  .intro-text p:first-of-type::first-letter{
    font-size: 52px;
    margin: 4px 10px 0 0;
  }
  .stat-num{ font-size: 36px; }
  .intro-stats{ grid-template-columns: 1fr; gap: 24px; }

  .section-header{ margin-bottom: 50px; }
  .section-header h2{ font-size: clamp(30px, 7vw, 42px); }

  .quote-section{ padding: 80px 0; }
  .quote-mark{ font-size: 80px; margin-bottom: 20px; }
  .quote p{ font-size: clamp(22px, 5vw, 30px); }

  .cta-section{ padding: 80px 0; }
  .cta-section h2{ font-size: clamp(32px, 8vw, 48px); }
  .cta-section .btn{
    width: 100%;
    justify-content: center;
  }
  .cta-section .hero-cta-row{
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .page-header{ padding: 50px 0 40px; }
  .page-header h1{ font-size: clamp(38px, 10vw, 60px); }
  .page-header .lead{ font-size: 16px; }

  .service-num{ font-size: 15px; }
  .service h2{ font-size: clamp(28px, 7vw, 40px); }
  .service ul li{ font-size: 14px; }
  .service-visual{ max-width: 320px; margin: 0 auto; }

  .tisane-story{ padding: 50px 0 70px; }
  .tisane-story .chapter{ margin-bottom: 60px; }
  .chapter h3{ font-size: clamp(22px, 5.5vw, 32px); }
  .chapter p{ font-size: 16px; }
  .chapter:first-of-type p:first-of-type::first-letter{
    font-size: 60px;
    margin: 4px 10px -2px 0;
  }

  .contact-info{ padding: 40px 24px; }
  .contact-info h2{ font-size: 30px; }
  .contact-item{ padding: 20px 0; gap: 16px; }
  .contact-icon{ width: 38px; height: 38px; }
  .contact-value{ font-size: 17px; word-break: break-word; }
  .contact-details h3{ font-size: 26px; }
  .address-block{ padding: 22px; }
  .address-block p{ font-size: 16px; }

  .form-page{ padding: 40px 0 80px; }
  .form-intro h2{ font-size: clamp(28px, 7vw, 40px); }
  .contact-form{ padding: 28px 20px; }
  .field input, .field textarea{ font-size: 15px; }

  .privacy-page{ padding: 40px 0 80px; }
  .privacy-page h2{ font-size: 22px; margin: 36px 0 14px; }
  .privacy-page p{ font-size: 15px; }

  footer{ padding: 60px 0 24px; }
  .footer-grid{ padding-bottom: 40px; gap: 30px; }
  .footer-brand p{ font-size: 13px; }
  .footer-col a, .footer-col li{ font-size: 13px; }
  .footer-legal{ flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-meta{ gap: 16px; }

  .nav-inner{ padding: 0 18px; }
  .logo-mark .logo-text{ font-size: 13px; }
  .logo-mark .logo-text small{ font-size: 9px; }
  .logo-mark .logo-circle{ width: 40px; height: 40px; }
}

/* Mobile piccolo (telefoni stretti < 400px) */
@media (max-width: 400px){
  .wrap{ padding: 0 16px; }
  .nav-inner{ padding: 0 16px; }
  .hero h1{ font-size: clamp(34px, 10vw, 48px); }
  .section{ padding: 60px 0; }
  .stat-num{ font-size: 32px; }
  .pillar{ padding: 28px 22px 24px; }
  .brand-cell{ padding: 28px 12px; }
  .brand-name{ font-size: 19px; }
  .service-visual{ max-width: 260px; }
  .contact-info{ padding: 36px 20px; }
  .contact-value{ font-size: 16px; }
  .hours-row{ font-size: 14px; }
  .ig-feed-header h2{ font-size: 28px; }
}
.reveal{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible{
  opacity: 1; transform: none;
}

/* ============================================================
   STANZE PER CONSULENZE
============================================================ */
.rooms-section{
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse 600px 400px at 20% 30%, var(--salvia-soft) 0%, transparent 65%),
    radial-gradient(ellipse 700px 500px at 80% 80%, var(--azzurro-soft) 0%, transparent 60%),
    var(--azzurro-aria);
  border-top: 1px solid rgba(31,58,77,.08);
}
.rooms-header{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.rooms-header h2{
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 300;
  margin: 18px 0 22px;
}
.rooms-header h2 em{ color: var(--azzurro-deep); font-weight: 400; }
.rooms-header .lead{
  font-size: 17px;
  color: var(--grigio);
  line-height: 1.7;
}

.rooms-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}
.room-card{
  background: var(--bianco);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--ombra-card);
  border: 1px solid rgba(31,58,77,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.room-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(31,58,77,.06), 0 30px 80px -20px rgba(31,58,77,.22);
}
.room-num{
  font-family: var(--display);
  font-size: 16px;
  color: var(--azzurro-deep);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 12px;
}
.room-num::after{
  content: ""; width: 40px; height: 1px; background: currentColor;
}
.room-card h3{
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 300;
  margin-bottom: 16px;
  min-height: 1.3em;
}
.room-card h3 em{ color: var(--azzurro-deep); font-weight: 400; }
.room-card p{
  font-size: 16px;
  color: var(--grigio);
  margin-bottom: 22px;
  line-height: 1.65;
  height: 112px;
  overflow: hidden;
}
.room-card ul{
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(31,58,77,.08);
  padding-top: 20px;
  height: 190px;
  overflow: hidden;
  box-sizing: content-box;
}
.room-card ul li{
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--testo);
}
.room-card ul li::before{
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 1px;
  background: var(--azzurro-deep);
}

.room-gallery{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.room-gallery img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r-sm);
  box-shadow: var(--ombra-luce);
  display: block;
  transition: transform .5s ease, box-shadow .5s ease;
}
.room-gallery img:hover{
  transform: scale(1.03);
  box-shadow: var(--ombra-card);
}
@media (max-width: 520px){
  .room-gallery{ gap: 8px; }
}

.rooms-cta{
  background: var(--bianco);
  border-radius: var(--r-lg);
  padding: 50px 48px;
  box-shadow: var(--ombra-card);
  border: 1px solid rgba(31,58,77,.06);
  max-width: 720px;
  margin: 0 auto;
}
.rooms-cta h3{
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 300;
  margin-bottom: 14px;
  text-align: center;
}
.rooms-cta h3 em{ color: var(--azzurro-deep); font-weight: 400; }
.rooms-cta > p{
  text-align: center;
  color: var(--grigio);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.rooms-form .field{
  margin-bottom: 18px;
}
.rooms-form label{
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--azzurro-deep);
  margin-bottom: 8px;
}
.rooms-form input,
.rooms-form textarea{
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(31,58,77,.15);
  border-radius: var(--r-sm);
  font-family: var(--body);
  font-size: 16px;
  color: var(--inchiostro);
  background: var(--azzurro-aria);
  transition: border-color .25s, background .25s;
}
.rooms-form input:focus,
.rooms-form textarea:focus{
  outline: none;
  border-color: var(--azzurro-deep);
  background: var(--bianco);
}
.rooms-form textarea{
  resize: vertical;
  min-height: 100px;
  font-family: var(--body);
}
.field-action{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.field-hint{
  font-size: 13px;
  color: var(--grigio);
  font-style: italic;
}

@media (max-width: 768px){
  .rooms-section{ padding: 60px 0 80px; }
  .rooms-grid{ grid-template-columns: 1fr; gap: 20px; }
  .room-card{ padding: 32px 26px; }
  .room-card p{ height: auto; }
  .room-card ul{ height: auto; }
  .rooms-cta{ padding: 36px 24px; }
  .field-action{ flex-direction: column; align-items: stretch; gap: 12px; }
  .field-action .btn{ width: 100%; justify-content: center; }
  .field-hint{ text-align: center; }
}

/* ============================================================
   PANE PRIMUS
============================================================ */
.primus-section{
  padding: 110px 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 20%, var(--rosa-soft) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 10% 90%, var(--salvia-soft) 0%, transparent 65%),
    linear-gradient(180deg, var(--azzurro-aria) 0%, var(--bianco) 100%);
  border-top: 1px solid rgba(31,58,77,.06);
  border-bottom: 1px solid rgba(31,58,77,.06);
}
.primus-grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.primus-image{
  position: relative;
}
.primus-img-wrap{
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(31,58,77,.06), 0 40px 100px -30px rgba(31,58,77,.3);
  background:
    radial-gradient(ellipse 600px 400px at 40% 30%, #F5E6D3 0%, transparent 70%),
    linear-gradient(135deg, #E8C99B 0%, #D4A574 100%);
}
.primus-img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.primus-img-placeholder{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.primus-img-placeholder svg{ width: 70%; height: auto; }
.primus-img-wrap:not(.no-img) .primus-img-placeholder{ display: none; }

.primus-text .eyebrow{ margin-bottom: 24px; }
.primus-text h2{
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.1;
}
.primus-text h2 em{
  color: #8B5E34;
  font-weight: 400;
}
.primus-text p{
  font-size: 17px;
  color: var(--grigio);
  margin-bottom: 18px;
  line-height: 1.7;
}
.primus-text p strong{ color: var(--inchiostro); font-weight: 500; }
.primus-text p em{ color: var(--azzurro-deep); font-style: italic; font-weight: 500; }

.primus-features{
  list-style: none;
  padding: 0;
  margin: 28px 0 36px;
  border-top: 1px solid rgba(31,58,77,.08);
  padding-top: 24px;
}
.primus-features li{
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--testo);
}
.primus-features li::before{
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: #8B5E34;
}
.primus-features strong{ color: var(--inchiostro); font-weight: 500; }
.primus-cta-row{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px){
  .primus-section{ padding: 80px 0; }
  .primus-grid{ grid-template-columns: 1fr; gap: 50px; }
  .primus-img-wrap{ max-width: 480px; margin: 0 auto; }
}
@media (max-width: 540px){
  .primus-text h2{ font-size: clamp(30px, 7vw, 42px); }
  .primus-text p{ font-size: 16px; }
  .primus-cta-row{ flex-direction: column; }
  .primus-cta-row .btn{ width: 100%; justify-content: center; }
}


/* ============================================================
   LA LINEA PRIMUS — catalogo prodotti
============================================================ */
.primus-line{
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bianco) 0%, var(--azzurro-aria) 100%);
  border-top: 1px solid rgba(31,58,77,.06);
}
.primus-line .section-header h2 em{ color: #8B5E34; font-weight: 400; }

/* ---- striscia dati ---- */
.primus-stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 860px;
  margin: 0 auto 76px;
  padding: 30px 20px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #F7EEE0 0%, #EFE0CA 100%);
  box-shadow: var(--ombra-luce);
}
.primus-stat{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid rgba(139,94,52,.18);
}
.primus-stat:last-child{ border-right: none; }
.ps-num{
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 400;
  line-height: 1;
  color: #8B5E34;
}
.ps-lbl{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grigio);
}

/* ---- intestazione categoria ---- */
.primus-cat{
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 34px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(139,94,52,.22);
}
.primus-cat h3{
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--inchiostro);
}
.pcat-note{
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--grigio);
}

/* ---- griglia card ---- */
.primus-cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 34px;
  margin-bottom: 84px;
}
.primus-cards:last-of-type{ margin-bottom: 40px; }

.primus-card{
  display: flex;
  flex-direction: column;
  background: var(--bianco);
  border: 1px solid rgba(31,58,77,.07);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--ombra-luce);
  transition: transform .45s cubic-bezier(.22,.8,.3,1), box-shadow .45s ease;
}
.primus-card:hover{
  transform: translateY(-5px);
  box-shadow: var(--ombra-card);
}

.pc-media{
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #FBF6EE 0%, #F3E7D5 100%);
  overflow: hidden;
}
.pc-media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  transition: transform .6s cubic-bezier(.22,.8,.3,1);
}
.primus-card:hover .pc-media img{ transform: scale(1.045); }
.pc-weight{
  position: absolute;
  top: 16px; right: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #8B5E34;
  box-shadow: 0 2px 8px rgba(31,58,77,.10);
}

.pc-body{
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 30px 24px;
}
.pc-body h4{
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--inchiostro);
  margin-bottom: 14px;
}
.pc-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}
.pc-tags span{
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--azzurro-luce);
  color: var(--azzurro-ink);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .04em;
}
.pc-body > p{
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--grigio);
  margin-bottom: 22px;
}

/* ---- dettagli a scomparsa ---- */
.pc-details{
  margin-top: auto;
  border-top: 1px solid rgba(31,58,77,.08);
  padding-top: 14px;
}
.pc-details summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--azzurro-deep);
  transition: color .25s ease;
}
.pc-details summary::-webkit-details-marker{ display: none; }
.pc-details summary:hover{ color: var(--azzurro-ink); }
.pc-details summary::after{
  content: "+";
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  transition: transform .3s ease;
}
.pc-details[open] summary::after{ transform: rotate(45deg); }

.pc-panel{ padding-top: 20px; }
.pc-panel h5{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grigio-soft);
  margin-bottom: 12px;
}
.pc-panel h5 + h5{ margin-top: 22px; }
.pc-nutri{
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.pc-nutri li{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dotted rgba(31,58,77,.14);
  font-size: 14px;
  color: var(--testo);
}
.pc-nutri li:last-child{ border-bottom: none; }
.pc-nutri li span{ color: var(--grigio); }
.pc-nutri li strong{ font-weight: 600; color: var(--inchiostro); white-space: nowrap; }
.pc-micro{
  font-size: 13px;
  color: var(--azzurro-ink);
  background: var(--azzurro-aria);
  border-radius: var(--r-sm);
  padding: 9px 13px;
}
.pc-ing{
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--grigio);
}

.primus-note{
  max-width: 760px;
  margin: 0 auto;
  padding: 22px 28px;
  border-left: 2px solid var(--rosa);
  background: var(--rosa-aria);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--testo);
}
.primus-note strong{ color: var(--inchiostro); font-weight: 600; }

/* ============================================================
   PRIMUS — come nasce
============================================================ */
.primus-how{
  padding: 110px 0;
  background: var(--azzurro-aria);
  border-top: 1px solid rgba(31,58,77,.06);
}
.primus-how .section-header h2 em{ color: #8B5E34; font-weight: 400; }
.phow-steps{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.phow-step{
  background: var(--bianco);
  border-radius: var(--r-lg);
  padding: 40px 34px 36px;
  box-shadow: var(--ombra-luce);
}
.phow-num{
  display: block;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  color: #D4A574;
  margin-bottom: 20px;
}
.phow-step h4{
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--inchiostro);
  margin-bottom: 14px;
}
.phow-step p{
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--grigio);
}
.phow-cta{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 56px;
}

@media (max-width: 900px){
  .primus-line, .primus-how{ padding: 80px 0; }
  .primus-stats{ grid-template-columns: repeat(2, 1fr); gap: 26px 8px; margin-bottom: 60px; }
  .primus-stat:nth-child(2n){ border-right: none; }
}
@media (max-width: 540px){
  .primus-cards{ grid-template-columns: 1fr; gap: 26px; margin-bottom: 60px; }
  .pc-body{ padding: 24px 22px 22px; }
  .pc-body h4{ font-size: 24px; }
  .primus-note{ padding: 20px 22px; }
  .phow-step{ padding: 32px 26px; }
  .phow-cta{ flex-direction: column; }
  .phow-cta .btn{ width: 100%; justify-content: center; }
}


/* ---- Farfalla origami v3 — CSS completo ---- */
#farfalla-layer{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:2147483647;   /* valore massimo: sopra a header, banner e modali, sempre */
  overflow:hidden;
}
#farfalla-stage{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
#farfalla{
  position:fixed;
  top:0;
  left:0;
  will-change:transform;
}
.farfalla-bob{
  animation:farfalla-bob 1.6s ease-in-out infinite alternate;
  filter:drop-shadow(0 5px 6px rgba(53,48,94,.20));   /* ombra opaca, da carta */
}
@keyframes farfalla-bob{
  from{transform:translateY(-5px)}
  to  {transform:translateY(5px)}
}
#farfalla svg{overflow:visible;perspective:340px}
#farfalla .ala{
  transform-box:view-box;
  transform-origin:50% 50%;
  animation:farfalla-flap .55s ease-in-out infinite alternate;
}
#farfalla .ala-dx{animation-name:farfalla-flap-dx}
@keyframes farfalla-flap{
  from{transform:rotateY(6deg)}
  to  {transform:rotateY(60deg)}
}
@keyframes farfalla-flap-dx{
  from{transform:rotateY(-6deg)}
  to  {transform:rotateY(-60deg)}
}
/* coriandoli: fluttuano e ruotano piano, ognuno col suo ritmo */
.cor{
  transform-box:fill-box;
  transform-origin:center;
}
.cor-1{animation:cor-float 2.4s ease-in-out infinite alternate}
.cor-2{animation:cor-float 3.1s ease-in-out infinite alternate-reverse}
.cor-3{animation:cor-float 2.8s ease-in-out infinite alternate}
.cor-4{animation:cor-float 3.5s ease-in-out infinite alternate-reverse}
@keyframes cor-float{
  from{transform:translateY(-4px) rotate(0deg)}
  to  {transform:translateY(4px)  rotate(160deg)}
}
@media (max-width:700px){
  #farfalla svg{width:60px;height:51px}
}
