/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --charcoal: #2a2a2a;
  --cement: #3d3d3d;
  --gray: #6b6b6b;
  --light: #a8a8a8;
  --offwhite: #f2f0ed;
  --white: #fafaf9;
  --orange: #e85c1a;
  --orange-dark: #c44a10;
  --orange-light: #ff7a3d;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--offwhite);
  font-family: 'Barlow', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background-color: var(--orange); color: var(--white); }

img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #3d3d3d; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ===== TYPOGRAPHY UTILITIES ===== */
.font-condensed { font-family: 'Barlow Condensed', sans-serif; }
.font-inter { font-family: 'Inter', sans-serif; }
.font-sans { font-family: 'Barlow', sans-serif; }

.label-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--orange);
}

.heading-xl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.heading-lg {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.heading-md {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.text-offwhite { color: var(--offwhite); }
.text-light { color: var(--light); }
.text-gray { color: var(--gray); }

/* ===== LAYOUT UTILITIES ===== */
.section-padding { padding: 5rem 0; }
@media (min-width: 768px) { .section-padding { padding: 7rem 0; } }
@media (min-width: 1024px) { .section-padding { padding: 8rem 0; } }

.container-wide {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .container-wide { padding: 0 2rem; } }
@media (min-width: 1024px) { .container-wide { padding: 0 3rem; } }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.15s;
}
.btn-primary:hover {
  background-color: var(--orange-light);
  box-shadow: 0 0 30px rgba(232, 92, 26, 0.4);
}
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(242, 240, 237, 0.4);
  color: var(--offwhite);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  background: none;
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s, transform 0.15s;
}
.btn-outline:hover {
  border-color: var(--offwhite);
  background-color: rgba(242, 240, 237, 0.1);
}
.btn-outline:active { transform: scale(0.98); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.4s ease;
  padding: 1.25rem 0;
}
#navbar.scrolled {
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 42, 42, 0.5);
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.nav-logo-box {
  width: 2rem; height: 2rem;
  background-color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-box span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 0.875rem;
  line-height: 1;
}
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links button {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--light);
  transition: color 0.2s;
  letter-spacing: 0.03em;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-links button:hover { color: var(--white); }

.nav-cta {
  display: none;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: color 0.2s;
  padding: 0.25rem;
}
.nav-hamburger:hover { color: var(--white); }
@media (min-width: 1024px) { .nav-hamburger { display: none; } }

.nav-hamburger svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2; fill: none; }

/* Mobile menu */
#mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
#mobile-menu.open {
  max-height: 500px;
  opacity: 1;
}
.mobile-menu-inner {
  background-color: rgba(13, 13, 13, 0.98);
  border-top: 1px solid rgba(42, 42, 42, 0.5);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu-inner button {
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--light);
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(42, 42, 42, 0.3);
  transition: color 0.2s;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
}
.mobile-menu-inner button:last-of-type { border-bottom: none; }
.mobile-menu-inner button:hover { color: var(--white); }
.mobile-menu-cta {
  margin-top: 0.75rem;
  justify-content: center;
  width: 100%;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black), rgba(13,13,13,0.6), rgba(13,13,13,0.2));
}
.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,0.7), transparent, transparent);
}

.hero-accent-line {
  position: absolute;
  left: 0; top: 0;
  width: 4px;
  background-color: var(--orange);
  height: 0;
  transition: height 1s ease 0.4s;
}
.hero-accent-line.loaded { height: 100%; }

.hero-content {
  position: relative;
  padding-bottom: 5rem;
  padding-top: 8rem;
  width: 100%;
}
@media (min-width: 768px) { .hero-content { padding-bottom: 7rem; } }

.hero-inner { max-width: 48rem; }

.hero-tag {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
  margin-bottom: 1.25rem;
  display: block;
}
.hero-tag.loaded { opacity: 1; transform: translateY(0); }

.hero-h1 {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
  color: var(--white);
  margin-bottom: 1rem;
}
.hero-h1.loaded { opacity: 1; transform: translateY(0); }

.hero-sub {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
  font-family: 'Inter', sans-serif;
  color: var(--light);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 32rem;
  margin-bottom: 2.5rem;
}
.hero-sub.loaded { opacity: 1; transform: translateY(0); }

