/* ─── TOKENS ─── */
:root {
  --milk:      #faf8f4;
  --paper:     #f4f0e8;
  --paper2:    #ede8dc;
  --rose:      #d4a8a0;
  --rose-deep: #b87870;
  --rose-pale: #f0e0dc;
  --ink:       #1a1410;
  --ink2:      #3a3028;
  --ink3:      #6a5e52;
  --rule:      #ddd4c8;
  --gold:      #b89860;
  --nav-h:     60px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Spectral', serif;
  background: var(--milk);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── GRAIN OVERLAY ─── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(250,248,244,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center;
  padding: 0 48px;
  gap: 0;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--ink); letter-spacing: 0.01em;
  margin-right: auto; cursor: pointer;
  white-space: nowrap;
}
.nav-logo em { font-style: italic; color: var(--rose-deep); }
.nav-links { display: flex; align-items: center; }
.nav-a {
  font-family: 'DM Mono', monospace;
  font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink3); padding: 0 16px; height: var(--nav-h);
  display: flex; align-items: center;
  background: none; border: none; cursor: pointer;
  transition: color 0.2s; white-space: nowrap;
  touch-action: manipulation;
}
.nav-a:hover, .nav-a.active { color: var(--ink); }
.nav-a.active {
  box-shadow: inset 0 -2px 0 var(--rose-deep);
}
.nav-divider { width: 1px; height: 18px; background: var(--rule); flex-shrink: 0; }
.lang-wrap { display: flex; gap: 0; margin-left: 24px; }
.lang-btn {
  font-family: 'DM Mono', monospace; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; background: none;
  border: 1px solid var(--rule); color: var(--ink3);
  cursor: pointer; transition: all 0.15s;
}
.lang-btn.active { background: var(--ink); color: var(--milk); border-color: var(--ink); }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: 16px; flex-direction: column; gap: 5px;
}
.nav-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--ink); transition: all 0.25s; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile drawer */
.mobile-drawer {
  display: none; position: fixed; inset: 0; z-index: 90;
  background: var(--milk); padding: 80px 32px 40px;
  flex-direction: column; gap: 2px;
  transform: translateX(-100%); transition: transform 0.3s ease;
}
.mobile-drawer.open { display: flex; transform: translateX(0); }
.mobile-drawer .nav-a { justify-content: flex-start; height: auto; padding: 14px 0; font-size: 11px; border-bottom: 1px solid var(--rule); }

/* ─── HERO ─── */
.hero {
  margin-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Left: text */
.hero-text {
  padding: 80px 64px 80px 80px;
  display: flex; flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rose-deep); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--rose-deep);
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 900; line-height: 1.02;
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 8px;
}
.hero-h1 em {
  font-style: italic; font-weight: 400;
  color: var(--rose-deep);
}
.hero-years {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2vw, 26px);
  font-style: italic; font-weight: 300;
  color: var(--ink3); margin-bottom: 36px;
  letter-spacing: 0.04em;
}
.hero-desc {
  font-size: 15px; line-height: 1.85; color: var(--ink2);
  max-width: 420px; font-weight: 300; margin-bottom: 44px;
}
.hero-cta {
  display: flex; gap: 14px; align-items: center;
}
.btn-primary {
  padding: 13px 28px;
  background: var(--ink); color: var(--milk);
  border: none; font-family: 'DM Mono', monospace;
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
  touch-action: manipulation;
}
.btn-primary:hover { background: var(--rose-deep); }
.btn-ghost {
  padding: 12px 24px;
  background: none; color: var(--ink2);
  border: 1px solid var(--rule);
  font-family: 'DM Mono', monospace;
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--ink2); color: var(--ink); }
.hero-stat-row {
  display: flex; gap: 36px; margin-top: 56px;
  padding-top: 32px; border-top: 1px solid var(--rule);
}
.hero-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--ink);
  line-height: 1;
}
.hero-stat-l {
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink3); margin-top: 4px;
}

