:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #8d8d8d;
  --soft: #f6f6f6;
  --footer: #0f0b08; /* #060200;  */
  --footer-text: rgba(255,255,255,.92);
  --footer-soft: rgba(255,255,255,.72);
  --page-max: 1440px;
  --content-max: 1134px;
  --hero-max: 1134px;
  --hero-ratio-w: 1134;
  --hero-ratio-h: 582;
  --gutter-desktop: 148px;
  --gutter-tablet: 56px;
  --gutter-mobile: 20px;
  --transition: 700ms cubic-bezier(.2,.8,.2,1);
  --fontt: 'Poppins';  /*, 'Inter', sans-serif;*/
}

* { 
  box-sizing: border-box;
  /*font-family: var(--fontt);*/
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--fontt);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  letter-spacing: .01em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
  position: relative;
}

.top-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
}

.header-inner {
  position: relative;
  height: 86px;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 38px;
}

.brand-center {
  font-size: clamp(1.75rem, 2.3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
  white-space: nowrap;
}

.brand-center span,
.footer-brand span {
  font-weight: 700;
  margin-left: 6px;
}

.lang-switch {
  position: absolute;
  right: 38px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lang-switch .active {
  color: #111;
  font-weight: 500;
}

.lang-switch .inactive {
  color: #d0d0d0;
}

.menu-toggle {
  position: fixed;
  top: 26px;
  left: 26px;
  z-index: 1200;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  padding: 0;
  display: grid;
  place-items: center;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  background: #8a8a8a;
  transition: transform .25s ease, opacity .25s ease, background .25s ease;
  position: relative;
}

.hamburger::before { position: absolute; top: -5px; }
.hamburger::after { position: absolute; top: 5px; }

.menu-toggle.active .hamburger { background: transparent; }
.menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
  background: #111;
}
.menu-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
  background: #111;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(245,245,245,.98);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-panel {
  width: min(420px, calc(100% - 48px));
  text-align: center;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 120px;
}

.menu-list li + li { margin-top: 34px; }

.menu-list a,
.footer-nav a {
  position: relative;
  display: inline-block;
}

.menu-list a {
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 300;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.menu-list a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transition: transform .25s ease;
}

.menu-list a::after {
  bottom: -8px;
  background: #111;
  transform-origin: center;
}

.menu-list a:hover::after { transform: scaleX(1); }

.menu-register {
  width: 180px;
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid #9f9f9f;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: underline;
}

/* HERO */

.hero-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 28px;
}

.hero-frame,
.content-frame {
  margin: 0 auto;
}

.hero-frame {
  width: min(var(--hero-max), calc(100vw - (var(--gutter-desktop) * 2)));
  max-width: var(--hero-max);
  position: relative;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: transparent;
  aspect-ratio: calc(var(--hero-ratio-w) / var(--hero-ratio-h));
}

.hero-carousel .carousel-inner {
  width: 100%;
  height: 100%;
}

.hero-carousel .carousel-item {
  width: 100%;
  height: 100%;
}

.hero-carousel .carousel-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-caption {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  color: #fff;
  font-size: .72rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .06em;
  z-index: 3;
  text-shadow: 0 2px 8px rgba(0,0,0,.22);
  pointer-events: none;
  white-space: nowrap;
}

.hero-line {
  width: 100%;
  height: 3px;
  background: #fff;
  margin-top: 10px;
}

/* frecce hero: visibili solo hover */
.hero-nav {
  width: 46px;
  height: 46px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.hero-frame:hover .hero-nav,
.hero-carousel:hover .hero-nav,
.hero-frame:focus-within .hero-nav {
  opacity: 1;
  visibility: visible;
}

.hero-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(4px);
}

.hero-nav .carousel-control-prev-icon,
.hero-nav .carousel-control-next-icon {
  width: 18px;
  height: 18px;
  background-size: 18px 18px;
  filter: invert(1);
  position: relative;
  z-index: 1;
}

.carousel-control-prev.hero-nav { left: 20px; }
.carousel-control-next.hero-nav { right: 20px; }

.hero-frame:hover .carousel-control-prev.hero-nav,
.hero-carousel:hover .carousel-control-prev.hero-nav {
  transform: translateY(-50%) translateX(0);
}

.hero-frame:hover .carousel-control-next.hero-nav,
.hero-carousel:hover .carousel-control-next.hero-nav {
  transform: translateY(-50%) translateX(0);
}

/* CONTENT */

.content-frame {
  width: min(var(--content-max), calc(100vw - (var(--gutter-desktop) * 2)));
  max-width: var(--content-max);
}

.section {
  padding: clamp(48px, 10vw, 40px) 0;   /*per aumentare lo spazio tra section, al momento è 40px ma con 10vw diventa più ampio su desktop*/
   font-family: var(--fontt);
}

