/* ============================================================
   MANUELA BULGARI EXPERIENCE™  — Brand Stylesheet 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&family=Raleway:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---- Variables ---- */
:root {
  --black:        #080808;
  --dark:         #111111;
  --dark-2:       #181818;
  --gold:         #c8a96e;
  --gold-light:   #e2c98a;
  --orange:       #F7941D;
  --orange-dark:  #D97A0A;
  --orange-glow:  rgba(247,148,29,.18);
  --white:        #f5f4f0;
  --grey:         #8a8a8a;
  --grey-light:   #d0d0d0;
  --radius:       4px;
  --transition:   .35s cubic-bezier(.25,.46,.45,.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --font-title:   'Cinzel', Georgia, serif;
  --font-body:    'Raleway', system-ui, sans-serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-serif:   'Cinzel', Georgia, serif;
}

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

/* ---- Page transition (View Transitions API) ---- */
@keyframes page-fade-in  { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes page-fade-out { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(-4px); } }
::view-transition-old(root) { animation: 180ms ease-in  both page-fade-out; }
::view-transition-new(root) { animation: 220ms ease-out both page-fade-in;  }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }

/* ---- Typography ---- */
h1,h2,h3 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: .04em;
  text-transform: uppercase;
}
h4 { font-family: var(--font-body); font-weight: 500; line-height: 1.3; }
h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p  { font-family: var(--font-body); color: var(--grey-light); line-height: 1.85; font-weight: 300; }

.serif { font-family: var(--font-serif); }
.gold  { color: var(--gold); }
.tm    { font-size: .55em; vertical-align: super; letter-spacing: 0; color: var(--gold); font-family: var(--font-sans); font-weight: 500; }

/* ---- Section wrapper ---- */
.section { padding: 100px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-num {
  font-family: var(--font-serif);
  font-size: .68rem;
  font-weight: 700;
  color: rgba(247,148,29,.45);
  letter-spacing: .08em;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 20px;
}
.section-sub {
  color: var(--grey);
  font-size: .95rem;
  max-width: 560px;
}

/* ============================================================
   USER BAR (logged-in indicator)
   ============================================================ */
.user-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: 34px;
  background: rgba(8,8,8,.97);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
}
.user-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.user-bar__text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  color: rgba(245,244,240,.6);
  white-space: nowrap;
}
.user-bar__text strong { color: rgba(245,244,240,.9); font-weight: 500; }
.user-bar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: userbar-pulse 2.5s ease-in-out infinite;
}
@keyframes userbar-pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .45; }
}
.user-bar__badge {
  display: inline-block;
  padding: .1rem .5rem;
  border-radius: 99px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.user-bar__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.user-bar__btn {
  background: none;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(245,244,240,.6);
  font-size: .68rem;
  padding: .18rem .7rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, color .2s;
  font-family: inherit;
  letter-spacing: .04em;
}
.user-bar__btn:hover { border-color: rgba(200,169,110,.5); color: #c8a96e; }
.user-bar__btn--gold { border-color: rgba(247,148,29,.4); color: #f7941d; }
.user-bar__btn--gold:hover { border-color: #f7941d; color: #fff; background: rgba(247,148,29,.1); }

/* Shift nav down when user-bar is visible */
[data-userbar="1"] .nav { top: 34px; }
[data-userbar="1"] .hero,
[data-userbar="1"] .hero-slideshow { padding-top: 34px; }

@media (max-width: 600px) {
  .user-bar__text .user-bar__badge { display: none; }
  .user-bar__btn { padding: .18rem .5rem; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(8,8,8,.8) 0%, rgba(8,8,8,0) 100%);
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(14px);
  padding: 10px 40px;
  border-bottom: 1px solid rgba(247,148,29,.15);
}

.nav-logo { flex-shrink: 0; }
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition);
}
.nav.scrolled .nav-logo img { height: 38px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-serif);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,244,240,.9);
  transition: color var(--transition);
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width .35s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--orange); }

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-btn-shop {
  padding: 8px 18px;
  font-size: .68rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn-gold {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px var(--orange-glow);
}
.btn-gold:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--orange-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245,244,240,.35);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-dark {
  background: rgba(245,244,240,.08);
  color: var(--white);
  border: 1px solid rgba(245,244,240,.15);
}
.btn-dark:hover { background: rgba(245,244,240,.14); }

.btn-ghost {
  background: transparent;
  color: var(--orange);
  border: none;
  padding: 0;
  letter-spacing: .1em;
  font-size: .75rem;
}
.btn-ghost:hover { color: var(--orange-dark); text-decoration: underline; }

.btn-lg { padding: 16px 40px; font-size: .82rem; }
.btn-xl { padding: 20px 52px; font-size: .88rem; letter-spacing: .16em; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  overflow-y: auto;
  padding: 100px 24px 48px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu > a {
  font-size: 1.4rem;
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--white);
  letter-spacing: .04em;
  padding: 10px 0;
  transition: color var(--transition);
  text-align: center;
}
.nav-mobile-menu > a:hover { color: var(--gold); }
.nav-mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  width: 260px;
  padding-bottom: 16px;
}
.nav-mobile-ctas .btn { justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -30% 0;  /* extra space for parallax travel without showing edges */
  background-size: cover;
  background-position: center top;
  will-change: transform;
  transition: opacity .8s ease;
  opacity: 0;
}
.hero.loaded .hero-bg { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,.1) 0%,
    rgba(8,8,8,.0) 30%,
    rgba(8,8,8,.55) 70%,
    rgba(8,8,8,.92) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.03em;
  margin-bottom: 0;
  display: block;
}
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) skewX(-4deg);
  margin-right: .25em;
}
.hero-word:last-child { margin-right: 0; }
.hero.loaded .hero-word {
  animation: wordUp .9s cubic-bezier(.23,1,.32,1) both;
  animation-delay: calc(var(--wi) * 0.18s + 0.25s);
}
@keyframes wordUp {
  from { opacity: 0; transform: translateY(40px) skewX(-4deg); }
  to   { opacity: 1; transform: translateY(0) skewX(0); }
}
.hero-word:last-child {
  background: linear-gradient(100deg, #fff 0%, var(--orange) 60%, #f9c070 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-accent-line {
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--orange), rgba(247,148,29,0));
  margin: 22px 0 22px;
}
.hero.loaded .hero-accent-line {
  animation: accentGrow 1s cubic-bezier(.23,1,.32,1) .85s forwards;
}
@keyframes accentGrow {
  from { width: 0; opacity: 0; }
  to   { width: 120px; opacity: 1; }
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 70% 50%, transparent 40%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.hero-eyebrow {
  opacity: 0;
}
.hero.loaded .hero-eyebrow {
  animation: heroFadeUp .7s cubic-bezier(.23,1,.32,1) .1s forwards;
}
.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,244,240,.8);
  letter-spacing: .08em;
  margin-bottom: 36px;
  opacity: 0;
}
.hero.loaded .hero-subtitle {
  animation: heroFadeUp .7s cubic-bezier(.23,1,.32,1) .75s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
}
.hero.loaded .hero-actions {
  animation: heroFadeUp .7s cubic-bezier(.23,1,.32,1) 1s forwards;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 60px;
  z-index: 2;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,244,240,.4);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .3s;
}
.hero-scroll:hover { color: rgba(245,244,240,.8); }
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(200,169,110,.7), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(.6) translateY(10px); }
}

/* ============================================================
   BIO SECTION
   ============================================================ */
.bio-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.bio-image {
  position: relative;
  overflow: hidden;
}
.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.bio-image:hover img { transform: scale(1.03); }
.bio-content {
  background: var(--dark);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bio-content .section-label { margin-bottom: 12px; }
.bio-content h2 { margin-bottom: 28px; }
.bio-text { margin-bottom: 40px; }
.bio-text p { margin-bottom: 20px; }

/* ============================================================
   BIO — pagina Chi Sono (intro + paragrafi successivi)
   ============================================================ */
.bio__grid--intro {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 64px;
  align-items: center;
}
.bio__img-wrap { position: relative; border-radius: 10px; overflow: hidden; }
.bio__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio__title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  line-height: 1.25;
  margin-bottom: 24px;
}
.bio__text--lead p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--grey);
  margin-bottom: 20px;
  text-align: justify;
}
.bio__text--lead p:first-child { color: #fff; }
.bio__text--wide {
  max-width: 760px;
  margin: 0 auto;
  border-left: 3px solid var(--gold);
  padding-left: 28px;
}
.bio__text--wide p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.65;
  color: var(--gold-light);
  text-align: justify;
  margin-bottom: 22px;
}
.bio__text--wide p:last-child { margin-bottom: 0; }
.bio__text--wide p:not(:first-child) {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--grey);
}
@media (max-width: 900px) {
  .bio__grid--intro { grid-template-columns: 1fr; gap: 32px; }
  .bio__title { font-size: 1.6rem; }
}

.bio-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid rgba(247,148,29,.18);
}
.stat-item {
  text-align: center;
  padding: 20px 8px 18px;
  border-radius: 12px;
  background: rgba(247,148,29,.04);
  transition: background .3s ease;
}
.stat-item:hover { background: rgba(247,148,29,.09); }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem,4vw,3.8rem);
  color: var(--orange);
  font-weight: 900;
  display: block;
  line-height: 1;
  text-shadow: 0 0 40px rgba(247,148,29,.3);
  margin-bottom: 8px;
}
.stat-label {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
  display: block;
}

/* ============================================================
   EVENTI SECTION
   ============================================================ */
.eventi-section { background: var(--dark-2); padding: 100px 0; }
.eventi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}
.eventi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.evento-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--dark);
  border-radius: 6px;
}
.evento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.82);
}
.evento-card:hover img { transform: scale(1.06); filter: brightness(.6); }
.evento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.92) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
.evento-date {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.evento-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 4px;
}
.evento-venue { font-size: .8rem; color: rgba(245,244,240,.6); }
.evento-cta-hint {
  display: inline-block;
  margin-top: 10px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.evento-card:hover .evento-cta-hint { opacity: 1; transform: translateY(0); }
a.evento-card { display: block; text-decoration: none; color: inherit; }
.evento-card__img {
  position: absolute;
  inset: 0;
}
.evento-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; filter: brightness(.82); }
.evento-card:hover .evento-card__img img { transform: scale(1.06); filter: brightness(.6); }

/* Pagina eventi completa */
.eventi-page-header {
  padding: 160px 0 80px;
  text-align: center;
  border-bottom: 1px solid rgba(200,169,110,.1);
}
.eventi-page-header p { max-width: 760px; margin: 0 auto; text-align: justify; font-size: 1.08rem; line-height: 1.8; color: var(--gray-l); }
.eventi-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 80px 0;
}
.evento-archive-card {
  background: var(--dark);
  border: 1px solid rgba(200,169,110,.1);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition);
}
.evento-archive-card:hover { transform: translateY(-5px); border-color: rgba(200,169,110,.4); }
/* Portrait 3:4 — override poster-wrap's 4:3 */
.evento-archive-img { aspect-ratio: 3/4; overflow: hidden; flex-shrink: 0; }
.evento-archive-img.poster-wrap { aspect-ratio: 3/4; }
.evento-archive-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.evento-archive-card:hover .evento-archive-img img { transform: scale(1.04); }
.evento-archive-body { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.evento-archive-date { font-size: .62rem; color: var(--gold); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 8px; }
.evento-archive-title { font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.3; margin-bottom: 5px; }
.evento-archive-venue { font-size: .75rem; color: var(--grey); margin-bottom: 12px; }
.evento-archive-excerpt {
  font-size: .8rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.evento-archive-cta {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: 16px;
}

/* ---- Paginazione archivio eventi ---- */
.eventi-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 24px;
  flex-wrap: wrap;
}
.eventi-pagination__num,
.eventi-pagination__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 6px;
  border: 1px solid rgba(200,169,110,.25);
  border-radius: var(--radius);
  color: var(--grey-light);
  font-family: var(--font-sans);
  font-size: .85rem;
  text-decoration: none;
  transition: all var(--transition);
}
.eventi-pagination__num:hover,
.eventi-pagination__nav:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.eventi-pagination__num.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  font-weight: 600;
  cursor: default;
  box-shadow: 0 4px 20px var(--orange-glow);
}
.eventi-pagination__num.is-active:hover { transform: none; }

/* Home page: make poster fill the portrait card completely */
.evento-card .poster-wrap {
  position: absolute;
  inset: 0;
  aspect-ratio: unset;
}

/* ---- Poster wrap — locandine 4:3 con contain ---- */
.poster-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a0a0a;
  cursor: pointer;
}
.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
  display: block;
}
.poster-wrap:hover img { transform: scale(1.03); }
.poster-zoom-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.poster-wrap:hover .poster-zoom-hint,
.poster-wrap:focus .poster-zoom-hint { opacity: 1; transform: scale(1); }
.poster-wrap:focus { outline: 2px solid var(--orange); outline-offset: 2px; }

