/* ═══════════════════════════════════════════════
   MM Vintage Cars — Stili Principali
   ═══════════════════════════════════════════════ */

/* Design tokens originali dal sito */
:root {
  --mm-green:  #006327;
  --mm-yellow: #FADE14;
  --mm-text:   #B7B7B7;
  --mm-bg:     #000000;
  --mm-border: rgba(255, 255, 255, 0.1);
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--mm-bg);
  color: var(--mm-text);
  margin: 0;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: stretch;
  height: 64px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-right: 1px solid var(--mm-border);
  flex-shrink: 0;
  text-decoration: none;
}

.logo-wrap img {
  height: 46px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 28px;
  border-left: 1px solid var(--mm-border);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--mm-green);
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
  border-left: 1px solid var(--mm-border);
  color: var(--mm-green);
  transition: opacity 0.2s;
}

.nav-icon:hover {
  opacity: 0.7;
}

.nav-icon svg {
  width: 20px;
  height: 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  align-items: center;
  margin-left: auto;
  padding: 0 20px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Menu mobile */
.mobile-menu {
  display: none;
  background: var(--mm-bg);
  border-top: 1px solid var(--mm-border);
  padding: 16px 24px 20px;
}

.mobile-menu.open {
  display: block;
}

.mobile-nav-link {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 1.3rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 0;
  border-bottom: 1px solid var(--mm-border);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--mm-green);
}

.mobile-contacts {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--mm-border);
}

.mobile-contacts a {
  color: var(--mm-green);
  font-size: 0.9rem;
  text-decoration: none;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 64px;
}

/* Ken Burns per ogni slide */
@keyframes kenBurns {
  from { transform: scale(var(--kb-s1)); }
  to   { transform: scale(var(--kb-s2)); }
}

@keyframes slideFadeIn {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  75%  { opacity: 1; }
  100% { opacity: 0; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform-origin: center center;
  /* fade + Ken Burns entrambi sul div, clippato da hero-bg overflow:hidden */
  animation: slideFadeIn 15s ease-in-out infinite, kenBurns 15s ease-in-out infinite;
}

.hero-slide:nth-child(1) { animation-delay:  0s; }
.hero-slide:nth-child(2) { animation-delay:  5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.3) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 6%;
}

/* Animazione entrata hero */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  max-width: 680px;
}

.hero-title-green,
.hero-title-yellow,
.hero-subtitle,
.hero-btns {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title-green  { animation-delay: 0.3s; }
.hero-title-yellow { animation-delay: 0.55s; }
.hero-subtitle     { animation-delay: 0.8s; }
.hero-btns         { animation-delay: 1.05s; }

.hero-title-green {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(4rem, 9vw, 115px);
  line-height: 0.92;
  color: var(--mm-green);
  text-transform: uppercase;
}

.hero-title-yellow {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(4rem, 9vw, 115px);
  line-height: 0.92;
  color: var(--mm-yellow);
  text-transform: uppercase;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin: 20px 0 32px;
  line-height: 1.65;
}

/* Bottoni hero */
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-block;
  background: var(--mm-green);
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 36px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-hero:hover {
  background: #004d1e;
}

.btn-hero-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Barra servizi */
.services-bar {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.service-item {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 18px 12px;
  border-right: 1px solid var(--mm-border);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}

.service-item:last-child {
  border-right: none;
}

.service-item:hover {
  background: var(--mm-green);
  color: var(--mm-yellow);
}

/* ══════════════════════════════
   ANIMAZIONI SCROLL
══════════════════════════════ */
.anim-fade-up,
.anim-fade-left,
.anim-fade-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-fade-up    { transform: translateY(40px); }
.anim-fade-left  { transform: translateX(-50px); }
.anim-fade-right { transform: translateX(50px); }

.anim-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger per elementi multipli */
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }
.anim-delay-6 { transition-delay: 0.6s; }
.anim-delay-7 { transition-delay: 0.7s; }
.anim-delay-8 { transition-delay: 0.8s; }
.anim-delay-9 { transition-delay: 0.9s; }

/* ══════════════════════════════
   SEZIONE SERVIZI
══════════════════════════════ */
.servizi-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 70px;
}

