*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section--white {
  background-color: #ffffff;
}

.section--light {
  background-color: #f7f7f8;
}

.section__label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C8102E;
  margin-bottom: 12px;
}

.section__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__intro {
  font-size: 0.95rem;
  color: #555;
  max-width: 680px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.4;
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  background-color: #C8102E;
  color: #ffffff;
  border-color: #C8102E;
}

.btn--primary:hover {
  background-color: #a30d25;
  border-color: #a30d25;
}

.btn--secondary {
  background-color: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.btn--secondary:hover {
  background-color: #333;
  border-color: #333;
}

.btn--outline-light {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
  background-color: #ffffff;
  color: #1a1a1a;
  border-color: #ffffff;
}

.btn--full {
  width: 100%;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.4s ease;
}

.header--scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  transition: padding 0.4s ease;
}

.header--scrolled .header__container {
  padding: 8px 20px;
}

.header__logo-img {
  height: 64px;
  width: auto;
  transition: height 0.4s ease;
}

.header--scrolled .header__logo-img {
  height: 52px;
}

.header__nav {
  display: none;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__link {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.header--scrolled .header__link {
  color: #1a1a1a;
}

.header__link:hover,
.header__link.active {
  color: #C8102E;
}

.header__link--cta {
  background-color: #C8102E;
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 8px;
  margin-left: 8px;
}

.header__link--cta:hover {
  background-color: #a30d25;
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
}

.header__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header--scrolled .header__hamburger span {
  background-color: #1a1a1a;
}

.header__hamburger.active span {
  background-color: #1a1a1a;
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__bg--desktop {
  background-image: url('hero-desktop.jpg');
  background-position: center center;
  display: none;
}

.hero__bg--mobile {
  background-image: url('hero-mobile.jpg');
  background-position: center 40%;
  display: block;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 600px;
  padding: 80px 24px 40px;
}

.hero__badge {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero__title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__ctas .btn {
  width: 100%;
}

.hero__scroll-hint {
  display: none;
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  margin: 8px auto 0;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
  40% { transform: rotate(45deg) translateY(8px); }
  60% { transform: rotate(45deg) translateY(4px); }
}

body.no-scroll {
  overflow: hidden;
}
.chi-siamo__content {
  max-width: 720px;
}

.chi-siamo__content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.9;
  margin-bottom: 18px;
}

.chi-siamo__content p:last-child {
  margin-bottom: 0;
}

.chi-siamo__content strong {
  color: #1a1a1a;
}

.accesso__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.accesso__grid--due {
  grid-template-columns: 1fr;
}

.accesso__card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 28px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.accesso__card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.accesso__card--featured {
  border-color: #C8102E;
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.08);
}

.accesso__card-badge {
  position: absolute;
  top: -11px;
  left: 20px;
  background-color: #C8102E;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
}

.accesso__card-icon {
  color: #C8102E;
  margin-bottom: 16px;
}

.accesso__card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.accesso__card-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
}

.accesso__card-list {
  margin-bottom: 24px;
}

.accesso__card-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.85rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 8px;
}

.accesso__card-list li:last-child {
  margin-bottom: 0;
}

.accesso__card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #C8102E;
}

.accesso__card:nth-child(1) { transition-delay: 0s; }
.accesso__card:nth-child(2) { transition-delay: 0.1s; }

.campionato__timeline {
  position: relative;
  padding-left: 36px;
}

.campionato__timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #C8102E 0%, #e0e0e0 100%);
  border-radius: 2px;
}

.tappa {
  position: relative;
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tappa.revealed {
  opacity: 1;
  transform: translateY(0);
}

.tappa:last-child {
  margin-bottom: 0;
}

.tappa__number {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background-color: #C8102E;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin-left: -36px;
}

.tappa__content {
  background-color: #f7f7f8;
  border-radius: 12px;
  padding: 20px;
  flex-grow: 1;
  border: 1px solid #eeeeee;
  transition: box-shadow 0.3s ease;
}

.tappa__status {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  background-color: #e8e8e8;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.tappa__status--confirmed {
  color: #ffffff;
  background-color: #C8102E;
}

.tappa__status--finale {
  color: #ffffff;
  background-color: #1a1a1a;
}

.tappa__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.tappa__date {
  font-size: 0.82rem;
  font-weight: 600;
  color: #C8102E;
  margin-bottom: 6px;
}

.tappa__desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
}

.tappa:nth-child(1) { transition-delay: 0s; }
.tappa:nth-child(2) { transition-delay: 0.08s; }
.tappa:nth-child(3) { transition-delay: 0.16s; }
.tappa:nth-child(4) { transition-delay: 0.24s; }
.tappa:nth-child(5) { transition-delay: 0.32s; }
.tappa:nth-child(6) { transition-delay: 0.4s; }
.dove-siamo__essenziale {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 720px;
}

.dove-siamo__card {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.dove-siamo__card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.dove-siamo__card-icon {
  flex-shrink: 0;
  color: #C8102E;
  margin-top: 2px;
}

.dove-siamo__card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.dove-siamo__card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
}