.hero-ctas {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease 0.65s, transform 0.7s ease 0.65s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
.hero-ctas.loaded { opacity: 1; transform: translateY(0); }

.hero-stats {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease 0.8s, transform 0.7s ease 0.8s;
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(42, 42, 42, 0.5);
}
.hero-stats.loaded { opacity: 1; transform: translateY(0); }

.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.875rem;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  transition: color 0.3s, opacity 0.7s ease 1s;
  opacity: 0;
  cursor: pointer;
  background: none;
  border: none;
}
.hero-scroll-btn:hover { color: var(--orange); }
.hero-scroll-btn.loaded { opacity: 1; }
@media (min-width: 768px) { .hero-scroll-btn { right: 3rem; } }

.hero-scroll-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll-icon {
  width: 14px; height: 14px;
  animation: bounce 1.5s infinite;
}
.hero-scroll-icon path { stroke: currentColor; stroke-width: 2; fill: none; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ===== ABOUT ===== */
#chi-siamo { background-color: var(--black); }

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.about-mosaic {
  position: relative;
}
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.about-img-wide {
  grid-column: span 2;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.about-img-sq {
  overflow: hidden;
  aspect-ratio: 1;
}
.about-img-wide img, .about-img-sq img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.about-img-wide:hover img, .about-img-sq:hover img { transform: scale(1.05); }

.about-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background-color: var(--orange);
  padding: 1rem 1.25rem;
  display: none;
}
@media (min-width: 768px) { .about-badge { display: block; } }
.about-badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
}
.about-badge-sub {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-text { }
.about-h2 { color: var(--white); margin-bottom: 1.5rem; }
.about-p {
  font-family: 'Inter', sans-serif;
  color: var(--light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.about-feature {
  border-left: 2px solid var(--orange);
  padding-left: 1rem;
}
.about-feature-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-feature-desc {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* ===== SERVICES ===== */
#servizi { background-color: var(--dark); }

.services-header { text-align: center; margin-bottom: 4rem; }
.services-h2 { color: var(--white); margin-bottom: 1.25rem; }
.services-sub {
  font-family: 'Inter', sans-serif;
  color: var(--light);
  font-size: 1rem;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  overflow: hidden;
  background-color: var(--charcoal);
  cursor: default;
}
.service-card:hover .service-img { transform: scale(1.05); }
.service-card:hover .service-title { color: var(--orange); }
.service-card:hover .service-icon { background-color: var(--orange); border-color: var(--orange); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card:hover .service-accent { width: 100%; }

.service-img-wrap {
  height: 12rem;
  overflow: hidden;
  position: relative;
}
.service-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(42,42,42,0.6));
}

.service-body { padding: 1.5rem; }
.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.service-icon {
  width: 2.5rem; height: 2.5rem;
  background-color: rgba(232,92,26,0.1);
  border: 1px solid rgba(232,92,26,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.service-icon svg { color: var(--orange); transition: color 0.3s; width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }
.service-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--gray);
  border: 1px solid var(--charcoal);
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.service-desc {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.6;
}
.service-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background-color: var(--orange);
  transition: width 0.5s ease;
}

/* CTA card in services */
.service-cta-card {
  background-color: var(--orange);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 12.5rem;
}
.service-cta-tag {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.75rem;
}
.service-cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.service-cta-p {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  line-height: 1.6;
}
.service-cta-btn {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--black);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.625rem 1.25rem;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}
.service-cta-btn:hover { background-color: var(--charcoal); }

/* ===== TRAINERS ===== */
#trainer { background-color: var(--black); }

.trainers-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .trainers-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.trainers-h2 { color: var(--white); }
.trainers-sub {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  font-size: 0.875rem;
  max-width: 18rem;
  line-height: 1.6;
}

.trainers-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .trainers-grid { grid-template-columns: repeat(3, 1fr); } }

.trainer-card {
  position: relative;
  overflow: hidden;
  background-color: var(--dark);
  border: 1px solid rgba(42,42,42,0.5);
  transition: border-color 0.4s;
}
.trainer-card:hover {
  border-color: rgba(232,92,26,0.3);
}
.trainer-card:hover .trainer-img { transform: scale(1.05); }
.trainer-card:hover .trainer-socials { opacity: 1; transform: translateY(0); }

.trainer-photo {
  position: relative;
  height: 18rem;
  overflow: hidden;
}
.trainer-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
.trainer-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark), transparent, transparent);
}