/* ---- Poster Lightbox ---- */
.poster-lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.poster-lb.open { display: flex; }
.poster-lb__inner {
  position: relative;
  max-width: min(700px, 90vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: plb-in .25s ease;
}
@keyframes plb-in {
  from { opacity: 0; transform: scale(.93); }
  to   { opacity: 1; transform: scale(1); }
}
.poster-lb__img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
  display: block;
}
.poster-lb__caption {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: .05em;
  color: rgba(255,255,255,.75);
  text-align: center;
  max-width: 520px;
}
.poster-lb__title {
  display: block;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.poster-lb__excerpt {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  font-family: var(--font-body);
  margin: 0 0 14px;
  line-height: 1.6;
}
.poster-lb__link {
  display: inline-block;
  font-family: var(--font-body);
}
.poster-lb__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 10000;
}
.poster-lb__close:hover { background: rgba(255,255,255,.2); transform: scale(1.1); }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section { background: var(--black); padding: 100px 0; }
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
/* ── Home gallery marquee doppio ───────────────────── */
.gallery-marquee {
  position: relative;
  overflow: hidden;
  padding: 4px 0 0;
}
.gallery-marquee::before,
.gallery-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.gallery-marquee::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
.gallery-marquee::after  { right: 0; background: linear-gradient(to left, var(--black), transparent); }
.gallery-marquee__row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 8px;
  width: max-content;
  min-width: 100%;
  will-change: transform;
}
.gallery-marquee__row + .gallery-marquee__row { margin-top: 8px; }
.gallery-marquee__row--fwd { animation: mq-fwd 18s linear infinite; }
.gallery-marquee__row--rev { animation: mq-rev 25s linear infinite; }
.gallery-marquee:hover .gallery-marquee__row { animation-play-state: paused; }
.gallery-marquee__item {
  flex-shrink: 0;
  width: 220px;
  aspect-ratio: 2/3;
  overflow: hidden;
  border: 1px solid rgba(200,169,110,.12);
}
.gallery-marquee__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.gallery-marquee:hover .gallery-marquee__item img { transform: scale(1.04); }
@keyframes mq-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes mq-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
/* mantiene g-item-overlay per lightbox nella pagina gallery completa */
.g-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(8,8,8,.35);
  transition: opacity var(--transition);
}
.g-item:hover .g-item-overlay { opacity: 1; }
.g-item-overlay svg { width: 32px; height: 32px; color: var(--white); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 88vh; max-width: 92vw; object-fit: contain; }
.lb-close {
  position: absolute;
  top: 20px; right: 28px;
  font-size: 2rem;
  cursor: pointer;
  color: rgba(245,244,240,.7);
  background: none; border: none;
  line-height: 1;
  transition: color var(--transition);
}
.lb-close:hover { color: var(--gold); }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 2rem;
  cursor: pointer;
  color: rgba(245,244,240,.6);
  background: none; border: none;
  padding: 20px;
  transition: color var(--transition);
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { color: var(--gold); }
.lb-caption {
  position: absolute;
  bottom: 20px;
  font-size: .78rem;
  color: rgba(245,244,240,.5);
  letter-spacing: .08em;
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.gallery-full-grid .g-item { aspect-ratio: 3/4; }

/* ============================================================
   SERVIZI SECTION
   ============================================================ */
.servizi-section { background: var(--dark); padding: 100px 0; }
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.servizio-card {
  background: var(--dark-2);
  padding: 40px 32px;
  border-top: 2px solid rgba(200,169,110,.12);
  transition: background var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.servizio-card:hover { background: rgba(247,148,29,.03); border-color: var(--orange); }
.servizio-icon {
  width: 40px; height: 40px;
  color: var(--orange);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.servizio-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: rgba(200,169,110,.12);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 12px;
}
.servizio-title { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 14px; }
.servizio-desc { font-size: .88rem; color: var(--grey); line-height: 1.7; margin-bottom: 24px; flex: 1; }
.servizio-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.tag {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(247,148,29,.18);
  color: rgba(247,148,29,.7);
  border-radius: 2px;
}
@media (max-width: 1100px) { .servizi-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .servizi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .servizi-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SHOP SECTION
   ============================================================ */
.shop-section { padding: 100px 0; background: var(--black); }
.shop-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

/* Shop — editorial grid: prima card grande, le altre 3 affiancate */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.product-card {
  background: var(--dark-2);
  overflow: hidden;
  position: relative;
  border: none;
}
.product-card:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}
.product-card:hover { transform: none; }
.product-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark);
}
.product-card:first-child .product-img { aspect-ratio: 16/7; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.product-card:hover .product-img img { transform: scale(1.04); }

.product-body { padding: 24px 28px 28px; }
.product-category {
  font-family: var(--font-sans);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
  display: block;
}
.product-name {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-card:first-child .product-name { font-size: 1.3rem; }
.product-price { font-size: 1.4rem; color: var(--white); font-weight: 300; margin-bottom: 20px; }
.product-price span { font-size: .75rem; color: var(--orange); font-weight: 600; vertical-align: middle; margin-right: 4px; }
.product-add { width: 100%; padding: 12px; background: var(--orange); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border: none; cursor: pointer; border-radius: var(--radius); transition: all var(--transition); box-shadow: 0 4px 16px var(--orange-glow); }
.product-add:hover { background: var(--orange-dark); transform: translateY(-1px); }
.product-single { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-top: 140px; }
.product-single-img { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); background: var(--dark); }
.product-single-img img { width: 100%; height: 100%; object-fit: cover; }
.product-single-body { padding: 40px 0; }
.product-single-body h1 { margin-bottom: 20px; }
.product-single-price { font-size: 2rem; color: var(--gold); margin-bottom: 32px; }
.product-single-desc { margin-bottom: 40px; }
.product-qty { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.qty-btn { width: 36px; height: 36px; background: var(--dark); border: 1px solid rgba(200,169,110,.2); color: var(--white); cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); }
.qty-input { width: 48px; text-align: center; background: var(--dark); border: 1px solid rgba(200,169,110,.2); color: var(--white); padding: 6px; border-radius: var(--radius); }

/* ============================================================
   SHOP CAROUSEL — homepage preview
   ============================================================ */
.scc-nav { display: flex; align-items: center; gap: 8px; }
.scc-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(247,148,29,.3);
  background: transparent;
  color: var(--orange);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease, opacity .2s ease;
  flex-shrink: 0;
}
.scc-btn:hover:not(:disabled) { background: rgba(247,148,29,.1); border-color: var(--orange); }
.scc-btn:disabled { opacity: .25; cursor: default; }
.scc-wrap { overflow: hidden; }
.scc-track {
  display: flex;
  gap: 20px;
  transition: transform .42s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.scc-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: var(--dark-2);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(247,148,29,.08);
  transition: border-color .3s ease, transform .3s ease;
}
.scc-card:hover { border-color: rgba(247,148,29,.3); transform: translateY(-4px); }
.scc-card__img-link { display: block; }
.scc-card__img { aspect-ratio: 1/1; overflow: hidden; background: var(--dark); }
.scc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.scc-card:hover .scc-card__img img { transform: scale(1.06); }
.scc-card__body { padding: 16px 18px 20px; }
.scc-card__cat {
  font-family: var(--font-sans);
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange); display: block; margin-bottom: 5px;
}
.scc-card__name {
  font-family: var(--font-title);
  font-size: .88rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 14px; line-height: 1.3;
}
.scc-card__name a { color: var(--white); text-decoration: none; transition: color .2s; }
.scc-card__name a:hover { color: var(--orange); }
.scc-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.scc-card__price { font-size: 1.15rem; color: var(--white); font-weight: 300; }

@media (max-width: 1024px) {
  .scc-card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 640px) {
  .scc-card { flex: 0 0 78%; }
  .scc-nav .btn { display: none; }
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section { background: var(--dark-2); padding: 100px 0; }
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200,169,110,.08);
  transition: transform var(--transition), border-color var(--transition);
}
.post-card:hover { transform: translateY(-4px); border-color: rgba(200,169,110,.25); }
.post-img { aspect-ratio: 16/10; overflow: hidden; }
.post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-img img { transform: scale(1.05); }
.post-body { padding: 28px; }
.post-cat { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.post-title { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 10px; line-height: 1.3; }
.post-title a:hover { color: var(--gold); }
.post-excerpt { font-size: .85rem; color: var(--grey); margin-bottom: 20px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-meta { font-size: .72rem; color: var(--grey); }
.post-single { max-width: 800px; margin: 0 auto; padding-top: 140px; }
.post-single-header { margin-bottom: 48px; text-align: center; }
.post-single-hero { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); margin-bottom: 48px; }
.post-content { color: var(--grey-light); line-height: 1.9; }
.post-content h2 { font-size: 1.6rem; margin: 40px 0 16px; color: var(--white); }
.post-content p { margin-bottom: 20px; }

/* ============================================================
   SINGLE BLOG POST — REDESIGN
   ============================================================ */

/* ---- Hero image ---- */
.bp-article { background: var(--dark); }

.bp-hero {
  position: relative;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}
.bp-hero__img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.bp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,.75) 100%);
}

/* ---- Container stretto ---- */
.bp-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header (sotto immagine) ---- */
.bp-header-wrap {
  padding: 48px 0 32px;
  border-bottom: 1px solid rgba(200,169,110,.1);
}

.bp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.bp-breadcrumb a { color: var(--gray-l); }
.bp-breadcrumb a:hover { color: var(--gold); }
.bp-breadcrumb span { color: var(--gray); }

.bp-category {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(247,148,29,.35);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.bp-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--light);
  margin-bottom: 16px;
}

.bp-subtitle {
  font-size: 1.08rem;
  color: var(--gray-l);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.bp-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--gray);
}
.bp-meta__item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.bp-meta__item svg { color: var(--gold); opacity: .7; }
.bp-meta__sep { color: rgba(200,169,110,.3); }

/* ---- Body ---- */
.bp-body { padding: 48px 0; }

.bp-content {
  color: var(--gray-l);
  line-height: 1.9;
  font-size: 1.06rem;
}
.bp-content h2 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--light);
  margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(200,169,110,.1);
}
.bp-content h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--light);
  margin: 32px 0 12px;
}
.bp-content p { margin-bottom: 22px; }
.bp-content a { color: var(--gold); text-decoration: underline; }
.bp-content a:hover { color: var(--orange); }
.bp-content ul, .bp-content ol {
  padding-left: 1.6em;
  margin-bottom: 22px;
}
.bp-content li { margin-bottom: 6px; }
.bp-content blockquote {
  border-left: 3px solid var(--gold);
  margin: 32px 0;
  padding: 16px 24px;
  background: rgba(200,169,110,.05);
  color: var(--gray-l);
  font-style: italic;
  font-size: 1.1rem;
}
.bp-content img {
  max-width: 100%;
  border-radius: 6px;
  margin: 24px 0;
}
.bp-content pre {
  background: #111;
  border: 1px solid rgba(200,169,110,.15);
  border-radius: 6px;
  padding: 20px;
  overflow-x: auto;
  font-size: .88rem;
  margin-bottom: 22px;
}
.bp-content code { font-family: monospace; font-size: .9em; color: var(--gold); }

/* ---- Social sharing bar ---- */
.bp-share {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid rgba(200,169,110,.1);
  border-bottom: 1px solid rgba(200,169,110,.1);
  margin: 40px 0 32px;
}

.bp-share__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray);
  flex-shrink: 0;
}

.bp-share__btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bp-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  font-family: var(--font-body);
}
.bp-share-btn:hover { opacity: .85; transform: translateY(-1px); }