/* Right: gallery mosaic */
.hero-mosaic {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.hero-mosaic::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--milk) 0%, transparent 8%);
  z-index: 2; pointer-events: none;
}
.mosaic-grid {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 3px; padding: 3px;
}
.mosaic-cell {
  background: var(--paper2);
  overflow: hidden; position: relative;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.mosaic-cell:hover { z-index: 5; transform: scale(1.02); }
.mosaic-cell.tall { grid-row: span 2; }
.mosaic-cell.wide { grid-column: span 2; }

/* Placeholder foto effetto carta sviluppata */
.mosaic-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.mosaic-ph-bg {
  position: absolute; inset: 0;
  opacity: 0.85;
}
.mosaic-ph-icon { font-size: 24px; opacity: 0.25; z-index: 1; }
.mosaic-ph-year {
  font-family: 'DM Mono', monospace; font-size: 12px;
  letter-spacing: 0.12em; color: var(--ink2);
  opacity: 0.6; z-index: 1; margin-top: 4px;
}
/* Overlay titolo sul hover */
.mosaic-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to top, rgba(26,20,16,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 10px;
}
.mosaic-cell:hover .mosaic-overlay { opacity: 1; }
.mosaic-overlay-title {
  font-family: 'Spectral', serif; font-size: 11px;
  font-style: italic; color: #fff; line-height: 1.3;
}

/* ─── PAGE SECTIONS ─── */
.page-section { display: none; padding-top: var(--nav-h); }
.page-section.active { display: block; }

/* ─── GALLERY SECTION ─── */
.gal-wrap { max-width: 1300px; margin: 0 auto; padding: 60px 48px; }

.gal-header {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; margin-bottom: 40px;
  padding-bottom: 20px; border-bottom: 1px solid var(--rule);
  gap: 20px;
}
.gal-header-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-weight: 400; font-style: italic;
  color: var(--ink3); margin-bottom: 4px;
}
.gal-header-left p {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--ink);
  line-height: 1.1;
}
.gal-filter-row {
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap;
}
.gal-filter-btn {
  font-family: 'DM Mono', monospace; font-size: 14px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink3); padding: 8px 16px;
  background: none; border: none; border-bottom: 2px solid transparent;
  cursor: pointer; transition: all 0.15s; white-space: nowrap;
  touch-action: manipulation;
}
.gal-filter-btn:hover { color: var(--ink); }
.gal-filter-btn.active { color: var(--rose-deep); border-bottom-color: var(--rose-deep); }

.gal-search-wrap {
  display: flex; align-items: center;
  border: 1px solid var(--rule); background: white;
  overflow: hidden;
}
.gal-search-input {
  padding: 8px 14px; border: none; outline: none;
  font-family: 'Spectral', serif; font-size: 13px;
  color: var(--ink); background: transparent; width: 200px;
}
.gal-search-input::placeholder { color: var(--ink3); }
.gal-search-btn {
  padding: 8px 14px; background: none; border: none;
  border-left: 1px solid var(--rule);
  color: var(--ink3); cursor: pointer; font-size: 12px;
  transition: color 0.15s;
}
.gal-search-btn:hover { color: var(--rose-deep); }
.gal-count {
  font-family: 'DM Mono', monospace; font-size: 14px;
  letter-spacing: 0.12em; color: var(--ink3);
  margin-left: 16px; white-space: nowrap;
}

/* Gallery grid — stile "album fotografico" */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}
.g-card {
  cursor: pointer; position: relative;
  transition: transform 0.25s ease;
  touch-action: manipulation;
}
.g-card:hover { transform: translateY(-4px); }

/* "Montura" fotografie — effetto angolini su carta */
.g-mount {
  background: white;
  padding: 10px 10px 32px;
  box-shadow: 0 1px 4px rgba(26,20,16,0.08), 0 4px 16px rgba(26,20,16,0.06);
  position: relative;
}
.g-mount::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 60%);
  pointer-events: none;
}
/* Angolini */
.g-mount::after {
  content: '';
  position: absolute; bottom: 8px; left: 10px; right: 10px;
  height: 1px; background: var(--rule);
}
.g-photo {
  width: 100%; aspect-ratio: 4/5;
  background: var(--paper2);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.g-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(20%) contrast(1.04);
  transition: filter 0.4s, transform 0.5s;
}
.g-card:hover .g-photo img { filter: sepia(5%) contrast(1.08); transform: scale(1.04); }
.g-photo-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.g-photo-ph .ph-icon { font-size: 28px; opacity: 0.2; }
.g-photo-ph .ph-cat {
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink3); opacity: 0.5;
}
/* Anno come timbro */
.g-stamp {
  position: absolute; top: 8px; right: 8px;
  font-family: 'DM Mono', monospace; font-size: 7px;
  letter-spacing: 0.08em; color: var(--rose-deep);
  background: rgba(255,255,255,0.85); padding: 2px 6px;
}
/* Caption sotto foto */
.g-caption {
  padding: 8px 2px 2px;
}
.g-caption-title {
  font-family: 'Spectral', serif; font-size: 12px;
  font-style: italic; color: var(--ink2);
  line-height: 1.3; margin-bottom: 2px;
}
.g-caption-sub {
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink3);
}
/* Slot vuoto */
.g-card.empty { opacity: 0.35; cursor: default; pointer-events: none; }
.g-card.empty:hover { transform: none; }

