:root{
  --dark:#21000a;
  --wine:#7b0f2e;
  --wine2:#a81f45;
  --wine3:#5d0b23;
  --light:#fff7fa;
  --text:#24151a;
  --muted:#6d5960;
  --ease:cubic-bezier(.22,1,.36,1);
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:#fff7fa;
  overflow-x:hidden;
}

a{
  color:inherit;
}

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 6%;
  background:#fff;
  box-shadow:0 6px 18px rgba(33,0,10,.07);
}

.brand{
  display:flex;
  gap:12px;
  text-decoration:none;
  align-items:center;
}

.logo-mark{
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  border-radius:50%;
  background:white;
  box-shadow:0 10px 25px rgba(123,15,46,.28);
  overflow:hidden;
}

.logo-mark img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
}

.brand strong{
  display:block;
  font-size:28px;
  letter-spacing:1px;
  color:var(--wine);
}

.brand small{
  display:block;
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:11px;
}

.nav{
  display:flex;
  gap:24px;
  align-items:center;
}

.nav a{
  text-decoration:none;
  font-weight:700;
}

.nav a.active{
  color:var(--wine2);
}

.cta-small{
  background:linear-gradient(135deg,var(--wine),var(--wine2));
  color:white!important;
  padding:10px 16px;
  border-radius:999px;
  box-shadow:0 10px 24px rgba(123,15,46,.22);
}

.menu-toggle{
  display:none;
  background:none;
  border:0;
  font-size:30px;
}

.hero{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:40px;
  align-items:center;
  padding:80px 6%;
  background:
    radial-gradient(circle at top right,rgba(123,15,46,.36),transparent 34%),
    radial-gradient(circle at bottom left,rgba(93,11,35,.22),transparent 38%),
    linear-gradient(135deg,#ffffff 0%,#fff4f7 42%,#efd0d9 100%);
}

.hero::before{
  content:"";
  position:absolute;
  top:-170px;
  right:-160px;
  width:470px;
  height:470px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(123,15,46,.28),rgba(168,31,69,.10) 48%,transparent 72%);
  pointer-events:none;
}

.hero::after{
  content:"";
  position:absolute;
  bottom:-150px;
  left:-140px;
  width:360px;
  height:360px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(168,31,69,.18),transparent 70%);
  pointer-events:none;
}

.hero-text,
.hero-card{
  position:relative;
  z-index:1;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:3px;
  color:var(--wine2);
  font-weight:800;
}

.hero h1,
.page-hero h1{
  font-size:clamp(38px,6vw,72px);
  line-height:.95;
  margin:12px 0;
  color:var(--dark);
}

.hero p,
.page-hero p{
  font-size:20px;
  color:var(--muted);
  max-width:720px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.btn{
  display:inline-block;
  background:linear-gradient(135deg,var(--wine),var(--wine2));
  color:white;
  text-decoration:none;
  border:0;
  border-radius:14px;
  padding:15px 24px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(123,15,46,.24);
  transition:transform .25s var(--ease),box-shadow .25s ease,opacity .25s ease,border-color .25s ease,background-color .25s ease;
}

.btn:hover{
  transform:translateY(-3px) scale(1.01);
  box-shadow:0 20px 42px rgba(123,15,46,.34);
}

.btn:focus-visible,
.nav a:focus-visible,
.menu-toggle:focus-visible{
  outline:3px solid rgba(168,31,69,.28);
  outline-offset:4px;
}

.btn.ghost{
  background:rgba(255,255,255,.85);
  color:var(--wine);
  border:2px solid rgba(123,15,46,.18);
  box-shadow:none;
}

.btn.ghost:hover{
  background:#fff;
  border-color:rgba(123,15,46,.36);
  box-shadow:0 14px 30px rgba(123,15,46,.16);
}

.hero-card{
  background:none;
  border:none;
  box-shadow:none;
  padding:0;
  overflow:hidden;
}

.hero-card:hover{
  transform:none;
}

.hero-card img{
  display:block;
  width:100%;
  height:auto;
  border-radius:28px;
  object-fit:contain;
}

.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  padding:32px 6%;
  background:linear-gradient(135deg,var(--dark),var(--wine3));
}

.features article{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(255,255,255,.72);
  border-radius:18px;
  padding:24px;
  box-shadow:0 14px 34px rgba(0,0,0,.10);
  transition:transform .3s var(--ease),box-shadow .3s ease,border-color .3s ease,opacity .3s ease;
}