.trainer-socials {
  position: absolute;
  top: 1rem; right: 1rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.trainer-social-btn {
  width: 2rem; height: 2rem;
  background-color: rgba(13,13,13,0.7);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}
.trainer-social-btn:hover { background-color: var(--orange); }
.trainer-social-btn svg { width: 14px; height: 14px; stroke: var(--white); stroke-width: 2; fill: none; }

.trainer-info { padding: 1.5rem; }
.trainer-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}
.trainer-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.trainer-bio {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.trainer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.trainer-cert {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--light);
  background-color: var(--charcoal);
  padding: 0.25rem 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== GALLERY ===== */
#gallery { background-color: var(--dark); }

.gallery-header { text-align: center; margin-bottom: 3.5rem; }
.gallery-h2 { color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item.wide { grid-column: span 2; }

.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(13,13,13,0);
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { background-color: rgba(13,13,13,0.4); }

.gallery-zoom {
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
  text-align: center;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translateY(0); }

.gallery-zoom-icon {
  width: 2.5rem; height: 2.5rem;
  background-color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.gallery-zoom-icon svg { width: 18px; height: 18px; stroke: var(--white); stroke-width: 2; fill: none; }
.gallery-zoom-label {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(13,13,13,0.95);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#lightbox.active { display: flex; }
#lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 2.5rem; height: 2.5rem;
  background-color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}
#lightbox-close:hover { background-color: var(--orange); }
#lightbox-close svg { width: 18px; height: 18px; stroke: var(--white); stroke-width: 2; fill: none; }
#lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
}

/* ===== PRICING ===== */
#abbonamenti { background-color: var(--black); }

.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-h2 { color: var(--white); margin-bottom: 1.25rem; }
.pricing-sub {
  font-family: 'Inter', sans-serif;
  color: var(--light);
  font-size: 1rem;
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--charcoal);
  background-color: var(--dark);
  transition: all 0.3s;
}
.pricing-card.highlight {
  border-color: var(--orange);
  box-shadow: 0 0 50px rgba(232,92,26,0.15);
  transform: scale(1.02);
}
@media (min-width: 768px) { .pricing-card.highlight { transform: scale(1.05); } }

.pricing-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange);
  padding: 0.375rem 1rem;
}
.pricing-badge span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.pricing-inner {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-header-block {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(42,42,42,0.5);
}
.pricing-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.pricing-price-row {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 3rem;
  line-height: 1;
}
.pricing-period {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.pricing-desc {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.6;
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.pricing-check {
  width: 1rem; height: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
}
.pricing-card.highlight .pricing-check { color: var(--orange); }
.pricing-check svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.5; fill: none; }
.pricing-feature-text {
  font-family: 'Inter', sans-serif;
  color: var(--light);
  font-size: 0.875rem;
  line-height: 1.6;
}

.pricing-cta {
  margin-top: 2rem;
  width: 100%;
  padding: 0.875rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  background-color: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--charcoal);
}
.pricing-cta:hover { background-color: var(--cement); }
.pricing-card.highlight .pricing-cta {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.pricing-card.highlight .pricing-cta:hover { background-color: var(--orange-light); }

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  font-size: 0.75rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background-color: var(--dark); }

.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-h2 { color: var(--white); }

.rating-overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(42,42,42,0.5);
}
@media (min-width: 640px) {
  .rating-overview { flex-direction: row; }
}

.rating-main { text-align: center; }
.rating-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 4.5rem;
  color: var(--white);
  line-height: 1;
}
.rating-stars { display: flex; gap: 0.25rem; justify-content: center; margin-top: 0.5rem; }
.rating-stars svg { width: 16px; height: 16px; fill: var(--orange); stroke: var(--orange); }
.rating-label {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.rating-divider {
  width: 1px; height: 4rem;
  background-color: var(--charcoal);
  display: none;
}
@media (min-width: 640px) { .rating-divider { display: block; } }

.rating-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.rating-stat { text-align: center; }
.rating-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.875rem;
  color: var(--white);
}
.rating-stat-label {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background-color: rgba(42,42,42,0.4);
  border: 1px solid rgba(42,42,42,0.6);
  padding: 1.75rem;
  position: relative;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(42,42,42,1); }

