@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=DM+Sans:wght@300;400;500;700&display=swap');

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

:root {
  --navy: #16234A;
  --navy-deep: #0E1730;
  --navy-mid: #24346B;
  --red: #A9314F;
  --red-light: #C24F6C;
  --dark: #191B22;
  --dark-2: #262933;
  --mid: #565A6A;
  --light: #F5F4F0;
  --light-2: #EBE8E1;
  --border: rgba(22,35,74,0.14);
  --serif: 'Cormorant Garamond', serif;
  --serif-text: 'Lora', Georgia, serif;
  /* tutto serif: le utility (bottoni, label, form, menù) usano il serif da testo */
  --sans: 'Lora', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif-text);
  color: var(--dark);
  background: #fff;
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Tutti gli elementi usano il serif (--sans ora punta a Lora serif) */
.tag, .btn-dark, .btn-navy, .btn-red, .btn-outline, .btn-outline-light, .nav-cta,
.form-submit, .form-label, .form-input, .form-select, .form-textarea,
.footer-col-title, .stat-label, .breadcrumb-bar, .nav-phone, .pill,
.fd-label, .footer-bottom, .fgrid-title ~ .fgrid-text, .card-link, .service-mini-link {
  font-family: var(--serif-text);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

.icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon svg { width: 1em; height: 1em; }

/* NAV — logo centrato, menù a sinistra, telefono/CTA a destra (impostazione Parkers) */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 0 3rem;
  height: 104px;
}

.nav-left { justify-self: start; display: flex; align-items: center; gap: 1.6rem; }

.nav-logo-center { justify-self: center; display: flex; flex-direction: column; align-items: center; }
.logo-full-center { height: 46px; width: 210px; display: block; flex-shrink: 0; }

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo-full { height: 30px; width: 137px; display: block; flex-shrink: 0; }

.nav-links {
  display: flex;
  gap: 2.1rem;
  align-items: center;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--dark);
  transition: color 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); font-style: italic; }
.nav-links .caret { font-size: 11px; margin-top: 1px; color: var(--mid); }

/* dropdown Servizi */
.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 6px);
  margin-top: 12px;
  background: #fff;
  border: 0.5px solid var(--border);
  min-width: 280px;
  padding: 0.6rem 0;
  box-shadow: 0 16px 34px rgba(14,23,48,0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 60;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.dropdown a {
  display: block;
  padding: 11px 24px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--dark);
  white-space: nowrap;
}
.dropdown a:hover { background: var(--light); color: var(--red); font-style: italic; }

.nav-phone {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-phone .icon { color: var(--red); font-size: 15px; }

.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  background: transparent;
  color: var(--navy);
  border: 0.5px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { border-color: var(--navy); background: var(--light); }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 1.6rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--navy); display: block; }

.nav-mobile-panel {
  display: none;
}

/* FOOTER */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer-brand { font-family: var(--serif); font-size: 22px; font-weight: 400; color: #fff; margin-bottom: 1rem; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 240px; }
.footer-col-title { font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 0.6rem; }
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }
.footer-accent { color: var(--red-light); }

/* UTILS */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.tag::before { content: ''; display: block; width: 28px; height: 0.5px; background: var(--red); }

.section-title {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--red); }

.divider { border: none; border-top: 0.5px solid var(--border); }

