:root {
  --ink: #0a0a0a;
  --bg: #ffffff;
  --cream: #f2f4f7;
  --gold: #1a2f5e;
  --gold-light: #2d4a8a;
  --gold-pale: #ffffff;
  --charcoal: #1e1e1e;
  --mid: #5a6070;
  --rule: rgba(26,47,94,0.18);
  --white: #ffffff;
  --serif: 'Times New Roman', Times, serif;
  --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-light); }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s;
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--white);
  text-decoration: none;
  transition: color 0.4s;
  font-weight: 400;
}
nav.scrolled .nav-logo { color: var(--ink); }

.nav-links {
  display: none; gap: 40px; list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-pale); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  display: block;
  height: 1px;
  margin-top: 6px;
  background: var(--gold-pale);
}
nav.scrolled .nav-links a { color: var(--mid); }
nav.scrolled .nav-links a:hover { color: var(--gold-light); }
nav.scrolled .nav-links a.active { color: var(--ink); }
nav.scrolled .nav-links a.active::after { background: var(--gold); }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #040d1a;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(12,12,12,0.55) 0%, rgba(12,12,12,0.15) 40%, rgba(12,12,12,0.7) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.03);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,13,26,0.88) 0%, rgba(4,13,26,0.2) 55%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px;
  max-width: 700px;
  text-align: left;
  margin: 0 auto;
  animation: fadeUp 1.4s cubic-bezier(.16,1,.3,1) 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 40px; height: 1px;
  background: var(--gold-pale);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-pale);
}
.hero-tagline {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0;
  letter-spacing: 0.01em;
}
.hero-scroll {
  position: absolute; bottom: 36px; right: 60px; z-index: 2;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 12px;
  animation: fadeUp 1.4s cubic-bezier(.16,1,.3,1) 0.8s both;
}
.hero-scroll::after {
  content: '';
  display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

/* ─── SECTIONS ─── */
section { position: relative; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ─── STRIP / TICKER ─── */
.ticker {
  background: var(--bg);
  padding: 26px 0;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.ticker-track {
  display: flex; gap: 70px; width: max-content;
  animation: ticker 45s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.ticker-item::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.ticker-item strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-right: 4px;
}
.ticker-item strong + br { display: none; }

/* ─── INTRO / CHI SIAMO ─── */
.intro {
  padding: 150px 0 130px;
  background: var(--bg);
}
.section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: '';
  display: block; width: 30px; height: 1px;
  background: var(--gold);
}
.section-label--center {
  justify-content: center;
  margin-bottom: 36px;
}
.section-label--center::after {
  content: '';
  display: block; width: 30px; height: 1px;
  background: var(--gold);
}

/* Mission statement block (used inside .punto-forza) */
.intro-mission {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

/* ─── PUNTO DI FORZA (standalone section) ─── */
.punto-forza {
  background: var(--bg);
  padding: 130px 0 120px;
  position: relative;
  overflow: hidden;
}

.intro-header {
  max-width: 880px;
  margin-bottom: 70px;
}
.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.intro-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid var(--rule);
  background: var(--bg);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  transition: border-color 0.3s, color 0.3s;
}
.intro-tag:hover {
  border-color: var(--gold);
  color: var(--charcoal);
}
.intro-tag strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0;
}
.intro-heading {
  font-family: var(--serif);
  font-size: clamp(56px, 7.2vw, 108px);
  font-weight: 400;
  line-height: 0.96;
  color: var(--ink);
  letter-spacing: -0.022em;
}
.intro-heading em {
  font-style: italic;
  color: var(--gold);
  display: inline-block;
  position: relative;
}
.intro-heading em::after {
  content: '';
  position: absolute;
  left: 0; right: 18%;
  bottom: 0.08em;
  height: 2px;
  background: var(--gold);
  opacity: 0.4;
}

.intro-narrative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1080px;
  margin: 0 auto;
}
.intro-col { padding-top: 4px; }
.intro-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 22px;
}
.intro-col .intro-text:last-child { margin-bottom: 0; }
.intro-text strong {
  color: var(--charcoal);
  font-weight: 500;
}

