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

body {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease;
  background: var(--color-tertiary);
}

:root {
  --color-primary: #fff;
  --color-secondary: #d7a100;
  --color-tertiary: #230000;
  --font-secondary: "Lora", serif;
  --font-primary: "Source Sans 3", sans-serif;
}

section, header, footer {
  padding: 100px 0;
  position: relative;
}

video, img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 70px;
  position: relative;
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.holder, .text {
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6, p {
  font-family: var(--font-primary);
  color: var(--color-primary);
  text-align: center;
  font-weight: 700;
}

h1 {
  font-size: 70px;
  line-height: 1;
  text-transform: uppercase;
}

h1 .title-main {
  font-family: var(--font-primary);
  font-size: 70px;
  color: var(--color-primary);
}

h2 {
  font-size: 32px;
  line-height: 1.2;
  text-transform: uppercase;
}

h2 .title-main {
  font-family: var(--font-primary);
  font-size: inherit;
  color: var(--color-primary);
  font-weight: 700;
  display: block;
}

h2 span:not(.title-main), h3 span:not(.title-main) {
  font-weight: 400;
  font-style: italic;
  text-transform: initial;
}

h1 span, h2 span, h3 span {
  font-family: var(--font-secondary);
  color: var(--color-secondary);
}

.title-main {
  font-family: var(--font-primary) !important;
  color: inherit !important;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: bold;
}

.c--anim p {
  text-align: left;
}

/* ─── BUTTON ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 57px;
  padding: 20px 40px 20px;
  background: linear-gradient(136.67deg, #ffd551 0%, #fabd00 100%);
  border: none;
  border-bottom: 4px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  box-shadow: 0 0 50px 0 rgba(255, 126, 33, 0.3),
    0 0 18px rgba(255, 213, 81, 0.2);
  color: #602900;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.25s ease, filter 0.25s ease,
    opacity 0.25s ease;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08) saturate(1.08);
  box-shadow: 0 0 65px 0 rgba(255, 126, 33, 0.42),
    0 0 24px rgba(255, 213, 81, 0.32);
  opacity: 1;
}

.btn:active {
  transform: translateY(0);
}

/* ─── STICKY CTA (mobile only) ────────────────────────────── */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-tertiary);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid #fff;
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-cta-info {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
}

.sticky-cta-info strong,
.sticky-cta-info span {
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--color-primary);
  white-space: nowrap;
  font-weight: 700;
}

.sticky-cta-info .dot {
  font-family: var(--font-primary);
  color: var(--color-secondary);
  font-size: 16px;
}

.sticky-cta .btn {
  height: 44px;
  padding: 10px 20px 10px;
  font-size: 13px;
  flex-shrink: 0;
}

/* ─── HEADER ─────────────────────────────────────────────── */

header {
  display: none;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(136.67deg, #ffd551 0%, #fabd00 100%);
  color: #111;
  font-family: var(--font-primary);
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.3;
  padding: 8px;
  width: 100%;
  z-index: 1;
}

.topbar span {
  font-weight: 500;
  display: block;
}

/* ─── HERO ───────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--color-tertiary);
  padding: 80px 0 100px;
}

.hero .overflow-hidden {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero .overflow-hidden::before,
footer .overflow-hidden::before {
  content: "";
  width: 100%;
  height: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.hero .container {
  width: 100%;
}

.hero .holder {
  gap: 60px;
  align-items: center;
}

.hero .text {
  gap: 60px;
  align-items: center;
  max-width: 700px;
}

.hero .text > p {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
}

.hero-logo {
  width: min(100%, 500px);
  height: auto;
  object-fit: contain;
}

.hero-description {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
}

/* Info panels */
.hero .info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 0px;
  max-width: 800px;
}

.hero .hero-brands {
  max-width: 880px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.hero .hero-brands img {
  width: auto;
  max-width: 92px;
  max-height: 46px;
}

.hero .info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 6px;
  padding: 24px 14px;
  text-align: center;
  min-height: 133px;
}