.bp-share-btn--fb    { background: #1877F2; color: #fff; }
.bp-share-btn--x     { background: #000; color: #fff; border-color: #333; }
.bp-share-btn--wa    { background: #25D366; color: #fff; }
.bp-share-btn--tg    { background: #229ED9; color: #fff; }
.bp-share-btn--email { background: transparent; color: var(--gray-l); border-color: rgba(200,169,110,.3); }
.bp-share-btn--email:hover { border-color: var(--gold); color: var(--gold); }
.bp-share-btn--pdf   { background: transparent; color: var(--gray-l); border-color: rgba(200,169,110,.3); }
.bp-share-btn--pdf:hover { border-color: var(--gold); color: var(--gold); }

.bp-footer-nav { padding-top: 8px; }

/* ---- Commenti ---- */
.bp-comments-wrap {
  background: var(--dark2);
  border-top: 1px solid rgba(200,169,110,.1);
  padding: 56px 0 80px;
}

.bp-comments-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 36px;
}
.bp-comments-title svg { color: var(--gold); }

.bp-comment-list { display: flex; flex-direction: column; gap: 28px; margin-bottom: 48px; }

.bp-comment {
  display: flex;
  gap: 16px;
}
.bp-comment__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: #080808;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bp-comment__avatar--me { background: linear-gradient(135deg, var(--orange) 0%, #c0392b 100%); }
.bp-comment__body { flex: 1; }
.bp-comment__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.bp-comment__author { font-size: .88rem; color: var(--light); }
.bp-comment__date { font-size: .74rem; color: var(--gray); }
.bp-comment__text {
  font-size: .92rem;
  color: var(--gray-l);
  line-height: 1.7;
}

.bp-comments-empty {
  color: var(--gray);
  font-style: italic;
  margin-bottom: 36px;
}

/* Login notice */
.bp-comment-login-notice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(200,169,110,.05);
  border: 1px solid rgba(200,169,110,.15);
  border-radius: 8px;
}
.bp-comment-login-notice svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.bp-comment-login-notice strong { font-size: .95rem; color: var(--light); }
.bp-comment-login-notice p { font-size: .85rem; color: var(--gray-l); margin-top: 4px; }

/* Flash */
.bp-comment-flash {
  padding: 12px 16px;
  border-radius: 4px;
  font-size: .88rem;
  margin-bottom: 16px;
}
.bp-comment-flash--ok { background: rgba(39,174,96,.1); border: 1px solid rgba(39,174,96,.3); color: #6fcf97; }
.bp-comment-flash--err { background: rgba(220,80,80,.08); border: 1px solid rgba(220,80,80,.3); color: #e09090; }

/* Form */
.bp-comment-form { margin-top: 24px; }
.bp-comment-form__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .9rem;
  color: var(--light);
}
.bp-comment-form textarea {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(200,169,110,.2);
  border-radius: 6px;
  color: var(--light);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.6;
  resize: vertical;
  transition: border-color .2s;
}
.bp-comment-form textarea:focus { outline: none; border-color: var(--gold); }
.bp-comment-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 12px;
}
.bp-comment-counter { font-size: .75rem; color: var(--gray); }
.bp-comment-submit { padding: .65rem 1.5rem; font-size: .82rem; }
.bp-comment-note { font-size: .75rem; color: var(--gray); margin-top: 8px; }

/* Responsive */
@media (max-width: 680px) {
  .bp-title { font-size: 1.6rem; }
  .bp-share { flex-direction: column; align-items: flex-start; gap: 10px; }
  .bp-share__btns { gap: 6px; }
  .bp-share-btn span { display: none; }
  .bp-share-btn { padding: 9px 12px; }
}

/* ============================================================
   STAMPA / PDF
   ============================================================ */
@media print {
  body > *:not(.bp-article) { display: none !important; }
  .bp-hero, .bp-share, .bp-footer-nav, .bp-comments-wrap,
  .bp-breadcrumb, nav, footer, .cookie-bar { display: none !important; }
  .bp-article { background: #fff !important; }
  .bp-container { max-width: 100%; padding: 0 20px; }
  .bp-header-wrap { padding: 20px 0; border: none; }
  .bp-title { font-size: 1.8rem; color: #111 !important; }
  .bp-content { color: #222 !important; font-size: .95rem; }
  .bp-content a { color: #333 !important; text-decoration: underline; }
  .bp-content h2, .bp-content h3 { color: #111 !important; }
  .bp-body { padding: 16px 0; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-top: 1px solid rgba(200,169,110,.12);
  border-bottom: 1px solid rgba(200,169,110,.12);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
}
.cta-divider { background: rgba(200,169,110,.1); }
.cta-block { padding: 60px 80px; text-align: center; }
.cta-block h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.cta-block p { margin-bottom: 36px; max-width: 340px; margin-left: auto; margin-right: auto; }

/* ============================================================
   CONTATTI SECTION
   ============================================================ */
.contact-section { padding: 100px 0; background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info > p { margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--dark-2);
  border-radius: var(--radius);
  border: 1px solid rgba(200,169,110,.1);
  transition: border-color var(--transition);
  text-decoration: none;
  color: var(--white);
}
.contact-item:hover { border-color: var(--gold); }
.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(200,169,110,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-label { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.contact-item-value { font-size: .9rem; }
.contact-form-wrap { }
.contact-form-wrap h3 { margin-bottom: 28px; font-size: 1.4rem; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid rgba(200,169,110,.15);
  color: var(--white);
  padding: 13px 16px;
  border-radius: var(--radius);
  transition: border-color var(--transition);
  font-size: .95rem;
}
.form-control:focus { outline: none; border-color: var(--gold); }
.form-control::placeholder { color: rgba(138,138,138,.6); }
select.form-control { cursor: pointer; }
select.form-control option { background: var(--dark-2); color: var(--white); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-msg { padding: 12px 16px; border-radius: var(--radius); font-size: .85rem; margin-bottom: 16px; display: none; }
.form-msg.success { background: rgba(100,180,100,.1); border: 1px solid rgba(100,180,100,.3); color: #90d090; display: block; }
.form-msg.error   { background: rgba(220,80,80,.1); border: 1px solid rgba(220,80,80,.3); color: #e09090; display: block; }

/* ---- Contact form feedback ---- */
.contact-success {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(80,200,120,.07);
  border: 1px solid rgba(80,200,120,.25);
  border-radius: 14px;
  padding: 24px;
  color: #7ed8a0;
  margin-bottom: 24px;
}
.contact-success svg { flex-shrink: 0; margin-top: 2px; color: #5ecb85; }
.contact-success strong { display: block; font-size: 1.05rem; margin-bottom: 4px; color: #a0e8b8; }
.contact-success span { font-size: .88rem; color: rgba(160,232,184,.75); line-height: 1.5; }
.contact-error {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(220,80,80,.07);
  border: 1px solid rgba(220,80,80,.25);
  border-radius: 10px;
  padding: 14px 18px;
  color: #e09090;
  font-size: .9rem;
  margin-bottom: 16px;
}
.contact-error svg { flex-shrink: 0; color: #e07070; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid rgba(200,169,110,.1);
  padding: 60px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { height: 52px; width: auto; max-width: 100%; object-fit: contain; margin-bottom: 20px; }
.footer-tagline { font-size: .85rem; color: var(--grey); margin-bottom: 24px; max-width: 260px; }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(200,169,110,.2);
  border-radius: 50%;
  color: var(--grey);
  font-size: .85rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .85rem; color: var(--grey); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(200,169,110,.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: .72rem; color: var(--grey); }
.footer-trademark { font-size: .72rem; color: rgba(200,169,110,.5); font-style: italic; }

/* ============================================================
   AUTH PAGES — Login / Register
   ============================================================ */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-visual { position: relative; overflow: hidden; }
.auth-visual img { width: 100%; height: 100%; object-fit: cover; }
.auth-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(8,8,8,.8) 100%);
}
.auth-visual-brand {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
}
.auth-visual-brand h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 10px;
}
.auth-visual-brand p { font-size: .85rem; color: rgba(245,244,240,.65); }
.auth-panel {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 72px;
}
.auth-logo { height: 80px; width: auto; object-fit: contain; margin-bottom: 8px; }
.auth-brand-name {
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 52px;
  text-align: center;
}
.auth-title { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 300; text-align: center; margin-bottom: 8px; }
.auth-sub { font-size: .85rem; color: var(--grey); text-align: center; margin-bottom: 36px; }
.auth-form { width: 100%; max-width: 360px; }
.auth-form .form-group { margin-bottom: 18px; }
.auth-form .btn { width: 100%; justify-content: center; margin-top: 8px; padding: 14px; }
.auth-switch { text-align: center; margin-top: 28px; font-size: .85rem; color: var(--grey); }
.auth-switch a { color: var(--gold); }
.auth-switch a:hover { text-decoration: underline; }
.auth-separator { text-align: center; margin: 20px 0; position: relative; }
.auth-separator::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: rgba(200,169,110,.1); }
.auth-separator span { position: relative; background: var(--dark); padding: 0 16px; font-size: .72rem; color: var(--grey); letter-spacing: .1em; text-transform: uppercase; }
.auth-legal { font-size: .75rem; color: var(--grey); line-height: 1.5; margin-bottom: 0; text-align: center; }

/* Continua con Google */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 16px;
  min-height: 46px;
  background: #fff;
  color: #1f1f1f;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow .2s, transform .1s, opacity .2s;
}
.btn-google:hover { box-shadow: 0 4px 14px rgba(0,0,0,.35); }
.btn-google:active { transform: scale(.98); }
.btn-google:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.form-msg.error { background: rgba(220,50,50,.12); border: 1px solid rgba(220,50,50,.3); color: #e88; padding: 12px 16px; border-radius: 6px; font-size: .85rem; margin-bottom: 20px; }
.form-msg.success { background: rgba(50,180,80,.1); border: 1px solid rgba(50,180,80,.25); color: #7d7; padding: 12px 16px; border-radius: 6px; font-size: .85rem; margin-bottom: 20px; }

/* Registration plan cards */
.reg-plans { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 420px; margin: 0 auto 28px; }
.reg-plan { display: flex; flex-direction: column; gap: 2px; cursor: pointer; border: 1px solid rgba(200,169,110,.18); border-radius: 10px; padding: 14px 18px; transition: border-color .2s, background .2s; }
.reg-plan input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }
.reg-plan:hover { border-color: rgba(200,169,110,.45); }
.reg-plan--active { border-color: var(--gold); background: rgba(200,169,110,.06); }
.reg-plan--active .reg-plan__name { color: var(--gold); }
.reg-plan__name { font-family: var(--font-serif); font-size: .95rem; letter-spacing: .05em; color: var(--light); font-weight: 600; }
.reg-plan__price { font-size: 1.35rem; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.reg-plan__price small { font-size: .75rem; font-weight: 400; color: var(--grey); margin-left: 2px; }
.reg-plan__desc { font-size: .75rem; color: var(--grey); line-height: 1.5; }

/* Member profile page */
.profile-page { max-width: 680px; margin: 0 auto; padding: 120px 20px 80px; }
.profile-page h1 { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; margin-bottom: 8px; }
.profile-tabs { display: flex; gap: 0; border-bottom: 1px solid rgba(200,169,110,.18); margin-bottom: 36px; }
.profile-tab { padding: 10px 22px; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); cursor: pointer; text-decoration: none; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .2s, border-color .2s; }
.profile-tab:hover { color: var(--light); }
.profile-tab--active { color: var(--gold); border-bottom-color: var(--gold); }
.profile-section { display: none; }
.profile-section--active { display: block; }
.profile-plan-card { border: 1px solid rgba(200,169,110,.2); border-radius: 10px; padding: 24px 28px; margin-bottom: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.profile-plan-name { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold); }
.profile-plan-exp { font-size: .8rem; color: var(--grey); margin-top: 4px; }
.profile-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 480px) { .profile-form-row { grid-template-columns: 1fr; } }

/* ============================================================
   FAN CLUB AREA
   ============================================================ */
.fanclub-locked {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
}
.fanclub-locked-icon { font-size: 3rem; margin-bottom: 24px; color: var(--gold); opacity: .5; }
.fanclub-locked h2 { margin-bottom: 16px; }
.fanclub-locked p { max-width: 420px; margin: 0 auto 36px; }
.fanclub-locked-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.fanclub-header { padding: 140px 0 60px; border-bottom: 1px solid rgba(200,169,110,.1); margin-bottom: 60px; }
.member-welcome { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold); margin-bottom: 8px; display: block; }
.member-tabs { display: flex; gap: 4px; margin-bottom: 40px; }
.member-tab {
  padding: 10px 24px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--dark-2);
  color: var(--grey);
  border: 1px solid rgba(200,169,110,.1);
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.member-tab.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ============================================================
   PAGE HEADER
   ============================================================ */
/* ============================================================
   IMMAGINE IN EVIDENZA — sopra il titolo della pagina
   ============================================================ */
.page-featured-image {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  position: relative;
}
.page-featured-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  animation: pageFeaturedColorReveal 1.8s ease-out forwards;
  will-change: transform; /* prepara il layer per il parallax gestito in js/main.js */
}
@keyframes pageFeaturedColorReveal {
  from { filter: grayscale(1) contrast(1.1); }
  to   { filter: grayscale(0) contrast(1); }
}
.page-featured-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}

/* ============================================================
   PAGE HEADER — titolo + sottotitolo
   ============================================================ */
.page-header {
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(200,169,110,.08);
  position: relative;
  overflow: hidden;
}
/* Padding ridotto quando c'è l'immagine sopra */
.page-featured-image + .page-header {
  padding-top: 48px;
}
.page-header h1 { margin-bottom: 16px; }
.page-header p { max-width: 760px; margin: 0 auto; text-align: justify; font-size: 1.08rem; line-height: 1.8; color: var(--gray-l); }
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-header__video-bg iframe,
.page-header__video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 177.78vh;
  height: 56.25vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}
.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 60%, rgba(8,8,8,.7) 100%);
  z-index: 1;
}
.page-header--has-bg {
  padding: 200px 0 100px;
}
.page-header--has-bg h1,
.page-header--has-bg .eyebrow,
.page-header--has-bg p {
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}

/* ============================================================
   HERO SLIDESHOW — video / image backgrounds per slide
   ============================================================ */
.hero-slideshow { overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; pointer-events: none; }
.slide.active { opacity: 1; pointer-events: auto; }
.slide-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.slide-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.slide-video-bg iframe,
.slide-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 177.78vh;
  height: 56.25vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.4) 0%, rgba(0,0,0,.25) 50%, rgba(8,8,8,.65) 100%);
  z-index: 1;
}
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 80px 60px 140px;
  /* default = bottom-center */
  align-items: center;
  justify-content: flex-end;
}

/* Varianti posizione testo */
.slide-content--top-left    { align-items: flex-start; justify-content: flex-start; text-align: left;   padding: 120px 60px 80px; }
.slide-content--top-center  { align-items: center;     justify-content: flex-start; text-align: center; padding: 120px 60px 80px; }
.slide-content--top-right   { align-items: flex-end;   justify-content: flex-start; text-align: right;  padding: 120px 60px 80px; }
.slide-content--bottom-left  { align-items: flex-start; justify-content: flex-end;   text-align: left;   padding: 80px 60px 140px; }
.slide-content--bottom-center{ align-items: center;     justify-content: flex-end;   text-align: center; padding: 80px 60px 140px; }
.slide-content--bottom-right { align-items: flex-end;   justify-content: flex-end;   text-align: right;  padding: 80px 60px 140px; }

.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  color: inherit;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
  line-height: 1.15;
}
.slide-subtitle {
  font-size: 1.05rem;
  color: inherit;
  opacity: .88;
  margin-bottom: 28px;
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
  line-height: 1.6;
}
/* Font — "sans" qui è Raleway (var(--font-body)), non la CSS var
   --font-sans che nel progetto è in realtà Inter. */
.slide-title--serif { font-family: var(--font-serif); }
.slide-title--sans   { font-family: var(--font-body); }
.slide-title--inter  { font-family: var(--font-sans); }
.slide-title--s  { font-size: clamp(1.5rem, 4vw, 2.5rem); }
.slide-title--m  { font-size: clamp(2rem, 5vw, 4rem); }
.slide-title--l  { font-size: clamp(2.5rem, 6vw, 5rem); }
.slide-title--xl { font-size: clamp(3rem, 7vw, 6rem); }