.servizi-bg {
  position: absolute;
  inset: 0;
}

.servizi-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.servizi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
}

.servizi-inner {
  position: relative;
  z-index: 10;
}

/* Titolo */
.servizi-header {
  text-align: center;
  padding: 60px 20px 50px;
}

.servizi-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--mm-yellow);
  text-transform: uppercase;
  margin: 0 0 12px;
  line-height: 1;
}

.servizi-subtitle {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  color: var(--mm-green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

/* Cards parallelogramma */
.servizi-cards {
  display: flex;
  gap: 30px;
  margin: 0 auto 60px;
  padding: 0 50px;
  max-width: 1300px;
  overflow: hidden;
}

.servizi-card {
  flex: 1;
  height: 210px;
  overflow: hidden;
  cursor: pointer;
  transform: skewX(-7deg);
}

/* card-inner: counter-skew — il contenuto resta dritto */
.card-inner {
  display: flex;
  height: 100%;
  width: calc(100% + 56px);
  margin-left: -28px;
  transform: skewX(7deg);
}

.card-photo {
  flex: 0 0 42%;
  overflow: hidden;
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) brightness(0.7);
  transition: filter 0.5s ease;
}

.servizi-card:hover .card-photo img {
  filter: grayscale(0%) brightness(0.95);
}

.card-content {
  flex: 1;
  background: #003d18;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px 24px 22px;
}

.card-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--mm-yellow);
  text-transform: uppercase;
  margin: 0 0 10px;
  line-height: 1;
}

.card-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 0;
}

/* Griglia 3x3 icone */
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.servizi-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 36px 20px;
  border: 1px solid rgba(0, 99, 39, 0.35);
  transition: background 0.2s;
}

.servizi-grid-item:hover {
  background: rgba(0, 99, 39, 0.2);
}

.servizi-grid-item svg {
  width: 52px;
  height: 52px;
  color: var(--mm-green);
}

.servizi-grid-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--mm-text);
  text-align: center;
  letter-spacing: 0.02em;
}

/* Placeholder sezioni future */
.placeholder-section {
  padding: 60px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.1);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ══════════════════════════════
   SOCIAL + CLUB + GALLERIA 3D
══════════════════════════════ */
.social-club-section {
  position: relative;
  background: #080808 url('../../media/galleria.png') center center / cover no-repeat;
  padding: 60px 0 80px;
}

.social-club-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  pointer-events: none;
}

.social-club-section > * {
  position: relative;
  z-index: 1;
}

.social-club-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mm-yellow);
  text-align: center;
  margin: 0 0 14px;
  line-height: 1;
}

.social-club-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--mm-text);
  text-align: center;
  margin: 0 0 52px;
  letter-spacing: 0.04em;
}

/* ── Riga Instagram | Club ── */
.insta-club-row {
  display: flex;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto 70px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Card Instagram */
.insta-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px 44px;
  text-decoration: none;
  background: #0d0d0d;
  transition: background 0.3s;
}

.insta-card:hover {
  background: #141414;
}

.insta-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
}

.insta-icon svg {
  width: 100%;
  height: 100%;
}

.insta-card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.insta-hashtag {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.insta-hash  { color: var(--mm-yellow); }
.insta-mm    { color: var(--mm-yellow); }
.insta-cars  { color: #fff; }

.insta-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}

.insta-cta {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  font-style: italic;
  color: var(--mm-yellow);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Card Club */
.club-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 44px;
  text-decoration: none;
  background: #111;
  border-left: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
  gap: 10px;
}

.club-card:hover {
  background: #161616;
}

.club-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.club-card-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--mm-yellow);
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.club-card-btn {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  margin-top: 6px;
  transition: color 0.2s, border-color 0.2s;
}

.club-card:hover .club-card-btn {
  color: var(--mm-yellow);
  border-color: var(--mm-yellow);
}

/* ── Galleria 3D ── */
.gallery-3d-section {
  overflow: hidden;
  padding: 0 0 20px;
}

.gallery-3d-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  perspective: 1400px;
  perspective-origin: 50% 50%;
  padding: 20px 0;
}

.gallery-3d-item {
  flex-shrink: 0;
  width: 360px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s ease,
              filter 0.5s ease;
  cursor: pointer;
}

