/*
  ============================================================
  mimmopesce.it — Foglio di stile principale
  Versione: 1.0
  Struttura: questo file viene incluso in TUTTE le pagine
  con <link rel="stylesheet" href="style.css">
  ============================================================

  INDICE:
  1.  Reset & Variabili CSS
  2.  Base & Tipografia
  3.  Navigazione
  4.  Componenti comuni (bottoni, sezioni, divider)
  5.  Hero
  6.  Sezione Bio
  7.  Contatore Mondiale
  8.  Aziende
  9.  Turris Calcio
  10. Nautica & Fiere
  11. Galleria foto (tab)
  12. Citazioni
  13. Riconoscimenti
  14. Passioni
  15. Social links
  16. Contatti & Form
  17. Footer
  18. Controlli flottanti (zoom, palette)
  19. Toast notification
  20. Scroll-to-top
  21. Animazioni & Transizioni
  22. Responsive (breakpoint 900px e 560px)
  ============================================================
*/


/* ============================================================
   1. RESET & VARIABILI CSS
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* --- Palette principale --- */
  --gold:           #C8922A;
  --gold-light:     #E8A830;
  --gold-bright:    #FFB830;
  --navy:           #0D2340;
  --navy-mid:       #14305A;
  --navy-dark:      #081828;
  --teal:           #0B7A5C;
  --teal-light:     #12A880;
  --coral:          #C84820;
  --coral-light:    #E86840;

  /* LIGHT THEME COLORS */
  --bg-page:        #F5F0E8;
  --bg-section:     #FAFAF7;
  --bg-alt:         #EEE8DC;
  --bg-card:        #FFFFFF;
  --bg-card-hover:  #FFF8EC;
  --text-primary:   #0D2340;
  --text-secondary: #2A3A54;
  --text-muted:     #5A6880;
  --text-faint:     #8898B0;
  --border-light:   rgba(13, 35, 64, 0.12);
  --border-gold:    rgba(200, 146, 42, 0.40);
  --shadow-sm:      0 2px 12px rgba(13,35,64,0.08);
  --shadow-md:      0 6px 28px rgba(13,35,64,0.12);
  --shadow-lg:      0 16px 48px rgba(13,35,64,0.18);

  /* Legacy aliases (keep for compatibility) */
  --white:          #FAFAF7;
  --white-dim:      rgba(13, 35, 64, 0.80);
  --white-faint:    rgba(13, 35, 64, 0.50);
  --white-ghost:    rgba(13, 35, 64, 0.25);
  --glass:          rgba(255, 255, 255, 0.85);
  --glass-border:   rgba(200, 146, 42, 0.30);
  --glass-hover:    rgba(255, 248, 236, 0.95);

  /* --- Tag colori categoria --- */
  --tag-tech-bg:    rgba(29, 158, 117, 0.10);
  --tag-tech-bd:    rgba(29, 158, 117, 0.30);
  --tag-tech-tx:    #5DCAA5;
  --tag-retail-bg:  rgba(201, 168, 76, 0.10);
  --tag-retail-bd:  rgba(201, 168, 76, 0.30);
  --tag-retail-tx:  #C9A84C;
  --tag-food-bg:    rgba(216, 90, 48, 0.10);
  --tag-food-bd:    rgba(216, 90, 48, 0.30);
  --tag-food-tx:    #F0997B;
  --tag-sea-bg:     rgba(21, 101, 192, 0.10);
  --tag-sea-bd:     rgba(21, 101, 192, 0.30);
  --tag-sea-tx:     #85B7EB;
  --tag-social-bg:  rgba(127, 119, 221, 0.10);
  --tag-social-bd:  rgba(127, 119, 221, 0.30);
  --tag-social-tx:  #AFA9EC;

  /* --- Tipografia --- */
  --font-display:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:      'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:      'JetBrains Mono', 'Fira Code', monospace;

  /* --- Spaziatura --- */
  --section-padding:  96px 48px;
  --container-max:    1200px;
  --gap-sm:    12px;
  --gap-md:    24px;
  --gap-lg:    48px;
  --gap-xl:    64px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  /* --- Effetti dinamici (controllati via JS) --- */
  --hue:   0deg;      /* cambio tema colore */
  --zoom:  1;         /* zoom pagina        */

  /* --- Transizioni standard --- */
  --transition-fast:   0.18s ease;
  --transition-mid:    0.28s ease;
  --transition-slow:   0.5s ease;
}


/* ============================================================
   2. BASE & TIPOGRAFIA
   ============================================================ */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.65;
  filter: hue-rotate(var(--hue));
  zoom: var(--zoom);
}

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

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

strong {
  color: var(--gold);
  font-weight: 500;
}

em {
  font-style: italic;
}

p {
  font-size: 15px;
  line-height: 1.88;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--text-primary);
}


/* ============================================================
   3. NAVIGAZIONE
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 950;
  width: 100%;
  padding: 0 48px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  border-bottom: 3px solid var(--gold-light);
  box-shadow: var(--shadow-md);
}

.site-nav.scrolled {
  background: var(--navy-dark);
  border-bottom: 3px solid var(--gold-bright);
  box-shadow: var(--shadow-lg);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  text-decoration: none;
  text-shadow: 0 0 30px rgba(232,184,75,0.35);
}

.nav-links {
  display: flex;
  gap: 14px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition-fast), border-color var(--transition-fast);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}


/* ============================================================
   4. COMPONENTI COMUNI
   ============================================================ */

/* Sezioni */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section--navy     { background: var(--bg-section); }
.section--navy-mid { background: var(--bg-alt); border-top: 1px solid var(--border-gold); }
.section--dark     { background: var(--navy-dark); }

.section-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 24px;
}

.section-title em {
  color: var(--gold);
  font-style: normal;
}

.divider {
  width: 56px;
  height: 2px;
  background: var(--gold-light);
  margin-bottom: 50px;
  box-shadow: 0 0 8px rgba(200,146,42,0.5);
}