/* Pull quote */
.intro-quote {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
}
.intro-quote-text {
  font-family: var(--serif);
  font-size: clamp(24px, 2.7vw, 38px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.005em;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.intro-quote-text::before {
  content: '\201C';
  position: absolute;
  top: -0.42em;
  left: -0.12em;
  font-size: 0.9em;
  color: var(--gold);
  opacity: 0.18;
  font-style: italic;
  font-family: var(--serif);
  pointer-events: none;
}
.intro-quote-text::after {
  content: '\201D';
  position: absolute;
  bottom: -0.42em;
  right: -0.12em;
  font-size: 0.9em;
  color: var(--gold);
  opacity: 0.18;
  font-style: italic;
  font-family: var(--serif);
  pointer-events: none;
}
.intro-quote-text em {
  font-style: italic;
  color: var(--gold);
}
.intro-quote-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 56px;
}
.iqd-line {
  display: block;
  width: 70px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.iqd-mark {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ─── SETTORI ─── */
.settori {
  padding: 150px 0 140px;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.settori::before,
.settori::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule), transparent);
}
.settori::before { top: 0; }
.settori::after  { bottom: 0; }
.settori-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--rule);
}
.settori .section-label { color: var(--gold); }
.settori .section-label::before { background: var(--gold); }
.settori-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.settori .settori-heading { color: var(--ink); }
.settori .settori-heading em { color: var(--gold) !important; font-style: italic; }
.settori-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.settore-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: #0a0a0a;
  border: 1px solid rgba(26,47,94,0.18);
  transition: border-color 0.5s, transform 0.5s, box-shadow 0.5s;
}
.settore-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(10,15,30,0.18);
}
.settore-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.92) 0%, rgba(12,12,12,0.3) 50%, rgba(12,12,12,0.1) 100%);
  z-index: 1; transition: opacity 0.5s;
}
.settore-card:hover::before { opacity: 0.7; }
.card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s cubic-bezier(.25,.46,.45,.94);
}
.settore-card:hover .card-img { transform: scale(1.06); }
.card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 36px;
  z-index: 2;
}
.card-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold-pale);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  font-style: italic;
}
.card-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.card-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s;
  opacity: 0;
}
.settore-card:hover .card-desc {
  max-height: 100px;
  opacity: 1;
}
.card-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-pale);
  margin-top: 18px;
  transition: gap 0.3s;
}
.settore-card:hover .card-arrow { gap: 16px; }
.card-arrow::after { content: '→'; }

/* ─── TRACK RECORD ─── */
.track-record {
  background: var(--bg);
  padding: 140px 0 130px;
  position: relative;
  border-top: 1px solid var(--rule);
}
.track-record-header {
  max-width: 700px;
  margin: 0 auto 90px;
  text-align: left;
}
.track-record-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.04;
  color: var(--ink);
  letter-spacing: -0.018em;
  margin-bottom: 26px;
}
.track-record-heading em {
  font-style: italic;
  color: var(--gold);
}
.track-record-intro {
  font-size: 15px;
  line-height: 1.8;
  color: var(--mid);
  max-width: 580px;
}
.track-record-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
/* Timeline vertical rail */
.track-list {
  list-style: none;
  padding: 0 0 0 80px;
  margin: 0;
  position: relative;
}
.track-list::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 54px;
  width: 1px;
  background: var(--gold);
  opacity: 0.35;
}

/* Each timeline entry */
.track-item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 36px;
  align-items: baseline;
  padding: 28px 0;
  transition: transform 0.35s;
}
.track-item:hover {
  transform: translateX(6px);
}

/* Timeline node dot */
.track-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 36px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  z-index: 1;
  transition: background 0.3s, transform 0.3s;
}
.track-item:hover::before {
  background: var(--gold);
  transform: scale(1.3);
}

/* Connector line from dot to year (horizontal tick) */
.track-item::after {
  content: '';
  position: absolute;
  left: -19px;
  top: 40px;
  width: 16px;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

.track-year {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1;
}
.track-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--mid);
}
.track-desc strong {
  color: var(--ink);
  font-weight: 500;
}
.track-note {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(90,96,112,0.7);
  font-style: italic;
}