.gallery-3d-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* Posizione 3D di default per ogni card */
.g3d-1 {
  transform: rotateY(28deg) scale(0.80);
  filter: brightness(0.65);
  box-shadow: 8px 20px 50px rgba(0,0,0,0.7);
}
.g3d-2 {
  transform: rotateY(13deg) scale(0.90);
  filter: brightness(0.80);
  box-shadow: 10px 20px 50px rgba(0,0,0,0.6);
}
.g3d-3 {
  transform: rotateY(0deg) scale(1.0);
  filter: brightness(1);
  box-shadow: 0 24px 70px rgba(0,0,0,0.8);
  z-index: 2;
}
.g3d-4 {
  transform: rotateY(-13deg) scale(0.90);
  filter: brightness(0.80);
  box-shadow: -10px 20px 50px rgba(0,0,0,0.6);
}
.g3d-5 {
  transform: rotateY(-28deg) scale(0.80);
  filter: brightness(0.65);
  box-shadow: -8px 20px 50px rgba(0,0,0,0.7);
}

/* Hover: si raddrizza e si illumina */
.gallery-3d-item:hover {
  transform: rotateY(0deg) scale(1.04) !important;
  filter: brightness(1) !important;
  box-shadow: 0 30px 80px rgba(0,0,0,0.9) !important;
  z-index: 10;
}

/* ══════════════════════════════
   SEZIONE MODIFICHE
══════════════════════════════ */
.modifiche-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.modifiche-bg {
  position: absolute;
  inset: 0;
}

.modifiche-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.modifiche-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
}

.modifiche-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Testo sinistra */
.modifiche-text {
  flex: 0 0 50%;
  max-width: 580px;
}

.modifiche-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 20px;
}

.mod-green {
  display: block;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--mm-green);
}

.mod-white {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: #fff;
}

.modifiche-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0 0 30px;
  max-width: 480px;
}

.btn-modifiche {
  display: inline-block;
  background: var(--mm-yellow);
  color: #111;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 36px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-modifiche:hover {
  background: #e6b800;
  transform: translateY(-2px);
}

@keyframes iconPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  70%  { transform: scale(1.2); }
  100% { transform: scale(1.28); }
}

/* Pattern X con icone */
.modifiche-icons {
  position: relative;
  flex: 0 0 480px;
  height: 400px;
}

/* Linee diagonali X */
.x-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 2px;
  background: var(--mm-yellow);
  transform-origin: center center;
  margin-left: -250px;
  margin-top: -1px;
  opacity: 0.7;
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

.x-line-1 { transform: rotate(35deg); }
.x-line-2 { transform: rotate(-35deg); }

/* Icone ai 4 punti cardinali */
.x-icon {
  position: absolute;
  color: var(--mm-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 2;
}

.x-icon svg {
  transition: filter 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(250, 222, 20, 0.4));
}

.x-icon:hover svg {
  animation: iconPop 0.35s ease forwards;
  filter:
    drop-shadow(0 0 10px rgba(250, 222, 20, 0.9))
    drop-shadow(0 0 24px rgba(250, 222, 20, 0.5))
    brightness(1.2);
}

/* Le linee X si illuminano quando hover su qualsiasi icona */
.modifiche-icons:hover .x-line {
  opacity: 1;
  background: var(--mm-yellow);
  box-shadow: 0 0 12px rgba(250, 222, 20, 0.6);
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

.x-top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 70px;
}

.x-left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 62px;
  height: 84px;
}

.x-right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 56px;
  height: 90px;
}

.x-bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 84px;
}

/* ══════════════════════════════
   SEZIONE PARTNER
══════════════════════════════ */
.partner-section {
  position: relative;
  overflow: hidden;
}

.partner-bg {
  position: absolute;
  inset: 0;
}

.partner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.partner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 15, 5, 0.82);
}

.partner-inner {
  position: relative;
  z-index: 10;
  min-height: 560px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 60px 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.partner-text {
  max-width: 900px;
}

.partner-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.8rem, 4.2vw, 4.2rem);
  color: var(--mm-yellow);
  text-transform: uppercase;
  line-height: 1.05;
  white-space: normal;
  margin: 0 0 16px;
}