.dove-siamo__card:nth-child(1) { transition-delay: 0s; }
.dove-siamo__card:nth-child(2) { transition-delay: 0.1s; }
.dove-siamo__card:nth-child(3) { transition-delay: 0.2s; }

.contatti__social-main {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  max-width: 400px;
}

.contatti__social-big {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background-color: #f7f7f8;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.contatti__social-big svg {
  flex-shrink: 0;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.contatti__social-big span {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contatti__social-big:active {
  transform: scale(0.98);
}

.contatti__email-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}

.contatti__email-secondary svg {
  flex-shrink: 0;
  color: #999;
}

.contatti__email-secondary a {
  font-size: 0.88rem;
  color: #777;
  transition: color 0.3s ease;
}

.contatti__email-secondary a:hover {
  color: #C8102E;
}

.cta-finale {
  background-color: #1a1a1a;
  padding: 56px 0;
  text-align: center;
}

.cta-finale__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.cta-finale__text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.cta-finale__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.cta-finale__buttons .btn {
  width: 100%;
  max-width: 340px;
}

.footer {
  background-color: #111111;
  padding: 48px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
  opacity: 0.9;
}

.footer__tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer__heading {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer__links ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a,
.footer__contact a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: #C8102E;
}

.footer__contact li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer__social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.footer__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.footer__social-links a:hover {
  background-color: #C8102E;
  color: #ffffff;
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer__legal {
  margin-top: 4px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
}
/* ============================================================
   TABLET — min 768px
   ============================================================ */
@media (min-width: 768px) {

  .container {
    padding: 0 32px;
  }

  .section {
    padding: 80px 0;
  }

  .section__title {
    font-size: 2.2rem;
  }

  .section__intro {
    font-size: 1.05rem;
    margin-bottom: 40px;
  }

  .hero__bg--desktop {
    display: block;
  }

  .hero__bg--mobile {
    display: none;
  }

  .hero__content {
    max-width: 700px;
    padding: 0 32px;
  }

  .hero__badge {
    font-size: 0.75rem;
    letter-spacing: 3px;
    padding: 7px 18px;
    margin-bottom: 24px;
  }

  .hero__title {
    font-size: 2.8rem;
    margin-bottom: 32px;
  }

  .hero__ctas {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .hero__ctas .btn {
    width: auto;
  }

  .hero__scroll-hint {
    display: block;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .header__hamburger {
    display: none;
  }

  .header__nav {
    display: flex;
  }

  .header__logo-img {
    height: 72px;
  }

  .header--scrolled .header__logo-img {
    height: 56px;
  }

  .chi-siamo__content {
    max-width: 800px;
  }

  .chi-siamo__content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .accesso__grid--due {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .accesso__card {
    padding: 32px 24px;
  }

  .accesso__card-title {
    font-size: 1.2rem;
  }

  .tappa__number {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
    margin-left: -36px;
  }

  .tappa__content {
    padding: 24px;
  }

  .tappa {
    gap: 20px;
    margin-bottom: 32px;
  }

  .tappa__title {
    font-size: 1.1rem;
  }

  .dove-siamo__essenziale {
    max-width: 800px;
    gap: 20px;
  }

  .dove-siamo__card {
    padding: 24px;
  }

  .contatti__social-main {
    flex-direction: row;
    max-width: none;
    gap: 16px;
  }

  .contatti__social-big {
    flex: 1;
    justify-content: center;
    padding: 22px 24px;
  }

  .cta-finale {
    padding: 72px 0;
  }

  .cta-finale__title {
    font-size: 2rem;
  }

  .cta-finale__buttons {
    flex-direction: row;
    justify-content: center;
  }

  .cta-finale__buttons .btn {
    width: auto;
    max-width: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    text-align: left;
  }

  .footer__brand {
    align-items: flex-start;
  }

  .footer__social-links {
    justify-content: flex-start;
  }
}

/* ============================================================
   DESKTOP — min 1024px
   ============================================================ */
@media (min-width: 1024px) {

  .container {
    padding: 0 24px;
  }

  .section {
    padding: 100px 0;
  }

  .section__title {
    font-size: clamp(2.2rem, 4vw, 3rem);
  }

  .section__intro {
    font-size: 1.1rem;
    margin-bottom: 48px;
  }

  .header__container {
    padding: 16px 24px;
  }

  .header--scrolled .header__container {
    padding: 10px 24px;
  }

  .header__logo-img {
    height: 80px;
  }

  .header--scrolled .header__logo-img {
    height: 60px;
  }

  .hero__content {
    max-width: 800px;
  }

  .hero__title {
    font-size: clamp(3rem, 6vw, 4.2rem);
  }

  .chi-siamo__content p {
    font-size: 1.05rem;
    line-height: 1.9;
  }

  .accesso__grid--due {
    gap: 32px;
  }

  .accesso__card {
    padding: 36px 28px;
  }

  .accesso__card-title {
    font-size: 1.3rem;
  }

  .campionato__timeline {
    padding-left: 40px;
  }

  .campionato__timeline::before {
    left: 18px;
  }

  .tappa__number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    margin-left: -40px;
  }

  .tappa__content {
    padding: 28px;
  }

  .tappa {
    gap: 24px;
    margin-bottom: 40px;
  }

  .tappa__title {
    font-size: 1.2rem;
  }

  .dove-siamo__card {
    padding: 28px;
  }

  .contatti__social-big {
    padding: 24px 28px;
    border-radius: 16px;
  }

  .contatti__social-big span {
    font-size: 1.1rem;
  }

  .contatti__social-big svg {
    width: 40px;
    height: 40px;
  }

  .cta-finale {
    padding: 80px 0;
  }

  .cta-finale__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }

  .footer {
    padding: 64px 0 0;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }

  .footer__logo {
    height: 44px;
  }

  .footer__bottom {
    padding: 28px 0;
  }
}

/* ============================================================
   LARGE DESKTOP — min 1400px
   ============================================================ */
@media (min-width: 1400px) {

  .container {
    max-width: 1320px;
  }

  .hero__title {
    font-size: 4.5rem;
  }

  .section {
    padding: 120px 0;
  }

  .header__logo-img {
    height: 88px;
  }

  .header--scrolled .header__logo-img {
    height: 64px;
  }
}

/* ============================================================
   SMALL MOBILE — max 380px
   ============================================================ */
@media (max-width: 380px) {

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section__label {
    font-size: 0.68rem;
    letter-spacing: 2px;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .hero__content {
    padding: 72px 16px 32px;
  }

  .hero__badge {
    font-size: 0.65rem;
    padding: 5px 12px;
  }

  .hero__title {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .btn--lg {
    padding: 13px 24px;
    font-size: 0.88rem;
  }

  .accesso__card {
    padding: 22px 16px;
  }

  .accesso__card-badge {
    left: 16px;
    font-size: 0.62rem;
  }

  .tappa__content {
    padding: 16px;
  }

  .tappa__title {
    font-size: 0.95rem;
  }

  .tappa__desc {
    font-size: 0.8rem;
  }

  .dove-siamo__card {
    padding: 16px;
    gap: 12px;
  }

  .contatti__social-big {
    padding: 16px 18px;
  }

  .contatti__social-big span {
    font-size: 0.95rem;
  }

  .cta-finale {
    padding: 44px 0;
  }

  .cta-finale__title {
    font-size: 1.4rem;
  }

  .cta-finale__text {
    font-size: 0.85rem;
  }

  .footer {
    padding: 36px 0 0;
  }

  .footer__bottom {
    padding: 20px 0;
  }

  .footer__bottom p {
    font-size: 0.72rem;
  }
}

/* ============================================================
   MOBILE MENU OVERLAY — max 767px
   ============================================================ */
@media (max-width: 767px) {

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .header__nav.open {
    right: 0;
  }

  .header__menu {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .header__link {
    font-size: 1.15rem;
    color: #1a1a1a !important;
    padding: 14px 32px;
    border-radius: 8px;
    display: block;
    width: 100%;
  }

  .header__link:hover,
  .header__link.active {
    background-color: rgba(200, 16, 46, 0.06);
    color: #C8102E !important;
  }

  .header__link--cta {
    margin-left: 0;
    margin-top: 12px;
    color: #ffffff !important;
    background-color: #C8102E;
  }

  .header__link--cta:hover,
  .header__link--cta.active {
    background-color: #a30d25;
    color: #ffffff !important;
  }

  .header__hamburger {
    display: flex;
  }
}

/* ============================================================
   HOVER — only on pointer devices
   ============================================================ */
@media (hover: hover) {

  .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.3);
  }

  .btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .btn--outline-light:hover {
    transform: translateY(-2px);
  }

  .accesso__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  }

  .tappa__content:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  .dove-siamo__card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  .contatti__social-big:hover {
    background-color: #C8102E;
    color: #ffffff;
    border-color: #C8102E;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.25);
  }

  .contatti__social-big:hover svg {
    color: #ffffff;
  }

  .footer__social-links a:hover {
    transform: translateY(-2px);
  }

  .header__link--cta:hover {
    transform: translateY(-1px);
  }
}

/* ============================================================
   HOVER DISABLED — touch devices
   ============================================================ */
@media (hover: none) {

  .accesso__card:hover,
  .tappa__content:hover,
  .dove-siamo__card:hover {
    transform: none;
    box-shadow: none;
  }

  .btn--primary:hover,
  .btn--secondary:hover,
  .btn--outline-light:hover {
    transform: none;
    box-shadow: none;
  }

  .contatti__social-big:hover {
    transform: none;
    box-shadow: none;
    background-color: #f7f7f8;
    color: #1a1a1a;
    border-color: #e8e8e8;
  }

  .contatti__social-big:hover svg {
    color: #1a1a1a;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .tappa,
  .accesso__card,
  .dove-siamo__card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__scroll-arrow {
    animation: none;
  }

  .hero__bg {
    transform: none !important;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {

  .header,
  .hero__scroll-hint,
  .cta-finale {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .section {
    padding: 30px 0;
    break-inside: avoid;
  }