.slide-subtitle--serif { font-family: var(--font-serif); }
.slide-subtitle--sans   { font-family: var(--font-body); }
.slide-subtitle--inter  { font-family: var(--font-sans); }
.slide-subtitle--s  { font-size: clamp(.85rem, 2vw, .95rem); }
.slide-subtitle--m  { font-size: clamp(.95rem, 2.2vw, 1.05rem); }
.slide-subtitle--l  { font-size: clamp(1.1rem, 2.6vw, 1.25rem); }
.slide-subtitle--xl { font-size: clamp(1.3rem, 3vw, 1.5rem); }
@media (max-width: 640px) {
  .slide-content { padding: 70px 24px 120px; }
  .slide-content--top-left,
  .slide-content--top-center,
  .slide-content--top-right  { padding: 90px 24px 60px; }
  .slide-content--bottom-left,
  .slide-content--bottom-center,
  .slide-content--bottom-right { padding: 60px 24px 120px; }
  .slide-title { font-size: clamp(1.6rem, 8vw, 2.4rem); }
}
.slideshow-controls {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.slideshow-btn {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.slideshow-btn:hover { background: rgba(247,148,29,.7); border-color: var(--orange); }
.slideshow__dots { display: flex; gap: 8px; align-items: center; }
.slideshow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.slideshow__dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* ============================================================
   CONTACT FORM — luxury two-column redesign
   ============================================================ */
.contact-section { padding: 100px 0; background: var(--black); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { padding-top: 8px; }
.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 12px 0 20px;
  letter-spacing: -.02em;
}
.contact-title__dot { color: var(--orange); }
.contact-lead {
  color: var(--grey-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 380px;
}
.contact-channels { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(200,169,110,.1);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background .2s, border-color .2s;
}
.contact-channel:hover {
  background: rgba(247,148,29,.07);
  border-color: rgba(247,148,29,.3);
}
.contact-channel__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cc-wa { background: rgba(37,211,102,.15); color: #25d366; }
.cc-tg { background: rgba(0,136,204,.15); color: #0088cc; }
.cc-em { background: rgba(247,148,29,.12); color: var(--orange); }
.contact-channel__body { flex: 1; }
.contact-channel__label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 2px;
}
.contact-channel__val { font-size: .92rem; color: var(--white); }
.cc-arrow { color: var(--grey); flex-shrink: 0; }
.contact-channel:hover .cc-arrow { color: var(--orange); }
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--grey);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 6px 14px;
  border-radius: 20px;
}
/* Form panel */
.contact-form-panel {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(200,169,110,.12);
  border-radius: 16px;
  padding: 40px 44px;
}
.contact-form-header { margin-bottom: 28px; }
.contact-form-header h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.contact-form-header p { font-size: .85rem; color: var(--grey); }
.contact-form-error {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(220,60,60,.1);
  border: 1px solid rgba(220,60,60,.3);
  color: #e09090;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: .88rem;
  margin-bottom: 20px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.cf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.cf-field:last-child { margin-bottom: 0; }
.cf-field label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(200,169,110,.15);
  border-radius: 8px;
  color: var(--white);
  font: inherit;
  font-size: .92rem;
  padding: 12px 14px;
  transition: border-color .2s, background .2s;
  width: 100%;
  box-sizing: border-box;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(247,148,29,.05);
}
.cf-field select option { background: #1a1a1a; }
.cf-field textarea { resize: vertical; min-height: 120px; }
.cf-req { color: var(--orange); font-size: .8rem; }
.cf-opt { color: var(--grey); font-weight: 400; font-size: .75rem; text-transform: none; letter-spacing: 0; }
.cf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font: inherit;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 8px;
}
.cf-submit:hover { background: #e0830d; transform: translateY(-1px); }
.cf-submit:active { transform: translateY(0); }
.cf-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .72rem;
  color: var(--grey);
  margin: 12px 0 0;
}
/* Success panel */
.contact-success-panel {
  text-align: center;
  padding: 40px 20px;
}
.cs-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(247,148,29,.12);
  border: 1px solid rgba(247,148,29,.3);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.contact-success-panel h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.contact-success-panel p { color: var(--grey-light); margin-bottom: 24px; }
/* Responsive */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-panel { padding: 28px 24px; }
  .cf-row { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY — filter tabs
   ============================================================ */
.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.gallery-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 8px 18px;
  border-radius: 24px;
  border: 1px solid rgba(200,169,110,.2);
  color: var(--grey-light);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s, border-color .2s, color .2s;
}
.gallery-tab:hover { border-color: var(--orange); color: var(--orange); }
.gallery-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ============================================================
   COVERFLOW 3D
   ============================================================ */
.coverflow-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0 60px;
}
.coverflow-stage {
  -webkit-perspective: 1000px;
  perspective: 1000px;
  perspective-origin: 50% 50%;
  width: 100%;
  overflow: visible;
}
.cf-track {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: relative;
  height: 420px;
}
.cf-item {
  position: absolute;
  width: 260px;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94),
              opacity .45s ease,
              filter .45s ease;
  cursor: pointer;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.cf-img-wrap {
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(200,169,110,.2);
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
  position: relative;
}
.cf-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.cf-locked-placeholder {
  position: absolute;
  inset: 0;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cf-lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  border-radius: 8px;
  color: rgba(200,169,110,.85);
  font-size: .8rem;
  font-weight: 500;
}
.cf-lock-btn {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(200,169,110,.4);
  border-radius: 20px;
  color: #c8a96e;
  text-decoration: none;
  font-size: .75rem;
  margin-top: .2rem;
  transition: background .2s, border-color .2s;
}
.cf-lock-btn:hover { background: rgba(200,169,110,.15); border-color: #c8a96e; }
.cf-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(200,169,110,.3);
  color: #c8a96e;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}
.cf-arrow:hover { background: rgba(200,169,110,.15); border-color: rgba(200,169,110,.6); }
.cf-arrow--prev { left: 12px; }
.cf-arrow--next { right: 12px; }
.cf-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
  padding: 0 16px;
}
.cf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(200,169,110,.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.cf-dot.active { background: #c8a96e; transform: scale(1.35); }
.cf-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cf-lightbox.open { opacity: 1; pointer-events: all; }
.cf-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,.8);
  display: block;
}
.cf-lb-close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: rgba(255,255,255,.75);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  transition: color .2s;
}
.cf-lb-close:hover { color: #fff; }
.cf-lb-prev,
.cf-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #c8a96e;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  padding: 12px;
  opacity: .7;
  transition: opacity .2s;
}
.cf-lb-prev:hover, .cf-lb-next:hover { opacity: 1; }
.cf-lb-prev { left: 12px; }
.cf-lb-next { right: 12px; }
@media (max-width: 640px) {
  .cf-item { width: 180px; }
  .cf-track { height: 300px; }
  .cf-arrow { display: none; }
}

/* ============================================================
   GALLERY — SLIDESHOW "RUOTA VERTICALE"
   ============================================================ */