.partner-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
  max-width: 400px;
}

/* Auto vintage — assoluta, centrata orizzontalmente, parallax via JS */
.partner-car {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  pointer-events: none;
}

.partner-car img {
  width: 780px;
  max-width: 90vw;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.7));
  will-change: transform;
}

/* Ticker brand scorrevole */
.partner-brands {
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.08);
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brands-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 18s linear infinite;
}

.brands-track img {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brands-track:hover {
  animation-play-state: paused;
}

/* ══════════════════════════════
   SEZIONE FILM — ROAD TO ICELAND
══════════════════════════════ */
.film-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video background Vimeo */
.film-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.film-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 16:9 */
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw; /* 9/16 × 100vw */
  transform: translate(-50%, -50%);
  border: 0;
}

/* Overlay blu/cyan come nell'originale */
.film-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 100, 160, 0.72);
}

.film-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* tutto sulla destra */
  padding: 50px 40px;
}

/* Colonna destra: logo + card */
.film-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  width: 62%;   /* occupa destra della pagina, sinistra mostra il video */
}

/* Logo in alto a destra */
.film-top {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.film-logo {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
}

/* Card */
.film-card {
  display: flex;
  width: 100%;
  min-height: 220px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

/* Sinistra: testo su sfondo bianco/crema */
.film-card-text {
  flex: 0 0 42%;
  background: #f5f2eb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 30px;
}

.film-card-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: #c9920a;
  text-transform: uppercase;
  margin: 0 0 14px;
  line-height: 1.1;
}

.film-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* Destra: immagine + bottone */
.film-card-visual {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.film-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.btn-film {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #111;
  color: var(--mm-yellow);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 22px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-film:hover {
  background: var(--mm-green);
}

/* ══════════════════════════════
   CONTATTI
══════════════════════════════ */
.contatti-section {
  background: var(--mm-bg);
  padding: 80px 40px;
  display: flex;
  justify-content: center;
}

.contatti-box {
  display: flex;
  width: 100%;
  max-width: 1200px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  min-height: 380px;
}

.contatti-map {
  flex: 0 0 38%;
  min-height: 360px;
}

.contatti-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: invert(90%) hue-rotate(180deg);
}

.contatti-info {
  flex: 1;
  padding: 36px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contatti-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--mm-yellow);
  line-height: 1;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.contatti-address {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 22px;
}

.contatti-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 0 28px;
}

.contatti-contacts {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.contatti-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
}

.contatti-vline {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
}

.contatti-label {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(0.8rem, 1.3vw, 0.95rem);
  font-weight: 700;
  font-style: italic;
  color: var(--mm-green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contatti-icon {
  width: 42px;
  height: 42px;
}

.contatti-value {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: #1c1c1c;
  background-image: url('../../media/galleria.png');
  background-size: cover;
  background-position: center;
  position: relative;
  font-family: 'Inter', sans-serif;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.88);
  pointer-events: none;
}

.footer > * {
  position: relative;
}

.footer-body {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 44px 60px 28px;
}

.footer-logo {
  flex: 0 0 auto;
}

.footer-logo img {
  height: 110px;
  width: auto;
}

.footer-company {
  flex: 1;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  line-height: 1.9;
  padding-top: 6px;
}

.footer-company p {
  margin: 0;
}

.footer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding-top: 6px;
}

.footer-links a {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  font-style: italic;
  color: var(--mm-yellow);
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 12px 0 28px;
}

.footer-social a {
  color: var(--mm-yellow);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-social svg {
  width: 26px;
  height: 26px;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--mm-green);
  padding: 12px 60px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #ffffff;
}

/* ══════════════════════════════
   RESPONSIVE — Tablet (≤1024px)
══════════════════════════════ */
@media (max-width: 1024px) {

  /* Navbar */
  .nav-link {
    padding: 0 18px;
    font-size: 1.05rem;
  }

  /* Hero */
  .hero-content {
    padding: 0 5%;
  }

  /* Servizi cards */
  .servizi-cards {
    padding: 0 30px;
    gap: 16px;
  }

  .servizi-card {
    height: 190px;
  }

  /* Film */
  .film-right {
    width: 72%;
  }
}

/* ══════════════════════════════
   RESPONSIVE — Mobile (≤768px)
══════════════════════════════ */
@media (max-width: 768px) {

  /* ── Navbar ── */
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* ── Hero ── */
  .hero-content {
    padding: 0 6%;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn-hero {
    padding: 11px 28px;
    font-size: 1rem;
  }

  /* Services bar: riga unica trasparente */
  .services-bar {
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .service-item {
    padding: 12px 6px;
    font-size: 0.78rem;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.12);
  }

  .service-item:last-child {
    border-right: none;
  }

  /* ── Servizi section ── */
  .servizi-header {
    padding: 40px 20px 30px;
  }

  .servizi-cards {
    flex-direction: column;
    padding: 0 20px;
    gap: 12px;
  }

  /* Niente skew su mobile */
  .servizi-card {
    transform: skewX(0deg);
    height: auto;
    min-height: 150px;
  }

  .card-inner {
    transform: skewX(0deg);
    width: 100%;
    margin-left: 0;
  }

  .card-photo {
    flex: 0 0 38%;
  }

  .card-content {
    padding: 18px 20px;
  }

  /* Icone servizi: 2 colonne su mobile */
  .servizi-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    padding: 0 10px;
  }

  .servizi-grid-item {
    padding: 24px 12px;
  }

  /* ── Social + Club + Galleria 3D ── */
  .insta-club-row { flex-direction: column; margin: 0 16px 48px; }
  .club-card { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .insta-card { padding: 24px 20px; gap: 16px; }
  .insta-icon { width: 52px; height: 52px; }
  .club-card { padding: 28px 20px; }
  .gallery-3d-wrap { gap: 10px; }
  .gallery-3d-item { width: 180px; }
  .g3d-1, .g3d-5 { display: none; }
  .g3d-2 { transform: rotateY(18deg) scale(0.88); }
  .g3d-4 { transform: rotateY(-18deg) scale(0.88); }

  /* ── Partner section ── */
  .partner-inner {
    flex-direction: column;
    padding: 40px 20px 280px;
    align-items: center;
    text-align: center;
    min-height: auto;
  }

  .partner-text {
    flex: none;
    max-width: 100%;
  }

  .partner-title {
    font-size: clamp(1.6rem, 7vw, 2.6rem);
  }

  .partner-desc {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .partner-car {
    bottom: -80px;
  }

  .partner-car img {
    width: 300px;
    max-width: 88vw;
  }

  .brands-track img {
    height: 42px;
  }

  /* ── Modifiche section ── */
  .modifiche-inner {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
  }

  .modifiche-text {
    flex: none;
    max-width: 100%;
  }

  .modifiche-icons {
    flex: none;
    width: 320px;
    height: 260px;
  }

  /* ── Film section ── */
  .film-section {
    min-height: auto;
    padding: 50px 0;
  }

  .film-inner {
    justify-content: center;
    padding: 30px 20px;
  }

  .film-right {
    width: 100%;
    align-items: center;
  }

  .film-logo {
    height: 80px;
  }

  .film-card {
    flex-direction: column;
    min-height: auto;
  }

  .film-card-text {
    flex: none;
    padding: 24px 20px;
  }

  .film-card-visual {
    height: 200px;
  }

  .btn-film {
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  /* ── Contatti ── */
  .contatti-section {
    padding: 48px 20px;
  }

  .contatti-box {
    flex-direction: column;
  }

  .contatti-map {
    flex: none;
    min-height: 240px;
  }

  .contatti-info {
    padding: 28px 24px;
  }

  /* ── Footer ── */
  .footer-body {
    flex-wrap: wrap;
    padding: 36px 24px 20px;
    gap: 24px;
  }

  .footer-logo img {
    height: 80px;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-bar {
    padding: 10px 24px;
  }
}

/* ══════════════════════════════
   RESPONSIVE — Small Mobile (≤480px)
══════════════════════════════ */
@media (max-width: 480px) {

  /* Navbar */
  .logo-wrap img {
    height: 36px;
  }

  /* Hero */
  .hero-title-green,
  .hero-title-yellow {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .hero-subtitle {
    font-size: 0.88rem;
  }

  /* Servizi cards: foto sopra, testo sotto */
  .servizi-card {
    min-height: 120px;
  }

  .card-photo {
    flex: 0 0 35%;
  }

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

  .card-text {
    font-size: 0.8rem;
  }

  /* Icone: 1 colonna */
  .servizi-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Film */
  .film-logo {
    height: 65px;
  }

  .film-card-title {
    font-size: 1.3rem;
  }

  .film-card-desc {
    font-size: 0.85rem;
  }

  /* Contatti */
  .contatti-contacts {
    flex-direction: column;
    gap: 20px;
  }

  .contatti-vline {
    display: none;
  }

  .contatti-col {
    padding: 0;
  }

  /* Footer */
  .footer-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-bar {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 12px 16px;
  }
}

/* ══════════════════════════════
   BLOG — SEZIONE ANTEPRIMA (homepage)
══════════════════════════════ */
.blog-preview-section {
  position: relative;
  background: #080808 url('../../media/scopri.png') center center / cover no-repeat;
  padding: 80px 40px 90px;
}

.blog-preview-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.91);
  pointer-events: none;
}

.blog-preview-section > * {
  position: relative;
  z-index: 1;
}

.blog-preview-header {
  text-align: center;
  margin-bottom: 56px;
}

.blog-preview-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  text-transform: uppercase;
  color: var(--mm-yellow);
  line-height: 1;
  margin: 0 0 14px;
}

.blog-preview-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--mm-text);
  margin: 0;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 52px;
}

.blog-preview-cta {
  text-align: center;
}

/* ── Card post (usata sia in homepage che in blog.html) ── */
.post-card {
  display: flex;
  flex-direction: column;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}

.post-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.25);
}