.testimonial-quote-icon { margin-bottom: 1.25rem; }
.testimonial-quote-icon svg { width: 32px; height: 32px; stroke: rgba(232,92,26,0.2); fill: none; }

.testimonial-highlight {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--orange);
  border: 1px solid rgba(232,92,26,0.3);
  padding: 0.25rem 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: 'Inter', sans-serif;
  color: var(--light);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(42,42,42,0.5);
}
.testimonial-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}
.testimonial-since {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  font-size: 0.75rem;
}
.testimonial-stars {
  margin-left: auto;
  display: flex;
  gap: 2px;
}
.testimonial-stars svg { width: 12px; height: 12px; fill: var(--orange); stroke: var(--orange); }

/* ===== CONTACT ===== */
#contatti { background-color: var(--black); }

.contact-header { text-align: center; margin-bottom: 4rem; }
.contact-h2 { color: var(--white); margin-bottom: 1.25rem; }
.contact-sub {
  font-family: 'Inter', sans-serif;
  color: var(--light);
  font-size: 1rem;
  max-width: 28rem;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
  }
}

/* Map placeholder */
.contact-map {
  aspect-ratio: 4/3;
  background-color: var(--dark);
  border: 1px solid rgba(42,42,42,0.6);
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}
.contact-map iframe {
  width: 100%; height: 100%;
  display: block;
  border: 0;
}

/* Info blocks */
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon {
  width: 2.25rem; height: 2.25rem;
  background-color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.contact-info-icon svg { width: 15px; height: 15px; stroke: var(--orange); stroke-width: 2; fill: none; }
.contact-info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.contact-info-value {
  font-family: 'Inter', sans-serif;
  color: var(--light);
  font-size: 0.875rem;
}
.contact-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.25rem;
}
.contact-hours-day {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  font-size: 0.75rem;
}
.contact-hours-time {
  font-family: 'Inter', sans-serif;
  color: var(--light);
  font-size: 0.75rem;
}

/* Form */
.contact-form-wrap {
  background-color: var(--dark);
  border: 1px solid rgba(42,42,42,0.5);
  padding: 2rem;
}

.form-grid-2 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }

.form-group { margin-bottom: 1.25rem; }
.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background-color: var(--charcoal);
  border: 1px solid rgba(61,61,61,0.4);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(107,107,107,0.5); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--orange); }
.form-select { cursor: pointer; }
.form-textarea { resize: none; }

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.875rem 1.75rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
  margin-top: 0.5rem;
}
.form-submit:hover { background-color: var(--orange-light); box-shadow: 0 0 30px rgba(232,92,26,0.4); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-submit svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }

.form-spinner {
  display: none;
  width: 1rem; height: 1rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}
.form-success-icon {
  width: 3.5rem; height: 3.5rem;
  background-color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.form-success-icon svg { width: 24px; height: 24px; stroke: var(--white); stroke-width: 2.5; fill: none; }
.form-success-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 1.875rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.form-success-p {
  font-family: 'Inter', sans-serif;
  color: var(--light);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 22rem;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--dark);
  border-top: 1px solid rgba(42,42,42,0.5);
}

.footer-main { padding: 4rem 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand { grid-column: span 2; }
@media (min-width: 768px) { .footer-brand { grid-column: auto; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.footer-logo-box {
  width: 2rem; height: 2rem;
  background-color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-box span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 0.875rem;
}
.footer-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-tagline {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 18rem;
}
.footer-socials { display: flex; gap: 0.75rem; }
.footer-social {
  width: 2rem; height: 2rem;
  background-color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.footer-social:hover { background-color: var(--orange); }
.footer-social svg { width: 14px; height: 14px; stroke: var(--gray); stroke-width: 2; fill: none; transition: stroke 0.3s; }
.footer-social:hover svg { stroke: var(--white); }

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links button, .footer-links li span {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
  padding: 0;
}
.footer-links button:hover { color: var(--orange); }
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer-contact-info .time { color: var(--light); }

.footer-bottom {
  border-top: 1px solid rgba(42,42,42,0.4);
}
.footer-bottom-inner {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; } }
.footer-copy {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  font-size: 0.75rem;
}
.footer-disclaimer {
  font-family: 'Inter', sans-serif;
  color: var(--cement);
  font-size: 0.75rem;
  text-align: center;
  font-style: italic;
}