/* Bottoni */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition-fast);
  border: none;
}

.btn--primary {
  background: var(--gold-bright);
  color: var(--navy-dark);
  font-weight: 600;
}
.btn--primary:hover {
  background: #FFD060;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,146,42,0.45);
}

.btn--outline {
  background: rgba(255,255,255,0.12);
  color: #FFFFFF;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.22);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-sm);
}
.btn--whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* Glassmorphism card base */
.glass-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(240,192,64,0.35);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.glass-card:hover {
  border-color: var(--gold);
}

/* Tag / badge categorie */
.tag {
  display: inline-block;
  font-size: 9.5px;
  padding: 3px 11px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid;
}

.tag--tech   { background: #E8F5EF; border-color: #12A880; color: #0B7A5C; font-weight: 600; }
.tag--retail { background: #FFF8E8; border-color: #E8A830; color: #8A5A00; font-weight: 600; }
.tag--food   { background: #FFF0E8; border-color: #F06838; color: #9A3010; font-weight: 600; }
.tag--sea    { background: #E8F0FF; border-color: #2868D0; color: #183898; font-weight: 600; }
.tag--social { background: #F0E8FF; border-color: #8048C8; color: #481888; font-weight: 600; }

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Fade-in scroll animation */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 48px 90px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('img/foto-mimmo.jpg');
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
}


.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      150deg,
      rgba(8,24,40,0.45) 0%,
      rgba(13,35,64,0.38) 40%,
      rgba(20,48,90,0.42) 70%,
      rgba(10,30,56,0.50) 100%
    );
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 8s ease-in-out infinite;
}

@keyframes particle-float {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.5); }
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  animation: spin-slow linear infinite;
  pointer-events: none;
}
.hero__ring:nth-child(1) {
  width: 640px; height: 640px;
  right: -100px; top: 50%; margin-top: -320px;
  animation-duration: 50s;
  opacity: 0.35;
}
.hero__ring:nth-child(2) {
  width: 480px; height: 480px;
  right: -30px; top: 50%; margin-top: -240px;
  animation-duration: 35s;
  animation-direction: reverse;
  opacity: 0.25;
  border-color: rgba(29, 158, 117, 0.25);
}
.hero__ring:nth-child(3) {
  width: 320px; height: 320px;
  right: 40px; top: 50%; margin-top: -160px;
  animation-duration: 22s;
  opacity: 0.2;
  border-color: rgba(201, 168, 76, 0.3);
}

@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--glass-border);
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 30px;
  background: rgba(201, 168, 76, 0.08);
}

.hero__name {
  font-size: clamp(50px, 7.5vw, 90px);
  line-height: 0.93;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero__name span { color: var(--gold-bright); text-shadow: 0 0 40px rgba(255,184,48,0.6); }

.hero__subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.90) !important;
  font-weight: 400;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 520px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.hero__bases {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero__base-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,30,60,0.50);
  border: 1.5px solid rgba(255,255,255,0.50);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 14px;
  color: #FFFFFF !important;
  font-weight: 500;
  backdrop-filter: blur(8px);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero__base-flag { font-size: 17px; }

.hero__stats {
  display: flex;
  gap: 12px 36px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}

.hero__stat { text-align: center; }

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--gold-bright);
  line-height: 1;
  display: block;
  text-shadow: 0 0 20px rgba(255,184,48,0.4);
}

.hero__stat-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75) !important;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* ============================================================
   6. BIO
   ============================================================ */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: start;
}

.highlight-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 24px;
  align-items: center;
}

.highlight-card:hover {
  transform: translateX(8px);
  border-color: var(--gold);
}

.highlight-card__icon  { font-size: 26px; }
.highlight-card__icon img { width: 72px; height: 72px; object-fit: contain; display: block; }
.highlight-card__body { display: flex; flex-direction: column; justify-content: center; }
.highlight-card__title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.highlight-card__text { font-size: 13px; color: var(--text-secondary) !important; line-height: 1.65; margin-bottom: 0; }

.bio-highlights { display: flex; flex-direction: column; gap: 16px; }


/* ============================================================
   7. WORLD COUNTER
   ============================================================ */
.world-counter {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  text-align: center;
  padding: 80px 48px;
}

.world-counter__num {
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 155px);
  font-weight: 900;
  color: transparent;
  background: linear-gradient(135deg, #E8B84B 0%, #FFD97D 40%, #14C47A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  animation: pulse-num 3.5s ease-in-out infinite;
}

@keyframes pulse-num {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.78; }
}

.world-counter__label {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-top: 14px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.world-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  margin: 40px auto 0;
  max-width: 600px;
  opacity: 0.32;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: twinkle 2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.04s);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.6); }
}


/* ============================================================
   8. AZIENDE
   ============================================================ */
.companies-stack {
  display: flex;
  flex-direction: column;
}

.company-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  border: 1px solid var(--border-gold);
  margin-bottom: -1px;
  transition: border-color var(--transition-fast), z-index 0.01s, box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
}

.company-card:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; box-shadow: var(--shadow-sm); }
.company-card:last-child  { border-radius: 0 0 var(--radius-md) var(--radius-md); margin-bottom: 0; }
.company-card:hover { border-color: var(--gold-light); z-index: 2; box-shadow: var(--shadow-md); }
.company-card:hover .company-card__sidebar { background: rgba(201, 168, 76, 0.14); }

.company-card__sidebar {
  background: rgba(201, 168, 76, 0.07);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--glass-border);
  transition: background var(--transition-fast);
  text-align: center;
}

.company-card__emoji   { font-size: 32px; }
.company-card__logo    { font-family: var(--font-display); font-size: 14px; color: var(--gold); font-weight: 700; line-height: 1.25; }
.company-card__era     { font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); }
.company-card__body    { padding: 30px 36px; }
.company-card__name    { font-family: var(--font-display); font-size: 21px; color: var(--white); margin-bottom: 10px; }
.company-card__desc    { font-size: 14px; color: rgba(248,245,240,0.6); line-height: 1.8; margin-bottom: 16px; }
.company-card__desc strong { color: var(--gold); font-weight: 600; }