.hero .info-box:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.hero .info-box p:nth-child(1) {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.hero .info-box p:nth-child(2) {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.2;
}



.hero .info-box p:nth-child(3) {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

/* Hero info mobile — nascosto su desktop */
.hero-info-mobile {
  display: none;
}

/* ─── ABOUT ──────────────────────────────────────────────── */

.about {
  background: #fff;
}

.about h2,
.about h3,
.about h4,
.about p {
  color: var(--color-tertiary);
}

.about h2 .title-main {
  color: var(--color-tertiary) !important;
}

.about .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.about .holder:nth-of-type(1) {
  gap: 15px;
  align-items: center;
  max-width: 773px;
}

.about .holder:nth-of-type(1) p {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 1.625;
  color: var(--color-tertiary);
}

.about .holder:nth-of-type(1) strong {
  font-weight: 700;
  color: var(--color-tertiary);
}

.about .videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
}

.about .video {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
  width: 100%;
}

.about .video h4 {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  color: var(--color-tertiary);
}

.about .video .overflow-hidden {
  width: 100%;
  height: 268px;
  position: relative;
  background: #d9d9d9;
}

.about .video .overflow-hidden iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.about .cta-subtext {
  font-size: 15px;
  font-weight: 400;
  color: rgba(5, 20, 36, 0.6);
  text-align: center;
  line-height: 1.6;
  max-width: 560px;
  margin-top: -30px;
}

.about .altre-sedi {
  font-size: 17px;
  font-weight: 400;
  font-family: var(--font-secondary);
  text-align: center;
  line-height: 1.6;
}

/* ─── ESPERIENZA ─────────────────────────────────────────── */

.esperienza {
  background: var(--color-tertiary);
}

.esperienza .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

.esperienza .holder:nth-of-type(1) {
  align-items: center;
}

.esperienza .holder:nth-of-type(2) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  backdrop-filter: blur(2px);
  align-items: stretch;
  flex-direction: unset;
}

.esperienza .info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 24px;
}

.esperienza .info-box:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.esperienza .info-box h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 1.2;
}

.esperienza .info-box .experience-title {
  font-family: var(--font-primary);
}

.esperienza .info-box p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.5;
  max-width: 325px;
}

.esperienza p {
  font-size: 18px;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1.6;
}

/* ─── GALLERY ────────────────────────────────────────────── */

.gallery {
  background: #fff;
  padding: 100px 0;
}

.gallery .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.gallery-header {
  gap: 16px;
  align-items: center;
  max-width: 600px;
  text-align: center;
}

.gallery-header h2 {
  color: var(--color-tertiary);
}

.gallery-header h2 .title-main {
  color: var(--color-tertiary) !important;
}

.gallery-header p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(5, 20, 36, 0.65);
  line-height: 1.6;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5px;
  height: 700px;
  width: 100%;
}

.gallery-item {
  overflow: hidden;
  /* border: 4px solid rgba(166, 139, 125, 0.1); */
  /* padding: 4px; */
  position: relative;
}

.gallery-item > a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* .gallery-item.desaturated img {
  filter: grayscale(100%);
} */

.gallery-item:nth-child(1) {
  grid-column: 1 / span 8;
  grid-row: 1;
}
.gallery-item:nth-child(2) {
  grid-column: 9 / span 4;
  grid-row: 1;
}
.gallery-item:nth-child(3) {
  grid-column: 1 / span 4;
  grid-row: 2;
}
.gallery-item:nth-child(4) {
  grid-column: 5 / span 8;
  grid-row: 2;
}

.gallery-hidden {
  display: none;
}

.gallery p {
  color: initial;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}

.disclaimer-gallery {
  width: 100%;
  text-align: center;
  font-family: var(--font-primary);
  opacity: 0.7;
}

/* ─── INFO PRATICHE ──────────────────────────────────────── */

.info-pratiche {
  background: var(--color-tertiary);
}

.bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.85) 40%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

.info-pratiche .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-pratiche > .container > h2 {
  text-align: left;
  font-size: 30px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.6;
}