/* ─── IL BOARD ─── */
.board {
  background: var(--bg);
  padding: 140px 0 130px;
  border-top: 1px solid var(--rule);
}
.board-header {
  margin-bottom: 80px;
  max-width: 700px;
}
.board-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.board-heading em { font-style: italic; color: var(--gold); }

.board-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.board-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}
.board-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center 20%;
  border: 1px solid var(--rule);
}
.board-photo--top {
  background-position: center 15%;
}
.board-body {
  padding-top: 12px;
}
.board-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.board-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.board-bio {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 28px;
  max-width: 560px;
}
.board-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 6px;
  transition: color 0.3s, border-color 0.3s;
}
.board-linkedin:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team-card {
  position: relative;
  overflow: hidden;
}
.team-photo {
  aspect-ratio: 3/4;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.team-photo-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
}
.team-card:hover .team-photo-bg { transform: scale(1.04); }
.team-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,15,30,0.55) 0%, transparent 60%);
}
.team-photo-overlay--strong {
  background: linear-gradient(to top, rgba(4,13,26,0.88) 0%, rgba(4,13,26,0.55) 45%, rgba(4,13,26,0.35) 100%);
}
.team-card--open .team-photo { position: relative; }
.team-open-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 30px;
  z-index: 2;
}
.team-open-caption-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.team-open-caption-text {
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.005em;
}
.team-bio-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.3s, border-color 0.3s;
}
.team-bio-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.team-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.team-role {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.team-bio {
  font-size: 13px;
  line-height: 1.8;
  color: var(--mid);
}

/* ─── CONTATTI CTA (homepage) — shared hero-style bg ─── */
.contatti-cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4,13,26,0.86) 0%, rgba(8,15,30,0.94) 50%, rgba(4,13,26,0.98) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
}
.contatti-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}
.contatti-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 0%, rgba(4,13,26,0.5) 100%);
  pointer-events: none;
}
.contatti-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.contatti-cta .section-label { color: var(--gold-pale); }
.contatti-cta .section-label::before,
.contatti-cta .section-label::after { background: var(--gold-pale); }
.contatti-cta-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.contatti-cta-heading em { font-style: italic; color: var(--gold-pale); }
.contatti-cta-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 40px;
}
.contatti-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 40px;
  background: transparent;
  color: var(--gold-pale);
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}
.contatti-cta-btn::after { content: '→'; font-size: 14px; }
.contatti-cta-btn:hover {
  background: var(--gold-pale);
  color: var(--ink);
  border-color: var(--gold-pale);
  gap: 20px;
}

/* ─── CONTATTI PAGE (dedicated) ─── */
.contatti-page {
  background: var(--bg);
  padding: 120px 0 130px;
}
.contatti-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.contatti-page-left .section-label,
.contatti-page-right .section-label {
  color: var(--gold);
  margin-bottom: 32px;
}
.contatti-page-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.contatti-page-heading em { font-style: italic; color: var(--gold); }

.contatti-page .contatti-info {
  display: flex; flex-direction: column; gap: 24px;
  margin-bottom: 40px;
}
.contatti-page .info-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.contatti-page .info-row:last-child { border-bottom: none; }
.contatti-page .info-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--gold);
}
.contatti-page .info-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}
.contatti-page .info-value {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s;
}
.contatti-page .info-value:hover { color: var(--gold); }