/* ============================================================
   9. TURRIS CALCIO
   ============================================================ */
.turris-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}

.turris-badge {
  background: #FFF5F0;
  border: 2px solid rgba(200, 72, 32, 0.25);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.turris-badge__crest    { font-size: 76px; display: block; margin-bottom: 18px; }
.turris-badge__name { font-family: var(--font-display); font-size: 24px; color: var(--coral); margin-bottom: 6px; font-weight: 700; }
.turris-badge__location { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px; display: block; }

.turris-badge__box {
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 12px;
}
.turris-badge__box--role    { background: rgba(216,90,48,0.12); border: 1px solid rgba(216,90,48,0.28); }
.turris-badge__box--mission { background: rgba(201,168,76,0.07); border: 1px solid var(--glass-border); }

.turris-badge__box-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(216,90,48,0.65); margin-bottom: 5px; }
.turris-badge__box-value { font-size: 15px; color: var(--white); font-weight: 500; }
.turris-badge__box--mission .turris-badge__box-value { color: var(--gold); }

.turris-text p strong { color: var(--navy); font-weight: 700; }

.turris-quote { border-left: 3px solid var(--coral); padding-left: 22px; margin-top: 28px; }
.turris-quote p { font-family: var(--font-display); font-size: 18px; color: var(--text-secondary); font-style: italic; line-height: 1.55; }


/* ============================================================
   10. NAUTICA & FIERE
   ============================================================ */
.nautica-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: start;
}

.nautica-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.n-stat {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.n-stat:hover { border-color: var(--gold-light); box-shadow: var(--shadow-md); }
.n-stat__num { font-family: var(--font-display); font-size: 34px; color: var(--navy); display: block; margin-bottom: 5px; font-weight: 700; }
.n-stat__label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); line-height: 1.5; }

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

.fiera-row {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-sm);
}
.fiera-row:hover { border-color: var(--gold-light); transform: translateX(4px); box-shadow: var(--shadow-md); background: var(--bg-card-hover); }
.fiera-row__icon   { font-size: 26px; flex-shrink: 0; }
.fiera-row__name   { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.fiera-row__detail { font-size: 12px; color: var(--text-secondary) !important; line-height: 1.5; }


/* ============================================================
   11. GALLERIA FOTO
   ============================================================ */
.gallery-tabs {
  display: flex;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 36px;
}

.tab-btn {
  padding: 10px 24px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition-fast);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.tab-btn:hover  { color: var(--gold); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.tab-content        { display: none; }
.tab-content.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.photo-card {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  transition: border-color var(--transition-fast);
}
.photo-card:hover { border-color: var(--gold); }

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.photo-card:hover img { transform: scale(1.06); }

.photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.35s ease;
}
.photo-card:hover .photo-placeholder { transform: scale(1.06); }

.photo-placeholder__icon  { font-size: 36px; }
.photo-placeholder__label { font-size: 11.5px; color: var(--text-faint); }

.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 30, 0.72);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.photo-card:hover .photo-overlay { opacity: 1; }
.photo-caption { font-size: 13px; font-weight: 500; color: var(--gold); }


/* ============================================================
   11b. GALLERIA HOME — collage animato
   ============================================================ */

/* contenitore principale */
/* ── COLLAGE contenitore ── */
.gcollage {
  position: relative;
  height: 540px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--navy-dark);
  margin: 0 0 8px;
}

/* track: 3 righe impilate, altezza fissa */
.gcollage__track {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px 0;
}

/* ogni riga: scroll orizzontale infinito */
.gcollage__row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 6px;
  height: calc((540px - 18px) / 3);  /* (totale - 2 gap - 2 padding) / 3 */
  flex-shrink: 0;
  /* larghezza calcolata dai figli */
  width: max-content;
  animation: gcollageScroll var(--gcr-speed, 32s) linear infinite;
  animation-direction: var(--gcr-dir, normal);
  will-change: transform;
}
.gcollage:hover .gcollage__row { animation-play-state: paused; }

@keyframes gcollageScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* miniatura */
.gcollage__thumb {
  height: 100%;
  width: 220px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--navy-mid);
  transition: transform .22s ease, box-shadow .22s ease;
}
.gcollage__thumb:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(200,146,42,.35);
  z-index: 2;
}
.gcollage__thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* placeholder lettera / video */
.gcollage__thumb-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-family: var(--font-display);
  color: var(--gold);
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
}
.gcollage__thumb-video { font-size: 28px; }

/* overlay gradiente + CTA centrata */
.gcollage__overlay {
  position: absolute; inset: 0; z-index: 10;
  background: linear-gradient(
    to bottom,
    rgba(8,24,40,.5) 0%,
    rgba(8,24,40,.1) 30%,
    rgba(8,24,40,.1) 70%,
    rgba(8,24,40,.6) 100%
  );
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.gcollage__cta {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  pointer-events: all;
}
.gcollage__cta-count {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  background: rgba(13,35,64,.65);
  border: 1px solid rgba(200,146,42,.35);
  border-radius: 20px; padding: 5px 18px;
  backdrop-filter: blur(6px);
}
.gcollage__cta-btn {
  font-size: 14px; padding: 13px 32px;
  box-shadow: 0 4px 24px rgba(200,146,42,.4);
}

/* placeholder loading */
.gcollage__placeholder {
  position: absolute; inset: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 14px;
  background: var(--navy-dark);
}
.gcollage__placeholder a { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .gcollage { height: 300px; }
  .gcollage__row { height: calc((300px - 18px) / 3); }
  .gcollage__thumb { width: 170px; }
}
@media (max-width: 560px) {
  .gcollage { height: 220px; }
  .gcollage__row { height: calc((220px - 18px) / 3); }
  .gcollage__thumb { width: 130px; }
}


/* ============================================================
   12. CITAZIONI
   ============================================================ */
.quotes-section {
  background: var(--navy-dark);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.quotes-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 40px;
  font-family: var(--font-display);
  font-size: 280px;
  color: var(--gold);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap-md);
}