.gallery-wheel-section { padding: 20px 0 60px; }
.gallery-wheel-stage {
  --wheel-card-w: clamp(260px, 34vw, 460px);
  --wheel-card-h: calc(var(--wheel-card-w) * 9 / 16);
  --wheel-depth: clamp(150px, 19vw, 300px);
  --wheel-logo-size: clamp(95px, 12vw, 140px);
  position: relative;
  height: clamp(340px, 50vw, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1100px;
  background: radial-gradient(ellipse at center, #1a1510 0%, #050403 75%);
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-wheel-3d {
  position: relative;
  width: 1px;
  height: 1px;
  transform-style: preserve-3d;
}
.gallery-wheel-pivot {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  animation: galleryWheelSpin 26s linear infinite;
}
.gallery-wheel-stage.is-paused .gallery-wheel-pivot { animation-play-state: paused; }
@keyframes galleryWheelSpin {
  from { transform: rotateX(0deg); }
  to   { transform: rotateX(360deg); }
}
.gallery-wheel-card {
  position: absolute;
  width: var(--wheel-card-w);
  height: var(--wheel-card-h);
  left: calc(var(--wheel-card-w) / -2);
  top: calc(var(--wheel-card-h) / -2);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(200,169,110,.55);
  box-shadow: 0 18px 40px rgba(0,0,0,.65), 0 0 0 1px rgba(200,169,110,.12) inset;
  background: #0d0d0d;
  cursor: pointer;
}
.gallery-wheel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.gallery-wheel-card .cf-locked-placeholder,
.gallery-wheel-card .cf-lock-overlay { border-radius: 4px; }
.gallery-wheel-logo {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: var(--wheel-logo-size);
  height: var(--wheel-logo-size);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #1c1712, #0a0806 70%);
  border: 1px solid rgba(200,169,110,.65);
  box-shadow: 0 0 0 1px rgba(200,169,110,.15), 0 0 30px rgba(200,169,110,.2), 0 10px 25px rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12%;
}
.gallery-wheel-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(200,169,110,.25));
}

/* ============================================================
   CART / CHECKOUT
   ============================================================ */
.cart-page, .checkout-page { padding-top: 140px; padding-bottom: 80px; }
.cart-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.cart-items { background: var(--dark); border-radius: var(--radius); border: 1px solid rgba(200,169,110,.1); overflow: hidden; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto 32px;
  grid-template-areas: "img name qty total remove";
  gap: 16px 20px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(200,169,110,.06);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img { grid-area: img; width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius); border: 1px solid rgba(200,169,110,.15); background: rgba(255,255,255,.02); }
.cart-item-body { grid-area: name; min-width: 0; }
.cart-item-name { font-family: var(--font-serif); font-size: 1rem; margin-bottom: 4px; line-height: 1.3; }
.cart-item-variant { font-size: .8rem; color: var(--grey); margin-bottom: 4px; }
.cart-item-price { font-size: .8rem; color: var(--grey-light); }
.cart-item-total { grid-area: total; font-size: .95rem; font-weight: 600; color: var(--gold); white-space: nowrap; text-align: right; }
.cart-item-remove-form { grid-area: remove; display: flex; align-items: center; justify-content: center; }
.cart-item-remove {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); cursor: pointer; background: none; border: none;
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
  font-size: 1.1rem;
}
.cart-item-remove:hover { color: #e09090; background: rgba(224,144,144,.1); }

.cart-item-qty { grid-area: qty; }
.cart-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid rgba(200,169,110,.2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  width: fit-content;
}
.cart-qty-btn {
  width: 30px; height: 34px;
  border: none; background: transparent; color: var(--white);
  font-size: 1.05rem; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.cart-qty-btn:hover { background: rgba(247,148,29,.15); }
.cart-qty-inp {
  width: 38px; height: 34px; text-align: center;
  border: none; border-left: 1px solid rgba(255,255,255,.08); border-right: 1px solid rgba(255,255,255,.08);
  background: transparent; color: var(--white); font: inherit; font-size: .9rem;
  -moz-appearance: textfield;
}
.cart-qty-inp::-webkit-inner-spin-button, .cart-qty-inp::-webkit-outer-spin-button { -webkit-appearance: none; }

.cart-summary { background: var(--dark); border-radius: var(--radius); border: 1px solid rgba(200,169,110,.1); padding: 28px; }
.cart-summary h3 { font-size: 1.1rem; margin-bottom: 20px; }
.cart-total-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(200,169,110,.06); font-size: .9rem; color: var(--grey-light); }
.cart-total-row.final { border-bottom: none; border-top: 1px solid rgba(200,169,110,.15); margin-top: 8px; padding-top: 16px; font-size: 1.1rem; color: var(--white); }
.cart-empty { text-align: center; padding: 80px 40px; }

@media (max-width: 640px) {
  .cart-item {
    grid-template-columns: 64px 1fr 32px;
    grid-template-areas:
      "img name remove"
      "img qty  total";
    row-gap: 10px;
    padding: 16px;
  }
  .cart-item-img { width: 64px; height: 64px; }
  .cart-item-total { text-align: right; }
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-layout { display: flex; min-height: 100vh; background: var(--dark-2); }
.admin-sidebar {
  width: 260px;
  background: var(--dark);
  border-right: 1px solid rgba(200,169,110,.1);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-logo-wrap {
  padding: 24px 20px 20px;
  border-bottom: 1px solid rgba(200,169,110,.1);
  text-align: center;
}
.admin-logo-wrap img { height: 52px; width: auto; object-fit: contain; margin: 0 auto; }
.admin-brand-tag { display: block; font-size: .52rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-top: 8px; opacity: .65; }
.admin-panel-label { display: block; font-size: .6rem; color: var(--grey); margin-top: 4px; letter-spacing: .1em; text-transform: uppercase; }
.admin-nav { padding: 16px 12px; flex: 1; }
.admin-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius);
  font-size: .8rem; color: var(--grey);
  transition: all var(--transition); cursor: pointer; margin-bottom: 2px;
}
.admin-nav-item:hover { background: rgba(200,169,110,.06); color: var(--white); }
.admin-nav-item.active { background: rgba(200,169,110,.12); color: var(--gold); }
.admin-main { flex: 1; padding: 40px; overflow-y: auto; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid rgba(200,169,110,.1); }
.admin-topbar h1 { font-size: 1.6rem; font-weight: 300; }
.admin-card { background: var(--dark); border-radius: var(--radius); border: 1px solid rgba(200,169,110,.1); padding: 28px; margin-bottom: 24px; }
.admin-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 20px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); padding: 10px 16px; border-bottom: 1px solid rgba(200,169,110,.1); }
.admin-table td { padding: 12px 16px; font-size: .85rem; color: var(--grey-light); border-bottom: 1px solid rgba(200,169,110,.05); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-thumb { width: 48px; height: 48px; object-fit: cover; border-radius: 2px; background: var(--dark-2); }
.badge { display: inline-block; padding: 3px 8px; border-radius: 2px; font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.badge-green  { background: rgba(100,180,100,.15); color: #90d090; }
.badge-yellow { background: rgba(220,180,80,.15); color: #dbc070; }
.badge-red    { background: rgba(220,80,80,.15); color: #e09090; }
.badge-blue   { background: rgba(80,140,220,.15); color: #90b8e0; }
.badge-grey   { background: rgba(140,140,140,.15); color: var(--grey); }
.admin-actions { display: flex; gap: 8px; }
.admin-btn { padding: 6px 14px; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; border: 1px solid; border-radius: var(--radius); cursor: pointer; transition: all var(--transition); background: transparent; }
.admin-btn-gold { border-color: var(--gold); color: var(--gold); }
.admin-btn-gold:hover { background: var(--gold); color: var(--black); }
.admin-btn-red { border-color: rgba(220,80,80,.4); color: #e09090; }
.admin-btn-red:hover { background: rgba(220,80,80,.1); }
.admin-btn-blue { border-color: rgba(80,140,220,.4); color: #90b8e0; }
.admin-btn-blue:hover { background: rgba(80,140,220,.1); }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.admin-form-full { grid-column: 1 / -1; }
.admin-stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 28px; }
.admin-stat { background: var(--dark); border: 1px solid rgba(200,169,110,.1); border-radius: var(--radius); padding: 20px 24px; }
.admin-stat-value { font-family: var(--font-serif); font-size: 2rem; color: var(--gold); display: block; margin-bottom: 4px; }
.admin-stat-label { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); }
.admin-logout { padding: 16px 24px; border-top: 1px solid rgba(200,169,110,.1); }
.admin-logout a { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--grey); transition: color var(--transition); }
.admin-logout a:hover { color: var(--gold); }

/* ============================================================
   WHATSAPP STICKY
   ============================================================ */
.wa-sticky {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.wa-sticky:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-sticky svg { width: 28px; height: 28px; fill: white; }
.wa-tooltip {
  position: absolute; right: 68px;
  background: var(--dark); color: var(--white);
  font-size: .72rem; white-space: nowrap;
  padding: 6px 12px; border-radius: var(--radius);
  border: 1px solid rgba(200,169,110,.15);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.wa-sticky:hover .wa-tooltip { opacity: 1; }

/* ============================================================
   EVENTO — GALLERY CAROSELLO B + LIGHTBOX
   ============================================================ */
.ev-gallery {
  background: var(--dark-2);
  padding: 52px 0 44px;
  border-top: 1px solid rgba(200,169,110,.08);
}
.ev-gallery__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 28px;
}
.ev-gallery__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px;
}
.ev-gallery__label {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-family: var(--font-title);
}

/* Track */
.evc__track-wrap { overflow: hidden; border-radius: 6px; }
.evc__track {
  display: flex;
  gap: 12px;
  transition: transform .48s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Slide: 3 per riga desktop, gap 12px → 2 gaps = 24px */
.evc__slide {
  flex: 0 0 calc((100% - 24px) / 3);
  flex-shrink: 0;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  box-shadow: 0 6px 28px rgba(0,0,0,.65);
}
.evc__slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .48s ease, filter .3s ease;
  filter: brightness(.84);
}
.evc__slide:hover img { transform: scale(1.06); filter: brightness(1); }
.evc__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
  padding: 30px 14px 12px;
  color: #fff; font-size: .7rem; letter-spacing: .04em;
  transform: translateY(100%);
  transition: transform .32s ease;
  pointer-events: none;
}
.evc__slide:hover .evc__caption { transform: translateY(0); }

/* Bottom bar */
.evc__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px;
}
.evc__count { font-size: .7rem; color: #555; letter-spacing: .08em; }
.evc__btns { display: flex; gap: 8px; }
.evc__btn {
  width: 34px; height: 34px; border-radius: 4px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  color: #888; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
}
.evc__btn:hover { background: rgba(200,169,110,.14); border-color: rgba(200,169,110,.6); color: #c8a96e; }
.evc__progress {
  height: 2px; background: rgba(255,255,255,.07); border-radius: 1px;
  margin-top: 10px; overflow: hidden;
}
.evc__bar { height: 100%; background: #c8a96e; border-radius: 1px; width: 0; }

/* Responsive */
@media (max-width: 560px) {
  .evc__slide { flex: 0 0 100%; }
  .evc__track { gap: 0; }
}
@media (min-width: 561px) and (max-width: 820px) {
  .evc__slide { flex: 0 0 calc((100% - 12px) / 2); }
}

/* ---- Lightbox ---- */
.evc-lb {
  position: fixed; inset: 0; z-index: 9900;
  align-items: center; justify-content: center;
}
.evc-lb__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.93);
  backdrop-filter: blur(8px);
}
.evc-lb__inner {
  position: relative; z-index: 1;
  width: min(92vw, 1080px);
  text-align: center;
}
.evc-lb__inner img {
  max-width: 100%; max-height: 78vh;
  border-radius: 5px;
  box-shadow: 0 24px 80px rgba(0,0,0,.85);
  display: block; margin: 0 auto;
}
.evc-lb__caption {
  color: rgba(255,255,255,.6); font-size: .78rem;
  margin-top: 14px; letter-spacing: .04em; min-height: 1.2em;
}
.evc-lb__counter {
  display: block; color: #444; font-size: .65rem;
  letter-spacing: .12em; margin-top: 5px;
}
.evc-lb__close {
  position: fixed; top: 18px; right: 22px; z-index: 2;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  color: #ccc; border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, color .2s;
}
.evc-lb__close:hover { background: rgba(255,255,255,.16); color: #fff; }
.evc-lb__nav {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 2;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: #ccc; border-radius: 50%; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, border-color .2s, color .2s;
}
.evc-lb__nav:hover { background: rgba(200,169,110,.18); border-color: #c8a96e; color: #c8a96e; }
.evc-lb__nav--prev { left: 16px; }
.evc-lb__nav--next { right: 16px; }

/* ---- Social share sotto evento ---- */
.single-evento__share {
  background: var(--dark-2);
  padding: 28px 0 44px;
  border-top: 1px solid rgba(200,169,110,.08);
}
.single-evento__share .ev-gallery__inner { padding-top: 0; }

/* ---- Social share + CTA affiliazione prodotto ---- */
.pd-share-block {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid rgba(200,169,110,.08);
}
.pd-share-block .bp-share { margin: 0; }

/* ---- CTA Affiliazione (condiviso evento + prodotto) ---- */
.aff-cta-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(200,169,110,.06);
  border: 1px solid rgba(200,169,110,.2);
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
}
.aff-cta-bar__icon {
  flex-shrink: 0;
  color: var(--gold);
  opacity: .9;
}
.aff-cta-bar__text {
  flex: 1;
  min-width: 0;
}
.aff-cta-bar__text strong {
  display: block;
  font-size: .92rem;
  color: var(--gold);
  margin-bottom: .2rem;
}
.aff-cta-bar__text span {
  font-size: .8rem;
  color: var(--gray-l);
  line-height: 1.4;
}
.aff-cta-bar__actions {
  display: flex;
  gap: .6rem;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .aff-cta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: .85rem;
  }
  .aff-cta-bar__icon { display: none; }
  .aff-cta-bar__actions { width: 100%; }
  .aff-cta-bar__actions .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   ADMIN QUICK-EDIT PILL
   ============================================================ */
.admin-edit-pill {
  position: fixed; bottom: 28px; left: 28px; z-index: 900;
  display: flex; align-items: center; gap: 7px;
  background: var(--dark); color: var(--gold);
  border: 1px solid rgba(200,169,110,.35);
  padding: 9px 16px; border-radius: 50px;
  font-size: .76rem; font-family: var(--font-body); font-weight: 500;
  text-decoration: none; letter-spacing: .05em;
  box-shadow: 0 2px 18px rgba(0,0,0,.55);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.admin-edit-pill:hover { background: rgba(200,169,110,.12); border-color: var(--gold); box-shadow: 0 4px 24px rgba(0,0,0,.6); color: var(--gold); }
.admin-edit-pill svg { flex-shrink: 0; }

/* ============================================================
   MUSICA SECTION
   ============================================================ */
.musica-section { padding: 100px 0; background: var(--dark); }
.musica-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}
.musica-player { border-radius: 12px; overflow: hidden; }
.musica-player iframe { width: 100%; border: none; border-radius: 12px; }
.musica-tracklist { display: flex; flex-direction: column; gap: 4px; }
.musica-track {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--dark-2);
  border: 1px solid rgba(247,148,29,.06);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.musica-track:hover { background: rgba(247,148,29,.06); border-color: rgba(247,148,29,.2); }
.musica-track-num { font-size: .72rem; color: var(--orange); font-weight: 700; min-width: 20px; font-family: var(--font-sans); }
.musica-track-cover { width: 44px; height: 44px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.musica-track-info { flex: 1; min-width: 0; }
.musica-track-title { font-family: var(--font-title); font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.musica-track-sub { font-size: .72rem; color: var(--grey); }
.musica-platforms { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 1px solid rgba(245,244,240,.15);
  color: var(--white);
}
.platform-btn:hover { border-color: var(--orange); color: var(--orange); }
.platform-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   LIBRI SECTION
   ============================================================ */
.libri-section { padding: 100px 0; background: var(--black); }
.libro-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.libro-cover {
  position: relative;
  flex-shrink: 0;
}
.libro-cover img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 30px 30px 80px rgba(0,0,0,.6), -4px 0 0 rgba(255,255,255,.05);
}
.libro-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius);
}
.libro-body h2 { margin-bottom: 12px; }
.libro-body .libro-sub { font-size: .82rem; color: var(--orange); font-family: var(--font-sans); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 24px; }
.libro-body p { margin-bottom: 32px; max-width: 520px; }
.libro-links { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   COLLABORAZIONI SECTION
   ============================================================ */
.collab-section { padding: 100px 0; background: var(--dark-2); }
.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.collab-card {
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(247,148,29,.06);
  transition: all var(--transition);
}
.collab-card:hover { border-color: rgba(247,148,29,.25); transform: translateY(-4px); }
.collab-img { aspect-ratio: 16/9; overflow: hidden; background: var(--dark-2); }
.collab-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.collab-card:hover .collab-img img { transform: scale(1.04); }
.collab-body { padding: 24px; }
.collab-type { font-family: var(--font-sans); font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; display: block; }
.collab-name { font-family: var(--font-title); font-size: .95rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.collab-desc { font-size: .82rem; color: var(--grey); line-height: 1.6; }

/* ============================================================
   PAGE INTRO — testo libero da TinyMCE sopra la griglia built-in
   ============================================================ */
.page-intro {
  background: var(--dark);
  padding: 0 0 48px;
}
.page-intro > * { max-width: 760px; margin-left: auto; margin-right: auto; }
.page-intro p { color: var(--gray-l); line-height: 1.8; margin-bottom: .75rem; text-align: justify; font-size: 1.08rem; }
.page-intro h2, .page-intro h3 { color: var(--white); margin-bottom: .5rem; margin-top: 1.25rem; }
.page-intro a:not(.btn) { color: var(--orange); }
/* container align */
.page-intro { padding-left: max(1rem, calc((100% - 1200px)/2)); padding-right: max(1rem, calc((100% - 1200px)/2)); }

/* ============================================================
   VIDEO PAGE (pubblica)
   ============================================================ */
.video-gallery-section,
.video-page-section { padding: 60px 0 100px; background: var(--dark); }
.video-filter-tabs { margin-bottom: 0; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}
.video-grid--titled { gap: 16px; }
.video-card { display: flex; flex-direction: column; }
.video-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark-2);
  cursor: pointer;
}
.video-item iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-item-thumb {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  transition: opacity var(--transition);
}
.video-item-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: .7; }
.video-play {
  position: relative;
  z-index: 1;
  width: 60px; height: 60px;
  background: rgba(247,148,29,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.video-item:hover .video-play { transform: scale(1.12); background: var(--orange); }
.video-play svg { width: 24px; height: 24px; fill: #fff; }
.video-item.playing .video-item-thumb { opacity: 0; pointer-events: none; }

/* Locked video */
.video-item--locked { cursor: default; }
.video-item--locked .video-item-thumb img { opacity: .35; }
.video-lock-overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  background: rgba(8,8,8,.55);
}
.video-lock-icon { color: var(--orange); }
.video-lock-label { font-size: .78rem; color: var(--gray-l); letter-spacing: .05em; margin: 0; }

/* Caption below video */
.video-caption {
  padding: 8px 4px 4px;
  font-size: .8rem;
  color: var(--gray-l);
  display: flex;
  align-items: center;
  gap: 8px;
}
.video-cat-badge {
  font-size: .7rem;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(247,148,29,.15);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

/* YouTube CTA bar */
.video-yt-cta {
  margin-top: 60px;
  padding: 32px 40px;
  background: var(--dark-2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.video-yt-cta p { margin: 0; color: var(--gray-l); }

@media (max-width: 768px) {
  .video-grid, .video-grid--titled { grid-template-columns: 1fr; gap: 12px; }
  .video-yt-cta { flex-direction: column; text-align: center; }
}

/* ============================================================
   NEWSLETTER BAR
   ============================================================ */
.newsletter-bar {
  background: linear-gradient(135deg, rgba(247,148,29,.08) 0%, rgba(200,169,110,.05) 100%);
  border-top: 1px solid rgba(247,148,29,.12);
  border-bottom: 1px solid rgba(247,148,29,.12);
  padding: 60px 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.newsletter-text h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: 8px; }
.newsletter-text p { font-size: .9rem; margin: 0; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1;
  background: rgba(8,8,8,.6);
  border: 1px solid rgba(247,148,29,.25);
  border-right: none;
  color: var(--white);
  padding: 14px 20px;
  font-size: .9rem;
  border-radius: var(--radius) 0 0 var(--radius);
  min-width: 280px;
}
.newsletter-form input:focus { outline: none; border-color: var(--orange); }
.newsletter-form button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--orange-dark); }

/* ============================================================
   COOKIE NOTICE
   ============================================================ */
.cookie-notice {
  position: fixed; bottom: 20px; left: 20px; max-width: 400px;
  background: var(--dark); border: 1px solid rgba(200,169,110,.2);
  border-radius: var(--radius); padding: 20px 24px; z-index: 800;
  box-shadow: 0 8px 40px rgba(0,0,0,.4); display: none;
}
.cookie-notice.visible { display: block; }
.cookie-notice p { font-size: .82rem; color: var(--grey-light); margin-bottom: 16px; }
.cookie-notice-actions { display: flex; gap: 10px; }

/* ============================================================
   SCROLL REVEAL — cinematic stagger
   ============================================================ */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(52px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes revealLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes revealRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(52px);
}
.reveal.visible {
  animation: revealUp .9s var(--ease-out) forwards;
}
.reveal-fade { opacity: 0; }
.reveal-fade.visible { animation: revealFade 1s ease forwards; }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-left.visible { animation: revealLeft .9s var(--ease-out) forwards; }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-right.visible { animation: revealRight .9s var(--ease-out) forwards; }

.reveal-delay-1,.reveal-fade.reveal-delay-1,.reveal-left.reveal-delay-1,.reveal-right.reveal-delay-1 { animation-delay:.12s }
.reveal-delay-2,.reveal-fade.reveal-delay-2,.reveal-left.reveal-delay-2,.reveal-right.reveal-delay-2 { animation-delay:.24s }
.reveal-delay-3,.reveal-fade.reveal-delay-3,.reveal-left.reveal-delay-3,.reveal-right.reveal-delay-3 { animation-delay:.36s }
.reveal-delay-4,.reveal-fade.reveal-delay-4,.reveal-left.reveal-delay-4,.reveal-right.reveal-delay-4 { animation-delay:.48s }
.reveal-delay-5 { animation-delay:.60s }
.reveal-delay-6 { animation-delay:.72s }

/* Con prefers-reduced-motion: tutto visibile senza animazione */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-fade, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .page-featured-image img {
    animation: none !important;
    filter: none !important;
  }
  .gallery-wheel-pivot {
    animation: none !important;
  }
}

/* section eyebrow label — orange accent line */
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  vertical-align: middle;
  margin-right: 10px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .bio-section { grid-template-columns: 1fr; }
  .bio-image { min-height: 500px; }
  .bio-content { padding: 60px 40px; }
  .bio-stats { grid-template-columns: repeat(2, 1fr); }
  .eventi-archive-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .auth-panel { padding: 60px 40px; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 24px; }
  .hero-scroll { right: 24px; }
  .eventi-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  /* servizi-grid gestita dai breakpoint dedicati */
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-divider { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .cart-grid { grid-template-columns: 1fr; }
  .product-single { grid-template-columns: 1fr; padding-top: 100px; }
  .footer-grid { grid-template-columns: 1fr; }
  .eventi-archive-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .eventi-grid { grid-template-columns: 1fr; gap: 16px; }
  .shop-grid { grid-template-columns: 1fr; }
  .gallery-marquee__item { width: 130px; }
  .gallery-marquee::before, .gallery-marquee::after { width: 60px; }
  .bio-stats { grid-template-columns: repeat(2, 1fr); }
  .auth-panel { padding: 40px 24px; }
  .cta-block { padding: 48px 24px; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .eventi-archive-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-scroll { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* Newsletter home: mai adattata al mobile — il form (input min-width:280px
     + bottone) restava affiancato al testo in un grid a due colonne, superando
     la larghezza disponibile su smartphone e spingendo la sezione fuori a
     destra. Impilata su una colonna, input libero di restringersi. */
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
  .newsletter-form input { min-width: 0; }
}

/* ============================================================
   EVENT ALERT BANNER
   ============================================================ */
.event-alert {
  position: relative;
  z-index: 200;
  background: linear-gradient(135deg, rgba(247,148,29,.12) 0%, rgba(8,8,8,.9) 100%);
  border-bottom: 1px solid rgba(247,148,29,.3);
  padding: 12px 40px;
  backdrop-filter: blur(8px);
}
.event-alert__pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.event-alert__pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .4;
  animation: pulse-ring 1.6s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: .5; }
  100% { transform: scale(2.2); opacity: 0; }
}
.event-alert__text { font-size: .9rem; color: var(--white); }
.event-alert__countdown {
  display: inline-block;
  margin-left: 12px;
  background: var(--orange);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 2px;
}

/* ============================================================
   FAN CLUB — TABS & CONTENT GRIDS
   ============================================================ */

/* Tab bar */
.fc-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 0;
}
.fc-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: .55rem 1.2rem;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  position: relative;
  bottom: -1px;
}
.fc-tab:hover { color: var(--white); }
.fc-tab--active { color: var(--gold); border-bottom-color: var(--gold); }
.fc-tab__count {
  background: rgba(200,169,110,.18);
  color: var(--gold);
  font-size: .62rem;
  font-weight: 700;
  padding: .1rem .45rem;
  border-radius: 99px;
  letter-spacing: 0;
}

/* Section labels */
.fc-section { padding-top: .25rem; }
.fc-section__label {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fc-section__label--premium { color: var(--gold); }

/* Badges */
.fc-badge {
  display: inline-block;
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .15rem .55rem;
  border-radius: 99px;
  background: rgba(255,255,255,.07);
  color: var(--gray-l);
}
.fc-badge--premium { background: rgba(200,169,110,.18); color: var(--gold); }
.fc-badge--fc      { background: rgba(255,255,255,.07); color: var(--gray-l); }

/* Posts grid */
.fc-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fc-posts-grid--premium {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fc-post-card {
  background: var(--dark-2, #111);
  border: 1px solid rgba(200,169,110,.1);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.fc-post-card:hover { border-color: rgba(200,169,110,.35); transform: translateY(-3px); }
.fc-post-card__img {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.fc-post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.fc-post-card:hover .fc-post-card__img img { transform: scale(1.05); }
.fc-post-card__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fc-post-card__badges { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.fc-post-card__title {
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 8px;
  flex: 1;
}
.fc-post-card__title a { color: var(--white); text-decoration: none; }
.fc-post-card__title a:hover { color: var(--gold); }
.fc-post-card__excerpt { font-size: .78rem; color: var(--gray); line-height: 1.55; margin-bottom: 12px; }
.fc-post-card__meta { font-size: .7rem; color: var(--gray); margin-top: auto; }

/* Video grid */
.fc-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fc-video-card {
  background: var(--dark-2, #111);
  border: 1px solid rgba(200,169,110,.1);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .25s, transform .25s;
}
.fc-video-card:hover { border-color: rgba(200,169,110,.35); transform: translateY(-3px); }
.fc-video-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.fc-video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: opacity .3s, transform .5s;
}
.fc-video-card:hover .fc-video-card__thumb img { opacity: .6; transform: scale(1.04); }
.fc-video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0,0,0,.3);
  transition: background .25s;
}
.fc-video-card:hover .fc-video-card__play { background: rgba(0,0,0,.5); }
.fc-video-card__play svg { filter: drop-shadow(0 2px 8px rgba(0,0,0,.6)); }
.fc-video-card__premium-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(200,169,110,.9);
  color: #000;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 99px;
}
.fc-video-card__info { padding: 12px 14px 14px; }
.fc-video-card__title { display: block; font-size: .85rem; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.fc-video-card__desc  { display: block; font-size: .75rem; color: var(--gray); line-height: 1.45; }

/* Masonry gallery */
.fc-masonry {
  column-count: 3;
  column-gap: 12px;
}
.fc-masonry__item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.fc-masonry__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .5s ease, filter .3s;
  filter: brightness(.92);
}
.fc-masonry__item:hover img { transform: scale(1.04); filter: brightness(.7); }
.fc-masonry__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity .3s;
  background: rgba(0,0,0,.2);
}
.fc-masonry__item:hover .fc-masonry__overlay { opacity: 1; }
.fc-masonry__item--locked {
  aspect-ratio: 3/4;
  background: var(--dark-2, #181818);
  border: 1px solid rgba(200,169,110,.18);
  cursor: default;
}
.fc-masonry__lock {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem;
  text-align: center;
  color: var(--gold);
}
.fc-masonry__lock span { font-size: .8rem; font-weight: 600; letter-spacing: .03em; }

/* Video YT modal */
.fc-yt-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-yt-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
  cursor: pointer;
}
.fc-yt-modal__box {
  position: relative;
  width: min(860px, 94vw);
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}
.fc-yt-modal__close {
  position: absolute;
  top: 10px; right: 14px;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  opacity: .75;
}
.fc-yt-modal__close:hover { opacity: 1; }
.fc-yt-modal__embed { aspect-ratio: 16/9; }
.fc-yt-modal__embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ---- VIDEO MODAL (pagina video pubblica) ---- */
.vid-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.vid-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.vid-modal__box {
  position: relative;
  width: min(1100px, 96vw);
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.8);
  animation: vidModalIn .22s ease;
}
@keyframes vidModalIn {
  from { opacity: 0; transform: scale(.95) translateY(16px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}
.vid-modal__close {
  position: absolute;
  top: 12px; right: 14px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #fff;
  z-index: 2;
  transition: background .15s;
}
.vid-modal__close:hover { background: rgba(247,148,29,.8); border-color: transparent; }
.vid-modal__title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .6rem 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vid-modal__title:empty { display: none; }
.vid-modal__embed { aspect-ratio: 16/9; }
.vid-modal__embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* Empty state */
.fc-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.fc-empty p { font-size: .9rem; line-height: 1.6; margin: 0; }

/* ============================================================
   GUADAGNA — tab affiliazione pannello membro
   ============================================================ */
/* Intestazione sezione */
.gt-header { margin-bottom: 1.5rem; }
.gt-header__title { font-family: var(--font-title); font-size: 1.5rem; color: var(--gold); margin-bottom: .5rem; letter-spacing: .01em; }
.gt-header__subtitle { color: var(--grey-light); font-size: .9rem; line-height: 1.6; max-width: 620px; }

/* Sotto-navigazione: vere tab, scroll orizzontale su mobile */
.gtab-nav-wrap {
  margin: 0 0 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.gtab-nav {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.gtab-nav::-webkit-scrollbar { display: none; }
.gtab-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  padding: .65rem 1.1rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.02);
  border-radius: 10px;
  color: var(--grey-light);
  text-decoration: none;
  transition: border-color .2s, background .2s, color .2s, transform .15s;
  white-space: nowrap;
  scroll-snap-align: start;
  flex-shrink: 0;
}
.gtab-pill__icon { font-size: .95em; line-height: 1; }
.gtab-pill:hover { border-color: rgba(200,169,110,.5); color: var(--white); background: rgba(200,169,110,.06); }
.gtab-pill:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.gtab-pill.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  color: #000;
  box-shadow: 0 2px 10px rgba(200,169,110,.25);
}

/* Panoramica — KPI stile dashboard */
.gt-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
  margin-bottom: 1.5rem;
}
.gt-stat-card {
  position: relative;
  background: var(--dark-2);
  border: 1px solid rgba(200,169,110,.15);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  transition: border-color .2s, transform .2s;
  cursor: default;
}
.gt-stat-card:hover { border-color: rgba(200,169,110,.35); transform: translateY(-2px); }
.gt-stat-icon { font-size: 1.15rem; display: block; margin-bottom: .5rem; opacity: .85; }
.gt-stat-val { font-family: var(--font-title); font-size: 1.4rem; font-weight: 700; color: var(--gold); line-height: 1.15; }
.gt-stat-lbl { font-size: .72rem; color: var(--grey); margin-top: .3rem; line-height: 1.4; }

/* Grafici — card contenitore condivisa da Panoramica e Commissioni */
.gt-chart-card {
  background: var(--dark-2);
  border: 1px solid rgba(200,169,110,.15);
  border-radius: 12px;
  padding: 1.3rem 1.4rem 1.1rem;
  margin-bottom: 1.5rem;
}
.gt-chart-card__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .85rem; margin-bottom: 1rem; }
.gt-chart-card__head h4 { font-family: var(--font-title); font-size: 1rem; color: var(--white); }
.gt-period-filter { display: flex; gap: 4px; flex-wrap: wrap; }
.gt-period-pill {
  font-size: .7rem; font-weight: 600; padding: .35rem .7rem;
  border: 1px solid rgba(255,255,255,.1); border-radius: 20px;
  color: var(--grey-light); text-decoration: none; transition: all .2s;
  white-space: nowrap;
}
.gt-period-pill:hover { border-color: rgba(200,169,110,.5); color: var(--white); }
.gt-period-pill.active { background: rgba(200,169,110,.18); border-color: var(--gold); color: var(--gold); }
.gt-metric-toggle { display: flex; gap: 6px; margin-bottom: 1rem; }
.gt-metric-btn {
  font-size: .74rem; font-weight: 600; padding: .4rem .85rem;
  border: 1px solid rgba(255,255,255,.1); background: transparent; border-radius: 8px;
  color: var(--grey-light); cursor: pointer; transition: all .2s;
}
.gt-metric-btn:hover { border-color: rgba(247,148,29,.5); color: var(--white); }
.gt-metric-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.gt-chart-wrap { position: relative; height: 240px; }
.gt-chart-empty { text-align: center; color: var(--grey); font-size: .85rem; padding: 2.5rem 1rem; }

/* Filtri (prodotti / i miei link) */
.gt-filters { display: flex; flex-wrap: wrap; align-items: center; gap: .85rem; margin-bottom: 1.5rem; }
.gt-search {
  flex: 1;
  min-width: 200px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: .6rem .9rem;
  color: var(--white);
  font-size: .85rem;
  font-family: var(--font-body);
  min-height: 42px;
}
.gt-search:focus { outline: none; border-color: var(--gold); }
.gt-search::placeholder { color: var(--grey); }

/* Sottotitolo di sezione */
.gt-subheading { font-family: var(--font-title); font-size: 1.1rem; color: var(--gold); margin-bottom: .6rem; }

/* Card prodotto / evento — 3 colonne desktop come da spec */
.gt-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-bottom: 1.5rem; }
.gt-card {
  background: var(--dark-2);
  border: 1px solid rgba(200,169,110,.14);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
}
.gt-card:hover { border-color: rgba(200,169,110,.3); }
.gt-card__img { position: relative; aspect-ratio: 4/3; background: #000; }
.gt-card__img--poster { aspect-ratio: 3/4; }
.gt-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gt-card__noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; opacity: .35; }
.gt-card__body { padding: .95rem 1.05rem 1.1rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.gt-card__title { font-weight: 600; font-size: .92rem; color: var(--white); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gt-card__meta { font-size: .76rem; color: var(--grey); }
.gt-card__comm { font-size: .76rem; color: var(--grey-light); margin-bottom: .3rem; }

.gt-badge {
  display: inline-flex; align-items: center;
  background: rgba(200,169,110,.15); color: var(--gold);
  font-size: .66rem; font-weight: 600; letter-spacing: .03em;
  padding: .2rem .55rem; border-radius: 20px;
}
.gt-badge--digital {
  position: absolute; top: .55rem; right: .55rem;
  background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
}
.gt-badge--in { color: #6fcf97; background: rgba(111,207,151,.14); }
.gt-badge--out { color: #e05252; background: rgba(224,82,82,.14); }

.gt-linkbox {
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  padding: .45rem .65rem;
  overflow: hidden;
}
.gt-linkbox code { font-size: .7rem; color: var(--grey-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }

.gt-actions { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .3rem; }
.gt-btn {
  background: rgba(200,169,110,.14);
  border: 1px solid rgba(200,169,110,.3);
  color: var(--gold);
  padding: .4rem .7rem;
  border-radius: 7px;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 600;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: background .2s, transform .1s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}
.gt-btn:hover { background: rgba(200,169,110,.25); }
.gt-btn:active { transform: scale(.96); }
.gt-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.gt-btn--ghost { background: transparent; border-color: rgba(255,255,255,.15); color: var(--grey-light); }
.gt-btn--gold { background: var(--gold); border-color: var(--gold); color: #000; font-size: .82rem; padding: .6rem .9rem; min-height: 40px; }
.gt-btn--gold:hover { background: var(--gold-light); }
.gt-locked { font-size: .78rem; color: var(--grey); font-style: italic; padding: .5rem 0; }

/* I miei link — tabella desktop, card su mobile */
.gt-tbl-wrap { overflow-x: auto; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; }
.gt-tbl { width: 100%; border-collapse: collapse; font-size: .82rem; }
.gt-tbl th {
  text-align: left; font-size: .68rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--grey); padding: .75rem 1rem; background: rgba(0,0,0,.25); white-space: nowrap;
}
.gt-tbl td { padding: .7rem 1rem; border-top: 1px solid rgba(255,255,255,.06); color: var(--white); vertical-align: middle; }
.gt-tbl-link { font-size: .72rem; color: var(--grey-light); max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; }

/* Commissioni e risultati */
.gt-comm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.gt-comm-card { background: var(--dark-2); border: 1px solid rgba(200,169,110,.15); border-radius: 12px; padding: 1.2rem 1.3rem; }
.gt-comm-card__title { font-family: var(--font-title); font-size: 1rem; color: var(--gold); margin-bottom: .9rem; }
.gt-comm-row { display: flex; justify-content: space-between; align-items: center; font-size: .84rem; color: var(--grey-light); padding: .5rem 0; border-top: 1px solid rgba(255,255,255,.05); gap: .5rem; }
.gt-comm-row:first-of-type { border-top: none; }
.gt-comm-row span { flex-shrink: 1; }
.gt-comm-row strong { color: var(--white); text-align: right; }
.gt-comm-note { font-size: .72rem; color: var(--grey); margin-top: .7rem; line-height: 1.5; }

/* Come funziona */
.gt-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.gt-info__block { background: var(--dark-2); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 1.25rem 1.4rem; }
.gt-info__block h4 { font-family: var(--font-title); font-size: 1rem; color: var(--gold); margin-bottom: .6rem; }
.gt-info__block p { font-size: .85rem; color: var(--grey-light); line-height: 1.65; }

/* Modal anteprima QR */
.gt-qr-modal { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.gt-qr-modal.open { display: flex; }
.gt-qr-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.75); backdrop-filter: blur(3px); cursor: pointer; }
.gt-qr-modal__box { position: relative; width: 100%; max-width: 440px; height: min(82vh, 680px); background: var(--dark-2); border: 1px solid rgba(200,169,110,.25); border-radius: 14px; overflow: hidden; }
.gt-qr-modal__closebtn {
  position: absolute; top: .6rem; right: .6rem; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.15);
  color: #fff; cursor: pointer; font-size: .85rem; line-height: 1;
}
.gt-qr-modal__frame { width: 100%; height: 100%; border: none; }

/* Toast */
.gt-toast {
  position: fixed;
  left: 50%;
  bottom: 1.75rem;
  transform: translate(-50%, 12px);
  background: #1a1a1a;
  border: 1px solid rgba(200,169,110,.35);
  color: var(--white);
  font-size: .82rem;
  font-weight: 500;
  padding: .7rem 1.3rem;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 10000;
  max-width: calc(100vw - 2rem);
  text-align: center;
}
.gt-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ── Desktop largo: 4 KPI per riga ── */
@media (min-width: 1200px) {
  .gt-stats-grid { grid-template-columns: repeat(4, 1fr); }
}
/* ── Desktop medio: 3 KPI per riga ── */
@media (min-width: 900px) and (max-width: 1199px) {
  .gt-stats-grid { grid-template-columns: repeat(3, 1fr); }
}
/* ── Tablet ── */
@media (max-width: 899px) {
  .gt-card-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ── Mobile ── */
@media (max-width: 640px) {
  .gt-card-grid { grid-template-columns: 1fr; }
  .gt-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gt-header__title { font-size: 1.3rem; }
  .gtab-pill { font-size: .76rem; padding: .55rem .9rem; }
  .gt-chart-wrap { height: 200px; }
  .gt-chart-card__head { flex-direction: column; align-items: flex-start; }

  /* Tabella "I miei link" → card impilate */
  .gt-tbl-wrap { border: none; overflow: visible; }
  .gt-tbl thead { display: none; }
  .gt-tbl, .gt-tbl tbody, .gt-tbl tr, .gt-tbl td { display: block; width: 100%; }
  .gt-tbl tr {
    background: var(--dark-2);
    border: 1px solid rgba(200,169,110,.14);
    border-radius: 10px;
    padding: .3rem .9rem;
    margin-bottom: .7rem;
  }
  .gt-tbl td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .75rem;
    padding: .55rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
    text-align: right;
  }
  .gt-tbl td:first-child { border-top: none; }
  .gt-tbl td::before {
    content: attr(data-label);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--grey);
    font-weight: 600;
    text-align: left;
    flex-shrink: 0;
  }
  .gt-tbl td[data-label=""]::before { display: none; }
  .gt-tbl td[data-label=""] { justify-content: flex-end; }
  .gt-tbl-link { max-width: 180px; }
}

/* Responsive */
@media (max-width: 900px) {
  .fc-posts-grid,
  .fc-posts-grid--premium,
  .fc-video-grid { grid-template-columns: repeat(2, 1fr); }
  .fc-masonry { column-count: 2; }
}
@media (max-width: 540px) {
  .fc-posts-grid,
  .fc-posts-grid--premium,
  .fc-video-grid { grid-template-columns: 1fr; }
  .fc-masonry { column-count: 1; }
  .fc-tab { padding: .5rem .75rem; font-size: .7rem; }
}

/* ============================================================
   FAN CLUB — ONLYFANS BAR
   ============================================================ */
.fc-onlyfans-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(0,175,240,.08), rgba(8,8,8,.6));
  border: 1px solid rgba(0,175,240,.2);
  border-radius: 8px;
  padding: 1.25rem 1.75rem;
  margin-bottom: 2.5rem;
}

/* ============================================================
   HERO — Cinematic parallax enhancement
   ============================================================ */
.hero {
  min-height: 100vh;
  will-change: transform;
}
.hero-bg {
  transition: opacity .8s var(--ease-out);
  will-change: transform;
}
/* Multiple overlay layers for depth */
.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(8,8,8,.1)  0%,
    rgba(8,8,8,.3)  30%,
    rgba(8,8,8,.65) 70%,
    rgba(8,8,8,.95) 100%
  );
}
/* Cinematic vignette */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(8,8,8,.55) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   FOOTER — 4 colonne aggiornate
   ============================================================ */
