/* ============================================
   FONDAZIONE LUCA VENTRE — Main Stylesheet
   Design: Dignified · Refined · Powerful
   ============================================ */

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

/* === CSS VARIABLES === */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #162032;
  --navy-light:  #1e3048;
  --gold:        #c9a84c;
  --gold-light:  #e0c97a;
  --gold-pale:   #f2e7c4;
  --cream:       #f7f2ea;
  --cream-warm:  #ede6d6;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-mid:    #444444;
  --text-light:  #888888;
  --border:      rgba(201, 168, 76, 0.25);
  --shadow:      0 8px 40px rgba(13, 27, 42, 0.15);
  --shadow-lg:   0 20px 80px rgba(13, 27, 42, 0.25);

  --font-display: 'Roboto', Georgia, serif;
  --font-body:    'Roboto', sans-serif;

  --max-w:      1200px;
  --banner-h:   38px;
  --nav-h:      76px;
  --header-h:   calc(var(--banner-h) + var(--nav-h));
  --section:    100px;
  --radius:     4px;
  --radius-lg:  12px;

  --trans:       all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-fast:  all 0.2s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: var(--trans-fast); }

/* === UTILITY === */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-pad {
  padding: var(--section) 0;
}

.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-serif { font-family: var(--font-display); }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: 0.15s; }
.fade-in.delay-2 { transition-delay: 0.30s; }
.fade-in.delay-3 { transition-delay: 0.45s; }
.fade-in.delay-4 { transition-delay: 0.60s; }

/* ============================================
   SITE HEADER (banner + nav — entrambi fixed)
   ============================================ */

/* Wrapper fisso che contiene banner + nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* ---- NOTICE BANNER ---- */
.notice-banner {
  height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
  padding: 0 1rem;
  line-height: 1;
}

.notice-banner a {
  text-decoration: underline;
  font-weight: 600;
  color: var(--navy);
}

/* ---- NAV ---- */
.site-nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--trans);
}

.site-nav.transparent {
  background: transparent;
}

.site-nav.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}

.nav-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: var(--trans);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  border: none !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: var(--trans) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: var(--trans);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  /* Push content below the entire fixed header */
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.08) 0%, transparent 65%),
    linear-gradient(170deg, #0d1b2a 0%, #162032 50%, #0a1520 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(201,168,76,0.04) 59px,
      rgba(201,168,76,0.04) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(201,168,76,0.04) 59px,
      rgba(201,168,76,0.04) 60px
    );
}

.hero-date-stamp {
  position: absolute;
  /* Below the full header */
  top: calc(var(--header-h) + 2rem);
  right: 5%;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  /* Horizontal padding only; vertical centring is done by flex on .hero */
  padding: 3rem 5% 4rem;
  max-width: 860px;
  width: 100%;
}

/* ---- Hero entrance animations (CSS-only, no JS needed) ---- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.hero-eyebrow { animation: heroFadeUp 0.8s ease both; animation-delay: 0.1s; }
.hero-title   { animation: heroFadeUp 0.8s ease both; animation-delay: 0.28s; }
.hero-subtitle{ animation: heroFadeUp 0.8s ease both; animation-delay: 0.44s; }
.hero-date    { animation: heroFadeUp 0.8s ease both; animation-delay: 0.58s; }
.hero-actions { animation: heroFadeUp 0.8s ease both; animation-delay: 0.72s; }

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 2px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.hero-date {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3.5rem;
}

.hero-date span {
  color: var(--gold);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--trans);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-lead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.85;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.5rem 0;
}

.section-divider.center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  width: 80px;
}

/* ============================================
   STORIA (STORY) SECTION
   ============================================ */
.storia-section {
  background: var(--cream);
  padding: var(--section) 0;
  position: relative;
  overflow: hidden;
}

.storia-section::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 2%;
  font-family: var(--font-display);
  font-size: 28rem;
  font-weight: 700;
  color: rgba(201,168,76,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.storia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.storia-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.storia-text p:first-of-type {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.storia-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.fact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.8rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: var(--trans);
}

.fact-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-color: rgba(201,168,76,0.5);
}