.quote-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 32px 28px;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
  position: relative;
}

.quote-card:hover {
  transform: translateY(-5px);
  background: var(--glass-hover);
  border-left-color: var(--gold-light);
}

.quote-card__mark {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  opacity: 0.35;
  line-height: 0.8;
  display: block;
  margin-bottom: 14px;
  user-select: none;
}

.quote-card__text {
  font-family: var(--font-display);
  font-size: 17px;
  color: rgba(248, 245, 240, 0.88);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 20px;
}

.quote-card__author {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-card__author::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}


/* ============================================================
   13. RICONOSCIMENTI
   ============================================================ */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 14px !important;
}

.award-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: transform var(--transition-mid), border-color var(--transition-mid), box-shadow var(--transition-mid);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.award-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-mid);
}

.award-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  background: var(--bg-card-hover);
}
.award-card:hover::before { transform: scaleX(1); }

.award-card__year { font-size: 10px; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px; }
.award-card__name { font-family: var(--font-display); font-size: 16px; color: var(--navy) !important; margin-bottom: 8px; line-height: 1.3; font-weight: 700; }
.award-card__body { font-size: 13px; color: var(--text-secondary) !important; line-height: 1.65; margin-bottom: 0; }


/* ============================================================
   14. PASSIONI
   ============================================================ */
.passioni-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.passion-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  transition: border-color var(--transition-mid), transform var(--transition-mid), box-shadow var(--transition-mid);
  box-shadow: var(--shadow-sm);
}

.passion-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card-hover);
}

.passion-card__icon { font-size: 46px; display: block; margin-bottom: 18px; }
.passion-card__name { font-family: var(--font-display); font-size: 18px; color: var(--text-primary); margin-bottom: 10px; }
.passion-card__desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 0; }


/* ============================================================
   15. SOCIAL LINKS
   ============================================================ */