.contatti-page .contatti-map {
  background: #0f1626;
  border: 1px solid var(--rule);
  height: 320px;
}
/* Contatti CTA card (mailto/whatsapp/tel) */
.contatti-cta-card {
  padding-top: 4px;
}
.contatti-cta-card-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 36px;
  max-width: 480px;
}
.contatti-action {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  border: 1px solid var(--rule);
  background: var(--bg);
  text-decoration: none;
  margin-bottom: 14px;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s, background 0.35s;
}
.contatti-action:last-child { margin-bottom: 0; }
.contatti-action:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: 0 12px 30px rgba(10,15,30,0.08);
}
.contatti-action--primary {
  background: var(--ink);
  border-color: var(--ink);
  margin-bottom: 18px;
}
.contatti-action--primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.contatti-action-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
  transition: color 0.35s, border-color 0.35s, background 0.35s;
}
.contatti-action--primary .contatti-action-icon {
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.contatti-action-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.contatti-action-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
.contatti-action--primary .contatti-action-label {
  color: rgba(255,255,255,0.55);
}
.contatti-action-value {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  font-style: italic;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contatti-action--primary .contatti-action-value {
  color: var(--white);
}
.contatti-action-arrow {
  font-size: 18px;
  color: var(--mid);
  transition: transform 0.35s, color 0.35s;
  flex-shrink: 0;
}
.contatti-action:hover .contatti-action-arrow {
  transform: translateX(4px);
  color: var(--gold);
}
.contatti-action--primary .contatti-action-arrow {
  color: rgba(255,255,255,0.6);
}
.contatti-action--primary:hover .contatti-action-arrow {
  color: var(--white);
}

/* Compact page hero variant */
.page-hero--compact {
  height: 56vh;
  min-height: 420px;
}

/* Old contatti compatibility (still used selectors below) */
.contatti-info {
  display: flex; flex-direction: column; gap: 28px;
  margin-bottom: 50px;
}
.info-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(45,74,138,0.2);
}
.info-row:last-child { border-bottom: none; }
.info-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(45,74,138,0.45);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--gold-pale);
}
.info-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
}
.info-value {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.info-value:hover { color: var(--gold-light); }

/* ─── FOOTER (minimal) ─── */
body > footer {
  background: #040d1a;
  padding: 90px 60px 50px;
  position: relative;
}
body > footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 70px;
  align-items: start;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  display: block;
  margin-bottom: 28px;
}
.footer-label {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  display: block;
}
.footer-value {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.01em;
  line-height: 1.7;
  display: block;
  text-decoration: none;
}
.footer-email {
  transition: color 0.3s;
}
.footer-email:hover {
  color: var(--white);
}
.footer-privacy {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  margin-top: 6px;
  display: inline-block;
  transition: opacity 0.3s;
}
.footer-privacy:hover {
  opacity: 0.7;
}
.footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto 40px;
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.01em;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
}

/* ─── SCROLL PROGRESS ─── */
#progress-bar {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 2px;
  background: var(--gold-light);
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── HAMBURGER (always visible) ─── */
.nav-hamburger {
  display: flex;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
  background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white);
  transition: background 0.4s, transform 0.3s, opacity 0.3s;
}
nav.scrolled .nav-hamburger span { background: var(--ink); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: #080f1e;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 16px 0;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(45,74,138,0.2);
  width: 100%; max-width: 400px; text-align: center;
  white-space: nowrap;
  transition: color 0.3s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold-pale); }