.info-pratiche .holder {
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.info-pratiche .text.holder {
  flex: 0 0 380px;
  flex-direction: column;
  gap: 30px;
}

.info-pratiche .location h4,
.info-pratiche .orari h4,
.info-pratiche .ticket-logos h4 {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 400;
  color: var(--color-secondary);
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 8px;
}

.info-pratiche .location h2 {
  font-size: 24px;
  text-align: left;
  margin-top: 8px;
  margin-bottom: 4px;
  color: var(--color-primary);
  line-height: 1;
}

.info-pratiche .location p {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  color: var(--color-primary);
  line-height: 1.5;
}

.info-pratiche .orari {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.info-pratiche .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-pratiche .info-row:last-child {
  border-bottom: none;
}

.info-pratiche .info-row p {
  font-size: 16px;
  text-align: left;
  color: var(--color-primary);
  line-height: 1.5;
}

.info-pratiche .info-row p strong {
  font-weight: 700;
  color: var(--color-primary);
}

.ticket-logos .logos-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ticket-logos .logos-row img {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.ticket-logos .logos-row img[alt="Etes"] {
  height: 28px;
}

.info-pratiche .parcheggio {
  display: flex;
  align-items: center;
  gap: 16px;
  /* background: rgba(255, 255, 255, 0.05); */
  border-left: 4px solid var(--color-secondary);
  padding: 16px 16px 16px 20px;
}

.info-pratiche .parcheggio svg {
  flex-shrink: 0;
}

.info-pratiche .parcheggio p {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  text-align: left;
  line-height: 1.4;
}

.info-pratiche .overflow-hidden {
  flex: 1;
  height: 278px;
  border-radius: 2px;
}

.info-pratiche .overflow-hidden iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(20%);
}

/* ─── MAPS ────────────────────────────────────────────────── */
.maps {
  padding: 0px;
  height: 500px;
}

.maps .overflow-hidden,
.maps .overflow-hidden iframe {
  height: 100%;
  width: 100%;
}

/* ─── FAQ ────────────────────────────────────────────────── */

section.faq {
  background: var(--color-tertiary);
}

section.faq .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

section.faq .faq.holder {
  flex: 1;
  max-width: 700px;
  gap: 48px;
  flex-direction: column;
}

section.faq .faq.holder .text {
  gap: 16px;
}

section.faq h2 {
  font-size: 30px;
  text-align: left;
  color: var(--color-primary);
}

section.faq .text p {
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  color: var(--color-primary);
  letter-spacing: 0.2px;
  line-height: 1.625;
}

section.faq .text p strong {
  font-weight: 700;
}

.faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

details.faq-item {
  border-bottom: 2px solid var(--color-secondary);
  overflow: hidden;
}

details.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 24px 15px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--color-primary);
  letter-spacing: 1.4px;
  line-height: 1.43;
  gap: 16px;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-primary);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

details.faq-item[open] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 24px 16px 0;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
  line-height: 1.6;
}

.faq-item {
  color: rgba(255, 255, 255, 0.75);
}

.faq-item ul {
  list-style: initial;
  padding-left: 18px;
}

.faq-item li {
  padding: 0 24px 16px 0;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
  line-height: 1.6;
}

.faq-answer a {
  color: #fff;
}

section.faq .info.holder {
  flex-direction: column;
  gap: 30px;
  min-width: 220px;
}

section.faq .info.holder .info-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

section.faq .info-box h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  color: var(--color-primary);
  line-height: 1.8;
}