.social-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.social-link:hover {
  border-color: var(--gold-light);
  color: var(--navy);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.social-link__icon { font-size: 20px; width: 48px; height: 48px; object-fit: contain; display: inline-block; vertical-align: middle; flex-shrink: 0; }


/* ============================================================
   16. CONTATTI & FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-field label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-faint);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.12);
}

.form-field textarea    { resize: vertical; min-height: 120px; }
.form-field select option { background: var(--bg-card); color: var(--text-primary); }

.contact-info { display: flex; flex-direction: column; gap: 26px; }

.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item__icon   { font-size: 22px; margin-top: 2px; color: var(--gold); flex-shrink: 0; }
.contact-item__title  { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--text-primary); font-family: var(--font-body); }
.contact-item__text   { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }
.contact-item__sub    { font-size: 12px; color: var(--text-faint); }
.contact-hint         { font-size: 11px; color: var(--text-faint); margin-top: 8px; }


/* ============================================================
   17. FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 3px solid var(--gold-bright);
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer__logo { font-family: var(--font-display); font-size: 20px; color: #FFFFFF; font-weight: 700; }

.site-footer__links { display: flex; gap: 24px; }
.site-footer__links a {
  font-size: 11px;
  color: rgba(248, 245, 240, 0.35);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}
.site-footer__links a:hover { color: var(--gold); }

.site-footer__copy { font-size: 11.5px; color: rgba(255,255,255,0.40); }


/* ============================================================
   18. CONTROLLI FLOTTANTI
   ============================================================ */
.floating-controls {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.ctrl-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--glass-border);
  background: rgba(10, 22, 40, 0.88);
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all var(--transition-fast);
  font-family: var(--font-body);
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.ctrl-btn:hover { background: var(--gold); color: var(--navy); transform: scale(1.1); }

.palette-modal {
  display: none;
  position: fixed;
  top: 118px;
  right: 28px;
  background: rgba(8, 16, 30, 0.97);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  z-index: 9998;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-width: 230px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}
.palette-modal.open { display: block; }
.palette-modal__title { font-size: 10px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
.palette-row { display: flex; gap: 10px; flex-wrap: wrap; }

.pal-swatch {
  width: 38px;
  height: 38px;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s, border-color 0.15s;
  position: relative;
}
.pal-swatch:hover { transform: scale(1.18); border-color: rgba(255, 255, 255, 0.5); }


/* ============================================================
   19. TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--gold);
  color: var(--navy);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2000;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* ============================================================
   20. SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--glass-border);
  background: rgba(10, 22, 40, 0.88);
  color: var(--gold);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all var(--transition-fast);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover   { background: var(--gold); color: var(--navy); }


/* ============================================================
   21. ANIMAZIONI
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}



/* ── COMPANY LOGO IMAGES ── */
.company-card__sidebar img {
  width: 90%;
  max-width: 195px;
  max-height: 155px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 6px;
  display: block;
}
.fiera-row img {
  width: 96px;
  height: 96px;
  min-width: 96px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  padding: 8px;
  background: white;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-gold);
}
/* ============================================================
   22. RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root { --section-padding: 70px 24px; }

  .site-nav { padding: 14px 24px; }
  .wclock-bar { display: none; }
  .nav-links { display: none; }

  .hero { padding: 100px 24px 70px; }

  .bio-grid,
  .turris-grid,
  .nautica-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .passioni-grid { grid-template-columns: 1fr 1fr; }
  .awards-grid    { grid-template-columns: repeat(3, 1fr) !important; }
  .press-grid     { grid-template-columns: repeat(3, 1fr) !important; }
  .presskit-grid  { grid-template-columns: repeat(6, 1fr) !important; }

  .tab-content.active { grid-template-columns: 1fr 1fr; }

  .company-card { grid-template-columns: 1fr; }
  .company-card__sidebar {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    flex-direction: row;
    justify-content: flex-start;
    padding: 18px 24px;
  }

  .hero__ring { display: none; }

  .site-footer { flex-direction: column; text-align: center; padding: 32px 24px; }
  .site-footer__links { justify-content: center; }

  .quotes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .passioni-grid          { grid-template-columns: 1fr; }
  .tab-content.active     { grid-template-columns: 1fr; }
  .awards-grid   { grid-template-columns: repeat(2, 1fr) !important; }
  .press-grid    { grid-template-columns: repeat(2, 1fr) !important; }
  .presskit-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .hero__stats            { gap: 20px; }
  .site-footer__links     { flex-wrap: wrap; gap: 14px; }
  .hero__bg {
    background-size: auto 100%;
    background-position: 85% top;
  }
}

/* ── LOGO ENHANCEMENTS ── */
.award-card img {
  max-width: 100px;
  max-height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 4px;
}
.turris-badge img {
  max-width: 180px;
  max-height: 140px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}
/* Photo placeholder on light bg */
.photo-placeholder {
  background: var(--bg-alt) !important;
}
.photo-placeholder__icon  { font-size: 36px; }
.photo-placeholder__label { font-size: 11.5px; color: var(--text-faint); }

/* ── HERO PHOTO PLACEHOLDER ── */
.hero-photo-placeholder {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 350px;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  border: 2px dashed rgba(255,255,255,0.30);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-photo-placeholder .photo-icon { font-size: 48px; opacity: 0.6; }
.hero-photo-real {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 350px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top center;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 3px solid rgba(255,184,48,0.4);
}
@media(max-width:900px){
  .hero-photo-placeholder, .hero-photo-real { display: none; }
}

/* ── SECTION TITLE: first word faded, second word gold ── */
.section-title { color: var(--text-primary); }
.section-title em { color: var(--gold-light); font-style: normal; }

/* ── STAMP / PREMI CARDS: add image support ── */
.premio-img {
  width: 130px;
  height: 130px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 14px;
  border-radius: 8px;
  display: block;
}

/* ── PRESS SECTION overrides (dark bg) ── */
.press-section .section-label { color: var(--gold-bright); }
.press-section .section-title { color: #FFFFFF; }
.press-section .section-title em { color: var(--gold-bright); }
.press-section .divider { background: var(--gold-bright); box-shadow: 0 0 8px rgba(255,184,48,0.5); }
.press-section h3 { color: #FFFFFF !important; }
.press-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: none;
}
.press-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--gold-bright);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.press-card__type { color: var(--gold-bright); }
.press-card__outlet { color: #FFFFFF; }
.press-card__title { color: rgba(255,255,255,0.65); }

/* ── HIGHLIGHT CARD TITLE: fix invisible text ── */
.highlight-card__title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  font-family: var(--font-body);
}

/* ── NAV LOGO: white, never transparent ── */
.nav-logo { color: #FFFFFF !important; }

/* ── SECTION TITLES: fix first word invisible ── */
.section-title {
  color: var(--text-primary);
  font-family: var(--font-display);
}

/* ── AWARD CARD: ensure name visible ── */
.award-card__name { color: var(--text-primary) !important; }

/* ── Stampa & Citazioni sections: dark bg needs white text ── */
.quotes-section .section-label  { color: var(--gold-bright); }
.quotes-section .section-title  { color: #FFFFFF; }
.quotes-section .divider        { background: var(--gold-bright); }
.world-counter .section-label   { color: var(--gold-bright); }

/* ── HERO name first line ── */
.hero__name { color: #FFFFFF; }
.hero__name span { color: var(--gold-bright); }

/* ── FOOTER links ── */
.site-footer__links a { color: rgba(255,255,255,0.55); }

/* ── PHOTO PLACEHOLDER dark bg (gallery) ── */
.tab-content .photo-placeholder {
  background: var(--bg-alt) !important;
  border-radius: 4px;
}

/* ── HIGHLIGHT CARD icon enlarged ── */
.highlight-card__icon { font-size: 30px; }

@media (max-width: 560px) {
  .highlight-card {
    grid-template-columns: 64px 1fr;
    gap: 0 16px;
    padding: 18px;
  }
  .highlight-card__icon img { width: 56px; height: 56px; }
}

/* ── FIERA ROW: ensure icon always visible ── */
.fiera-row__icon { font-size: 30px; flex-shrink: 0; width: 40px; text-align: center; }
.fiera-row__icon[style*="display:none"] { display: none !important; }

/* ── COMPANY CARD: body padding ── */
.company-card__body { padding: 28px 32px; }

/* ── N-STAT: make numbers bigger and navy color for light bg ── */
.n-stat__num { 
  font-family: var(--font-display); 
  font-size: 38px; 
  color: var(--navy) !important; 
  display: block; 
  margin-bottom: 5px; 
  font-weight: 700; 
}
.n-stat__label { color: var(--text-muted) !important; }

/* ── NAUTICA STATS: add logo container ── */
.n-stat img {
  max-width: 85%;
  max-height: 80px;
  object-fit: contain;
  margin: 0 auto 10px;
  display: block;
}

/* ── BIO TEXT always dark ── */
.bio-text p { color: var(--text-secondary) !important; }
.bio-text strong { color: var(--navy) !important; font-weight: 700; }
p { color: var(--text-secondary); }

/* ── SECTION TEXT always dark on light sections ── */
.section--navy p,
.section--navy-mid p,
#profilo p, #imprenditoria p, #sport p, #nautica p,
#cittadinanza p, #titoli p, #premi p, #passioni p,
#attivita p, #social p, #contact p { 
  color: var(--text-secondary) !important; 
}

/* ── FIERA ROW background ── */
.fiera-row {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-gold) !important;
}

/* ═══════════════════════════════════════════════
   FORCE VISIBILITY — all light-section text
   ═══════════════════════════════════════════════ */

/* Company cards */
.company-card__name,
.company-card__logo,
.company-card__desc p,
.company-card__desc { 
  color: var(--navy) !important; 
}
.company-card__era { color: var(--text-muted) !important; }
.company-card__sidebar { background: #EEE8DC !important; }

/* Fiera rows */
.fiera-row { 
  background: white !important; 
  border: 1.5px solid var(--border-gold) !important;
}
.fiera-row__name { color: var(--navy) !important; font-weight: 700; }
.fiera-row__detail { color: var(--text-secondary) !important; }

/* Award cards */  
.award-card { background: white !important; }
.award-card__name { color: var(--navy) !important; font-weight: 700; }
.award-card__year { color: var(--gold) !important; font-weight: 600; }
.award-card__body { color: var(--text-secondary) !important; }

/* Highlight cards */
.highlight-card { background: white !important; }
.highlight-card__title { color: var(--gold) !important; }
.highlight-card__text { color: var(--text-secondary) !important; }

/* N-stat cards */
.n-stat { background: white !important; }
.n-stat__num { color: var(--navy) !important; }
.n-stat__label { color: var(--text-muted) !important; }

/* Passion cards */
.passion-card { background: white !important; }
.passion-card__name { color: var(--navy) !important; }
.passion-card__desc { color: var(--text-secondary) !important; }

/* Social links */
.social-link { background: white !important; color: var(--navy) !important; }
.social-link:hover { color: var(--navy) !important; background: #FFF8EC !important; }

/* Storia box */
.storia-box { background: #EEE8DC !important; }
.storia-box p { color: var(--text-secondary) !important; }
.storia-box strong { color: var(--navy) !important; }
.storia-box .storia-motto { color: var(--navy) !important; border-left-color: var(--gold-light) !important; }

/* Turris */
.turris-text p { color: var(--text-secondary) !important; }

/* Contact form */
.form-field input, .form-field textarea, .form-field select {
  background: white !important;
  color: var(--navy) !important;
}
.contact-item__title { color: var(--navy) !important; }
.contact-item__text { color: var(--text-secondary) !important; }

/* Nautica intro */
.nautica-intro { color: var(--text-secondary) !important; }

/* Bio */
.bio-text p { color: var(--text-secondary) !important; }

/* Section titles on light bg */
#profilo .section-title,
#attivita .section-title,
#imprenditoria .section-title,
#sport .section-title,
#nautica .section-title,
#cittadinanza .section-title,
#titoli .section-title,
#premi .section-title,
#passioni .section-title,
#social .section-title,
#contact .section-title { color: var(--navy) !important; }

/* Section labels on light bg */
#profilo .section-label,
#attivita .section-label,
#imprenditoria .section-label,
#sport .section-label,
#nautica .section-label,
#cittadinanza .section-label,
#titoli .section-label,
#premi .section-label,
#passioni .section-label,
#social .section-label,
#contact .section-label { color: var(--gold) !important; }

/* Tags on light cards */
.tag { font-weight: 600 !important; }

/* Photo placeholders light */
.photo-card .photo-placeholder {
  background: #EEE8DC !important;
}
.photo-placeholder__label { color: var(--text-muted) !important; }

/* ═══ CITAZIONI FIX ═══ */
.quote-card { 
  background: rgba(255,255,255,0.94) !important; 
  border-left: 4px solid var(--gold-bright) !important;
  box-shadow: 0 6px 28px rgba(0,0,0,0.25) !important;
}
.quote-card__text { 
  color: var(--navy) !important; 
  font-style: italic;
  line-height: 1.65;
}
.quote-card__mark { color: var(--gold) !important; opacity: 0.8; }
.quote-card__author { color: var(--gold) !important; font-weight: 700; }
.quote-card__author::before { background: var(--gold) !important; }

/* ═══ HERO BADGES FIX ═══ */
.hero__base-badge { color: #FFFFFF !important; }
.hero__base-flag  { color: inherit; }

/* ═══ PASSIONI GRID responsive ═══ */
.passioni-grid {
  display: grid;
  gap: 20px;
}

/* ═══ FIERA ROW: ensure tall enough for big logos ═══ */
.fiera-row {
  align-items: center;
  min-height: 100px;
}

/* ═══ PREMI CARDS: large centered logo ═══ */
#premi .award-card img {
  width: 100% !important;
  max-height: 180px !important;
  object-fit: contain !important;
  margin-bottom: 16px !important;
}

/* ═══ TITOLI: Templare logo big ═══ */
#titoli .award-card img[src*="templari"] {
  width: 170px !important;
  height: 170px !important;
}

/* ── FC TURRIS zoom on hover ── */
.turris-badge picture { display:block; cursor:zoom-in; }
.turris-badge picture img {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border-radius: 12px;
}
.turris-badge picture:hover img {
  transform: scale(1.18);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  cursor: zoom-in;
}
/* ── COMPANY LOGOS zoom on hover ── */
.company-card__sidebar img {
  transition: transform 0.25s ease;
  cursor: zoom-in;
}
.company-card__sidebar img:hover { transform: scale(1.12); }

/* ── PRESS CARD logos ── */
.press-card img {
  max-height: 52px;
  max-width: 140px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
  border-radius: 4px;
}

/* ── HERO PHOTO OVERLAY ── */
.hero__bg::after { z-index: 0; }
.hero__content, .hero__ring, .hero__particles { position: relative; z-index: 2; }

/* ── RUOLI ISTITUZIONALI — 4-card grid ── */
.ruoli-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ruolo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px 20px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
}

.ruolo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.ruolo-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.ruolo-card:hover::before {
  transform: scaleX(1);
}

.ruolo-card__logo-wrap {
  width: 180px;
  height: 180px;
  min-width: 180px;
  min-height: 180px;
  max-width: 180px;
  max-height: 180px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(200, 146, 42, 0.25);
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
  overflow: hidden;
}

.ruolo-card__logo-wrap img {
  width: 160px;
  height: 160px;
  max-width: 160px;
  max-height: 160px;
  object-fit: contain;
  display: block;
}

.ruolo-card__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}

.ruolo-card__detail {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Responsive ruoli-grid */
@media (max-width: 900px) {
  .ruoli-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


/* ============================================================
   PRESS GRID (sezione Stampa & TV, sfondo scuro)
   ============================================================ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 10px;
}
.press-intro {
  font-size: 14px;
  color: rgba(248,245,240,0.72);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ============================================================
   STORIA BOX & COMPANY LINK
   ============================================================ */
.storia-box {
  background: var(--bg-alt);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 16px;
}
.storia-box p            { font-size: 14px; color: var(--text-secondary); line-height: 1.82; margin-bottom: 12px; }
.storia-box p:last-child { margin-bottom: 0; }
.storia-box strong       { color: var(--gold); font-weight: 500; }
.storia-box .storia-motto {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold);
  font-style: italic;
  border-left: 2.5px solid var(--gold);
  padding-left: 16px;
  margin: 16px 0;
}

.company-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--gold);
  letter-spacing: .06em;
  text-decoration: none;
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 5px 16px;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.company-link:hover { background: var(--gold); color: var(--navy); }

/* ============================================================
   PREMI GRID: 4 col desktop
   ============================================================ */
#premi .fade-in {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 14px !important;
}
@media (max-width: 900px) { #premi .fade-in { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 560px) { #premi .fade-in { grid-template-columns: repeat(2, 1fr) !important; } }

/* ============================================================
   FIERA LOGOS + LIGHTBOX
   ============================================================ */
.fiere-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 14px 0 6px;
}
.fiera-logo {
  height: 68px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 7px 12px;
  border: 1px solid var(--border-gold);
  cursor: zoom-in;
  transition: transform .2s ease, box-shadow .2s ease;
  display: inline-block;
}
.fiera-logo:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(200,146,42,0.30);
}
.fiera-lb {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,12,25,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.fiera-lb.open { display: flex; }
.fiera-lb img  { max-width: 88vw; max-height: 82vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); object-fit: contain; cursor: default; }
.fiera-lb__close {
  position: absolute;
  top: 20px; right: 28px;
  font-size: 38px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  opacity: .7;
  transition: opacity .15s;
  user-select: none;
}
.fiera-lb__close:hover { opacity: 1; }
.fiera-lb__caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: .14em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   PRESS KIT (dentro sezione #gallery)
   ============================================================ */
.presskit-wrap {
  margin-top: 48px;
  border-top: 1px solid var(--border-gold);
  padding-top: 40px;
}
.presskit-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.presskit-title    { font-family: var(--font-display); font-size: 24px; color: var(--text-primary); margin: 0 0 8px; }
.presskit-title em { color: var(--gold); font-style: normal; }
.presskit-intro    { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin: 0 0 10px; max-width: 540px; }
.presskit-notice   { font-size: 11.5px; color: var(--text-muted); line-height: 1.6; max-width: 540px; border-left: 2px solid var(--gold); padding-left: 10px; margin: 0; }
.presskit-email    { color: var(--gold); text-decoration: none; }
.presskit-email:hover { text-decoration: underline; }
.presskit-zip      { white-space: nowrap; flex-shrink: 0; align-self: center; }

.presskit-grid {
  display: grid !important;
  grid-template-columns: repeat(10, 1fr) !important;
  gap: 6px;
}
.pk-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border-gold);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}
.pk-card:hover            { transform: translateY(-3px); border-color: var(--gold); }
.pk-card img              { width: 100%; height: 100%; object-fit: cover; display: block; }
.pk-card__overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.pk-card:hover .pk-card__overlay { opacity: 1; }
.pk-card__dl {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: background var(--transition-fast);
}
.pk-card__dl:hover { background: var(--gold-light); }
.pk-card__label {
  position: absolute;
  top: 5px; left: 5px;
  font-size: 7px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(10,22,40,0.75);
  color: rgba(248,245,240,0.8);
  padding: 2px 5px;
  border-radius: 6px;
  line-height: 1.4;
}