#galleryPagination { margin-top: 48px; }

/* ─── VIRTUAL PAGE (dettaglio / partner) ─── */
#virtualPage {
  display: none;
  padding-top: var(--nav-h);
  min-height: 100vh;
  background: var(--milk);
}
.vp-inner { max-width: 1000px; margin: 0 auto; padding: 56px 48px; }
.vp-back {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: none; cursor: pointer;
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink3); margin-bottom: 40px; padding: 0;
  transition: color 0.15s;
}
.vp-back:hover { color: var(--rose-deep); }
.vp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.vp-img-wrap {
  background: white;
  padding: 12px 12px 40px;
  box-shadow: 0 2px 8px rgba(26,20,16,0.08), 0 8px 24px rgba(26,20,16,0.06);
}
.vp-img {
  width: 100%; aspect-ratio: 4/5;
  background: var(--paper2); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.vp-img img { width: 100%; height: 100%; object-fit: contain; filter: sepia(12%); }
.vp-img-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; height: 100%;
}
.vp-img-empty .e-icon { font-size: 44px; opacity: 0.2; }
.vp-img-empty .e-text {
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink3); opacity: 0.5;
}
.vp-img-caption {
  padding: 8px 2px 0; font-family: 'Spectral', serif;
  font-size: 11px; font-style: italic; color: var(--ink3);
  text-align: center; border-top: 1px solid var(--rule); margin-top: 8px;
}
.vp-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose-deep); margin-bottom: 10px;
}
.vp-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; font-style: italic;
  color: var(--ink); margin-bottom: 28px;
  padding-bottom: 18px; border-bottom: 1px solid var(--rule); line-height: 1.2;
}
.vp-lbl {
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-deep); margin: 20px 0 8px;
  padding-bottom: 4px; border-bottom: 1px solid var(--rose-pale);
}
.vp-desc { font-size: 15px; line-height: 1.85; color: var(--ink2); font-style: italic; font-weight: 300; }
.vp-obs { font-size: 13px; line-height: 1.7; color: var(--ink3); font-weight: 300; }
.meta-row {
  display: flex; padding: 7px 0;
  border-bottom: 1px solid var(--rule); font-size: 13px; align-items: baseline;
}
.meta-row:last-child { border: none; }
.meta-key {
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink3); min-width: 100px; flex-shrink: 0; padding-right: 10px;
}
.meta-val { color: var(--ink2); font-weight: 300; }
.tags-wrap { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.tag-pill {
  font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 0.06em;
  padding: 4px 10px; background: var(--rose-pale);
  border: 1px solid rgba(212,168,160,0.4);
  color: var(--rose-deep); cursor: pointer; transition: all 0.15s;
}
.tag-pill:hover { background: var(--rose-deep); color: white; border-color: var(--rose-deep); }
.sim-section { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--rule); }
.sim-title {
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink3); margin-bottom: 20px;
}
.sim-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); gap: 12px;
}
.sim-card {
  background: white; padding: 6px 6px 18px;
  box-shadow: 0 1px 4px rgba(26,20,16,0.07);
  cursor: pointer; transition: transform 0.2s;
}
.sim-card:hover { transform: translateY(-2px); }
.sim-img { aspect-ratio: 4/5; background: var(--paper2); overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 18px; opacity: 0.4; }
.sim-img img { width: 100%; height: 100%; object-fit: cover; filter: sepia(15%); }