/* ─── STAGGERED FADE ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .section-inner { padding: 0 24px; }
  nav { padding: 0 24px; }
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 24px; }
  .hero-title { font-size: clamp(32px, 9vw, 52px); line-height: 1.12; margin-bottom: 20px; }
  .hero-tagline { font-size: 13px; line-height: 1.7; max-width: 340px; }
  .intro { padding: 90px 0 80px; }
  .intro-mission { margin-bottom: 60px; }
  .intro-rule { margin-bottom: 60px; }
  .intro-header { margin-bottom: 50px; }
  .intro-narrative { grid-template-columns: 1fr; gap: 30px; }
  .mv-grid { grid-template-columns: 1fr; gap: 50px; }
  .mv-col:last-child { padding-top: 0; }
  .intro-quote-mark { font-size: 100px; margin-bottom: 18px; }
  .intro-tags {
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
    border-top: 1px solid var(--rule);
  }
  .intro-tag {
    border: none;
    border-bottom: 1px solid var(--rule);
    padding: 16px 0;
    width: 100%;
    background: transparent;
    gap: 16px;
  }
  .intro-tag:hover {
    border-color: transparent;
    border-bottom-color: var(--gold);
    color: var(--charcoal);
  }
  .intro-tag strong { font-size: 20px; }
  .punto-forza { padding: 80px 0 70px; }
  .intro-quote-divider { margin-top: 40px; gap: 14px; }
  .iqd-line { width: 50px; }
  .settori { padding: 90px 0; }
  .track-record { padding: 90px 0 80px; }
  .track-record-header { margin-bottom: 60px; }
  .track-list { padding-left: 50px; }
  .track-list::before { left: 24px; }
  .track-item::before { left: -30px; }
  .track-item::after { left: -19px; }
  .track-item { grid-template-columns: 70px 1fr; gap: 20px; padding: 22px 0; }
  .track-year { font-size: 18px; }
  .contatti-page-grid { grid-template-columns: 1fr; gap: 50px; }
  .ba-inner, .ba-inner--reverse { grid-template-columns: 1fr; direction: ltr; }
  .ba-image { min-height: 280px; }
  .ba-content { padding: 50px 24px; }
  .contatti-page { padding: 70px 0 80px; }
  .contatti-cta { padding: 80px 0; }
  .settori-grid,
  .team-grid { grid-template-columns: 1fr 1fr; }
  .hero-scroll { display: none; }
  .board { padding: 80px 0 70px; }
  .board-header { margin-bottom: 50px; }
  .board-card { grid-template-columns: 1fr; gap: 30px; }
  .board-photo { max-width: 340px; }
  body > footer { padding: 60px 24px 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px 30px; margin-bottom: 50px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 600px) {
  .settori-grid,
  .team-grid { grid-template-columns: 1fr; }
  .intro-heading { font-size: clamp(40px, 12vw, 56px); }
  .intro { padding: 70px 0 60px; }
  .section-inner { padding: 0 22px; }
}

/* ─── SETTORE CARD LINKS ─── */
a.settore-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ─── MAP ─── */
.contatti-map-wrap {
  margin-top: 10px;
  position: relative;
}
.contatti-map {
  width: 100%;
  height: 260px;
  background: #0f1626;
  border: 1px solid rgba(45,74,138,0.35);
  position: relative;
  z-index: 1;
}
.contatti-map .leaflet-container {
  background: #0a0f1a;
  font-family: var(--sans);
}
.contatti-map .leaflet-control-attribution {
  background: rgba(8,15,30,0.75);
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  padding: 2px 6px;
}
.contatti-map .leaflet-control-attribution a {
  color: var(--gold-pale);
}
.contatti-map .leaflet-bar a {
  background: #0f1626;
  color: var(--gold-pale);
  border-bottom-color: rgba(45,74,138,0.4);
}
.contatti-map .leaflet-bar a:hover {
  background: #152040;
}
.pc-marker {
  position: relative;
  pointer-events: none;
}
.pc-marker span {
  display: block;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(26,47,94,0.35), 0 6px 16px rgba(0,0,0,0.5);
  animation: pcPulse 2.4s ease-out infinite;
}
@keyframes pcPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.45), 0 6px 16px rgba(0,0,0,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(255,255,255,0), 0 6px 16px rgba(0,0,0,0.5); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0), 0 6px 16px rgba(0,0,0,0.5); }
}
.contatti-map .leaflet-popup-content-wrapper,
.contatti-map .leaflet-popup-tip {
  background: #0a0a0a;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(45,74,138,0.45);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  border-radius: 0;
}
.contatti-map .leaflet-popup-content {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.6;
  margin: 12px 16px;
}
.contatti-map .leaflet-popup-content strong {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold-pale);
}
.contatti-map-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-pale);
  text-decoration: none;
  transition: gap 0.3s, color 0.3s;
}
.contatti-map-link:hover { color: var(--white); }

/* ─── SUBPAGES ─── */
.page-hero {
  position: relative;
  height: 68vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #040d1a;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  animation: heroZoom 16s ease-out forwards;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(4,13,26,0.55) 0%, rgba(4,13,26,0.2) 35%, rgba(4,13,26,0.85) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 90px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  animation: fadeUp 1.2s cubic-bezier(.16,1,.3,1) 0.2s both;
}
.page-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.page-eyebrow::before {
  content: '';
  display: block; width: 40px; height: 1px;
  background: var(--gold-pale);
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.page-title em {
  font-style: italic;
  color: var(--gold-pale);
}
.page-subtitle {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 22px);
  font-style: italic;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.5;
}