/* ============================================================
   PRESS GRID — 5 col desktop, 3 tablet, 2 mobile
   ============================================================ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.press-intro {
  font-size: 14px;
  color: rgba(248,245,240,0.72);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .press-grid { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 560px) { .press-grid { grid-template-columns: repeat(2, 1fr) !important; } }

/* ============================================================
   AWARDS GRID — 4 col desktop, 3 tablet, 2 mobile
   ============================================================ */
.awards-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 14px !important;
}
@media (max-width: 900px) { .awards-grid { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 560px) { .awards-grid { grid-template-columns: repeat(2, 1fr) !important; } }

/* ============================================================
   PREMI GRID — 4 col desktop, 3 tablet, 2 mobile
   ============================================================ */
#premi .fade-in {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 14px !important;
}
@media (max-width: 900px) { #premi .fade-in { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 560px) { #premi .fade-in { grid-template-columns: repeat(2, 1fr) !important; } }

/* ============================================================
   COMPANY LINK
   ============================================================ */
.company-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--gold);
  letter-spacing: .06em;
  text-decoration: none;
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 5px 16px;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.company-link:hover { background: var(--gold); color: var(--navy); }

/* ============================================================
   STORIA BOX
   ============================================================ */
.storia-box {
  background: var(--bg-alt);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 16px;
}
.storia-box p            { font-size: 14px; color: var(--text-secondary); line-height: 1.82; margin-bottom: 12px; }
.storia-box p:last-child { margin-bottom: 0; }
.storia-box strong       { color: var(--gold); font-weight: 500; }
.storia-box .storia-motto {
  font-family: var(--font-display);
  font-size: 16px; color: var(--gold); font-style: italic;
  border-left: 2.5px solid var(--gold); padding-left: 16px; margin: 16px 0;
}