/* Solo desktop: sotto i 901px vincono le regole mobile già definite
   sopra in RESPONSIVE (1100/900/640px) — senza questo vincolo questa
   regola, non essendo in una media query, le sovrascriveva sempre
   perché dichiarata dopo, forzando 4 colonne strette anche su mobile
   e facendo uscire il footer dal layout. */
@media (min-width: 901px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
.footer-col h4 {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  font-size: .85rem;
  color: var(--grey);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--orange); }

/* ============================================================
   TICKER MARQUEE
   ============================================================ */
.ticker-wrap {
  background: #060606;
  border-top: 1px solid rgba(247,148,29,.14);
  border-bottom: 1px solid rgba(247,148,29,.14);
  padding: 13px 0;
  overflow: hidden;
  user-select: none;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 50s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}
.ticker-item {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: .75;
  padding: 0 48px;
  flex-shrink: 0;
}
.ticker-item em {
  font-style: normal;
  color: rgba(247,148,29,.3);
  margin: 0 8px;
}

/* ============================================================
   BIO SECTION — watermark MB
   ============================================================ */
.bio-content {
  position: relative;
  overflow: hidden;
}
.bio-content::before {
  content: 'MB';
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(140px, 24vw, 300px);
  font-weight: 900;
  color: rgba(247,148,29,.032);
  line-height: 1;
  right: -10px;
  bottom: -10px;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -.04em;
}
.bio-content > * { position: relative; z-index: 1; }

