html:root {
  --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, #e0c647 0%, #e0c647 100%) !important;
}style.css
:root {
  --blu: #0b3d91;
  --oro: #d4b83f;
  --crema: #f9f7f1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  background: var(--crema);
  color: #333;
  line-height: 1.6;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(11, 61, 145, 0.1);
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 60px;
  width: auto;
}

.brand h1 {
  font-size: 1.2rem;
  color: var(--blu);
  font-weight: 700;
}

.nav a {
  color: var(--blu);
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
}

.nav a:hover,
.nav a.active {
  color: var(--oro);
}

/* HERO */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(to bottom right, #f9f7f1 20%, #ffffff 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(11,61,145,0.3), rgba(11,61,145,0.3));
  z-index: 1;
}

/* Immagine stilizzata */
.hero-stilizzato {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--blu);
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--blu);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
}

.btn-primary {
  background: var(--oro);
  color: var(--blu);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #caa92f;
}

/* INTRO */
.intro {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}

.intro h3 {
  color: var(--blu);
  font-size: 2rem;
  margin-bottom: 10px;
}

.intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #333;
}

/* FOOTER */
.site-footer {
  background: var(--blu);
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2rem;
  }

  .brand h1 {
    display: none;
  }

  .hero-stilizzato {
    opacity: 0.25;
    object-fit: cover;
  }