/* ============================================================
   FIERA LOGOS (thumbnail cliccabili)
   ============================================================ */
.fiere-logos-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; margin: 14px 0 8px;
}
.fiera-logo {
  height: 68px; object-fit: contain;
  background: #fff; border-radius: 8px;
  padding: 7px 12px; border: 1px solid var(--border-gold);
  cursor: zoom-in;
  transition: transform .2s ease, box-shadow .2s ease;
  display: inline-block;
}
.fiera-logo:hover {
  transform: scale(1.10);
  box-shadow: 0 6px 20px rgba(200,146,42,0.35);
}

/* ============================================================
   PRESS KIT
   ============================================================ */
.presskit-wrap   { margin-top: 48px; border-top: 1px solid var(--border-gold); padding-top: 40px; }
.presskit-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.presskit-title    { font-family: var(--font-display); font-size: 24px; color: var(--text-primary); margin: 0 0 8px; }
.presskit-title em { color: var(--gold); font-style: normal; }
.presskit-intro    { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin: 0 0 10px; max-width: 540px; }
.presskit-notice   { font-size: 11.5px; color: var(--text-muted); line-height: 1.6; max-width: 540px; border-left: 2px solid var(--gold); padding-left: 10px; margin: 0; }
.presskit-email    { color: var(--gold); text-decoration: none; }
.presskit-email:hover { text-decoration: underline; }
.presskit-zip      { white-space: nowrap; flex-shrink: 0; align-self: center; }