/* ============================================================
   CTA SECTION — diagonal accent
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(247,148,29,.07) 0%, transparent 55%),
    linear-gradient(to bottom right, transparent 45%, rgba(247,148,29,.04) 100%);
  pointer-events: none;
}
.cta-section__bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--orange), transparent 60%);
}
.cta-section__bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 40%, var(--orange));
}
.cta-block__label {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 20px;
}

/* ============================================================
   SECTION LABEL — override ::before line (now uses sec-num)
   ============================================================ */
.section-label::before { display: none; }
.bio-content .section-label::before { display: none; }

/* ============================================================
   HOVER POLISH — sistema coerente bordo arancio
   ============================================================ */
.post-card {
  transition: transform .3s ease, border-color .3s ease;
}
.post-card:hover { border-color: rgba(247,148,29,.35) !important; transform: translateY(-4px); }
.post-title a:hover { color: var(--orange); }

.evento-card {
  transition: transform .3s ease;
}
.evento-card:hover { transform: translateY(-4px); }

/* ============================================================
   SECTION SPACING — più respiro editoriale
   ============================================================ */
.eventi-section   { padding: 110px 0; }
.gallery-section  { padding: 110px 0; background: var(--dark-2); }
.shop-section     { padding: 110px 0; }
.blog-section     { padding: 110px 0; }
.servizi-section  { padding: 110px 0; }

@media (max-width: 900px) {
  .eventi-section, .gallery-section, .shop-section,
  .blog-section, .servizi-section { padding: 72px 0; }
  .ticker-item { padding: 0 28px; font-size: .65rem; }
}

/* ============================================================
   SHOP PAGE — category filter, view toggle, product grid
   ============================================================ */

/* Cart bar at top of shop */
.shop-cart-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

/* Category filter tabs */
.shop-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.shop-cat-tab {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  color: var(--grey-light);
  transition: all .25s ease;
  white-space: nowrap;
}
.shop-cat-tab:hover {
  border-color: rgba(247,148,29,.5);
  color: var(--white);
}
.shop-cat-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Controls row: count + sort + view toggle */
.shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.shop-count {
  font-size: .78rem;
  color: var(--grey);
  letter-spacing: .06em;
}
.shop-controls__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.shop-sort {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: .76rem;
  cursor: pointer;
  transition: border-color .2s;
}
.shop-sort:hover, .shop-sort:focus { border-color: var(--orange); outline: none; }

/* Grid/list view toggle */
.shop-view-toggle {
  display: flex;
  gap: 4px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 3px;
}
.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  color: var(--grey);
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.view-btn.active {
  background: var(--orange);
  color: #fff;
}
.view-btn:hover:not(.active) { color: var(--white); }

/* Product grid */
.shop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Product card */
.product-card {
  background: var(--dark-2);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(247,148,29,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.product-card__img-link { display: block; }
.product-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark);
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.06); }

/* Badge pill on image */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}
.product-badge--novità, .product-badge--novita { background: var(--orange); color: #fff; }
.product-badge--offerta { background: #e63946; color: #fff; }
.product-badge--in-evidenza { background: var(--gold); color: #111; }

.product-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__cat {
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
  display: block;
}
.product-card__body h3 {
  font-size: .9rem;
  letter-spacing: .06em;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card__body h3 a:hover { color: var(--orange); }
.product-card__desc {
  font-size: .8rem;
  color: var(--grey);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 16px;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Price display */
.product-price-wrap { display: flex; flex-direction: column; gap: 2px; }
.product-price {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 300;
  line-height: 1.2;
}
.product-price--sale {
  color: var(--orange);
  font-weight: 500;
}
.product-price--original {
  font-size: .78rem;
  color: var(--grey);
  text-decoration: line-through;
}

/* Empty state */
.shop-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--grey);
}
.shop-empty svg { margin: 0 auto 20px; opacity: .3; }
.shop-empty p { font-size: 1.05rem; margin-bottom: 1.5rem; }

/* List view override */
#shop-grid.list-view {
  grid-template-columns: 1fr;
  gap: 16px;
}
#shop-grid.list-view .product-card {
  flex-direction: row;
}
#shop-grid.list-view .product-card__img-link {
  flex: 0 0 220px;
}
#shop-grid.list-view .product-card__img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 160px;
}
#shop-grid.list-view .product-card__body {
  padding: 20px 24px;
}
#shop-grid.list-view .product-card__footer {
  margin-top: auto;
}

/* Custom page content (from TinyMCE editor) */
.custom-page-content {
  color: var(--grey-light);
  line-height: 1.8;
  font-size: 1rem;
}
.custom-page-content h1,
.custom-page-content h2,
.custom-page-content h3 {
  color: var(--white);
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.custom-page-content p { margin-bottom: 1.2rem; }
.custom-page-content a { color: var(--orange); text-decoration: underline; }
.custom-page-content ul, .custom-page-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  list-style: disc;
}
.custom-page-content img {
  border-radius: var(--radius);
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
}

/* Shop page responsive */
@media (max-width: 900px) {
  .shop__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  #shop-grid.list-view .product-card__img-link { flex: 0 0 160px; }
}
@media (max-width: 580px) {
  .shop__grid { grid-template-columns: 1fr; }
  #shop-grid.list-view .product-card { flex-direction: column; }
  #shop-grid.list-view .product-card__img-link { flex: none; }
  #shop-grid.list-view .product-card__img { height: auto; aspect-ratio: 4/3; }
  .shop-controls { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   SINGLE PRODUCT PAGE — PrestaShop style
   ============================================================ */
.pd-page {
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 80vh;
}

/* Breadcrumb */
.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.pd-breadcrumb a { color: var(--grey); text-decoration: none; transition: color .2s; }
.pd-breadcrumb a:hover { color: var(--orange); }
.pd-breadcrumb__sep { opacity: .4; }
.pd-breadcrumb span:last-child { color: var(--white); }

/* 2-col layout */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 72px;
}
@media (max-width: 900px) { .pd-layout { grid-template-columns: 1fr; gap: 40px; } }

/* Gallery — left */
.pd-gallery { position: sticky; top: 100px; }
@media (max-width: 900px) {
  /* Sotto i 900px il layout non è più a 2 colonne affiancate: lo sticky
     non ha più una colonna separata in cui restare confinato e finirebbe
     per restare agganciato sopra il contenuto che scorre sotto. Questa
     regola deve stare DOPO quella sticky base qui sopra: a parità di
     specificità (stesso selettore .pd-gallery) vince l'ultima dichiarata
     nel file, non quella "più specifica" per il media query. */
  .pd-gallery { position: static; top: auto; }
}
.pd-main-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 1;
  cursor: pointer;
}
.pd-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform .4s ease;
  box-sizing: border-box;
}
.pd-main-wrap:hover .pd-main-img { transform: scale(1.04); }
.pd-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pd-badge--img { background: var(--gold); color: #111; }
.pd-badge--discount { background: var(--orange); color: #fff; top: 16px; left: auto; right: 16px; }
.pd-zoom-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.pd-zoom-btn:hover { background: var(--orange); border-color: var(--orange); }
.pd-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.pd-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
  padding: 0;
  transition: border-color .2s;
  flex-shrink: 0;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.active { border-color: var(--orange); }
.pd-thumb:hover { border-color: rgba(247,148,29,.5); }

/* Info — right */
.pd-info { display: flex; flex-direction: column; gap: 0; }
.pd-category-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.pd-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.pd-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.pd-stock--in { color: #4caf50; background: rgba(76,175,80,.1); border: 1px solid rgba(76,175,80,.2); }
.pd-stock--out { color: #e74c3c; background: rgba(231,76,60,.1); border: 1px solid rgba(231,76,60,.2); }

/* Price block */
.pd-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.pd-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.pd-price--sale { color: var(--orange); }
.pd-price-old {
  font-size: 1.15rem;
  color: var(--grey);
  text-decoration: line-through;
}
.pd-discount-chip {
  background: rgba(247,148,29,.15);
  color: var(--orange);
  border: 1px solid rgba(247,148,29,.3);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 20px;
}

/* Short desc */
.pd-short-desc {
  font-size: .95rem;
  color: var(--grey-light);
  line-height: 1.75;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Add to cart */
.pd-cart-form { margin-bottom: 28px; }
.pd-variant-select { margin-bottom: 16px; }
.pd-variant-select label { display: block; font-size: .8rem; color: var(--gray); margin-bottom: 6px; }
.pd-variant-select select {
  width: 100%; max-width: 320px;
  background: var(--dark-2, #181818); border: 1px solid var(--border, rgba(200,169,110,.18));
  color: #fff; padding: 10px 12px; border-radius: 6px; font-size: .9rem; font-family: inherit;
}
.pd-actions {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.pd-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid rgba(200,169,110,.2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}
.pd-qty-btn {
  width: 44px;
  height: 54px;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  transition: background .2s;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-qty-btn:hover { background: rgba(247,148,29,.15); }
.pd-qty-inp {
  width: 52px;
  text-align: center;
  border: none;
  border-left: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 1rem;
  height: 54px;
  -moz-appearance: textfield;
}
.pd-qty-inp::-webkit-inner-spin-button,
.pd-qty-inp::-webkit-outer-spin-button { -webkit-appearance: none; }
.pd-add-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  height: 54px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.pd-add-btn:hover { background: #e0830d; transform: translateY(-1px); }
.pd-add-btn:active { transform: translateY(0); }
.pd-out-msg {
  font-size: .88rem;
  color: var(--grey);
  padding: 16px;
  background: rgba(255,255,255,.03);
  border: 1px dashed rgba(255,255,255,.1);
  border-radius: 8px;
  margin-bottom: 28px;
}

/* Trust badges */
.pd-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  padding: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
}
.pd-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--grey-light);
  line-height: 1.4;
}
.pd-trust-item svg { color: var(--gold); flex-shrink: 0; }
.pd-trust-item small { color: var(--grey); font-size: .68rem; }
@media (max-width: 640px) { .pd-trust { grid-template-columns: 1fr; } }

/* Meta */
.pd-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .8rem;
  color: var(--grey);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.pd-meta span { font-weight: 600; color: var(--grey); }
.pd-meta-link { color: var(--orange); text-decoration: none; }
.pd-meta-link:hover { text-decoration: underline; }

/* Tabs */
.pd-tabs {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 48px;
}
.pd-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.pd-tab-btn {
  padding: 14px 28px;
  border: none;
  background: transparent;
  color: var(--grey);
  font: inherit;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.pd-tab-btn:hover { color: var(--white); }
.pd-tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }
.pd-tab-panel { display: none; }
.pd-tab-panel.active { display: block; }
.pd-long-desc {
  max-width: 720px;
  font-size: .96rem;
  color: var(--grey-light);
  line-height: 1.8;
}
.pd-long-desc h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 10px;
}
.pd-long-desc p { margin-bottom: 1.1rem; }

/* Product lightbox */
.pd-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.pd-lightbox.open { display: flex; }
.pd-lb-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 80px;
  width: 100%;
  max-height: calc(100vh - 80px);
}
.pd-lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.pd-lb-close {
  position: fixed;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: .7;
  transition: opacity .2s;
  z-index: 2;
}
.pd-lb-close:hover { opacity: 1; }
.pd-lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 2;
  line-height: 1;
}
.pd-lb-nav:hover { background: var(--orange); border-color: var(--orange); }
.pd-lb-nav--prev { left: 20px; }
.pd-lb-nav--next { right: 20px; }
.pd-lb-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  background: rgba(0,0,0,.4);
  padding: 4px 14px;
  border-radius: 20px;
}

/* ============================================================
   CHECKOUT
   ============================================================ */
.co-page { padding-top: 60px; padding-bottom: 80px; }

.co-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.co-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--light);
}