/* ─── OTHER SECTIONS ─── */
.std-wrap { max-width: 1100px; margin: 0 auto; padding: 60px 48px; }
.std-head {
  margin-bottom: 36px; padding-bottom: 18px; border-bottom: 1px solid var(--rule);
  display: flex; align-items: baseline; gap: 16px;
}
.std-head h2 {
  font-family: 'Playfair Display', serif; font-size: 26px;
  font-weight: 700; font-style: italic; color: var(--ink);
}
.std-head .tag {
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-deep); border: 1px solid var(--rose-pale); padding: 3px 8px;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.about-lead {
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-style: italic; font-weight: 400; color: var(--ink2);
  line-height: 1.5; margin-bottom: 20px;
}
.about-body { font-size: 14px; line-height: 1.95; color: var(--ink2); font-weight: 300; }
.about-body p { margin-bottom: 14px; }

.info-block { margin-bottom: 20px; }
.info-block-label {
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-deep); margin-bottom: 10px;
  padding-bottom: 6px; border-bottom: 1px solid var(--rose-pale);
}
.info-table { width: 100%; border-collapse: collapse; }
.info-table td {
  padding: 7px 0; font-size: 13px; font-weight: 300;
  border-bottom: 1px solid var(--rule); vertical-align: top;
}
.info-table td:first-child {
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink3); width: 100px; padding-right: 14px;
}

.partners-block { margin-bottom: 32px; }
.partners-block-label {
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink3); margin-bottom: 14px;
  padding-bottom: 6px; border-bottom: 1px solid var(--rule);
}
.partners-row { display: flex; gap: 14px; flex-wrap: wrap; }
.p-card {
  background: white; padding: 20px 22px; text-align: center;
  box-shadow: 0 1px 4px rgba(26,20,16,0.06);
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  min-width: 160px; flex: 1;
}
.p-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(26,20,16,0.1); }
.p-card-logo {
  width: 48px; height: 48px; background: var(--rose-pale);
  margin: 0 auto 10px; display: flex; align-items: center;
  justify-content: center; font-size: 20px;
}
.p-card-logo-e {
  font-family: 'Playfair Display', serif; font-size: 22px;
  font-style: italic; color: var(--rose-deep);
}
.p-card-name {
  font-family: 'Spectral', serif; font-size: 14px;
  font-style: italic; color: var(--ink); margin-bottom: 3px;
}
.p-card-type {
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink3);
}
.p-card.placeholder { border: 1px dashed var(--rule); box-shadow: none; opacity: 0.4; cursor: default; }
.p-card.placeholder:hover { transform: none; box-shadow: none; }

