:root {
  --red: #9f0303;
  --red-dark: #7a0202;
  --black: #121316;
  --dark: #1f2226;
  --gray-900: #22252a;
  --gray-700: #3a3d42;
  --gray-500: #6b7076;
  --gray-300: #cfd2d6;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --accent: var(--red);
  --max-width: 1180px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.18);
  --font-serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --font-display: "Oswald", "Arial Narrow", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--red); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--red-dark); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--gray-100);
}

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

.brand {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-900);
  display: inline-flex;
  gap: 6px;
}
.brand-black { color: var(--gray-900); }
.brand-red { color: var(--red); }

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 26px;
}

.main-nav a {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-700);
}
.main-nav a:hover { color: var(--red); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gray-900);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
  border-color: var(--red-dark);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #111;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image:
    linear-gradient(120deg, rgba(0,0,0,.55), rgba(0,0,0,.35)),
    radial-gradient(circle at 30% 30%, #4a4a4a, #111 80%);
  filter: saturate(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 120px 24px;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 9vw, 110px);
  line-height: 1;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.6);
}
.hero-title-black { display: block; color: var(--white); }
.hero-title-red { display: block; color: var(--red); font-style: italic; font-family: var(--font-serif); text-transform: none; font-weight: 400; }
.hero-tagline {
  font-size: clamp(18px, 2.2vw, 24px);
  max-width: 760px;
  margin: 0 auto 36px;
  line-height: 1.4;
  color: #f5f5f5;
}
.hero-tagline strong { color: var(--white); }

/* --- Sections --- */
.section {
  padding: clamp(60px, 9vw, 120px) 0;
  position: relative;
}
.section-light { background: var(--white); }
.section-light.alt-bg { background: #faf9f7; }
.section-dark {
  background: #1a1c1f;
  color: #e9e9e9;
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark a { color: #ffbcbc; }

.section-image { color: var(--white); background: #111; overflow: hidden; }
.section-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image:
    linear-gradient(120deg, #2a2a2a, #111),
    radial-gradient(circle at 70% 40%, #3a3a3a, #111 75%);
}
.section-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.75));
}
.section-image .content-over { position: relative; }
.section-image .eyebrow { color: #ffcfcf; }

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}
.eyebrow {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.1;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--gray-900);
}
.section h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase;
  color: var(--gray-900);
  margin: 0 0 12px;
}
.lead {
  font-size: clamp(19px, 2vw, 22px);
  color: var(--gray-700);
  line-height: 1.5;
}

/* --- Grid helpers --- */
.grid { display: grid; gap: 40px; }
.two-cols { grid-template-columns: 1fr 1fr; }
@media (max-width: 820px) {
  .two-cols { grid-template-columns: 1fr; gap: 28px; }
}

.narrow {
  max-width: 780px;
  margin: 0 auto;
}
.center { text-align: center; }
.accent { color: var(--red); }
.muted { color: var(--gray-500); }
.highlight { font-weight: 600; color: var(--gray-900); }

/* --- Quotes --- */
.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--red);
  text-align: center;
  border: 0;
  margin: 56px auto 0;
  max-width: 900px;
  line-height: 1.4;
}
.testimonial {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 40px);
  color: var(--red);
  text-align: center;
  border: 0;
  margin: 0 0 40px;
  line-height: 1.3;
}

/* --- Result & CTA boxes --- */
.result-box {
  background: #faf6f6;
  border-left: 4px solid var(--red);
  padding: 28px 32px;
  border-radius: var(--radius);
  margin: 40px 0;
}
.result-box h3 { margin-top: 0; color: var(--red); }

.cta-box {
  text-align: center;
  padding: 40px 20px 20px;
}
.cta-line {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--red);
  margin: 6px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}
.cta-box .btn { margin-top: 24px; }

/* --- Checklist --- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  background: var(--red);
  transform: rotate(45deg);
  border-radius: 2px;
}

/* --- People / Chi siamo --- */
.people .person {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.person-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #e6e3df no-repeat center/cover;
  background-image: linear-gradient(135deg, #ddd, #bbb);
  border-radius: calc(var(--radius) - 2px);
  margin-bottom: 20px;
}

/* --- Partner logos --- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}
@media (max-width: 960px) { .partner-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }

.partner-logo {
  aspect-ratio: 3 / 2;
  background: #fafafa no-repeat center/contain;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.partner-logo:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* --- Contatti --- */
.contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 820px) { .contacts { grid-template-columns: 1fr; } }

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  text-align: center;
  transition: all .2s ease;
}
.contact-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
  border-color: var(--red);
}
.contact-label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffbcbc;
}
.contact-value {
  font-size: 20px;
  color: var(--white);
  word-break: break-word;
}

/* --- Footer --- */
.site-footer {
  background: #101114;
  color: #9aa0a8;
  padding: 30px 0;
  font-size: 14px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer a { color: #cfd2d6; }
.site-footer .small { font-size: 12px; opacity: .7; }

/* --- Responsive nav --- */
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .main-nav ul {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
    gap: 16px;
    display: none;
  }
  .main-nav.open ul { display: flex; }
}
