/* Landing: una sola colonna, gerarchia chiara, focus su CTA. Richiede server locale o hosting (percorsi /assets/). */
.land {
  --land-max: 72rem;
  --land-pad: clamp(1.25rem, 4vw, 2.5rem);
  color: var(--brand-ink);
  background: #f0f2f6;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  margin: 0;
  min-height: 100vh;
}

.land * {
  box-sizing: border-box;
}

a.land-link {
  color: var(--brand-blue-mid);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(19, 80, 158, 0.35);
}
a.land-link:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

/* Header */
.land-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(10, 58, 120, 0.08);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.land-header__inner {
  max-width: var(--land-max);
  margin: 0 auto;
  padding: 0.65rem var(--land-pad);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}
.land-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.land-brand img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(10, 58, 120, 0.2);
  flex-shrink: 0;
}
.land-brand__text strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
  color: var(--brand-blue);
}
.land-brand__text span {
  font-size: 0.75rem;
  color: #5a5a5a;
  font-weight: 500;
}
.land-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  align-items: center;
}
.land-nav a {
  color: #333;
  text-decoration: none;
  padding: 0.4rem 0;
}
.land-nav a:hover {
  color: var(--brand-blue);
}
.land-nav a.land-cta--small {
  background: var(--brand-blue);
  color: #fff !important;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-size: 0.8rem;
}
.land-nav a.land-cta--small:hover {
  background: var(--brand-blue-mid);
}

/* Hero */
.land-hero {
  position: relative;
  min-height: min(88vh, 48rem);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.land-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--brand-blue) center / cover no-repeat;
}
.land-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  /* Equilibrio: foto visibile, testo ancora leggibile */
  filter: brightness(0.9) contrast(1.06) saturate(1.06);
}
.land-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Velo più leggero rispetto alla versione “troppo scura” */
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.04) 100%
  ),
    linear-gradient(
      120deg,
      rgba(2, 10, 28, 0.78) 0%,
      rgba(2, 10, 28, 0.48) 45%,
      rgba(2, 10, 28, 0.32) 100%
    );
  pointer-events: none;
}
.land-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--land-max);
  margin: 0 auto;
  padding: 2.5rem var(--land-pad) 3.5rem;
  width: 100%;
}
.land-hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.6rem;
}
.land-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.75rem;
  max-width: 18ch;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.land-hero__tag {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c8d9f0;
  margin: 0 0 1rem;
  max-width: 28ch;
}
.land-hero p.lead {
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.land-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
a.land-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  background: #fff;
  color: var(--brand-blue) !important;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  border: none;
}
a.land-cta:hover {
  background: #f0f4fc;
  color: var(--brand-ink) !important;
}
a.land-cta--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}
a.land-cta--ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff !important;
}
.land-hero__vote {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  width: 100%;
  margin-top: 0.5rem;
}
.land-hero__vote strong {
  color: #fff;
}

/* Sezioni */
.land-wrap {
  max-width: var(--land-max);
  margin: 0 auto;
  padding: 3.5rem var(--land-pad);
}
.land-section h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
  color: var(--brand-blue);
  margin: 0 0 0.4rem;
  line-height: 1.2;
}
.land-section .land-sub {
  color: #5a5a5a;
  font-size: 1.02rem;
  max-width: 46rem;
  margin: 0 0 2rem;
}

.land-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
  margin: 0;
  list-style: none;
  padding: 0;
}
.land-pillars li {
  background: #fff;
  border-radius: 12px;
  padding: 1.35rem 1.2rem 1.4rem;
  border: 1px solid rgba(10, 58, 120, 0.08);
  box-shadow: 0 4px 20px rgba(10, 58, 120, 0.06);
}
.land-pillars .n {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 8px;
  margin-bottom: 0.65rem;
}
.land-pillars h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--brand-ink);
}
.land-pillars p {
  margin: 0;
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.55;
}

.land-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
@media (max-width: 700px) {
  .land-photos {
    grid-template-columns: 1fr;
  }
}
.land-photos figure {
  margin: 0;
  position: relative;
  aspect-ratio: 4/3;
  background: #ddd;
}
.land-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  display: block;
  filter: contrast(1.08) saturate(1.1);
  transition: transform 0.4s ease;
}
@media (pointer: fine) and (hover: hover) {
  .land-photos figure:hover img {
    transform: scale(1.02);
  }
}
.land-photos figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.65rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-size: 0.7rem;
  line-height: 1.3;
  font-weight: 600;
}

.land-cta-block {
  text-align: center;
  background: linear-gradient(145deg, var(--brand-blue) 0%, #071e42 100%);
  color: #fff;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  margin: 0;
  box-shadow: 0 12px 40px rgba(10, 58, 120, 0.3);
}
.land-cta-block h2 {
  color: #fff;
  margin: 0 0 0.5rem;
}
.land-cta-block p {
  margin: 0 0 1.25rem;
  opacity: 0.9;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.land-cta-block a.land-cta {
  color: var(--brand-blue) !important;
  background: #fff;
}

.land-foot {
  text-align: center;
  padding: 2rem var(--land-pad) 2.5rem;
  color: #777;
  font-size: 0.82rem;
  border-top: 1px solid #e0e4ea;
  background: #e8ebf0;
}
.land-foot p {
  margin: 0.25rem 0;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
