:root {
  --navy: #0d1b3d;
  --navy-dark: #091530;
  --navy-light: #16255099;
  --gold: #cda43f;
  --gold-light: #e0c274;
  --gold-dark: #a9812c;
  --cream: #f7f5f0;
  --white: #ffffff;
  --ink: #1b1f2a;
  --border: #e7e2d6;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(13, 27, 61, 0.12);
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

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

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
}

.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(205, 164, 63, 0.4); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-logo {
  height: 42px;
  width: auto;
}

.brand-name {
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.main-nav a:hover { opacity: 1; }

.header-call { display: none; }

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 72px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--gold-light);
  font-size: 0.85rem;
  margin: 0 0 10px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  text-transform: uppercase;
  color: var(--white);
}

.hero-slogan {
  color: var(--gold-light);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.hero-desc {
  max-width: 560px;
  color: #d8ddec;
  margin: 0 0 30px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badge { display: flex; justify-content: center; }

.hero-logo-img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* ---------- Servizi ---------- */

.servizi { padding: 56px 0; background: var(--white); }

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.85rem;
  margin: 0 0 10px;
  text-align: center;
}

.servizi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.servizio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}

.servizio svg { color: var(--gold-dark); }

/* ---------- Volantino ---------- */

.volantino {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}

.volantino-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.section-kicker-left { text-align: left; margin-bottom: 6px; }

.volantino-info h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.1;
}

.volantino-desc {
  color: #4a5266;
  font-size: 1.05rem;
  margin: 0 0 6px;
}

.volantino-validita {
  display: inline-block;
  font-weight: 800;
  color: var(--navy-dark);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 999px;
  margin: 10px 0 26px;
}

.volantino-cover-wrap {
  display: flex;
  justify-content: center;
}

.volantino-cover {
  position: relative;
  padding: 0;
  border: none;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 30px 60px -12px rgba(13, 27, 61, 0.35), 0 0 0 6px var(--white), 0 0 0 8px var(--gold);
  max-width: 420px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.volantino-cover:hover {
  transform: translateY(-6px) rotate(-0.6deg);
  box-shadow: 0 40px 70px -12px rgba(13, 27, 61, 0.4), 0 0 0 6px var(--white), 0 0 0 8px var(--gold);
}

.volantino-cover img {
  display: block;
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  background: var(--white);
}

.volantino-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.volantino-empty {
  text-align: center;
  color: #666;
  padding: 30px;
}

/* ---------- Dove siamo ---------- */

.dove-siamo { padding: 64px 0; background: var(--navy); color: var(--white); }

.dove-siamo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-block h2 { color: var(--white); text-transform: uppercase; }
.info-block h3 {
  color: var(--gold-light);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 26px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dfe3ef;
  margin: 10px 0;
}

.info-row svg { color: var(--gold); flex-shrink: 0; }

.orari-table { width: 100%; border-collapse: collapse; margin-top: 8px; }

.orari-table td {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #dfe3ef;
}

.orari-table td:first-child { font-weight: 700; color: var(--white); }
.orari-table td:last-child { text-align: right; }

.map-block iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Contatti ---------- */

.contatti { padding: 56px 0; background: var(--white); text-align: center; }

.contatti h2 { color: var(--navy); text-transform: uppercase; }

.social-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

.social-row a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease;
}

.social-row a:hover { background: var(--gold-dark); color: var(--navy-dark); transform: translateY(-3px); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-dark);
  color: #9aa3bd;
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(9, 21, 48, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover, .lightbox-nav:hover { background: var(--gold); color: var(--navy-dark); }

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Responsive ---------- */

@media (min-width: 720px) {
  .header-call { display: inline-flex; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .servizi-grid { grid-template-columns: repeat(2, 1fr); }
  .dove-siamo-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }

  .volantino-layout { grid-template-columns: 1fr; text-align: center; }
  .volantino-cover-wrap { order: -1; margin-bottom: 12px; }
  .section-kicker-left { text-align: center; }
  .volantino-cover { max-width: 340px; }
}

@media (max-width: 480px) {
  .servizi-grid { grid-template-columns: 1fr; }
  .hero-logo-img { max-width: 220px; }
}
