/* ==========================================================================
   Sorrisi di Zucchero — palette derivata dal logo
   ========================================================================== */
:root{
  --teal: #7FC0C0;
  --teal-dark: #4E9997;
  --teal-deep: #2E5F5D;
  --gold: #CDB485;
  --gold-dark: #B08F55;
  --cream: #F7E6D8;
  --cream-soft: #FBF3EC;
  --dark: #1C1B1A;
  --dark-soft: #2A2926;
  --ink: #2B2A28;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Jost', sans-serif;

  --container-w: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3,h4{ font-family: var(--font-serif); font-weight: 500; margin: 0 0 .4em; color: var(--dark); line-height: 1.1; }
p{ margin: 0 0 1em; }
ul{ margin:0; padding:0; }

.container{
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  font-family: var(--font-sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--gold-dark);
  margin-bottom: .8em;
}
.eyebrow-center{ text-align: center; }
.section-title-center{ text-align: center; font-size: clamp(2rem, 4vw, 2.8rem); }
.section-intro{ text-align: center; max-width: 560px; margin: 0 auto 3rem; color: #6b6a67; }

/* Buttons */
.btn{
  display: inline-block;
  padding: .85em 2em;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .95rem;
  letter-spacing: .03em;
  border: 1.5px solid transparent;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease;
  cursor: pointer;
}
.btn-primary{ background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover{ background: var(--teal-dark); border-color: var(--teal-dark); box-shadow: 0 10px 24px -10px rgba(46,95,93,.5); }
.btn-outline{ background: transparent; color: var(--teal-dark); border-color: var(--teal); }
.btn-outline:hover{ background: var(--teal); color: var(--white); box-shadow: 0 10px 24px -10px rgba(46,95,93,.4); }
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0) scale(.97); }
.btn-small{ padding: .55em 1.4em; font-size: .85rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled{
  background: rgba(251, 243, 236, .88);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -18px rgba(28,27,26,.35);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 132px;
  transition: height .35s ease;
}
.site-header.is-scrolled .header-inner{ height: 104px; }
.logo img{ height: 112px; width: auto; transition: height .35s ease; }
.site-header.is-scrolled .logo img{ height: 86px; }
.nav{ display: flex; align-items: center; gap: 2.4rem; }
.nav a{
  font-family: var(--font-sans);
  font-size: .98rem;
  letter-spacing: .02em;
  font-weight: 400;
  color: var(--teal-dark);
}
.nav a:not(.btn){
  position: relative;
  padding-bottom: 5px;
}
.nav a:not(.btn)::after{
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--teal-dark);
  transition: width .3s ease;
}
.nav a:not(.btn):hover{ color: var(--gold-dark); }
.nav a:not(.btn):hover::after{ width: 100%; }
.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span{ width: 26px; height: 2px; background: var(--dark); display: block; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity: 0; }
.nav-toggle.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero carousel
   ========================================================================== */
.hero{
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-carousel{ position: relative; height: 620px; }
.hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease;
  display: flex;
  align-items: center;
}
.hero-slide.is-active{ opacity: 1; visibility: visible; }
.hero-slide-inner{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
.hero-text .eyebrow{ color: var(--teal-deep); }
.hero-text h1{
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: var(--teal-deep);
}
.hero-text h1 span{ color: var(--gold-dark); font-style: italic; }
.hero-copy{ max-width: 460px; color: #55534e; font-size: 1.05rem; }
.hero-actions{ display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-text--center{ max-width: 640px; margin: 0 auto; text-align: center; }
.hero-text--center .hero-copy{ margin-inline: auto; }
.hero-text--center .hero-actions{ justify-content: center; }

.hero-visual{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-visual img{ border-radius: 16px; object-fit: cover; }

/* Slide 1 — dolce: text left, photo collage right */
.hero-slide--dolce .hero-slide-inner{ grid-template-columns: 1fr .9fr; }
.hero-visual--collage{ position: relative; height: 420px; }
.hero-visual--collage .collage-main{
  width: 82%; height: 82%;
  box-shadow: 0 30px 55px -20px rgba(46,95,93,.35);
}
.hero-visual--collage .collage-accent{
  position: absolute;
  bottom: 0; right: 0;
  width: 46%; height: 46%;
  border: 5px solid var(--cream);
  box-shadow: 0 20px 40px -15px rgba(46,95,93,.4);
}
.hero-visual--collage .collage-accent--float{
  width: 62%; height: 62%;
  bottom: -8%; right: -10%;
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

/* Slide 2 — salato: photo bleeds left, text right */
.hero-slide--salato .hero-slide-inner{ grid-template-columns: 1.2fr .8fr; }
.hero-slide--salato .hero-text{ order: 2; }
.hero-slide--salato h1{ font-size: clamp(2rem, 4vw, 2.9rem); white-space: nowrap; }
.hero-visual--bleed{ order: 1; height: 520px; margin-left: calc((100vw - var(--container-w)) / -2 + 24px); }
.hero-visual--bleed img{ width: 100%; height: 100%; border-radius: 0 20px 20px 0; }

/* Slide 3 — cookies: image enlarged, side by side with text */
.hero-slide--cookies .hero-slide-inner{ grid-template-columns: 1.15fr 1fr; gap: 2rem; }
.hero-slide--cookies .hero-visual--splash{ order: 1; height: 480px; }
.hero-slide--cookies .hero-text{ order: 2; }
.hero-visual--splash{ display: flex; align-items: center; justify-content: center; height: 300px; }
.hero-visual--splash img{ height: 100%; width: auto; border-radius: 0; filter: drop-shadow(0 25px 30px rgba(46,95,93,.25)); }

/* Slide 4 — evento: text left, big photo + thumbnail strip right (stessa festa a tema autunnale) */
.hero-slide--evento .hero-visual--stack{ flex-direction: column; align-items: stretch; gap: .8rem; height: 460px; }
.stack-main{ width: 100%; height: 66%; box-shadow: 0 30px 55px -20px rgba(46,95,93,.35); }
.stack-thumbs{ display: flex; gap: .8rem; height: 34%; }
.stack-thumbs img{ flex: 1; height: 100%; border-radius: 10px; object-position: center 20%; }

/* Slide 5 — forno: transparent product bleeds left, text right, immagine ingrandita */
.hero-slide--forno .hero-slide-inner{ grid-template-columns: .85fr 1.15fr; }
.hero-visual--left{ order: 1; }
.hero-slide--forno .hero-text{ order: 2; }
.hero-slide--forno .hero-visual--splash{ height: 480px; }

.hero-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--teal);
  background: rgba(255,255,255,.7);
  color: var(--teal-deep);
  font-size: .9rem;
  cursor: pointer;
  z-index: 5;
  transition: background .25s ease, color .25s ease;
}
.hero-arrow:hover{ background: var(--teal); color: var(--white); }
.hero-arrow-prev{ left: 24px; }
.hero-arrow-next{ right: 24px; }

.hero-dots{
  position: absolute;
  bottom: 24px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: .6rem;
  z-index: 5;
}
.hero-dots button{
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(46,95,93,.28);
  cursor: pointer;
  padding: 0;
}
.hero-dots button.is-active{ background: var(--teal-deep); }

/* ==========================================================================
   Split sections (Chi Siamo / Contatti)
   ========================================================================== */
.split{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
.chi-siamo{ padding: 6.5rem 0; background: var(--white); }
.chi-siamo h2{ font-size: clamp(2.2rem, 4vw, 3rem); }
.tagline-italic{ font-style: italic; color: var(--gold-dark); font-family: var(--font-serif); font-size: 1.2rem; }

.portrait-frame{
  display: flex;
  justify-content: center;
}
.portrait-frame img{
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(46,95,93,.35));
}

/* ==========================================================================
   Servizi
   ========================================================================== */
.servizi{ padding: 6.5rem 0; background: var(--teal-deep); color: var(--cream-soft); }
.servizi h2, .servizi .eyebrow{ color: var(--cream-soft); }
.servizi .eyebrow{ color: var(--gold); }
.servizi .section-intro{ color: rgba(247,230,216,.65); }
.servizi .section-title-center{ font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1.15; }

.servizi-layout{
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}
.servizi-collage{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .9rem;
  aspect-ratio: 1 / 1.05;
}
.servizi-collage img{
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px -22px rgba(0,0,0,.5);
}
.servizi-list{ display: flex; flex-direction: column; gap: 1.9rem; }
.servizio-item h3{
  color: var(--gold);
  font-style: italic;
  font-size: 1.5rem;
  margin-bottom: .3em;
}
.servizio-item p{ color: rgba(247,230,216,.75); font-size: .97rem; margin: 0; }

.servizi-actions{ margin-top: .6rem; }
.servizi-actions .btn-outline{ color: var(--gold); border-color: var(--gold); }
.servizi-actions .btn-outline:hover{ background: var(--gold); color: var(--dark); }
.servizi-actions .btn-primary{
  background: rgba(127,192,192,.18);
  border-color: rgba(127,192,192,.4);
  color: var(--cream-soft);
}
.servizi-actions .btn-primary:hover{ background: rgba(127,192,192,.32); border-color: rgba(127,192,192,.6); }

/* ==========================================================================
   Recensioni
   ========================================================================== */
.recensioni{ padding: 6.5rem 0; background: var(--cream-soft); }
.recensioni-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
.recensione-card{
  background: var(--white);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 20px 40px -28px rgba(0,0,0,.25);
}
.stars{ color: var(--gold-dark); letter-spacing: .2em; margin-bottom: .8rem; }
.recensione-card p{ font-size: .95rem; color: #4d4c48; }
.recensore{ display: flex; align-items: center; gap: .7rem; margin-top: 1rem; }
.avatar{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.recensore-nome{ font-size: .9rem; font-weight: 500; color: var(--dark); }

/* ==========================================================================
   Contatti
   ========================================================================== */
.contatti{ padding: 6.5rem 0; background: var(--white); }
.contatti h2{ font-size: clamp(2.2rem, 4vw, 3rem); }
.contatti-block{ margin-bottom: 1.6rem; }
.contatti-block h4{
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  color: var(--gold-dark);
  margin-bottom: .5em;
}
.orari-table{ border-collapse: collapse; }
.orari-table td{ padding: .25em 0; font-size: .95rem; }
.orari-table td:first-child{ padding-right: 1.5rem; color: #6b6a67; }
.contatti .btn{ margin-top: .5rem; }

.map-embed{
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.3);
}

/* ==========================================================================
   Pagina dettaglio servizi
   ========================================================================== */
.detail-hero{
  padding: 3rem 0 4rem;
  background: var(--cream);
  text-align: center;
}
.detail-hero h1{ font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--teal-deep); }
.detail-hero h1 span{ color: var(--gold-dark); font-style: italic; }
.back-link{
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: .9rem;
  color: var(--teal-dark);
}
.back-link:hover{ text-decoration: underline; }
.detail-hero .eyebrow{ justify-content: center; }
.detail-hero .section-intro{ margin-top: 1rem; }

.service-detail{ padding: 5.5rem 0; background: var(--white); }
.service-detail--alt{ background: var(--cream-soft); }

.detail-block{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.detail-block--reverse .detail-text{ order: 2; }
.detail-block--reverse .detail-gallery{ order: 1; }
.detail-text h2{ font-size: clamp(1.9rem, 3.5vw, 2.6rem); color: var(--teal-deep); }
.detail-text h2 span{ color: var(--gold-dark); font-style: italic; }
.detail-text p{ color: #55534e; }

.placeholder-box{
  border-radius: 12px;
  border: 1.5px dashed rgba(78,153,151,.45);
  background: linear-gradient(155deg, var(--cream-soft) 0%, rgba(127,192,192,.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.placeholder-box span{
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--teal-dark);
  opacity: .75;
}


/* Gallery A — torte eventi: tall left + 2 stacked right */
.detail-gallery--a{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 420px;
}
.detail-gallery--a .ph-1{ grid-row: 1 / 3; grid-column: 1; }
.detail-gallery--a .ph-2{ grid-row: 1; grid-column: 2; }
.detail-gallery--a .ph-3{ grid-row: 2; grid-column: 2; }

/* Gallery B — vetrina colazione: staggered row of 3 */
.detail-gallery--b{ display: flex; align-items: flex-end; gap: 1rem; height: 360px; }
.detail-gallery--b .ph-1{ flex: 1.1; height: 100%; }
.detail-gallery--b .ph-2{ flex: .85; height: 68%; }
.detail-gallery--b .ph-3{ flex: 1; height: 88%; }

/* Gallery C — sweet table: mosaic asimmetrico */
.detail-gallery--c{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 1rem;
  height: 520px;
}
.detail-gallery--c .ph-1{ grid-column: 1 / 3; grid-row: 1; }
.detail-gallery--c .ph-2{ grid-column: 1; grid-row: 2; }
.detail-gallery--c .ph-3{ grid-column: 2; grid-row: 2 / 4; }
.detail-gallery--c .ph-4{ grid-column: 1; grid-row: 3; }

/* Gallery D — dog cake: due riquadri disomogenei */
.detail-gallery--d{ display: flex; align-items: flex-end; gap: 1rem; height: 400px; }
.detail-gallery--d .ph-1{ flex: 1.3; height: 100%; }
.detail-gallery--d .ph-2{ flex: 1; height: 78%; }

/* Gallery E — smashcake: grande a sinistra + 3 impilati a destra */
.detail-gallery--e{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
  height: 460px;
}
.detail-gallery--e .ph-1{ grid-column: 1; grid-row: 1 / 4; }
.detail-gallery--e .ph-2{ grid-column: 2; grid-row: 1; }
.detail-gallery--e .ph-3{ grid-column: 2; grid-row: 2; }
.detail-gallery--e .ph-4{ grid-column: 2; grid-row: 3; }

.detail-cta{
  padding: 5rem 0;
  background: var(--cream);
  text-align: center;
}
.detail-cta h2{ color: var(--teal-deep); font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 1.4rem; }
.detail-cta h2 span{ color: var(--gold-dark); font-style: italic; }

/* ==========================================================================
   Animazioni e microinterazioni
   ========================================================================== */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.is-visible{ opacity: 1; transform: none; }

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

/* Zoom fotografico gentile su collage, gallerie e stack */
.servizi-collage img,
.hero-visual--collage img,
.hero-visual--stack img,
.stack-thumbs img,
.portrait-frame img{
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.servizi-collage img:hover,
.hero-visual--stack img:hover,
.stack-thumbs img:hover,
.portrait-frame:hover img{ transform: scale(1.045); }

.servizio-card,
.servizio-item,
.recensione-card,
.prodotto-card,
.box-card{ transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.recensione-card:hover{ transform: translateY(-6px); box-shadow: 0 26px 46px -26px rgba(0,0,0,.28); }
.box-card:hover{ transform: translateY(-5px); box-shadow: 0 20px 40px -22px rgba(0,0,0,.18); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--teal-deep); color: rgba(255,255,255,.85); padding: 3.5rem 0 2rem; }
.footer-inner{ display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 2rem; }
.footer-logo{ height: 28px; opacity: .95; margin-bottom: .6rem; filter: brightness(0) invert(1); }
.footer-social{ display: flex; gap: 1rem; margin-top: .8rem; }
.footer-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.9);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.footer-social a:hover{ background: rgba(255,255,255,.9); color: var(--teal-deep); transform: translateY(-3px); }
.footer-social svg{ width: 17px; height: 17px; }
.footer-legal{ text-align: right; font-size: .82rem; color: rgba(255,255,255,.65); }
.footer-legal a{ text-decoration: underline; }
.footer-legal p{ margin: 0 0 .6em; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px){
  .nav{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream-soft);
    flex-direction: column;
    box-shadow: 0 8px 20px -12px rgba(0,0,0,.2);
    align-items: flex-start;
    padding: 1.5rem 24px;
    gap: 1.2rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
  }
  .nav.is-open{ transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-toggle{ display: flex; }

  .hero-slide-inner,
  .hero-slide--dolce .hero-slide-inner,
  .hero-slide--salato .hero-slide-inner,
  .hero-slide--cookies .hero-slide-inner,
  .hero-slide--forno .hero-slide-inner{ grid-template-columns: 1fr; text-align: center; }
  .hero-actions{ justify-content: center; flex-wrap: nowrap; gap: .6rem; }
  .hero-actions .btn{ padding: .8em 1.1em; font-size: .85rem; white-space: nowrap; }
  .hero-copy{ margin-inline: auto; }
  .hero-visual,
  .hero-slide--cookies .hero-text,
  .hero-slide--salato .hero-text,
  .hero-slide--forno .hero-text{ order: -1; }
  .hero-visual--bleed{ margin-left: 0; height: 260px; }
  .hero-visual--bleed img{ border-radius: 16px; }
  .hero-slide--salato h1{ font-size: clamp(1.8rem, 6vw, 2.4rem); white-space: normal; }
  .hero-visual--collage{ height: 260px; }
  /* Cookies e Dolci da Forno: stessa dimensione finale della Viennoiserie Dolce/Salata */
  .hero-visual--splash,
  .hero-slide--cookies .hero-visual--splash,
  .hero-slide--forno .hero-visual--splash{ height: 260px; margin-bottom: 0; }
  /* Crumble Cookies: immagine sopra il testo (vince sulla regola base order:1) */
  .hero-slide--cookies .hero-visual--splash{ order: -1; }
  .hero-slide--evento .hero-visual--stack{ height: 360px; }
  .hero-carousel{ height: 800px; }

  .split{ grid-template-columns: 1fr; }
  .split-visual{ order: -1; }

  /* Chi Siamo: nascondi immagine solo su mobile */
  .chi-siamo .portrait-frame{ display: none; }

  /* Contatti: mappa sotto testo/CTA su mobile */
  .contatti .split-visual{ order: 2; }

  /* Servizi: titolo più piccolo per stare su due righe */
  .servizi .section-title-center{ font-size: clamp(1.7rem, 6.5vw, 2.2rem); }

  /* Footer: allineamento centrato su mobile */
  .footer-inner{ align-items: center; text-align: center; }
  .footer-brand{ display: flex; flex-direction: column; align-items: center; }
  .footer-social{ justify-content: center; }

  .servizi-layout{ grid-template-columns: 1fr; }
  .servizi-collage{ aspect-ratio: 1/1; }
  .recensioni-grid{ grid-template-columns: 1fr; }

  .detail-block,
  .detail-block--reverse .detail-text,
  .detail-block--reverse .detail-gallery{
    grid-template-columns: 1fr;
    order: initial;
  }
  .detail-block{ grid-template-columns: 1fr; text-align: center; }
  .detail-gallery--a,
  .detail-gallery--c,
  .detail-gallery--e{
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .detail-gallery--a .ph-1,
  .detail-gallery--a .ph-2,
  .detail-gallery--a .ph-3,
  .detail-gallery--c .ph-1,
  .detail-gallery--c .ph-2,
  .detail-gallery--c .ph-3,
  .detail-gallery--c .ph-4,
  .detail-gallery--e .ph-1,
  .detail-gallery--e .ph-2,
  .detail-gallery--e .ph-3,
  .detail-gallery--e .ph-4{
    grid-column: auto;
    grid-row: auto;
    height: 220px;
  }
  .detail-gallery--a .ph-1,
  .detail-gallery--c .ph-1,
  .detail-gallery--e .ph-1{ grid-column: 1 / 3; }
  .detail-gallery--b,
  .detail-gallery--d{ height: 260px; }

  .footer-inner{ flex-direction: column; }
  .footer-legal{ text-align: center; }

  /* Servizi dettaglio: rimuovi riquadro extra in basso a sinistra (Sweet Table / Smashcake) */
  .detail-gallery--c .ph-4,
  .detail-gallery--e .ph-4{ display: none; }
}

@media (max-width: 560px){
  .servizi-collage{ grid-template-columns: 1fr 1fr; }
  .hero-carousel{ height: 800px; }
}
