/* ============================================================
   PRO LOCO GUALTIERI — Design System
   ============================================================ */

/* 1. TOKENS */
:root {
  --blue-50:  #EBF4FF;
  --blue-100: #DBEAFE;
  --blue-200: #BFDBFE;
  --blue-700: #1D4ED8;
  --blue-800: #1E40AF;
  --blue-900: #1E3A8A;
  --blue-950: #0F2057;

  --primary:       #1565C0;
  --primary-dark:  #0D47A1;
  --primary-xdark: #0A2F6E;
  --primary-light: #1976D2;
  --primary-pale:  #EBF4FF;

  --gold:       #C9973A;
  --gold-light: #FDF3DC;

  --text:   #0F1729;
  --text-2: #2D3748;
  --text-3: #64748B;
  --text-4: #94A3B8;

  --bg:    #F7FAFF;
  --bg-2:  #EFF4FB;
  --white: #FFFFFF;

  --border:   rgba(21,101,192,0.12);
  --border-2: #E2E8F0;

  --shadow-sm: 0 1px 4px rgba(13,71,161,0.06);
  --shadow:    0 4px 20px rgba(13,71,161,0.10);
  --shadow-md: 0 8px 32px rgba(13,71,161,0.14);
  --shadow-lg: 0 20px 60px rgba(13,71,161,0.18);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:  0.3s var(--ease);
  --tf: 0.15s var(--ease);

  --nav-h: 72px;
  --section-pad: 6rem 1.25rem;
  --max-w: 1200px;
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* 3. TYPOGRAPHY */
h1,h2,h3,h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem);   font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem);  font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-2); }

/* 4. UTILITIES */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #5BA4F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-text { color: var(--gold); }
.tag {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold-light);
  color: var(--gold);
}
.tag-blue {
  background: var(--primary-pale);
  color: var(--primary);
}
.section-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-header { margin-bottom: 3.5rem; }
.section-header p { max-width: 560px; font-size: 1.08rem; color: var(--text-3); margin-top: 0.85rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered p { margin: 0.85rem auto 0; }

/* 5. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(21,101,192,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,101,192,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-outline-blue {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-blue:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* 6. NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--t), box-shadow var(--t);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(13,71,161,0.10);
}
.navbar.transparent { background: transparent; }
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(21,101,192,0.3);
}
.nav-logo-icon svg { width: 20px; height: 20px; fill: white; }
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  transition: filter var(--t), opacity var(--t);
}
.navbar.transparent .nav-logo-img { filter: brightness(0) invert(1); }
.navbar.scrolled .nav-logo-img { filter: none; }
.footer-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--t);
}
.navbar.transparent .nav-menu > li > a { color: rgba(255,255,255,0.88); }
.navbar.transparent .nav-menu > li > a:hover { color: white; background: rgba(255,255,255,0.12); }
.navbar.scrolled .nav-menu > li > a { color: var(--text-2); }
.navbar.scrolled .nav-menu > li > a:hover { color: var(--primary); background: var(--primary-pale); }
.nav-menu > li > a.active { color: var(--primary) !important; }
.navbar.transparent .nav-menu > li > a.active { color: white !important; background: rgba(255,255,255,0.15); }

.chevron {
  font-style: normal;
  font-size: 0.65rem;
  transition: transform var(--t);
}
.has-dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-2);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--t), visibility var(--t), transform var(--t);
  pointer-events: none;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.dropdown li a {
  display: block;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--tf);
}
.dropdown li a:hover { background: var(--primary-pale); color: var(--primary); }

.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  border-radius: var(--radius-full) !important;
  padding: 0.5rem 1.2rem !important;
  box-shadow: 0 4px 14px rgba(21,101,192,0.3);
}
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  transition: var(--tf);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  border-radius: 2px;
  transition: var(--t);
}
.navbar.transparent .nav-toggle span { background: white; }
.navbar.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 7. HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-xdark);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(10,47,110,0.55) 0%, transparent 65%),
    radial-gradient(ellipse at 80% 20%, rgba(13,71,161,0.45) 0%, transparent 60%),
    linear-gradient(160deg, rgba(10,47,110,0.82) 0%, rgba(13,71,161,0.70) 50%, rgba(21,101,192,0.55) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
}
.hero-shape-1 {
  width: 500px; height: 500px;
  background: #60A5FA;
  top: -100px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.hero-shape-2 {
  width: 300px; height: 300px;
  background: #93C5FD;
  bottom: 50px; left: -50px;
  animation: float2 10s ease-in-out infinite;
}
.hero-shape-3 {
  width: 200px; height: 200px;
  background: #C9973A;
  top: 40%; right: 25%;
  animation: float1 12s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.05); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(20px) rotate(5deg); }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 5rem;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  color: white;
  max-width: 700px;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  cursor: pointer;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* 8. SECTIONS */
.section { padding: var(--section-pad); }
.section-light { background: var(--white); }
.section-gray  { background: var(--bg-2); }
.section-blue  {
  background: linear-gradient(135deg, var(--primary-xdark), var(--primary-dark));
  color: white;
}
.section-blue h2, .section-blue h3 { color: white; }
.section-blue .section-label { color: rgba(255,255,255,0.7); }
.section-blue .section-label::before { background: rgba(255,255,255,0.5); }
.section-blue p { color: rgba(255,255,255,0.75); }

/* 9. CARDS */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t);
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.card:hover .card-img img { transform: scale(1.06); }
.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-body { padding: 1.5rem; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.card-date { font-size: 0.8rem; color: var(--text-4); font-weight: 500; }
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.9rem; color: var(--text-3); line-height: 1.6; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--tf);
}
.card-link:hover { gap: 0.6rem; }
.card-link svg { width: 16px; height: 16px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.cards-grid-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

/* 10. FEATURE CARDS */
.feature-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform var(--t);
  transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 1.75; }