.page-body {
  background: var(--bg);
  padding: 130px 0 120px;
}
.page-body-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.page-body-left .section-label { margin-bottom: 28px; }
.page-body-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.page-body-heading em { font-style: italic; color: var(--gold-light); }
.page-body-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 24px;
}
.page-body-text strong {
  color: var(--charcoal);
  font-weight: 500;
}
.page-body-text:last-child { margin-bottom: 0; }
.page-body--alt {
  background: var(--cream);
}

/* ─── MISSION & VISION (home) ─── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .mv-grid { grid-template-columns: 1fr; gap: 50px; }
  .mv-col:last-child { padding-top: 0; }
}
.mv-col:first-child {
  padding-top: 0;
}
.mv-col:last-child {
  padding-top: 60px;
}
.mv-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}
.mv-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.mv-text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  color: var(--mid);
}

/* ─── CHI SIAMO BODY ─── */
.chi-siamo-body {
  background: var(--bg);
  padding: 130px 0 140px;
}
.chi-siamo-text {
  max-width: 780px;
  margin: 0 auto;
}
.chi-siamo-text p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 24px;
  letter-spacing: 0;
}
.chi-siamo-text p:last-child {
  margin-bottom: 0;
}
.chi-siamo-text strong {
  color: var(--charcoal);
  font-weight: 500;
}

/* ─── BUSINESS AREAS (split image + copy) ─── */
.ba-section {
  background: var(--bg);
  padding: 0;
  overflow: hidden;
}
.ba-section--alt {
  background: var(--cream);
}
.ba-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  max-width: 100%;
}
.ba-inner--reverse {
  direction: rtl;
}
.ba-inner--reverse > * {
  direction: ltr;
}
.ba-image {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.ba-content {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}
.ba-inner--reverse .ba-content {
  margin-left: auto;
}
.ba-num {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0.7;
}
.ba-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  line-height: 1.1;
}
.ba-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 18px;
}
.ba-text strong {
  color: var(--ink);
  font-weight: 500;
}
.ba-text:last-of-type {
  margin-bottom: 28px;
}
.ba-link {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 4px;
  display: inline-block;
  transition: color 0.3s, border-color 0.3s;
}
.ba-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.page-bullets {
  list-style: none;
  margin: 30px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.page-bullets li {
  padding: 18px 0 18px 36px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid);
  position: relative;
}
.page-bullets li:last-child { border-bottom: 1px solid var(--rule); }
.page-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 28px;
  width: 18px; height: 1px;
  background: var(--gold);
}
.page-bullets li strong {
  color: var(--charcoal);
  font-weight: 500;
}

.page-subheading {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  margin-top: 44px;
  margin-bottom: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

/* Feature card panel on subpages */
.page-feature {
  background: #080f1e;
  padding: 80px 0;
  border-top: 1px solid rgba(45,74,138,0.3);
  border-bottom: 1px solid rgba(45,74,138,0.3);
}
.page-feature-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.page-feature-cell {
  padding: 30px 0;
  border-left: 1px solid rgba(45,74,138,0.35);
  padding-left: 30px;
}
.page-feature-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 14px;
}
.page-feature-value {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}
.page-feature-value em { font-style: italic; color: var(--gold-pale); }
.page-feature-label {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

/* DM19 official site link section (Watches page) */
.dm19-link {
  background: var(--cream);
  padding: 110px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.dm19-link-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.dm19-link-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.dm19-link-heading em {
  font-style: italic;
  color: var(--gold);
}
.dm19-link-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.dm19-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 38px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.35s, color 0.35s, gap 0.35s;
}
.dm19-link-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  gap: 20px;
}
.dm19-link-btn span {
  font-size: 16px;
}