.expo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 20px; }
.expo-card {
  background: white; overflow: hidden; cursor: pointer;
  box-shadow: 0 1px 4px rgba(26,20,16,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.expo-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(26,20,16,0.12); }
.expo-banner {
  height: 110px; display: flex; align-items: center;
  justify-content: center; font-size: 32px; position: relative;
}
.expo-banner.r1 { background: linear-gradient(135deg,#c8d8d0,#e0ede8); }
.expo-banner.r2 { background: linear-gradient(135deg,#d8c8c0,#ede0dc); }
.expo-banner.r3 { background: linear-gradient(135deg,#c8c8d8,#dcdce8); }
.expo-banner.r4 { background: linear-gradient(135deg,#d8d0c0,#ece8d8); }
.expo-room-n {
  position: absolute; top: 8px; right: 10px;
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.1em; color: rgba(26,20,16,0.35);
}
.expo-info { padding: 14px 16px; border-top: 1px solid var(--rule); }
.expo-info h3 {
  font-family: 'Spectral', serif; font-size: 15px; font-style: italic;
  color: var(--ink); margin-bottom: 4px;
}
.expo-info p { font-size: 12px; color: var(--ink3); font-weight: 300; }
.expo-enter {
  display: inline-block; margin-top: 8px;
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--rose-deep); border-bottom: 1px solid var(--rose-pale);
}

.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 16px; }
.game-card {
  background: white; padding: 24px 20px; text-align: center;
  box-shadow: 0 1px 4px rgba(26,20,16,0.06);
  cursor: pointer; transition: all 0.2s;
}
.game-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(26,20,16,0.1); }
.game-icon { font-size: 28px; margin-bottom: 10px; }
.game-card h3 { font-family: 'Spectral', serif; font-size: 15px; font-style: italic; color: var(--ink); margin-bottom: 6px; }
.game-card p { font-size: 11px; color: var(--ink3); line-height: 1.6; font-weight: 300; margin-bottom: 12px; }
.game-badge { font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border: 1px solid var(--rule); color: var(--ink3); }

.news-empty {
  font-family: 'Spectral', serif; font-size: 16px;
  font-style: italic; color: var(--ink3); font-weight: 300;
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
  margin-top: 40px;
}
.footer-col h4 {
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col p, .footer-col a {
  font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.45);
  line-height: 2.1; text-decoration: none; display: block;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--rose); }
.footer-col .f-brand {
  font-family: 'Playfair Display', serif; font-size: 16px;
  font-style: italic; color: rgba(255,255,255,0.8); margin-bottom: 6px;
}
.footer-bottom {
  background: var(--ink); padding: 14px 48px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-copy {
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ─── SIDEBAR OVERLAY MOBILE ─── */
.sidebar-ov { display: none; position: fixed; inset: 0; background: rgba(26,20,16,0.3); z-index: 80; }
.sidebar-ov.open { display: block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-text { padding: 60px 40px; }
  .hero-mosaic { display: none; }
  .gal-wrap { padding: 40px 32px; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .lang-wrap { margin-left: 8px; }
  .hero-text { padding: 40px 24px; }
  .hero-h1 { font-size: 38px; }
  .hero-stat-row { gap: 24px; }
  .gal-wrap { padding: 28px 20px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .gal-header { grid-template-columns: 1fr; }
  .std-wrap { padding: 32px 20px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .vp-layout { grid-template-columns: 1fr; gap: 32px; }
  .vp-inner { padding: 32px 20px; }
  footer { grid-template-columns: 1fr; gap: 28px; padding: 36px 20px; }
  .footer-bottom { flex-direction: column; gap: 6px; padding: 12px 20px; }
  .expo-grid { grid-template-columns: 1fr 1fr; }
  .partners-row { flex-direction: column; }
  .games-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .expo-grid { grid-template-columns: 1fr; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.hero-text > * {
  animation: fadeUp 0.6s ease both;
}
.hero-eyebrow   { animation-delay: 0.05s; }
.hero-h1        { animation-delay: 0.15s; }
.hero-years     { animation-delay: 0.22s; }
.hero-desc      { animation-delay: 0.30s; }
.hero-cta       { animation-delay: 0.38s; }
.hero-stat-row  { animation-delay: 0.46s; }
.page-section.active { animation: fadeUp 0.3s ease; }


.pagination .page-link {

    color: var(--rose-deep);

}

.pagination .page-item.active .page-link {

    background-color: var(--rose-deep);

    border-color: var(--rose-deep);

    color: #fff;

}

.pagination .page-link:hover {

    color: var(--rose-deep);

    background-color: rgba(0,0,0,0.04);

}

.pagination .page-item.disabled .page-link {

    color: #999;

}
/* ========================================
   EXPLORARE - Tabs
======================================== */

#explorareTabs {

    border-bottom: 1px solid rgba(0,0,0,0.12);

}

#explorareTabs .nav-link {

    color: var(--rose-deep);

    border: 1px solid transparent;

    background-color: transparent;

}

#explorareTabs .nav-link:hover {

    color: var(--rose-deep);

    border-color: rgba(0,0,0,0.08);

    background-color: rgba(0,0,0,0.03);

}

#explorareTabs .nav-link.active {

    color: var(--rose-deep);

    background-color: #fff;

    border-color:
        rgba(0,0,0,0.12)
        rgba(0,0,0,0.12)
        #fff;

    font-weight: 600;

}

/* scoate focus bootstrap */

#explorareTabs .nav-link:focus {

    box-shadow: none;

}


/* ========================================
   Breadcrumb
======================================== */

.breadcrumb {

    margin-bottom: 0;

    background: transparent;

}

.breadcrumb-item {

    color: #777;

}

.breadcrumb-item a {

    color: var(--rose-deep);

    text-decoration: none;

}

.breadcrumb-item a:hover {

    text-decoration: underline;

}

.breadcrumb-item.active {

    color: #999;

}