.section2 {
  padding: clamp(28px, 10vw, 30px) 0;   /*per aumentare lo spazio tra section, al momento è 40px ma con 10vw diventa più ampio su desktop*/
  font-family: var(--fontt);
}

.hero-space {
  padding-top: 10px;
  padding-bottom: 54px;
}

.narrow {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.wide {
  max-width: 1080px;
  margin: 0 auto;
}

.soft-panel,
.quote-panel {
  background: var(--soft);
  text-align: center;
}

.soft-panel-white{
  background: white;
  text-align: center;
}

.soft-panel {
  padding: clamp(42px, 6vw, 68px) clamp(24px, 5vw, 72px);
}

.quote-panel {
  padding: clamp(38px, 6vw, 64px) clamp(24px, 5vw, 58px);
}

.eyebrow {
  font-size: .62rem;
  color: var(--muted);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow2 {
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.title-small,
.headline {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 500;
  margin-bottom: 14px;
  display: grid;
  justify-content:  center;
}

.headline2 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 500;
  margin-bottom: 14px;
  display: grid;
  justify-content:  left;
}

.headline3 {
  /* font-size: clamp(1.2rem, 2vw, 1.7rem); */
  font-weight: 500;
  margin-bottom: 14px;
 /* display: grid;*/
  justify-content:  left;
}


.copy,
.lead-copy,
.body-copy,
.text-block .copy,
.quote-panel .copy,
.center-claim .copy,
.brand-mini .copy {
  color: #4f4f4f;
  line-height: 1.8;
  font-size: .92rem;
}

.copy,
.lead-copy,
.body-copy {
  max-width: 520px;
  margin: 0 auto;
}


.copy2 {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
   color: #4f4f4f;
  line-height: 1.8;
  font-size: .92rem;
    display: grid;
  justify-content:  center;

}

.text-block .copy,
.brand-mini .copy {
  margin: 0;
}

.text-block .copy { max-width: 360px; }

.quote-panel .copy {
  max-width: 620px;
  line-height: 1.95;
}

.center-claim .copy {
  max-width: 760px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6b6b6b;
}

.brand-mini .copy { max-width: 300px; }

.statement-card {
  background: #f7f7f7;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}

.statement-card .quote {
  max-width: 580px;
  font-size: clamp(1rem, 2vw, 1.32rem);
  line-height: 1.8;
  color: #9b948d;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 300;
}

.statement-link {
  position: relative;
  display: inline-block;
  margin-top: 110px;
  font-size: .82rem;
  color: #bebebe;
  font-weight: 300;
  letter-spacing: .01em;
  transition: color .25s ease;
}


/* linea nascosta */
.statement-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #bdbdbd;
  transform: scaleX(0);
  /*transform-origin: center;*/
   transform-origin: left;
  transition: transform .3s ease;
}

/* hover */
.statement-link:hover {
  color: #8f8f8f;
}

.statement-link:hover::after {
  transform: scaleX(1);
}


.statement-link2 {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  color: #2c2c2c;
  font-weight: 300;
  font-size: 1.52rem;
  letter-spacing: .01em; 
  transition:  all 0.5s ease-out allow-discrete;
}
/* linea nascosta */
.statement-link2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #2c2c2c;
  transform: scaleX(0);
  /*transform-origin: center;*/
   transform-origin: left;
  transition: transform .3s ease;
}

/* hover */
.statement-link2:hover {
  color: #2c2c2c;
}

.statement-link2:hover::after {
  transform: scaleX(1);
}


.brand-block h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -.05em;
}

.cta-link,
.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.cta-link { margin-top: 28px; }
.mini-link { gap: 10px; }

.plus {
  width: 22px;
  height: 22px;
  border: 1px solid #999;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: #777;
  flex: 0 0 auto;
}

.mini-link .plus {
  width: 20px;
  height: 20px;
  font-size: 12px;
}

.project-grid,
.two-col,
.counter-row,
.brand-row,
.map-row {
  display: grid;
}

.project-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.project-card {
  text-align: left;
  transition: transform .35s ease, filter .35s ease, opacity .35s ease;
}

.project-grid:hover .project-card {
  opacity: .55;
  filter: grayscale(.1);
}

.project-grid:hover .project-card:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-8px);
}

.project-media,
.media-box,
.wide-image {
  overflow: hidden;
  background: #ececec;
}

.project-media {
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
}

.project-media img,
.media-box img,
.wide-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.project-media img {
  height: 100%;
  transition: transform .7s ease, filter .35s ease;
}

.project-card:hover .project-media img {
  transform: scale(1.08);
  filter: contrast(1.03);
}

.project-meta {
  font-size: .64rem;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 8px;
}

.project-title {
  font-size: .9rem;
  color: #2a2a2a;
}