/* Subpage CTA — same hero-style bg as home contatti CTA */
.page-cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(4,13,26,0.86) 0%, rgba(8,15,30,0.94) 50%, rgba(4,13,26,0.98) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
}
.page-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}
.page-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 0%, rgba(4,13,26,0.5) 100%);
  pointer-events: none;
}
.page-cta .section-inner {
  position: relative;
  z-index: 1;
}
.page-cta-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 26px;
  opacity: 0.7;
}
.page-cta-label::before,
.page-cta-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.45);
}
.page-cta-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
.page-cta-heading em {
  font-style: italic;
  color: var(--white);
  position: relative;
}
.page-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.page-cta a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 40px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.35s, background 0.35s, color 0.35s, border-color 0.35s;
}
.page-cta a.primary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--white);
}
.page-cta a.primary:hover {
  background: transparent;
  color: var(--white);
  gap: 20px;
}
.page-cta a.primary::after { content: '→'; font-size: 14px; }
.page-cta a.ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
}
.page-cta a.ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  gap: 20px;
}
.page-cta a.ghost::before { content: '←'; font-size: 14px; }

@media (max-width: 900px) {
  .page-hero-content { padding: 0 24px 60px; }
  .page-body { padding: 80px 0; }
  .page-body-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .page-feature-inner { grid-template-columns: 1fr; gap: 0; padding: 0 24px; }
  .page-feature-cell { border-left: none; border-top: 1px solid rgba(45,74,138,0.35); padding: 30px 0 30px 0; }
  .page-feature-cell:first-child { border-top: none; }
  .contatti-map { height: 220px; }
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #080f1e;
  border-top: 1px solid rgba(45,74,138,0.35);
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1), opacity 0.5s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner-text {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 720px;
}
.cookie-banner-text a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s;
}
.cookie-banner-text a:hover { opacity: 0.7; }
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 12px 28px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.cookie-btn--accept {
  background: var(--white);
  color: var(--ink);
}
.cookie-btn--accept:hover {
  background: var(--gold);
  color: var(--white);
}
.cookie-btn--reject {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
}
.cookie-btn--reject:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
@media (max-width: 900px) {
  .cookie-banner {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    text-align: center;
  }
  .cookie-banner-actions { width: 100%; justify-content: center; }
}

/* ─── PRIVACY PAGE ─── */
.privacy-page {
  background: var(--bg);
  padding: 160px 0 120px;
}
.privacy-page-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 60px;
}
.privacy-page h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.privacy-page .privacy-update {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 50px;
}
.privacy-page h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-top: 44px;
  margin-bottom: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.privacy-page p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 18px;
}
.privacy-page ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.privacy-page ul li {
  padding: 10px 0 10px 28px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid);
  position: relative;
}
.privacy-page ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 20px;
  width: 14px; height: 1px;
  background: var(--gold);
}
.privacy-page strong {
  color: var(--charcoal);
  font-weight: 500;
}
@media (max-width: 900px) {
  .privacy-page { padding: 120px 0 80px; }
  .privacy-page-inner { padding: 0 24px; }
}

/* ─── LANGUAGE SWITCHER ─── */
.lang-switch {
  display: none;
  align-items: center;
  gap: 4px;
  margin-right: 18px;
}
@media (min-width: 901px) {
  .lang-switch { display: flex; }
}
.lang-btn {
  background: transparent;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 2px;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
  line-height: 1;
}
.lang-btn:hover {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
}
.lang-btn.active {
  color: var(--white);
  font-weight: 600;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}
.lang-sep {
  color: rgba(255,255,255,0.2);
  font-size: 11px;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

/* Scrolled nav state */
nav.scrolled .lang-btn {
  color: var(--mid);
}
nav.scrolled .lang-btn:hover {
  color: var(--gold-light);
  background: rgba(26,47,94,0.06);
}
nav.scrolled .lang-btn.active {
  color: var(--gold);
  font-weight: 600;
  background: rgba(26,47,94,0.08);
  border-color: var(--rule);
}
nav.scrolled .lang-sep { color: rgba(0,0,0,0.18); }

/* Mobile language switcher (inside .mobile-menu) */
.lang-switch-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 0;
  border: none;
  width: 100%;
  max-width: 400px;
}
.lang-switch-mobile .lang-btn {
  font-size: 14px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  padding: 10px 16px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
}
.lang-switch-mobile .lang-btn:hover {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
}
.lang-switch-mobile .lang-btn.active {
  color: var(--white);
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
}
.lang-switch-mobile .lang-sep {
  color: rgba(255,255,255,0.18);
  font-size: 14px;
}