.co-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #080808;
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Shipping form */
.co-form-col {}
.co-form-col .cf-field { margin-bottom: 16px; }
.co-form-col .cf-field label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-l);
  margin-bottom: 6px;
}
.co-form-col .cf-field input,
.co-form-col .cf-field textarea {
  width: 100%;
  background: var(--dark2);
  border: 1px solid rgba(200,169,110,.18);
  color: var(--light);
  padding: 12px 14px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s;
}
.co-form-col .cf-field input:focus,
.co-form-col .cf-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.co-form-col .cf-field textarea { resize: vertical; }
.co-form-col .cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cf-req { color: var(--orange); }
.cf-opt { font-weight: 400; color: var(--gray); font-size: .85em; }

/* Trust strip */
.co-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  padding: 18px 20px;
  background: rgba(200,169,110,.05);
  border: 1px solid rgba(200,169,110,.1);
  border-radius: 6px;
}
.co-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--gray-l);
}
.co-trust-item svg { color: var(--gold); flex-shrink: 0; }

/* Order summary */
.co-summary-col {
  position: sticky;
  top: 100px;
}

.co-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.co-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.co-item-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(200,169,110,.2);
  flex-shrink: 0;
}
.co-item-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.co-item-body strong { font-size: .9rem; }
.co-item-qty { font-size: .78rem; color: var(--gray); }
.co-item-price { font-size: .9rem; color: var(--gold); font-weight: 600; white-space: nowrap; }

.co-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: .9rem;
  border-top: 1px solid rgba(200,169,110,.1);
}
.co-total-row--final {
  font-size: 1.05rem;
  font-weight: 600;
  border-top: 2px solid rgba(200,169,110,.3);
  margin-top: 4px;
  padding-top: 14px;
}
.co-shipping-val { color: #27ae60; font-size: .85rem; }
.co-total-val { color: var(--gold); }

/* Payment block */
.co-payment-block {
  margin-top: 28px;
  padding: 20px;
  background: var(--dark2);
  border: 1px solid rgba(200,169,110,.15);
  border-radius: 8px;
}

/* PayPal */
.co-paypal-wrap { margin-bottom: 6px; }
.co-paypal-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--gray-l);
  margin-bottom: 14px;
}
.co-paypal-error {
  background: rgba(220,80,80,.08);
  border: 1px solid rgba(220,80,80,.3);
  color: #e09090;
  padding: .65rem 1rem;
  border-radius: 4px;
  font-size: .85rem;
  margin-top: 10px;
}
.co-paypal-loading {
  text-align: center;
  padding: 18px;
  color: var(--gray-l);
  font-size: .88rem;
  animation: pulse 1.5s infinite;
}

/* OR divider */
.co-or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-size: .8rem;
  margin: 18px 0;
}
.co-or-divider::before,
.co-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(200,169,110,.15);
}

/* WhatsApp button */
.co-wa-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.co-wa-btn:hover { background: #1ebe5a; transform: translateY(-1px); }

.co-wa-note {
  text-align: center;
  font-size: .76rem;
  color: var(--gray);
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .co-layout { grid-template-columns: 1fr; }
  .co-summary-col { position: static; }
  .co-form-col .cf-row { grid-template-columns: 1fr; }
}

/* ================================================================
   SERVIZI — home compatta (3 card con immagine)
   ================================================================ */
.svc-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.svc-card-home {
  background: var(--dark);
  border: 1px solid rgba(200,169,110,.12);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.svc-card-home:hover { border-color: var(--gold); transform: translateY(-4px); }
.svc-card-home__img { aspect-ratio: 16/9; overflow: hidden; }
.svc-card-home__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.svc-card-home:hover .svc-card-home__img img { transform: scale(1.06); }
.svc-card-home__badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--orange);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.svc-card-home__body { padding: 22px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.svc-card-home__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
  margin-bottom: 8px;
}
.svc-card-home__title { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 12px; }
.svc-card-home__desc { font-size: .85rem; color: var(--grey); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.svc-card-home__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.svc-card-home__more {
  display: inline-block;
  margin-top: 14px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.svc-card-home__more:hover { border-color: var(--gold); }

@media (max-width: 900px) { .svc-grid-home { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-grid-home { grid-template-columns: 1fr; } }

/* ================================================================
   SERVIZI — pagina dedicata (tutte, 3 colonne)
   ================================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 16px;
}
.svc-card {
  background: var(--dark);
  border: 1px solid rgba(200,169,110,.12);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.svc-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.svc-card__img { aspect-ratio: 16/9; overflow: hidden; }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.svc-card:hover .svc-card__img img { transform: scale(1.06); }
.svc-card__badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--orange);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 1;
}
.svc-card__body { padding: 22px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.svc-card__body h3 { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 12px; }
.svc-card__body p { font-size: .87rem; color: var(--grey); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.svc-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; list-style: none; padding: 0; }
.svc-card__tags li {
  font-size: .72rem;
  background: rgba(200,169,110,.08);
  border: 1px solid rgba(200,169,110,.18);
  color: var(--gold);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .05em;
}

@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* Pagina Servizi — card estese, testo completo, più respiro */
.svc-grid--full {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 8px;
}
.svc-card--full { scroll-margin-top: 100px; }
.svc-card--full .svc-card__body { padding: 32px 34px 36px; }
.svc-card--full .svc-card__body h2 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 16px; }
.svc-card--full .svc-card__body p { font-size: .92rem; line-height: 1.85; margin-bottom: 22px; }
.svc-card--full .svc-card__tags { margin-bottom: 0; }

@media (max-width: 900px) { .svc-grid--full { grid-template-columns: 1fr; gap: 28px; } }

/* ================================================================
   BLOG — pagina lista masonry con filtri
   ================================================================ */
.blog-page { padding-bottom: 80px; }

.blog-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
}
.blog-tab {
  padding: 8px 20px;
  border-radius: 40px;
  border: 1px solid rgba(200,169,110,.2);
  color: var(--grey);
  font-size: .8rem;
  font-family: var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.blog-tab:hover { border-color: var(--gold); color: var(--gold); }
.blog-tab.active { background: var(--gold); border-color: var(--gold); color: var(--black); font-weight: 700; }

/* CSS masonry: column-count approach */
.blog-masonry {
  column-count: 3;
  column-gap: 24px;
}
.bm-card {
  break-inside: avoid;
  background: var(--dark);
  border: 1px solid rgba(200,169,110,.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  display: inline-block; /* needed for column-count masonry */
  width: 100%;
  transition: border-color .25s, transform .25s;
}
.bm-card:hover { border-color: rgba(200,169,110,.35); transform: translateY(-3px); }
.bm-card__img-link { display: block; overflow: hidden; }
.bm-card__img { overflow: hidden; }
.bm-card__img img { width: 100%; display: block; transition: transform .4s; }
.bm-card:hover .bm-card__img img { transform: scale(1.05); }
.bm-card__body { padding: 20px 22px 24px; }
.bm-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.bm-card__cat {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
}
.bm-card__time { font-size: .72rem; color: var(--grey); margin-left: auto; }
.blog-members-badge {
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold); background: rgba(200,169,110,.14); border: 1px solid rgba(200,169,110,.3);
  padding: .2rem .55rem; border-radius: 20px;
}
.blog-members-badge--premium { color: #1a1a1a; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-color: var(--gold); }

/* Contenuto Premium bloccato (single post) */
.bp-premium-lock {
  text-align: center;
  padding: 3rem 1.5rem;
  background: rgba(200,169,110,.05);
  border: 1px solid rgba(200,169,110,.2);
  border-radius: 12px;
  margin: 1rem 0;
}
.bp-premium-lock__icon { color: var(--gold); margin-bottom: 1rem; display: flex; justify-content: center; }
.bp-premium-lock__label { font-family: var(--font-title); font-size: 1.1rem; color: var(--gold); margin-bottom: .75rem; }
.bp-premium-lock__excerpt { color: var(--grey-light); font-size: .92rem; line-height: 1.7; max-width: 520px; margin: 0 auto 1.5rem; }
.bm-card__title { font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.4; margin-bottom: 10px; }
.bm-card__title a { color: var(--light); text-decoration: none; transition: color .2s; }
.bm-card__title a:hover { color: var(--gold); }
.bm-card__excerpt { font-size: .84rem; color: var(--grey); line-height: 1.65; margin-bottom: 14px; }
.bm-card__link { font-size: .8rem; color: var(--gold); text-decoration: none; letter-spacing: .05em; }
.bm-card__link:hover { text-decoration: underline; }

@media (max-width: 1000px) { .blog-masonry { column-count: 2; } }
@media (max-width: 600px)  { .blog-masonry { column-count: 1; } }

/* ---- Coupon checkout ---- */
.co-coupon-wrap { margin: 18px 0 4px; }
.co-coupon-form { display: flex; gap: 8px; align-items: center; }
.co-coupon-input { flex: 1; background: var(--surface2); border: 1px solid var(--border); border-radius: 6px; padding: 9px 14px; color: var(--light); font-size: .88rem; }
.co-coupon-input::placeholder { color: var(--gray); }
.co-coupon-err { margin-top: 6px; font-size: .82rem; color: var(--red, #e05); }
.co-coupon-applied { display: flex; align-items: center; gap: 10px; background: rgba(247,148,29,.08); border: 1px solid rgba(247,148,29,.25); border-radius: 6px; padding: 10px 14px; font-size: .88rem; }
.co-coupon-save { margin-left: auto; font-weight: 700; color: var(--orange); }
.co-coupon-remove { color: var(--gray); text-decoration: none; font-size: .9rem; padding: 2px 6px; border-radius: 4px; }
.co-coupon-remove:hover { color: var(--light); background: var(--surface2); }

/* ---- Nav opaca su pagine auth / fan club ---- */
.body--auth .nav,
.body--fanclub .nav {
  background: rgba(8,8,8,.97) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(247,148,29,.15);
}

/* ---- Auth logo fallback testuale ---- */
.auth-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: .06em;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 8px;
}

/* ---- Members hero (area fan club header) ---- */
.members-hero {
  padding: 140px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(200,169,110,.1);
  margin-bottom: 60px;
}

/* ============================================================
   SINGLE EVENTO — centrato, colonna singola
   ============================================================ */
.single-evento { background: var(--dark); min-height: 100vh; }

/* colonna interna condivisa head + body */
.sev-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- HEADER centrato ---- */
.single-evento__head {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(200,169,110,.1);
  padding: 110px 0 64px;
  text-align: center;
}

.single-evento__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 44px;
  opacity: .7;
  transition: opacity .2s;
}
.single-evento__back:hover { opacity: 1; color: var(--gold); }

/* locandina: centrata, 220px, 3:4 */
.single-evento__poster {
  width: 220px;
  aspect-ratio: 3/4;
  margin: 0 auto 36px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,0,0,.7), 0 0 0 1px rgba(200,169,110,.15);
}
.single-evento__poster img { width: 100%; height: 100%; object-fit: cover; display: block; }

.single-evento__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.single-evento__date {
  font-size: .68rem;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.single-evento__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 10px;
}
.single-evento__subtitle {
  font-size: .95rem;
  color: var(--gray-l);
  margin-bottom: 16px;
  line-height: 1.5;
}
.single-evento__venue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--gray-l);
  margin-bottom: 36px;
}
.single-evento__venue svg { color: var(--orange); flex-shrink: 0; }

/* bottoni CTA: centrati */
.single-evento__cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ---- BODY: testo articolo ---- */
.single-evento__body {
  padding: 60px 0 100px;
}
.single-evento__body .sev-inner {
  text-align: left;
}

/* CMS content richtext (shared between blog and single events) */
.cms-content { line-height: 1.85; }
.cms-content h2, .cms-content h3 { color: var(--white); margin: 1.5rem 0 .5rem; }
.cms-content p { margin-bottom: .85rem; color: var(--gray-l); }
.cms-content ul, .cms-content ol { padding-left: 1.5rem; margin-bottom: 1rem; color: var(--gray-l); }
.cms-content img { max-width: 100%; border-radius: 8px; margin: 1rem 0; }
.cms-content a { color: var(--orange); }

@media (max-width: 600px) {
  .single-evento__head { padding: 88px 0 48px; }
  .single-evento__poster { width: 180px; }
  .single-evento__body { padding: 40px 0 64px; }
}

/* ============================================================
   AD SLOTS — sistema pubblicita
   ============================================================ */
.ad-slot { width:100%; text-align:center; margin:1.5rem 0; line-height:0 }
.ad-slot img { max-width:100%; height:auto; border-radius:4px; display:inline-block }
.ad-slot a { display:inline-block; transition:opacity .2s }
.ad-slot a:hover { opacity:.92 }
.ad-slot--adsense { line-height:normal }

/* ============================================================
   PRENOTA — sezione "Cosa include" + "Come funziona"
   ============================================================ */
.prenota-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: var(--dark-2, #111);
}
.prenota-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .28;
}
.prenota-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--dark-2, #111) 0%, rgba(17,17,17,.85) 60%, var(--dark-2, #111) 100%);
}
.prenota-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: start;
}
.prenota-section__text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #fff;
  margin: 10px 0 24px;
}
.prenota-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.prenota-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--gray-l);
}
.prenota-list .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(200,169,110,.15);
  color: var(--gold);
  font-size: .75rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.prenota-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.steps {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(200,169,110,.15);
  border-radius: 12px;
  padding: 36px 32px;
}
.steps h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 24px;
}
.step {
  display: flex;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.step__num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
}
.step strong { display: block; color: #fff; font-size: .95rem; margin-bottom: 4px; }
.step p { color: var(--gray); font-size: .85rem; line-height: 1.6; margin: 0; }

@media (max-width: 900px) {
  .prenota-section { padding: 56px 0; }
  .prenota-section__inner { grid-template-columns: 1fr; gap: 40px; }
}