.post-card-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.post-card-cover-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-card-cover-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.2;
}

.post-card-body {
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.post-card-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mm-green);
  margin: 0;
}

.post-card-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
}

.post-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.post-card-title a:hover {
  color: var(--mm-yellow);
}

.post-card-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--mm-text);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-link {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--mm-yellow);
  text-decoration: none;
  margin-top: auto;
  padding-top: 6px;
  transition: opacity 0.2s;
}

.post-card-link:hover {
  opacity: 0.75;
}

/* Stato vuoto */
.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.3);
  padding: 40px 0;
}

/* Bottone "Tutti gli articoli" */
.btn-blog-all {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mm-yellow);
  border: 2px solid var(--mm-yellow);
  padding: 12px 36px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}

.btn-blog-all:hover {
  background: var(--mm-yellow);
  color: #000;
}

/* ══════════════════════════════
   BLOG — PAGINA INDICE (blog.html)
══════════════════════════════ */
.blog-page-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #080808 url('../../media/banner/blog banner.jpg') center center / cover no-repeat;
  margin-top: 64px;
}

.blog-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
}

.gallery-page-hero {
  background-image: url('../../media/banner/galleria banner.png') !important;
}

.shop-page-hero {
  background-image: url('../../media/banner/shop banner.webp') !important;
}