/* 11. STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.section-blue .stat-number { color: white; }
.stat-label { font-size: 0.875rem; color: var(--text-3); font-weight: 500; }
.section-blue .stat-label { color: rgba(255,255,255,0.65); }

/* 12. HERO SPLIT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-img-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: white;
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.85rem;
}
.split-img-badge .badge-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--primary-pale);
  display: flex; align-items: center; justify-content: center;
}
.split-img-badge .badge-icon svg { width: 20px; height: 20px; color: var(--primary); }
.split-text { display: flex; flex-direction: column; gap: 1rem; }
.split-text p { font-size: 1.05rem; line-height: 1.75; }
.split-text .btn { align-self: flex-start; margin-top: 0.5rem; }

/* 13. PLACES GRID */
.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.place-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.place-card.featured {
  grid-column: span 2;
  aspect-ratio: unset;
}
.place-card-img {
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease);
}
.place-card:hover .place-card-img { transform: scale(1.06); }
.place-card-img img { width: 100%; height: 100%; object-fit: cover; }
.place-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,47,110,0.85) 0%, rgba(10,47,110,0.2) 50%, transparent 100%);
}
.place-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.place-card-content h3 { color: white; font-size: 1.15rem; margin-bottom: 0.25rem; }
.place-card-content p { color: rgba(255,255,255,0.75); font-size: 0.85rem; }
.place-card.featured .place-card-content h3 { font-size: 1.5rem; }

/* 14. NEWS CARD */
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--t);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.news-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.news-card-meta { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.news-card-date { font-size: 0.78rem; color: var(--text-4); font-weight: 500; }
.news-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.news-card p { font-size: 0.875rem; color: var(--text-3); line-height: 1.6; flex: 1; }
.news-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--border-2); }

/* 15. QUOTE */
.quote-block {
  border-left: 4px solid var(--primary);
  padding: 1.5rem 2rem;
  background: var(--primary-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.quote-author { font-size: 0.85rem; font-weight: 600; color: var(--primary); }

/* 16. MAP / CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--primary-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 1.75; }
.contact-item h4 { font-size: 0.85rem; color: var(--text-3); font-weight: 500; margin-bottom: 0.25rem; font-family: var(--font-sans); }
.contact-item p, .contact-item a { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.contact-item a:hover { color: var(--primary); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* 17. PAGE HERO */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 1.5rem 4rem;
  background: linear-gradient(135deg, var(--primary-xdark), var(--primary-dark));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; }
.page-hero h1 { color: white; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 540px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--tf); }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* 18. TABLE */
.table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; background: white; }
th {
  background: var(--primary);
  color: white;
  padding: 0.9rem 1.2rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
th:first-child { border-radius: var(--radius) 0 0 0; }
th:last-child  { border-radius: 0 var(--radius) 0 0; }
td { padding: 0.85rem 1.2rem; font-size: 0.9rem; border-bottom: 1px solid var(--border-2); color: var(--text-2); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--primary-pale); }

/* 19. FOOTER */
.footer {
  background: var(--primary-xdark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
  color: rgba(255,255,255,0.7);
}
.social-link:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.social-link svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.75; }
.footer-col h5 {
  color: white;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--tf);
}
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* 20. REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.visible  { opacity: 1; transform: translateY(0); }

/* 21. LOADING SKELETON */
.skeleton {
  background: linear-gradient(90deg, var(--bg-2) 25%, var(--border-2) 50%, var(--bg-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* 22. ACCORDION */
.accordion-item { border-bottom: 1px solid var(--border-2); }
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--tf);
}
.accordion-btn:hover { color: var(--primary); }
.accordion-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t), background var(--t);
}
.accordion-icon svg { width: 12px; height: 12px; color: var(--primary); stroke: currentColor; stroke-width: 2.5; fill: none; }
.accordion-item.open .accordion-icon { transform: rotate(180deg); background: var(--primary); }
.accordion-item.open .accordion-icon svg { color: white; }
.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.accordion-content-inner { padding: 0 0 1.25rem; color: var(--text-3); font-size: 0.93rem; line-height: 1.75; }
.accordion-item.open .accordion-content { max-height: 500px; }