.features article:hover{
  transform:translateY(-6px);
  border-color:rgba(168,31,69,.26);
  box-shadow:0 22px 46px rgba(33,0,10,.16);
}

.features strong{
  display:block;
  color:var(--wine);
  text-transform:uppercase;
}

.features span{
  color:var(--muted);
}

.section{
  padding:70px 6%;
}

.section-title{
  text-align:center;
  max-width:800px;
  margin:0 auto 32px;
}

.section-title h2,
.section h2,
.cta-band h2{
  font-size:36px;
  margin:0 0 16px;
  color:var(--dark);
}

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

.service-grid article,
.panel,
.contact-form{
  background:linear-gradient(160deg,#fff,#f7e5eb);
  border:1px solid #dfb4c2;
  border-radius:22px;
  padding:28px;
  box-shadow:0 16px 36px rgba(33,0,10,.07);
  transition:transform .32s var(--ease),box-shadow .32s ease,border-color .32s ease,opacity .32s ease;
}

.service-grid article:hover,
.panel:hover,
.contact-form:hover{
  transform:translateY(-6px);
  border-color:rgba(168,31,69,.36);
  box-shadow:0 24px 54px rgba(33,0,10,.13);
}

.service-grid h3{
  margin-top:0;
  color:var(--wine);
  font-size:24px;
}

.service-grid li{
  margin:9px 0;
}

.center{
  text-align:center;
  margin-top:28px;
}

.page-hero{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  contain:paint;
  padding:70px 6%;
  background:
    linear-gradient(135deg,var(--dark) 0%,var(--wine3) 46%,var(--wine) 100%);
  background-color:var(--dark);
  color:white;
  backface-visibility:hidden;
}

.page-hero::before,
.page-hero::after{
  content:"";
  position:absolute;
  inset:-18%;
  z-index:0;
  pointer-events:none;
}

.page-hero::before{
  background:
    linear-gradient(100deg,transparent 0 22%,rgba(168,31,69,.34) 48%,rgba(123,15,46,.22) 62%,transparent 82%);
  background-size:180% 100%;
  background-position:0 50%;
  opacity:.64;
  transform:none;
  animation:pageHeroLiquidFlow 42s ease-in-out infinite alternate;
  will-change:background-position,opacity;
  backface-visibility:hidden;
}

.page-hero::after{
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='920' height='190' viewBox='0 0 920 190'%3E%3Cg fill='none' stroke='%23fff7fa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='.30' transform='matrix(.62 0 0 .62 170 36)'%3E%3Crect x='86' y='58' width='54' height='54' rx='8'/%3E%3Cpath d='M74 70h12M74 85h12M74 100h12M140 70h12M140 85h12M140 100h12M98 46v12M113 46v12M128 46v12M98 112v12M113 112v12M128 112v12M102 76h22v18h-22z'/%3E%3Cpath d='M330 66h108v70H330zM314 146h140l-14 14H328zM360 160h50'/%3E%3Cpath d='M574 112h86c18 0 28-11 28-25 0-15-12-26-28-26-8 0-15 3-20 8-7-16-22-26-40-26-25 0-44 18-47 41-15 2-25 13-25 27 0 15 11 25 28 25'/%3E%3Crect x='770' y='48' width='74' height='26' rx='5'/%3E%3Crect x='770' y='86' width='74' height='26' rx='5'/%3E%3Crect x='770' y='124' width='74' height='26' rx='5'/%3E%3Cpath d='M786 61h8M786 99h8M786 137h8M806 61h24M806 99h24M806 137h24'/%3E%3Cpath d='M152 86h56v44h84M438 102h46v-36h44M688 88h48v50h34' opacity='.55'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(115deg,transparent 18%,rgba(168,31,69,.34) 42%,transparent 64%),
    linear-gradient(245deg,transparent 18%,rgba(33,0,10,.50) 50%,transparent 76%);
  background-size:
    1380px 190px,
    auto,
    auto;
  background-position:
    0 50%,
    0 0,
    0 0;
  opacity:.40;
  transform:none;
  animation:pageHeroIconDrift 30s ease-in-out infinite alternate;
  will-change:background-position,opacity;
  backface-visibility:hidden;
}

.service-hero::after{
  opacity:.52;
}

.about-hero::after{
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='920' height='190' viewBox='0 0 920 190'%3E%3Cg fill='none' stroke='%23fff7fa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='.30' transform='matrix(.62 0 0 .62 170 36)'%3E%3Ccircle cx='105' cy='70' r='18'/%3E%3Cpath d='M70 132c6-26 24-42 35-42s29 16 35 42M156 78c8 0 15 7 15 15s-7 15-15 15M178 134c-4-18-14-29-28-34M54 78c-8 0-15 7-15 15s7 15 15 15M32 134c4-18 14-29 28-34'/%3E%3Cpath d='M308 104l36-36c10-10 27-10 37 0l8 8 8-8c10-10 27-10 37 0s10 27 0 37l-45 45-45-45M344 68l45 45M434 68l-45 45'/%3E%3Ccircle cx='592' cy='96' r='46'/%3E%3Ccircle cx='592' cy='96' r='27'/%3E%3Ccircle cx='592' cy='96' r='8'/%3E%3Cpath d='M592 50v-18M592 160v-18M546 96h-18M656 96h-18'/%3E%3Cpath d='M752 142V82M804 142V56M856 142V104M734 142h144M746 82l58-26 52 48'/%3E%3Cpath d='M140 96h116M470 96h76M638 96h80' opacity='.55'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(115deg,transparent 18%,rgba(168,31,69,.34) 42%,transparent 64%),
    linear-gradient(245deg,transparent 18%,rgba(33,0,10,.50) 50%,transparent 76%);
}

.contact-hero::after{
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='920' height='190' viewBox='0 0 920 190'%3E%3Cg fill='none' stroke='%23fff7fa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='.30' transform='matrix(.62 0 0 .62 170 36)'%3E%3Cpath d='M83 54l20-10 20 45-17 8c12 24 28 40 52 52l8-17 45 20-10 20c-4 8-13 12-22 9-67-21-118-72-139-139-3-9 1-18 9-22z'/%3E%3Crect x='292' y='58' width='128' height='86' rx='10'/%3E%3Cpath d='M292 70l64 46 64-46M292 134l45-34M420 134l-45-34'/%3E%3Cpath d='M574 84c0-28 22-50 50-50s50 22 50 50c0 42-50 82-50 82s-50-40-50-82z'/%3E%3Ccircle cx='624' cy='84' r='16'/%3E%3Cpath d='M762 56h108c13 0 22 9 22 22v52c0 13-9 22-22 22h-62l-34 26v-26h-12c-13 0-22-9-22-22V78c0-13 9-22 22-22zM774 90h82M774 118h54'/%3E%3Cpath d='M202 104h68M420 104h110M674 104h58' opacity='.55'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(115deg,transparent 18%,rgba(168,31,69,.34) 42%,transparent 64%),
    linear-gradient(245deg,transparent 18%,rgba(33,0,10,.50) 50%,transparent 76%);
}

.page-hero > *{
  position:relative;
  z-index:1;
}

.page-hero h1,
.page-hero p{
  color:white;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:start;
}

.about-section{
  position:relative;
  isolation:isolate;
  background:#ffffff;
}

.about-section::before{
 display:none;
}

.about-copy{
  position:relative;
  padding:34px;
  border:1px solid rgba(123,15,46,.14);
  border-radius:24px;
  background:rgba(255,255,255,.88);
  box-shadow:0 20px 50px rgba(33,0,10,.08);
}

.about-copy::before{
  content:"";
  position:absolute;
  top:0;
  left:34px;
  right:34px;
  height:4px;
  border-radius:0 0 999px 999px;
  background:linear-gradient(90deg,var(--wine3),var(--wine2),var(--wine));
}

.about-copy h2{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:28px;
}

.about-copy h2:first-child{
  margin-top:0;
}

.about-copy h2::before{
  content:"";
  flex:0 0 12px;
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--wine2);
  box-shadow:0 0 0 6px rgba(168,31,69,.10);
}