.blog-page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 20px;
}

.blog-page-hero-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.8rem, 6vw, 5rem);
  text-transform: uppercase;
  color: var(--mm-yellow);
  line-height: 1;
  margin: 0 0 12px;
}

.blog-page-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.blog-page-main {
  background: var(--mm-bg);
  padding: 72px 40px 100px;
}

.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ══════════════════════════════
   BLOG — SINGOLO POST
══════════════════════════════ */
.post-page-main {
  background: var(--mm-bg);
  padding: 100px 24px 80px;
}

.post-article {
  max-width: 760px;
  margin: 0 auto;
}

.post-article-category {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mm-green);
  border: 1px solid var(--mm-green);
  padding: 3px 12px;
  margin-bottom: 20px;
}

.post-article-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.08;
  margin: 0 0 16px;
}

.post-article-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--mm-text);
  line-height: 1.65;
  margin: 0 0 24px;
  border-left: 3px solid var(--mm-yellow);
  padding-left: 18px;
}

.post-article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-article-meta time {
  color: var(--mm-green);
  font-weight: 600;
}

.post-article-cover {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 40px;
  display: block;
}

/* ── Contenuto generato dall'AI ── */
.contenuto {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--mm-text);
  line-height: 1.8;
}

.contenuto h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-transform: uppercase;
  color: var(--mm-yellow);
  margin: 48px 0 16px;
  line-height: 1.1;
}