.btn-dark, .btn-navy {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  background: var(--navy);
  color: #fff;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-dark:hover, .btn-navy:hover { background: var(--navy-mid); }

.btn-red {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  background: var(--red);
  color: #fff;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-red:hover { background: var(--red-light); }

.btn-outline {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 28px;
  background: transparent;
  color: var(--navy);
  border: 0.5px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--navy); }

.btn-outline-light {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 28px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 0.5px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  cursor: pointer;
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

.red-line { width: 40px; height: 1px; background: var(--red); margin: 1.5rem 0; }

.body-text { font-size: 16.5px; line-height: 1.8; color: var(--mid); }
.body-text + .body-text { margin-top: 1rem; }

.breadcrumb-bar {
  padding: 0.9rem 3rem;
  border-bottom: 0.5px solid var(--border);
  font-size: 12px;
  color: var(--mid);
  background: var(--light);
}
.breadcrumb-bar a { color: var(--mid); }
.breadcrumb-bar a:hover { color: var(--navy); }
.breadcrumb-bar .sep { margin: 0 6px; color: var(--border); }
.breadcrumb-bar .current { color: var(--navy); font-weight: 500; }

/* ================= LAYOUT UTILITIES ================= */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); }
.bordered > * { border-right: 0.5px solid var(--border); }
.bordered > *:last-child { border-right: none; }
.bordered-rows > * { border-bottom: 0.5px solid var(--border); }
.bordered-rows > *:last-child { border-bottom: none; }
.section-b { border-bottom: 0.5px solid var(--border); }
.bg-light { background: var(--light); }
.bg-navy { background: var(--navy-deep); color: #fff; }
.bg-navy .section-title, .bg-navy .tag { color: #fff; }
.bg-navy .tag { color: var(--red-light); }
.bg-navy .body-text { color: rgba(255,255,255,0.62); }
.pad-lg { padding: 4rem 3rem; }
.pad-md { padding: 3rem 3rem 2rem; }
.center { text-align: center; }

/* PAGE HERO (used on every inner page) */
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4.5rem 3rem;
  border-bottom: 0.5px solid var(--border);
  align-items: center;
}
.page-hero.dark { background: var(--navy-deep); color: #fff; border-bottom-color: rgba(255,255,255,0.1); }
.page-hero.dark .section-title { color: #fff; }
.page-hero-title {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
.page-hero-title em { font-style: italic; color: var(--red); }
.page-hero.dark .page-hero-title { color: #fff; }
.page-hero-body { font-size: 17px; line-height: 1.8; color: var(--mid); max-width: 480px; }
.page-hero.dark .page-hero-body { color: rgba(255,255,255,0.62); }

/* STAT / NUMBER BLOCKS */
.stat-block { padding: 2rem; }
.stat-num { font-family: var(--serif); font-size: 46px; font-weight: 300; line-height: 1; color: var(--navy); margin-bottom: 0.4rem; }
.bg-navy .stat-num { color: #fff; }
.stat-label { font-size: 12px; letter-spacing: 0.06em; color: var(--mid); }
.bg-navy .stat-label { color: rgba(255,255,255,0.5); }

/* CARDS */
.card {
  padding: 2.4rem;
  transition: background 0.2s;
}
.card:hover { background: var(--light); }
.card-num { font-family: var(--serif); font-size: 13px; color: var(--red); margin-bottom: 1.2rem; font-weight: 400; }
.card-title { font-family: var(--serif); font-size: 22px; font-weight: 400; margin-bottom: 0.9rem; line-height: 1.2; }
.card-desc { font-size: 15px; line-height: 1.75; color: var(--mid); margin-bottom: 1.4rem; }
.card-link {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); display: inline-flex; align-items: center; gap: 6px;
}
.card-link::after { content: '\2192'; transition: margin 0.2s; }
.card:hover .card-link::after { margin-left: 4px; }

/* ICON CIRCLE */
.icon-circle {
  width: 42px; height: 42px; border-radius: 50%;
  border: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 18px;
  margin-bottom: 1.2rem;
}
.bg-navy .icon-circle, .dark .icon-circle { border-color: rgba(255,255,255,0.18); color: var(--red-light); }

/* FEATURE LIST (icon + title + sub) */
.feature-list { display: flex; flex-direction: column; gap: 1.3rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; padding-bottom: 1.3rem; border-bottom: 0.5px solid var(--border); }
.feature-item:last-child { border-bottom: none; padding-bottom: 0; }
.feature-icon { color: var(--red); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.bg-navy .feature-item, .dark .feature-item { border-bottom-color: rgba(255,255,255,0.08); }
.bg-navy .feature-icon, .dark .feature-icon { color: var(--red-light); }
.feature-title { font-size: 14px; font-weight: 500; margin-bottom: 3px; }
.bg-navy .feature-title, .dark .feature-title { color: #fff; }
.feature-sub { font-size: 14.5px; color: var(--mid); line-height: 1.6; }
.bg-navy .feature-sub, .dark .feature-sub { color: rgba(255,255,255,0.5); }

/* PILLS / TAGS */
.pill-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill {
  font-size: 13px; padding: 8px 20px; border: 0.5px solid var(--border);
  border-radius: 2px; color: var(--mid); transition: all 0.2s;
}
.pill:hover { border-color: var(--navy); color: var(--navy); }

/* TIMELINE */
.timeline-item { display: grid; grid-template-columns: 140px 1fr; border-bottom: 0.5px solid var(--border); }
.timeline-item:last-child { border-bottom: none; }
.tl-year { padding: 1.8rem; border-right: 0.5px solid var(--border); display: flex; align-items: flex-start; }
.tl-year-num { font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--red); }
.tl-content { padding: 1.8rem; }
.tl-title { font-weight: 500; font-size: 15px; margin-bottom: 0.5rem; }
.tl-text { font-size: 15px; color: var(--mid); line-height: 1.75; }

/* IMAGE FRAME */
.img-frame { overflow: hidden; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* IMAGE PLACEHOLDER (segnaposto — sostituire con foto definitiva) */
.img-ph {
  width: 100%; height: 100%; min-height: 240px;
  background:
    repeating-linear-gradient(45deg, rgba(22,35,74,0.045), rgba(22,35,74,0.045) 14px, rgba(22,35,74,0.09) 14px, rgba(22,35,74,0.09) 28px),
    var(--light-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.7rem; text-align: center; padding: 1.5rem;
  color: var(--navy);
}
.img-ph::before {
  content: '';
  width: 34px; height: 34px;
  border: 1.5px solid var(--navy);
  opacity: 0.35;
  background:
    linear-gradient(135deg, transparent 45%, var(--navy) 45%, var(--navy) 55%, transparent 55%);
  border-radius: 3px;
}
.img-ph .img-ph-label {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.5;
  max-width: 280px; color: var(--navy); opacity: 0.75;
}
.img-ph .img-ph-note {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.06em;
  color: var(--mid); opacity: 0.7;
}
/* segnaposto che riempie contenitori absolute (hero-full, split-story-media) */
.hero-full-media .img-ph,
.split-story-media .img-ph,
.home-hero-media .img-ph { position: absolute; inset: 0; height: 100%; }
/* nella home hero l'etichetta va in alto per non sovrapporsi al testo */
.home-hero-media .img-ph { justify-content: flex-start; padding-top: 5rem; }
/* variante scura su fondo navy */
.dark .img-ph, .bg-navy .img-ph, .hero-full .img-ph, .home-hero .img-ph {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03), rgba(255,255,255,0.03) 14px, rgba(255,255,255,0.07) 14px, rgba(255,255,255,0.07) 28px),
    rgba(255,255,255,0.04);
  color: #fff;
}
.dark .img-ph::before, .bg-navy .img-ph::before, .hero-full .img-ph::before, .home-hero .img-ph::before { border-color: #fff; background: linear-gradient(135deg, transparent 45%, #fff 45%, #fff 55%, transparent 55%); }
.dark .img-ph .img-ph-label, .bg-navy .img-ph .img-ph-label, .hero-full .img-ph .img-ph-label, .home-hero .img-ph .img-ph-label { color: rgba(255,255,255,0.85); }
.dark .img-ph .img-ph-note, .bg-navy .img-ph .img-ph-note, .hero-full .img-ph .img-ph-note, .home-hero .img-ph .img-ph-note { color: rgba(255,255,255,0.6); }

/* CTA SECTION */
.cta-section { padding: 5rem 3rem; text-align: center; }
.cta-title { font-family: var(--serif); font-size: 40px; font-weight: 500; margin-bottom: 1rem; }
.cta-title em { font-style: italic; color: var(--red); }
.bg-navy .cta-title, .dark .cta-title { color: #fff; }
.cta-body { font-size: 16.5px; color: var(--mid); max-width: 520px; margin: 0 auto 2.4rem; line-height: 1.8; }
.bg-navy .cta-body, .dark .cta-body { color: rgba(255,255,255,0.62); }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* FORM */
.form-group { margin-bottom: 1.4rem; }
.form-label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px; font-size: 14px; font-family: var(--sans);
  border: 0.5px solid var(--border); border-radius: 2px; background: #fff; color: var(--dark);
  outline: none; transition: border-color 0.2s; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--navy); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 14px; font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--navy); color: #fff; border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--navy-mid); }
.form-note { font-size: 12px; color: var(--mid); margin-top: 0.8rem; text-align: center; }
.form-success { display: none; padding: 2rem; border: 0.5px solid var(--border); border-radius: 2px; background: var(--light); text-align: center; }
.form-success.show { display: block; }
.form-success .stat-num { font-size: 30px; }

.form-check { display: flex; align-items: flex-start; gap: 10px; margin: 1.3rem 0 0.3rem; }
.form-check input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; accent-color: var(--navy); }
.form-check label { font-size: 13.5px; line-height: 1.55; color: var(--mid); cursor: pointer; }
.form-check a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.form-check a:hover { color: var(--red); }
.form-check.invalid input[type="checkbox"] { outline: 1.5px solid var(--red); outline-offset: 2px; }

.form-error { display: none; font-size: 13px; color: var(--red); margin-top: 0.9rem; text-align: center; }
.form-error.show { display: block; }
.form-input.invalid, .form-select.invalid, .form-textarea.invalid { border-color: var(--red); }

/* ============ HERO FULL (photography-forward, Parkers/Chabé inspired) ============ */
.hero-full {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  border-bottom: 0.5px solid var(--border);
}
.hero-full-media { position: absolute; inset: 0; z-index: 0; }
.hero-full-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-full-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,23,48,0.55) 0%, rgba(14,23,48,0.35) 40%, rgba(14,23,48,0.92) 100%);
}
.hero-full-content { position: relative; z-index: 1; padding: 3rem 3rem 4.5rem; max-width: 760px; }
.hero-full-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red-light); margin-bottom: 1.3rem; display: flex; align-items: center; gap: 10px;
}
.hero-full-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--red-light); }
.hero-full-title {
  font-family: var(--serif); font-weight: 500; font-size: 68px; line-height: 1.03;
  letter-spacing: -0.02em; color: #fff; margin-bottom: 1.4rem;
}
.hero-full-title em { font-style: italic; color: var(--red-light); }
.hero-full-body { font-size: 17.5px; line-height: 1.8; color: rgba(255,255,255,0.8); max-width: 500px; margin-bottom: 2.2rem; }
.hero-full-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
/* variante più corta per le hero delle pagine interne */
.hero-full.short { min-height: 60vh; }
@media (max-width: 900px) { .hero-full.short { min-height: 54vh; } }