.fact-card .fact-date {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.fact-card .fact-text {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.timeline-section {
  background: var(--navy);
  padding: var(--section) 0;
  position: relative;
  overflow: hidden;
}

.timeline-section .section-title {
  color: var(--white);
}

.timeline-section .section-lead {
  color: rgba(255,255,255,0.5);
}

.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-top: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), rgba(201,168,76,0.3), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 3.5rem 3rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.2), 0 0 0 8px rgba(201,168,76,0.1);
}

.timeline-item:nth-child(odd) .timeline-dot { right: -7px; }
.timeline-item:nth-child(even) .timeline-dot { left: -7px; }

.timeline-date {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.timeline-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ============================================
   SOSTIENI (SUPPORT) SECTION
   ============================================ */
.sostieni-section {
  background: var(--white);
  padding: var(--section) 0;
}

.sostieni-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: start;
}

.sostieni-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.sostieni-uses {
  list-style: none;
  margin: 2rem 0;
}

.sostieni-uses li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.5;
}

.sostieni-uses li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  min-height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.5rem;
}

.donate-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  overflow: hidden;
}

.donate-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.donate-card .card-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.donate-card .card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.donate-card .card-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.donate-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.donate-card .card-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  font-style: italic;
}

/* ============================================
   MEDIA / RASSEGNA STAMPA
   ============================================ */
.media-section {
  background: var(--cream);
  padding: var(--section) 0;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.media-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.media-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--border);
}

.media-card-img {
  height: 160px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.media-card-img .media-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}

.media-card-body {
  padding: 1.5rem;
}

.media-card-source {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.media-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.media-card-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============================================
   CONTATTI SECTION
   ============================================ */
.contatti-section {
  background: var(--navy);
  padding: var(--section) 0;
}

.contatti-section .section-title { color: var(--white); }
.contatti-section .section-lead { color: rgba(255,255,255,0.5); }

.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-item-icon svg { width: 18px; height: 18px; }

.contact-item-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-item-value {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: var(--trans);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #080f18;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.footer-about .footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-about p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  transition: var(--trans-fast);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}

.footer-copy span {
  color: var(--gold);
}

.footer-hashtag {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(201,168,76,0.5);
  letter-spacing: 0.05em;
}

/* ============================================
   STICKY DONATE BAR (mobile)
   ============================================ */
.sticky-donate {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.3);
  padding: 0.9rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-donate p {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}

.sticky-donate .btn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.7rem 1.4rem;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--trans);
  box-shadow: var(--shadow);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

.back-to-top svg { width: 18px; height: 18px; }

/* ============================================
   ALERT / NOTICE BANNER — see site-header block above
   ============================================ */

/* ============================================
   INNER PAGES — page header
   ============================================ */
.page-header {
  background: var(--navy);
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
}

.page-header .page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  position: relative;
}

.page-header .page-title em { color: var(--gold); font-style: italic; }

.page-header .page-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  position: relative;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  :root { --section: 80px; }

  .storia-grid,
  .sostieni-grid,
  .contatti-grid { gap: 3rem; }

  .media-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section:   60px;
    --banner-h:  34px;
    --nav-h:     62px;
  }

  /* Nav mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-h);   /* sotto banner + nav */
    left: 0;
    right: 0;
    background: rgba(13,27,42,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 0 2rem;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
    border-bottom: none;
  }

  .nav-cta {
    margin: 0.8rem 2rem 0;
    display: block;
    text-align: center;
    padding: 0.9rem 1.5rem !important;
  }

  .nav-toggle { display: flex; }

  /* Layouts */
  .storia-grid,
  .sostieni-grid,
  .contatti-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .timeline::before { left: 20px; }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 0 1.5rem 2.5rem 4rem;
  }

  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { left: 14px; right: auto; }

  .media-grid { grid-template-columns: 1fr; }

  .donate-card { position: static; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { gap: 2rem; }

  .sticky-donate { display: flex; }

  .back-to-top { bottom: 5.5rem; }

  .hero-date-stamp { display: none; }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn { width: 100%; justify-content: center; }

  .footer-bottom { flex-direction: column; text-align: center; }
}