.presskit-grid {
  display: grid !important;
  grid-template-columns: repeat(10, 1fr) !important;
  gap: 6px;
}
@media (max-width: 900px) { .presskit-grid { grid-template-columns: repeat(6, 1fr) !important; } .presskit-header { flex-direction: column; } }
@media (max-width: 560px) { .presskit-grid { grid-template-columns: repeat(4, 1fr) !important; } }

.pk-card {
  position: relative; border-radius: 6px; overflow: hidden;
  background: var(--bg-alt); border: 1px solid var(--border-gold);
  aspect-ratio: 1 / 1; cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}
.pk-card:hover            { transform: translateY(-3px); border-color: var(--gold); }
.pk-card img              { width: 100%; height: 100%; object-fit: cover; display: block; }
.pk-card__overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.78);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  opacity: 0; transition: opacity var(--transition-fast);
}
.pk-card:hover .pk-card__overlay { opacity: 1; }
.pk-card__zoom, .pk-card__dl {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 15px; font-weight: 700; text-decoration: none;
  cursor: pointer; border: none;
  transition: background var(--transition-fast);
}
.pk-card__zoom { background: rgba(255,255,255,0.18); color: #fff; font-size: 16px; }
.pk-card__zoom:hover { background: rgba(255,255,255,0.35); }
.pk-card__dl   { background: var(--gold); color: var(--navy); }
.pk-card__dl:hover { background: var(--gold-light); }
.pk-card__label {
  position: absolute; top: 5px; left: 5px;
  font-size: 7px; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(10,22,40,0.75); color: rgba(248,245,240,0.8);
  padding: 2px 5px; border-radius: 6px; line-height: 1.4;
}

/* ============================================================
   ZOOM PANEL — Card Titoli
   JS in index.html usa: #titoli-zoom-backdrop, #titoli-zoom-panel, .tz-open
   ============================================================ */

#titoli-zoom-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 24, 40, 0.72);
  z-index: 1800;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
#titoli-zoom-backdrop.tz-open {
  display: block;
}

#titoli-zoom-panel {
  /* visibility+opacity: mantiene position:fixed centrato anche con body{zoom} */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.90);
  width: min(480px, 92vw);
  max-height: 86vh;
  overflow-y: auto;
  background: linear-gradient(145deg, #f8f5f0 0%, #fff8ec 100%);
  border: 2px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 32px 80px rgba(8, 24, 40, 0.55);
  padding: 36px 30px 28px;
  z-index: 1900;
  transition: opacity 0.20s ease,
              transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
              visibility 0s linear 0.22s;
}
#titoli-zoom-panel.tz-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.20s ease,
              transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
              visibility 0s linear 0s;
}

#titoli-zoom-close {
  position: absolute;
  top: 12px; right: 16px;
  width: 32px; height: 32px;
  border: none; background: none;
  font-size: 20px; color: var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background .15s, color .15s;
}
#titoli-zoom-close:hover { background: var(--gold); color: #fff; }

#tz-img {
  display: block;
  max-height: 150px; width: auto; max-width: 100%;
  object-fit: contain;
  margin: 0 auto 18px;
  border-radius: 8px;
}

#tz-year {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}

#tz-name {
  font-family: var(--font-display);
  font-size: 22px; color: var(--navy);
  line-height: 1.25; margin-bottom: 14px;
}

#tz-body {
  font-size: 14px; line-height: 1.80;
  color: var(--text-secondary); margin: 0;
}

#titoli    .award-card  { cursor: zoom-in; overflow: visible; }
#premi     .award-card  { cursor: zoom-in; overflow: visible; }
#stampa    .press-card  { cursor: zoom-in; }
#citazioni .quote-card  { cursor: zoom-in; }

/* ── ZOOM PANEL: citazioni ── */
#titoli-zoom-panel.quote-mode #tz-img  { display: none !important; }
#titoli-zoom-panel.quote-mode #tz-year { display: none; }
#titoli-zoom-panel.quote-mode #tz-name { display: none; }
#titoli-zoom-panel.quote-mode #tz-body {
  font-family: var(--font-display);
  font-size: 24px; line-height: 1.65;
  color: var(--navy); font-style: italic;
}

/* ── ZOOM PANEL: press-kit ── */
#titoli-zoom-panel.pk-mode { width: min(680px, 94vw); }
#titoli-zoom-panel.pk-mode #tz-img {
  max-height: 420px; width: 100%;
  object-fit: contain; border-radius: 6px; margin-bottom: 12px;
}
#titoli-zoom-panel.pk-mode #tz-year { display: none; }
#titoli-zoom-panel.pk-mode #tz-name {
  font-size: 12px; font-family: var(--font-body);
  color: var(--gold); letter-spacing: .06em; margin-bottom: 4px;
}

/* ── HAMBURGER MENU MOBILE ── */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--navy-dark); border-bottom: 2px solid var(--gold);
    padding: 70px 24px 28px; flex-direction: column; gap: 0;
    z-index: 960; box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 13px 0; font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links li:last-child a { border-bottom: none; }
}