.two-col {
  grid-template-columns: 1.1fr .9fr;
  gap: 46px;
  align-items: center;
}

.counter-row {
  grid-template-columns: 1.05fr .7fr .9fr;
  gap: 42px;
  align-items: center;
}

.brand-row {
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.map-row {
  grid-template-columns: 1fr .62fr;
  gap: 40px;
  align-items: end;
}

.text-block { padding: 8px 0; }

.counter-big {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: .9;
  font-weight: 300;
  color: #d0d0d0;
  text-align: center;
}

.center-claim {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 4px;
}

.brand-mini {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.brand-mini .brand-kicker {
  font-size: 1.3rem;
  letter-spacing: -.04em;
}

.map-card {
  min-height: 190px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5f6368;
  font-size: .95rem;
  position: relative;
  overflow: hidden;
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(66,133,244,.08), rgba(52,168,83,.06));
}

.map-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.map-pin {
  width: 16px;
  height: 16px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #4285f4;
  position: relative;
}

.map-pin::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  top: 5px;
  left: 5px;
}

/* FOOTER */

.site-footer {
  width: 100%;
  min-height: 400px;
  background: var(--footer);
  color: var(--footer-text);
  margin-top: 52px;
  position: relative;
  display: flex;
  align-items: stretch;
}

.footer-wrap {
  width: 100%;
  min-height: 400px;
  padding: 56px 38px 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.footer-left {
  max-width: 560px;
  font-size: .72rem;
  line-height: 2;
  color: var(--footer-soft);
}

.footer-brand {
  color: #fff;
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -.04em;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  font-size: .82rem;
  line-height: 1.95;
}

.footer-nav a {
  color: var(--footer-soft);
  transition: color .25s ease, transform .25s ease;
}

.footer-nav a::after {
  bottom: -2px;
  background: #fff;
  transform-origin: left;
}

.footer-nav a:hover {
  color: #fff;
  transform: translateX(-4px);
}

.footer-nav a:hover::after {
  transform: scaleX(1);
}

.back-to-top {
  position: absolute;
  top: 54px;
  right: 38px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.08);
  border-color: #fff;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity var(--transition), transform var(--transition);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECONDA PAGINA: SCROLL IMAGE ===== */

.scroll-gallery-wrap {
  position: relative;
  padding-top: 12px;
  padding-bottom: 12px;
}

.scroll-gallery-track {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.scroll-gallery-track::-webkit-scrollbar {
  display: none;
}

.scroll-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 70px;
  align-items: stretch;
}

.text-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 0;
}

.text-card-top {
  padding-top: 8px;
}

.text-card-title {
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 80px;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.text-card-body {
  max-width: 360px;
  font-size: .95rem;
  line-height: 1.65;
  color: #333;
  text-align: justify;
  margin: 0;
}

.slider-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dots button {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: 0;
  background: #c2c2c2;
  padding: 0;
  transition: transform .25s ease, background .25s ease;
}

.slider-dots button.active {
  background: #111;
  transform: scale(1.3);
}

.slider-next {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #111;
  background: transparent;
  display: grid;
  place-items: center;
  font-size: 14px;
  line-height: 1;
  transition: transform .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
}

.slider-next:hover {
  transform: translateX(2px);
  background: #111;
  color: #fff;
}

/* timeline seconda pagina */

#timeline .scroll-gallery-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
}

#timeline .scroll-gallery-track {
  gap: 40px;
  scroll-behavior: smooth;
}

#timeline .scroll-card {
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

#timeline .media-box {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

#timeline .media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#timeline .text-card {
  height: 100%;
}

#timeline .text-card-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  margin-bottom: 30px;
}

#timeline .text-card-title2 {
 /* font-size: clamp(2.5rem, 5vw, 4rem);*/
  font-weight: 500;
  margin-bottom: 30px;
}

#timeline .text-card-body {
  max-width: 420px;
  font-size: .95rem;
  line-height: 1.7;
  color: #333;
}

#timeline .slider-dots {
  gap: 6px;
}

#timeline .slider-dots button {
  width: 4px;
  height: 4px;
  background: #cfcfcf;
  border: none;
  border-radius: 50%;
}

#timeline .slider-dots button.active {
  background: #111;
  transform: scale(1.4);
}

#timeline .slider-next {
  width: 26px;
  height: 26px;
}

/* RESPONSIVE */

@media (max-width: 1199.98px) {
  .hero-frame {
    width: calc(100vw - (var(--gutter-tablet) * 2));
    max-width: 980px;
  }

  .content-frame {
    width: min(var(--content-max), calc(100vw - (var(--gutter-tablet) * 2)));
  }

  .scroll-card {
    gap: 42px;
  }
}