.about-copy p{
  line-height:1.75;
  color:#4f3d43;
}

.about-panel{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(160deg,#fff,#f3dce4);
}

.about-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(123,15,46,.10),transparent 42%);
  pointer-events:none;
}

.about-panel h3,
.about-panel ul{
  position:relative;
}

.about-panel h3{
  margin-top:0;
  color:var(--dark);
  font-size:28px;
}

.about-panel ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:14px;
}

.about-panel li{
  position:relative;
  padding:16px 16px 16px 44px;
  border:1px solid rgba(123,15,46,.12);
  border-radius:16px;
  background:rgba(255,255,255,.70);
  line-height:1.55;
}

.about-panel li::before{
  content:"";
  position:absolute;
  top:20px;
  left:16px;
  width:12px;
  height:12px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--wine3),var(--wine2));
  box-shadow:0 0 0 5px rgba(168,31,69,.10);
}

.cta-band{
  text-align:center;
  margin:20px 6% 60px;
  padding:45px;
  border-radius:26px;
  background:linear-gradient(135deg,var(--dark),var(--wine));
  color:white;
  box-shadow:0 22px 50px rgba(33,0,10,.22);
  transition:transform .35s var(--ease),box-shadow .35s ease,border-color .35s ease,opacity .35s ease;
}