.contenuto h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: #fff;
  margin: 32px 0 12px;
}

.contenuto p {
  margin: 0 0 20px;
}

.contenuto ul,
.contenuto ol {
  padding-left: 24px;
  margin: 0 0 20px;
}

.contenuto li {
  margin-bottom: 8px;
}

.contenuto blockquote {
  border-left: 3px solid var(--mm-yellow);
  padding: 12px 20px;
  margin: 28px 0;
  background: rgba(250, 222, 20, 0.04);
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

.contenuto img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 24px 0;
  display: block;
}

.contenuto a {
  color: var(--mm-yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contenuto a:hover {
  opacity: 0.8;
}

.contenuto strong {
  color: #ffffff;
  font-weight: 600;
}

/* Post — back link */
.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--mm-text);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s;
}

.post-back-link:hover {
  color: var(--mm-yellow);
}

/* ── Responsive blog ── */
@media (max-width: 1024px) {
  .blog-preview-grid,
  .blog-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-preview-section {
    padding: 60px 20px 70px;
  }

  .blog-page-main {
    padding: 48px 20px 70px;
  }

  .blog-preview-grid,
  .blog-page-grid {
    grid-template-columns: 1fr;
  }

  .post-page-main {
    padding: 80px 20px 60px;
  }

  .post-article-meta {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* ══════════════════════════════
   GALLERIA PUBBLICA (galleria.html)
══════════════════════════════ */
.gallery-page-main {
  background: var(--mm-bg);
  padding: 72px 40px 100px;
}

.gallery-page-grid {
  columns: 3;
  column-gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-page-item {
  break-inside: avoid;
  margin-bottom: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-page-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.9);
}

.gallery-page-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.gallery-page-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-page-item:hover .gallery-page-item-overlay {
  background: rgba(0,0,0,0.45);
}

.gallery-page-caption {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-page-item:hover .gallery-page-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-empty-msg {
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-family: 'Inter', sans-serif;
  padding: 60px 0;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

/* ══════════════════════════════
   SHOP PUBBLICO (shop.html)
══════════════════════════════ */
.shop-page-main {
  background: var(--mm-bg);
  padding: 72px 40px 100px;
}

.shop-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.shop-filter-btn {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 22px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--mm-text);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
}

.shop-filter-btn:hover,
.shop-filter-btn.active {
  background: var(--mm-yellow);
  border-color: var(--mm-yellow);
  color: #000;
}

.shop-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Card prodotto */
.product-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
}

.product-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
}

.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img-wrap img {
  transform: scale(1.05);
}

.product-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.15;
  color: #fff;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 2px;
}

.product-badge.disponibile { background: var(--mm-green); color: #fff; }
.product-badge.riservato   { background: #b8860b; color: #fff; }
.product-badge.venduto     { background: #555; color: #fff; }

.product-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.product-card-cat {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mm-green);
  margin: 0;
}

.product-card-name {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

.product-card-price {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--mm-yellow);
  margin: 4px 0 0;
}

.product-card-actions {
  margin-top: auto;
  padding-top: 14px;
}

.btn-contattaci {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  background: var(--mm-green);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
  width: 100%;
  text-align: center;
}

.btn-contattaci:hover { background: #004d1e; }
.btn-contattaci:disabled,
.btn-contattaci.venduto { background: #444; cursor: default; }

/* Modal contatto */
.contact-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.contact-modal-overlay.open { display: flex; }

.contact-modal {
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 40px 44px;
  max-width: 440px;
  width: 90%;
  position: relative;
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  line-height: 1;
}

.contact-modal-close:hover { opacity: 1; }

.contact-modal-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--mm-yellow);
  margin: 0 0 6px;
}

.contact-modal-product {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--mm-text);
  margin: 0 0 28px;
}

.contact-modal-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
}

.contact-modal-row:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-modal-row svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--mm-green);
}

.contact-modal-row-text {
  display: flex;
  flex-direction: column;
}