@media (max-width: 991.98px) {
  .header-inner {
    height: 82px;
    padding: 0 24px;
  }

  .lang-switch { right: 24px; }
  .menu-toggle { left: 20px; top: 25px; }

  .hero-frame {
    width: calc(100vw - (var(--gutter-tablet) * 2));
    max-width: none;
  }

  .content-frame {
    width: calc(100vw - (var(--gutter-tablet) * 2));
  }

  .hero-wrap { padding-top: 22px; }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .two-col,
  .counter-row,
  .brand-row,
  .map-row,
  .scroll-card,
  #timeline .scroll-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .counter-big { text-align: left; }

  .text-card-title {
    margin-bottom: 36px;
  }

  #timeline .media-box {
    height: 300px;
  }

  .footer-wrap {
    padding: 56px 24px 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .footer-nav { text-align: left; }
  .back-to-top { right: 24px; }
}

@media (max-width: 575.98px) {
  .header-inner {
    height: 74px;
    padding: 0 20px;
  }

  .brand-center { font-size: 1.5rem; }
  .lang-switch { right: 20px; font-size: .74rem; }
  .menu-toggle { top: 22px; left: 16px; }

  .hero-frame {
    width: calc(100vw - (var(--gutter-mobile) * 2));
    max-width: none;
  }

  .content-frame {
    width: calc(100vw - (var(--gutter-mobile) * 2));
  }

  .hero-wrap { padding-top: 18px; }

  .hero-carousel {
    aspect-ratio: 4 / 5;
  }

  .hero-nav {
    width: 38px;
    height: 38px;
    opacity: 1;
    visibility: visible;
  }

  .carousel-control-prev.hero-nav { left: 12px; }
  .carousel-control-next.hero-nav { right: 12px; }

  .hero-caption {
    font-size: .66rem;
    bottom: 10px;
  }

  .hero-line {
    height: 2px;
    margin-top: 8px;
  }

  .section {
    padding: 34px 0;
  }

  .hero-space { padding-bottom: 34px; }

  .soft-panel,
  .quote-panel {
    padding: 34px 22px;
  }

  .copy,
  .lead-copy,
  .body-copy,
  .text-block .copy,
  .quote-panel .copy,
  .center-claim .copy,
  .brand-mini .copy,
  .text-card-body,
  #timeline .text-card-body {
    font-size: .88rem;
  }

  .project-grid { grid-template-columns: 1fr; }
  .statement-card { min-height: 260px; }
  .counter-big { font-size: 4.5rem; }

  .scroll-gallery-track { gap: 20px; }

  .text-card {
    padding: 0;
    min-height: 220px;
  }

  .text-card-title {
    margin-bottom: 24px;
    font-size: 1.9rem;
  }

  #timeline .media-box {
    height: 220px;
  }

  #timeline .text-card-title {
    font-size: 2rem;
  }

  .site-footer,
  .footer-wrap {
    min-height: 400px;
  }

  .footer-wrap {
    padding: 52px 20px 36px;
  }

  .back-to-top {
    top: 28px;
    right: 20px;
  }

  .menu-list { margin-bottom: 80px; }
  .menu-list li + li { margin-top: 24px; }
  .menu-register { width: 150px; }
}

/* ===== PRODUZIONE ===== */

.production-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin-top: 40px;
}

.production-item {
  text-align: center;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1.5;
  font-weight: 400;
  text-transform: uppercase;
  padding: 40px 30px;
  color: #111;
}

.production-item.bordered {
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
}

/* tablet */
@media (max-width: 991.98px) {
  .production-grid {
    grid-template-columns: 1fr;
  }

  .production-item {
    padding: 30px 20px;
  }

  .production-item.bordered {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
  }
}

/* mobile fine tuning */
@media (max-width: 575.98px) {
  .production-item {
    font-size: 1.1rem;
  }
}


/* ===== BRAND REVEAL ===== */

.brand-visual {
  position: relative;
  width: 100%;
  max-width: 1134px;
  margin: 0 auto;
  overflow: hidden;
}

.brand-img {
  width: 100%;
  height: auto;
  display: block;
}

/* immagine sotto */
.brand-img.real {
  position: relative;
  z-index: 1;
}

/* overlay */
.brand-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  transition: opacity .8s ease, visibility .8s ease;
}

/* stato attivo (blur visibile) */
.brand-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* stato nascosto */
.brand-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* immagine blur */
.brand-img.blur {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) brightness(.85);
  transform: scale(1.05);
  transition: transform 1s ease;
}

/* contenuto */
.brand-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.brand-overlay-title {
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* bottone */
.brand-btn {
  border: 1px solid rgba(255,255,255,.6);
  background: transparent;
  color: #fff;
  padding: 10px 26px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: all .3s ease;
}

.brand-btn:hover {
  background: #fff;
  color: #111;
}