.cta-band:hover{
  transform:translateY(-4px);
  box-shadow:0 30px 64px rgba(33,0,10,.28);
}

.cta-band h2{
  color:white;
}

.contact-list p{
  font-size:18px;
}

.contact-form label{
  display:block;
  font-weight:700;
  margin-bottom:15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  margin-top:7px;
  padding:13px;
  border:1px solid #dcc4cc;
  border-radius:12px;
  font:inherit;
  transition:border-color .25s ease,box-shadow .25s ease,background-color .25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color:var(--wine2);
  box-shadow:0 0 0 4px rgba(168,31,69,.10);
  outline:0;
}

.about-section::before{
  display:none;
}

footer{
  text-align:center;
  padding:30px 6%;
  background:#140006;
  color:white;
}

footer a{
  color:white;
}

@keyframes pageHeroLiquidFlow{
  0%{
    opacity:.46;
    background-position:0 50%;
  }
  50%{
    opacity:.68;
    background-position:50% 50%;
  }
  100%{
    opacity:.52;
    background-position:100% 50%;
  }
}

@keyframes pageHeroIconDrift{
  0%{
    background-position:
      0 50%,
      0 0,
      0 0;
    opacity:.30;
  }
  50%{
    background-position:
      42px 50%,
      0 0,
      0 0;
    opacity:.44;
  }
  100%{
    background-position:
      84px 50%,
      0 0,
      0 0;
    opacity:.34;
  }
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale{
  opacity:1;
  transform:none;
}

.scroll-ready .reveal,
.scroll-ready .reveal-left,
.scroll-ready .reveal-right,
.scroll-ready .reveal-scale{
  transition:transform .65s var(--ease),box-shadow .25s ease,border-color .25s ease;
}

.scroll-ready .reveal:not(.is-visible){
  transform:translateY(18px);
}

.scroll-ready .reveal-left:not(.is-visible){
  transform:translateX(-18px);
}

.scroll-ready .reveal-right:not(.is-visible){
  transform:translateX(18px);
}

.scroll-ready .reveal-scale:not(.is-visible){
  transform:translateY(12px) scale(.985);
}

@media(max-width:900px){
  .menu-toggle{
    display:block;
  }

  .nav{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:82px;
    flex-direction:column;
    background:white;
    padding:20px;
  }

  .nav.open{
    display:flex;
  }

  .hero,
  .split{
    grid-template-columns:1fr;
  }

  .features,
  .service-grid{
    grid-template-columns:1fr;
  }

  .brand strong{
    font-size:22px;
  }

  .about-section::before{
    inset:18px 4%;
  }

  .about-copy,
  .about-panel{
    padding:24px;
  }

  .about-copy::before{
    left:24px;
    right:24px;
  }

  .page-hero::before,
  .page-hero::after{
    animation:none;
    transform:none;
  }
}

@media(prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    animation-duration:.001ms!important;
    animation-delay:0ms!important;
    animation-iteration-count:1!important;
    scroll-behavior:auto!important;
    transition-duration:0ms!important;
    transition-delay:0ms!important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale{
    opacity:1!important;
    transform:none!important;
  }
}


/* Migliorie grafiche dedicate alla pagina Chi siamo */
.about{
  overflow:hidden;
}

.about-intro{
  position:relative;
  max-width:880px;
  margin:0 auto 34px;
  padding:34px 38px;
  text-align:center;
  border:1px solid rgba(123,15,46,.12);
  border-radius:28px;
  background:rgba(255,255,255,.82);
  box-shadow:0 22px 60px rgba(33,0,10,.09);
  backdrop-filter:blur(10px);
}

.about-intro::before,
.about-intro::after{
    display:none;
}
.about-kicker{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:10px;
  color:var(--wine2);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
}

.about-kicker::before,
.about-kicker::after{
  content:"";
  width:28px;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--wine2));
}