.contact-modal-row-label {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

.contact-modal-row-value {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

/* Pagina prodotto singolo */
.product-page-main {
  background: var(--mm-bg);
  padding: 100px 24px 80px;
}

.product-article {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-slider {
  position: sticky;
  top: 90px;
}

.product-slider-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 12px;
  display: block;
}

.product-slider-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-slider-thumb {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}

.product-slider-thumb.active,
.product-slider-thumb:hover {
  opacity: 1;
  border-color: var(--mm-yellow);
}

.product-info-status {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 18px;
}

.product-info-name {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 12px;
}

.product-info-price {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--mm-yellow);
  margin: 0 0 24px;
}

.product-info-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--mm-text);
  line-height: 1.75;
  margin: 0 0 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.product-info-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-cta-phone,
.btn-cta-email {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 3px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-cta-phone {
  background: var(--mm-green);
  color: #fff;
}

.btn-cta-phone:hover { background: #004d1e; }

.btn-cta-email {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
}

.btn-cta-email:hover { border-color: rgba(255,255,255,0.5); }

/* Responsive shop + galleria */
@media (max-width: 1024px) {
  .shop-page-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-page-grid { columns: 2; }
  .product-article { grid-template-columns: 1fr; gap: 32px; }
  .product-slider { position: static; }
}

@media (max-width: 768px) {
  .shop-page-main,
  .gallery-page-main { padding: 48px 20px 70px; }
  .shop-page-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { columns: 1; }
  .contact-modal { padding: 28px 24px; }
  .product-page-main { padding: 80px 16px 60px; }
}

/* ══════════════════════════════
   COOKIE BANNER GDPR
══════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-wrap: wrap;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--mm-text);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-banner p a {
  color: var(--mm-yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions button {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 9px 20px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--mm-text);
  transition: all 0.2s;
}

.cookie-actions button:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cookie-actions .cookie-accept {
  background: var(--mm-green);
  border-color: var(--mm-green);
  color: #fff;
}

.cookie-actions .cookie-accept:hover {
  background: #004d1e;
  border-color: #004d1e;
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1;
    text-align: center;
  }
}

/* ══════════════════════════════
   FORM CONTATTI (homepage)
══════════════════════════════ */
.contatti-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contatti-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field input,
.form-field textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--mm-yellow);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-contatti-submit {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  background: var(--mm-green);
  color: #fff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.btn-contatti-submit:hover { background: #004d1e; }
.btn-contatti-submit:disabled { background: #444; cursor: default; }

.form-success,
.form-error {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 3px;
  margin: 0;
}

.form-success { background: rgba(0, 99, 39, 0.25); color: #6dba8b; border: 1px solid rgba(0, 99, 39, 0.4); }
.form-error   { background: rgba(180, 40, 40, 0.2); color: #e07070; border: 1px solid rgba(180, 40, 40, 0.4); }

@media (max-width: 600px) {
  .contatti-form-row {
    grid-template-columns: 1fr;
  }

  .btn-contatti-submit {
    width: 100%;
    text-align: center;
  }
}

/* ══════════════════════════════
   PAGINE LEGALI (privacy, T&C)
══════════════════════════════ */
.legal-page-main {
  background: var(--mm-bg);
  padding: 100px 24px 80px;
}

.legal-article {
  max-width: 800px;
  margin: 0 auto;
}

.legal-article h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--mm-yellow);
  line-height: 1.05;
  margin: 0 0 8px;
}

.legal-article .legal-updated {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin: 0 0 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.legal-article h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  text-transform: uppercase;
  color: #fff;
  margin: 36px 0 12px;
}

.legal-article p,
.legal-article li {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--mm-text);
  line-height: 1.75;
}

.legal-article ul {
  padding-left: 22px;
  margin: 0 0 16px;
}

.legal-article a {
  color: var(--mm-yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ══════════════════════════════
   PAGINA 404
══════════════════════════════ */
.not-found-main {
  background: var(--mm-bg);
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.not-found-inner {
  text-align: center;
  max-width: 560px;
}

.not-found-code {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(6rem, 18vw, 12rem);
  color: var(--mm-yellow);
  line-height: 1;
  margin: 0;
}

.not-found-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}

.not-found-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--mm-text);
  margin: 0 0 36px;
  line-height: 1.65;
}

.not-found-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