section.faq .info-box p {
  font-size: 17px;
  font-weight: 400;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

section.faq .info-box a {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

section.faq .info-box a svg {
  width: 25px;
}
section.faq .info-box a svg path {
  fill: var(--color-primary);
}
section.faq .info-box a:hover {
  color: var(--color-secondary);
}

/* ─── FOOTER ─────────────────────────────────────────────── */

footer {
  padding: 160px 0px 20px 0px;
  background: var(--color-tertiary);
}

footer .overflow-hidden {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

footer .container {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

footer .container > .holder {
  align-items: center;
  gap: 40px;
}

footer h3 {
  font-size: 50px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-primary);
}

footer h3 .title-main {
  font-size: inherit;
  display: block;
  color: var(--color-primary) !important;
}

.footer-brands {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px 50px;
}

.footer-brands img {
  width: 100%;
  max-height: 50px;
  max-width: 150px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom .holder {
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-primary);
}

.footer-bottom a {
  color: var(--color-primary);
  text-decoration: none;
}

.footer-bottom a:hover {
  opacity: 1;
}

a.wh-widget-button {
  position: fixed;
  right: 15px;
  bottom: 20px;
  background: #3fd83a;
  z-index: 7;
  width: 50px;
  height: 50px;
  padding: 4px 4px 4px 4px;
  border-radius: 50%;
  box-shadow: 0 2px 14px -3px #000000a3;
  transition: all .3s ease-out;
}

.wh-messenger-svg-whatsapp path {
  fill: white;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE — max-width: 768px
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Base */

  section, footer {
    padding: 50px 0;
  }

  .container {
    padding: 0 20px;
  }

  .sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 0;
  }

  footer {
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  }

  .sticky-cta.visible ~ a.wh-widget-button {
    bottom: 80px;
  }

  /* ── Header ── */

  header {
    display: none;
  }

  .topbar {
    font-size: 16px;
    letter-spacing: 0;
  }

  /* ── Hero ── */

  .hero {
    min-height: 400px;
    align-items: flex-end;
    padding-top: 130px;
  }

  .hero .holder {
    gap: 60px;
    padding-top: 0px;
    padding-bottom: 0px;
    justify-content: space-between;
  }

  .hero .text {
    gap: 50px;
    max-width: 100%;
  }

  .hero-logo {
    width: min(100%, 280px);
  }

  .btn {
    font-size: 16px;
  }

  .sticky-cta .btn {
    font-size: 14px;
  }

  /* Nasconde il paragrafo "17 cantanti" su mobile */
  .hero-description {
    display: none;
  }

  /* Nasconde le info box dentro la hero su mobile */
  .hero-info-desktop {
    display: none !important;
  }

  h1 span,
  h1 .title-main,
  h1 {
    font-size: 35px;
  }

  h1,
  h2,
  h3 {
    line-height: 0.11;
  }

  h1 span,
  h2 span,
  h3 span {
    line-height: 1.2;
  }

  .hero .text p:first-child {
    font-size: 11px;
    letter-spacing: 2.5px;
  }

  /* ── Hero info mobile ── */
  .hero-info-mobile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--color-tertiary);
    border-top: 1px solid rgba(250, 189, 0, 0.2);
  }

  .hero-info-mobile .info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 20px 6px;
    text-align: center;
  }

  .hero-info-mobile .info-box:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .hero-info-mobile .info-box p:nth-child(1) {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 2px;
  }

  .hero-info-mobile .info-box p:nth-child(2) {
    font-size: 15px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.2;
  }

  .hero-info-mobile .info-box:nth-child(3) p:nth-child(2) {
    font-size: 13px;
  }

  .hero-info-mobile .info-box p:nth-child(3) {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
  }

  /* ── About ── */
  .about .holder:nth-of-type(1) {
    max-width: 100%;
  }

  .about .holder:nth-of-type(1) p {
    font-size: 17px;
  }

  .about .videos-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
  }

  .about .video {
    width: 100%;
  }

  .about .video .overflow-hidden {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
  }

  .about .video .overflow-hidden iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .about .video h4 {
    font-size: 20px;
  }

  .about .cta-subtext {
    font-size: 16px;
    margin-top: -20px;
  }

  /* ── Esperienza ── */
  .esperienza .holder:nth-of-type(2) {
    grid-template-columns: 1fr;
  }

  .esperienza .info-box:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .esperienza .info-box {
    padding: 20px;
  }

  .esperienza .info-box h3 {
    font-size: 20px;
  }

  .esperienza p {
    font-size: 16px;
  }

  /* ── Gallery ── */

  .gallery {
    padding: 64px 0px;
  }
  .gallery-header {
    max-width: 100%;
  }

  .gallery-header p, .gallery p {
    font-size: 16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    height: auto;
    gap: 12px;
  }

  .gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .gallery-item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  .gallery-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  /* ── Info Pratiche ── */

  .bg-overlay::after {
    background: rgba(0, 0, 0, 0.75);
  }

  .info-pratiche > .container > h2 {
    font-size: 24px;
  }

  .info-pratiche .holder {
    flex-direction: column;
    gap: 32px;
  }

  .info-pratiche .text.holder {
    flex: unset;
    width: 100%;
  }

  .ticket-logos .logos-row img {
    height: 28px;
  }

  .ticket-logos .logos-row img[alt="Etes"] {
    height: 24px;
  }

  .info-pratiche .overflow-hidden {
    width: 100%;
    height: 220px;
    margin-top: 0;
  }

  /* ── FAQ ── */
  section.faq .container {
    flex-direction: column;
    gap: 48px;
  }

  section.faq .faq.holder {
    width: 100%;
    gap: 32px;
  }

  section.faq h2 {
    font-size: 24px;
  }

  section.faq .text p {
    font-size: 16px;
  }

  section.faq .info.holder {
    padding-top: 0;
    flex-wrap: wrap;
    gap: 24px;
  }

  section.faq .info.holder .info-box {
    flex: 1;
    min-width: 140px;
  }

  /* ── Footer ── */
  footer h3 {
    font-size: 24px;
    line-height: 0.1;
  }

  footer .container {
    gap: 60px;
  }

  footer .container > .holder {
    gap: 60px;
  }



  .footer-bottom {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .footer-bottom .holder {
    justify-content: center;
  }

  .footer-brands img {
    max-width: 80px;
  }
}