.about-kicker::after{
  background:linear-gradient(90deg,var(--wine2),transparent);
}

.about-intro h2{
  margin:0 0 12px;
  font-size:clamp(30px,4vw,46px);
  color:var(--dark);
}

.about-intro p{
  margin:0 auto;
  max-width:700px;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}

.about-layout{
  align-items:stretch;
}

.about-copy{
  display:grid;
  gap:18px;
  padding:0;
  border:0;
  background:transparent;
  box-shadow:none;
}

.about-copy::before{
  display:none;
}

.about-story-card{
  position:relative;
  padding:30px 30px 28px 92px;
  border:1px solid rgba(123,15,46,.13);
  border-radius:24px;
  background:linear-gradient(160deg,rgba(255,255,255,.96),rgba(255,247,250,.90));
  box-shadow:0 18px 44px rgba(33,0,10,.08);
  transition:transform .32s var(--ease),box-shadow .32s ease,border-color .32s ease;
}

.about-story-card:hover{
  transform:translateY(-5px);
  border-color:rgba(168,31,69,.34);
  box-shadow:0 28px 62px rgba(33,0,10,.13);
}

.about-story-card::after{
  content:"";
  position:absolute;
  inset:auto 24px 0 92px;
  height:3px;
  border-radius:999px 999px 0 0;
  background:linear-gradient(90deg,var(--wine3),var(--wine2),transparent);
  opacity:.78;
}

.about-icon{
  position:absolute;
  top:28px;
  left:28px;
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  border-radius:16px;
  color:white;
  font-size:22px;
  font-weight:900;
  background:linear-gradient(135deg,var(--wine3),var(--wine2));
  box-shadow:0 14px 28px rgba(123,15,46,.24);
}

.about-story-card h2{
  margin:0 0 12px;
  color:var(--dark);
}

.about-story-card h2::before{
  display:none;
}

.about-story-card p{
  margin:0 0 12px;
  line-height:1.72;
}

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

.about-panel{
  position:sticky;
  top:112px;
  align-self:start;
  padding:30px;
  border-color:rgba(123,15,46,.16);
}

.about-panel-head{
  position:relative;
  display:flex;
  gap:16px;
  align-items:flex-start;
  margin-bottom:22px;
}

.about-panel-icon{
  flex:0 0 48px;
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border-radius:50%;
  color:white;
  font-weight:900;
  background:linear-gradient(135deg,var(--wine),var(--wine2));
  box-shadow:0 14px 30px rgba(123,15,46,.25);
}

.about-panel h3{
  margin:0 0 6px;
}

.about-panel-head p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}

.about-benefits li{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:2px 12px;
  padding:16px;
}

.about-benefits li::before{
  display:none;
}

.about-benefits li > span{
  grid-row:1 / span 2;
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:12px;
  background:#fff7fa;
  box-shadow:inset 0 0 0 1px rgba(123,15,46,.10);
}

.about-benefits strong{
  color:var(--wine);
  line-height:1.25;
}

.about-benefits em{
  color:#59474e;
  font-style:normal;
  line-height:1.45;
}

.about-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:28px;
}

.about-stats article{
  padding:24px;
  border:1px solid rgba(123,15,46,.12);
  border-radius:20px;
  background:linear-gradient(145deg,#fff,#f8e8ee);
  box-shadow:0 16px 38px rgba(33,0,10,.08);
  text-align:center;
}

.about-stats strong{
  display:block;
  margin-bottom:7px;
  color:var(--wine);
  font-size:24px;
}

.about-stats span{
  color:var(--muted);
  line-height:1.45;
}

@media(max-width:900px){
  .about-intro{
    padding:28px 22px;
  }

  .about-story-card{
    padding:82px 22px 24px;
  }

  .about-story-card::after{
    left:22px;
  }

  .about-icon{
    top:22px;
    left:22px;
  }

  .about-panel{
    position:relative;
    top:auto;
  }

  .about-stats{
    grid-template-columns:1fr;
  }
}


/* Stabilizzazione scroll della pagina Chi siamo senza bloccare l'hero animato. */
.about-page main,
.about-page .about-section{
  background:#fff7fa;
}

.about-page .site-header{
  backface-visibility:hidden;
  transform:translateZ(0);
}

.about-page .about-intro{
  background:#fff;
  backdrop-filter:none;
}

.about-page .about-panel{
  position:relative;
  top:auto;
}