/* ============ KEY POINTS (fascia punti chiave sotto la hero) ============ */
.key-points { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 0.5px solid var(--border); }
.key-point { padding: 2.4rem 2rem; border-right: 0.5px solid var(--border); }
.key-point:last-child { border-right: none; }
.key-point .kp-icon { color: var(--red); font-size: 16px; margin-bottom: 0.9rem; }
.key-point .kp-title { font-family: var(--serif); font-size: 19px; font-weight: 400; margin-bottom: 0.4rem; line-height: 1.25; }
.key-point .kp-sub { font-size: 14.5px; line-height: 1.6; color: var(--mid); }
.key-points.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .key-points, .key-points.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .key-point:nth-child(2n) { border-right: none; }
  .key-point { border-bottom: 0.5px solid var(--border); }
}
@media (max-width: 560px) {
  .key-points, .key-points.cols-3 { grid-template-columns: 1fr; }
  .key-point { border-right: none; }
}

/* split immagine/testo su fondo navy (riutilizzabile) */
.split-navy { grid-template-columns: 1fr 1fr; }
.split-navy .img-ph { min-height: 100%; }
@media (max-width: 900px) { .split-navy { grid-template-columns: 1fr; } .split-navy .img-ph { min-height: 300px; } }

/* ============ RED BAND (fascia rossa breve, riutilizzabile) ============ */
.red-band { background: var(--red); color: #fff; text-align: center; padding: 4.5rem 3rem; }
.red-band .rb-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 1.2rem; }
.red-band .rb-title { font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: 1.25; color: #fff; max-width: 800px; margin: 0 auto 1rem; }
.red-band .rb-title em { font-style: italic; color: rgba(255,255,255,0.78); }
.red-band .rb-text { font-size: 16.5px; line-height: 1.8; color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto; }
@media (max-width: 900px) { .red-band { padding: 3.2rem 1.5rem; } .red-band .rb-title { font-size: 27px; } }

/* ============ FEATURE GRID (Parkers "why choose" style, no borders) ============ */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem 2rem; padding: 4rem 3rem; }
.feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.fgrid-item {}
.fgrid-item .icon-circle { margin-bottom: 1.3rem; }
.fgrid-title { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 0.6rem; }
.fgrid-text { font-size: 14.5px; line-height: 1.7; color: var(--mid); }