/* 23. BADGE PILL */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-green { background: #DCFCE7; color: #15803D; }
.badge-blue  { background: var(--primary-pale); color: var(--primary); }
.badge-gold  { background: var(--gold-light); color: var(--gold); }

/* 24. COLOR GRADIENT PLACEHOLDERS (sostituire con foto reali) */
.grad-blue    { background: linear-gradient(135deg, #0D47A1, #1976D2); }
.grad-blue-2  { background: linear-gradient(135deg, #1565C0, #42A5F5); }
.grad-dusk    { background: linear-gradient(135deg, #1E3A8A, #065F46); }
.grad-gold    { background: linear-gradient(135deg, #92400E, #C9973A); }
.grad-teal    { background: linear-gradient(135deg, #0D47A1, #0891B2); }
.grad-violet  { background: linear-gradient(135deg, #1E3A8A, #7C3AED); }
.grad-green   { background: linear-gradient(135deg, #166534, #059669); }
.grad-red     { background: linear-gradient(135deg, #7F1D1D, #DC2626); }

/* 25. RESPONSIVE */
@media (max-width: 1024px) {
  .places-grid { grid-template-columns: 1fr 1fr; }
  .place-card.featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 4rem 1.25rem; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    height: calc(100svh - var(--nav-h));
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 4rem;
    gap: 0.25rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform var(--t);
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { color: var(--text-2) !important; padding: 0.75rem 1rem; font-size: 1rem; }
  .nav-menu > li > a:hover { background: var(--primary-pale) !important; color: var(--primary) !important; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-2);
    border-radius: var(--radius);
    padding: 0.5rem;
    display: none;
    pointer-events: all;
  }
  .has-dropdown.open .dropdown { display: block; }
  .nav-toggle { display: flex; }
  .nav-cta { margin-top: 0.5rem; width: 100%; justify-content: center; }

  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse { direction: ltr; }
  .places-grid { grid-template-columns: 1fr; }
  .place-card.featured { grid-column: 1; aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; width: fit-content; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  table { font-size: 0.82rem; }
  th, td { padding: 0.65rem 0.85rem; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .places-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WOW ENHANCEMENTS
   ============================================================ */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), #42A5F5, var(--gold));
  z-index: 9999;
  transition: width 0.08s linear;
}

/* Hero entrance animations */
.ha {
  opacity: 0;
  transform: translateY(36px);
  animation: haFadeUp 0.95s var(--ease-out) forwards;
}
.ha-0 { animation-delay: 0.15s; }
.ha-1 { animation-delay: 0.35s; }
.ha-2 { animation-delay: 0.55s; }
.ha-3 { animation-delay: 0.75s; }
.ha-4 { animation-delay: 0.92s; }
@keyframes haFadeUp {
  to { opacity: 1; transform: none; }
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* Floating overlap stats */
.hero-overlap {
  position: relative;
  z-index: 10;
  padding: 0 1.5rem;
  margin-top: -4.5rem;
  padding-bottom: 1rem;
}
.hero-overlap-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  box-shadow: 0 24px 80px rgba(13,71,161,0.22), 0 4px 20px rgba(0,0,0,0.07);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-overlap-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-light), var(--gold));
}
.overlap-stat {
  text-align: center;
  padding: 0.5rem;
  border-right: 1px solid var(--border-2);
}
.overlap-stat:last-child { border-right: none; }
.overlap-stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.overlap-stat-label {
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 500;
}

/* Marquee ticker */
.marquee-wrap {
  overflow: hidden;
  background: var(--primary-dark);
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-dot { color: var(--gold); font-size: 0.85rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Spotlight */
.spotlight-wrap { position: relative; overflow: hidden; }
.spotlight {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.055) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.15s ease, top 0.15s ease;
  z-index: 0;
}
.spotlight-wrap > * { position: relative; z-index: 1; }

/* Card glow on hover */
.feature-card { isolation: isolate; }
.feature-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, var(--primary-light), transparent 60%, var(--gold));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.feature-card:hover::after { opacity: 1; }

/* Enhanced btn glow */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.18));
  opacity: 0;
  transition: opacity var(--t);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover {
  box-shadow: 0 0 0 4px rgba(21,101,192,0.18), 0 8px 28px rgba(21,101,192,0.5) !important;
}

/* Gold accent line on section headers */
.section-label-gold {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label-gold::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Responsive overlap */
@media (max-width: 768px) {
  .hero-overlap-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
  }
  .overlap-stat:nth-child(2) { border-right: none; }
  .overlap-stat:nth-child(3) { border-right: 1px solid var(--border-2); }
  .hero-overlap { margin-top: -2.5rem; }
  .hero-wave svg { height: 50px; }
}
@media (max-width: 480px) {
  .hero-overlap-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 1.25rem; }
  .overlap-stat-number { font-size: 1.9rem; }
}