/* ============ SPLIT STORY (alternating image / text) ============ */
.split-story { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 480px; }
.split-story.reverse { direction: rtl; }
.split-story.reverse > * { direction: ltr; }
.split-story-text { padding: 4rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.split-story-title { font-family: var(--serif); font-size: 36px; font-weight: 500; line-height: 1.15; margin-bottom: 1.2rem; }
.split-story-title em { font-style: italic; color: var(--red); }
.split-story-media { position: relative; min-height: 340px; }
.split-story-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.bg-navy .split-story-title { color: #fff; }
.bg-navy .split-story-title em { color: var(--red-light); }

/* ============ QUOTE BLOCK ============ */
.quote-block { padding: 5.5rem 3rem; text-align: center; }
.quote-block-text {
  font-family: var(--serif); font-size: 30px; font-weight: 300; font-style: italic; line-height: 1.45;
  max-width: 720px; margin: 0 auto 1.6rem; color: var(--dark);
}
.bg-navy .quote-block-text, .dark .quote-block-text { color: #fff; }
.quote-block-attr { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }
.bg-navy .quote-block-attr, .dark .quote-block-attr { color: rgba(255,255,255,0.5); }

/* ============ SIGNATURE NUMERAL (distinctive accent) ============ */
.signature-num {
  font-family: var(--serif); font-weight: 300; font-size: 180px; line-height: 0.8;
  color: var(--light-2); position: relative;
}

/* FAQ ACCORDION */
.faq-item { border-bottom: 0.5px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left; padding: 1.8rem 3rem; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--dark);
}
.faq-q:hover { color: var(--navy); }
.faq-q .plus { font-size: 20px; color: var(--red); flex-shrink: 0; transition: transform 0.25s; font-family: var(--sans); font-weight: 300; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 3rem; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 3rem 1.8rem; }
.faq-a p { font-size: 16.5px; line-height: 1.8; color: var(--mid); max-width: 760px; }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .bordered > * { border-right: none; border-bottom: 0.5px solid var(--border); }
  .bordered > *:nth-child(2n) { border-right: none; }
  .page-hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .page-hero-title { font-size: 38px; }
  .pad-lg { padding: 2.5rem 1.5rem; }
  .pad-md { padding: 2.5rem 1.5rem 1.5rem; }
  .timeline-item { grid-template-columns: 90px 1fr; }
  .cta-section { padding: 3.5rem 1.5rem; }
  .cta-title { font-size: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .faq-q { padding: 1.4rem 1.5rem; font-size: 16px; }
  .faq-a { padding: 0 1.5rem; }
  .faq-item.open .faq-a { padding: 0 1.5rem 1.4rem; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); padding: 3rem 1.5rem; gap: 2rem 1.5rem; }
  .hero-full { min-height: 78vh; }
  .hero-full-content { padding: 2rem 1.5rem 3rem; }
  .hero-full-title { font-size: 42px; }
  .split-story { grid-template-columns: 1fr; }
  .split-story-media { min-height: 260px; }
  .split-story-text { padding: 2.5rem 1.5rem; }
  .split-story-title { font-size: 28px; }
  .quote-block { padding: 3.5rem 1.5rem; }
  .quote-block-text { font-size: 22px; }
  .signature-num { font-size: 90px; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .bordered > * { border-right: none; }
  .hero-full-title { font-size: 34px; }
}

@media (max-width: 1220px) {
  .nav { padding: 0 1.8rem; gap: 1rem; }
  .nav-left { gap: 1.2rem; }
  .nav-links { gap: 1.6rem; }
  .nav-links a { font-size: 16px; }
  .nav-phone-text { display: none; }
  .nav-cta { padding: 9px 16px; }
}

@media (max-width: 1080px) {
  .logo-full-center { height: 40px; width: 183px; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 15px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-right .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav { padding: 0 1.25rem; height: 64px; gap: 0.5rem; }
  .nav-left { gap: 0; }
  .logo-full-center { height: 32px; width: 146px; }
  .nav-right { gap: 0.9rem; }

  .nav-mobile-panel {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 199;
    padding: 1rem 1.5rem 2rem;
    overflow-y: auto;
  }
  .nav-mobile-panel.open { display: block; }
  .nav-mobile-panel a {
    display: block;
    padding: 1rem 0;
    border-bottom: 0.5px solid var(--border);
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .nav-mobile-panel a.active { color: var(--red); }
  .nav-mobile-panel .nav-cta {
    display: inline-block;
    margin-top: 1.5rem;
  }
  .mob-nav-group { border-bottom: 0.5px solid var(--border); }
  .mob-nav-group .mob-nav-label-link {
    border-bottom: none;
    padding-bottom: 0.6rem;
  }
  .nav-mobile-panel a.mob-sub-link {
    padding: 0.7rem 0 0.7rem 1.2rem;
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--mid);
    border-bottom: none;
    font-family: var(--serif);
  }
  .mob-nav-group .mob-sub-link:last-child { padding-bottom: 1.1rem; }

  .footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .breadcrumb-bar { padding: 0.8rem 1.5rem; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: 32px; }
}

/* ===== Animazioni: comparsa allo scroll ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============ Cookie banner (solo cookie tecnici) ============ */
.cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999; background: var(--navy-deep); color: rgba(255,255,255,0.9); border-top: 2px solid var(--red); transform: translateY(110%); transition: transform .45s cubic-bezier(.2,.7,.2,1); box-shadow: 0 -12px 40px -20px rgba(0,0,0,.6); }
.cookie-bar.show { transform: translateY(0); }
.cookie-bar-inner { max-width: 1400px; margin: 0 auto; padding: 1.1rem 2rem; display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; justify-content: space-between; }
.cookie-bar-text { font-size: 13.5px; line-height: 1.6; margin: 0; max-width: 940px; color: rgba(255,255,255,0.82); }
.cookie-bar-text strong { color: #fff; font-weight: 500; }
.cookie-bar-text a { color: var(--red-light); text-decoration: underline; }
.cookie-accept { background: var(--red); color: #fff; border: none; padding: 11px 30px; border-radius: 2px; font-family: var(--sans); font-size: 12.5px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: background .25s ease; }
.cookie-accept:hover { background: var(--red-light); }
@media (max-width: 700px) { .cookie-bar-inner { padding: 1rem 1.3rem; gap: .9rem; } .cookie-accept { width: 100%; } }
@media (prefers-reduced-motion: reduce) { .cookie-bar { transition: none; } }

/* ============ Language switcher (EN/IT) ============ */
.lang-switch { display: inline-flex; align-items: center; gap: 5px; font-family: var(--sans); font-size: 12px; letter-spacing: .05em; margin-right: 2px; }
.lang-switch .lang-opt { color: var(--mid); text-decoration: none; padding: 2px 2px; transition: color .2s ease; }
.lang-switch .lang-opt:hover { color: var(--navy); }
.lang-switch .lang-opt.active { color: var(--red); font-weight: 600; pointer-events: none; }
.lang-switch .lang-sep { color: var(--border); }
.lang-switch-mobile { display: none; }
@media (max-width: 900px) {
  .nav-right .lang-switch { display: none; }
  .lang-switch-mobile { display: flex; padding: 0.6rem 0 0.3rem; gap: 9px; font-size: 15px; }
  .lang-switch-mobile .lang-opt { color: rgba(255,255,255,0.7); }
  .lang-switch-mobile .lang-opt:hover { color: #fff; }
  .lang-switch-mobile .lang-opt.active { color: var(--red-light); font-weight: 600; }
  .lang-switch-mobile .lang-sep { color: rgba(255,255,255,0.3); }
}
