/* =====================================================================
   Circolo Internazionale Amici della Russia Imperiale - Terza Roma
   Sistema di design ispirato ad Aesop: un solo font (Manrope), due colori,
   moltissimo spazio bianco, nessun ornamento. La bellezza sta nel vuoto.
   ===================================================================== */

/* ---------- Manrope, auto-ospitato (variabile, latino + cirillico) ---------- */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Cormorant Garamond: SOLO per il titolo dell'hero ---------- */
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/cormorant-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/cormorant-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/cormorant-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Token ---------- */
:root {
  --nero:   #1A1A1A;   /* testo e fondali scuri, nero morbido */
  --bianco: #FAFAFA;   /* sfondo principale: off-white freddo neutro */
  --grigio: #6E6E6E;   /* testo secondario, didascalie */
  --linea:  #DEDEDA;   /* righe e bordi sottilissimi */
  --nero-morbido: #2B2B2B; /* corpo dei testi lunghi */
  --blu-notte: #0B1F3A;    /* fondo scuro: footer, bottoni primari (sostituisce il nero) */

  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-hero: "Cormorant Garamond", Georgia, serif;   /* SOLO titolo hero */

  --max:   1200px;      /* larghezza massima del contenuto */
  --read:  700px;       /* colonna di lettura degli articoli */
  --narrow: 760px;      /* blocchi brevi centrati */
  --pad:   clamp(1.5rem, 6vw, 5rem);   /* margini laterali generosi */
  --sez:   clamp(3.5rem, 8vw, 6.5rem); /* respiro verticale tra sezioni (compatto) */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bianco);
  color: var(--nero);
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }  /* mai deformata: l'altezza segue le proporzioni */
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 400; letter-spacing: 0.005em; margin: 0; }
p { margin: 0 0 1.3rem; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.narrow { max-width: var(--narrow); margin-left: auto; margin-right: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--nero); color: var(--bianco); padding: .7rem 1.1rem;
  font-size: .85rem; letter-spacing: .05em;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--nero); outline-offset: 3px; }

/* ---------- Occhielli, titoli, link freccia ---------- */
.eyebrow {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--oro);
  margin: 0 0 1.4rem;
}
.lead {
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: .005em;
  margin: 0 0 2rem;
}
.arrow-link {
  display: inline-block;
  font-size: .98rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--nero);
  padding-bottom: 5px;
  border-bottom: 1.5px solid var(--oro);
  transition: opacity .35s ease;
}
.arrow-link:hover { opacity: .55; }
.split .arrow-link::after { font-size: 1.15em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bianco);
  border-bottom: 1px solid var(--linea);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 76px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo-img {
  height: 48px; width: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--oro);   /* cornice oro brunito attorno al logo */
  object-fit: cover;
  background: #fff;
}

.main-nav { margin-left: auto; }
.main-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.4rem 1.3rem;
}
.main-nav a {
  font-size: .8rem;
  letter-spacing: .015em;
  color: var(--nero);               /* nero morbido, ben leggibile */
  opacity: .9;
  font-weight: 500;
  transition: opacity .3s ease, color .3s ease;
}
.main-nav a:hover { opacity: 1; }
.main-nav a[aria-current="page"] { opacity: 1; font-weight: 700; color: var(--oro); }

.lang { display: inline-flex; align-items: center; gap: .55rem; flex: 0 0 auto; }
.lang-btn {
  background: none; border: 0; padding: 4px; cursor: pointer;
  line-height: 0; opacity: .6;
  transition: opacity .3s ease;
}
.lang-btn:hover { opacity: .9; }
.lang-btn.is-active { opacity: 1; }
.flag { display: block; width: 34px; height: 23px; border: 1px solid var(--oro); }
.lang-btn.is-active .flag { box-shadow: 0 0 0 2px rgba(176, 141, 46, .4); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; height: 1px; width: 22px; margin: 0 auto;
  background: var(--nero); transition: transform .3s ease, opacity .3s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 84vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: #F6F6F4;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 50% 46%, rgba(12,12,12,.34) 0%, rgba(12,12,12,0) 62%),
    linear-gradient(180deg, rgba(13,13,13,.50) 0%, rgba(13,13,13,.74) 100%);
}
.hero-inner {
  max-width: 900px; padding: var(--sez) var(--pad);
  text-shadow: 0 1px 26px rgba(0,0,0,.45);
}
.hero-nome {
  display: flex; flex-direction: column; align-items: center;
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.12;
  letter-spacing: .01em;
}
.hero-terza {
  margin-top: 1.15rem;
  font-size: .38em;                /* sigillo equilibrato, non enorme */
  font-weight: 700;
  letter-spacing: .3em;
  text-indent: .3em;               /* compensa il letter-spacing per restare centrato */
  text-transform: uppercase;
  color: #C9A227;                  /* oro chiaro: piu contrasto sulla foto */
  /* nessun riquadro: solo ombra morbida e sfumata per il contrasto */
  text-shadow:
    0 0 26px rgba(0,0,0,.65),
    0 0 12px rgba(0,0,0,.8),
    0 1px 3px rgba(0,0,0,.9);
}
.hero-sub {
  margin: 2rem auto 0;
  max-width: 34ch;
  font-weight: 300;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.7;
  opacity: .94;
}

/* ---------- Sezione generica ---------- */
.section { padding-top: var(--sez); padding-bottom: var(--sez); }
.section + .section { padding-top: 0; }

/* ---------- Home: Chi siamo (breve) ---------- */
.chi-home { text-align: center; }
.chi-home .lead { font-weight: 300; }

/* ---------- Home: indice sezioni (occhiello + riga + freccia) ---------- */
.home-index { padding-bottom: var(--sez); }
.idx-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.9rem, 3.6vw, 2.9rem) 0;
  border-top: 1px solid var(--linea);
  transition: opacity .35s ease;
}
.home-index .idx-row:last-child { border-bottom: 1px solid var(--linea); }
.idx-row .eyebrow { margin: 0 0 .7rem; }
.idx-title {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
}
.idx-arrow {
  font-size: 1.5rem; line-height: 1;
  color: var(--nero);
  transition: transform .35s ease, opacity .35s ease;
}
.idx-row:hover { opacity: .62; }
.idx-row:hover .idx-arrow { transform: translateX(6px); }

/* ---------- Articolo (colonna di lettura) ---------- */
/* Intestazioni pagine interne: centrate, ordinate, simmetriche */
.page-header { padding-top: clamp(2.4rem, 5vw, 3.6rem); padding-bottom: 0; text-align: center; }
.page-header .wrap { max-width: 880px; }
.page-header--wide .wrap { max-width: var(--max); }
.page-header h1 {
  font-size: clamp(1.85rem, 3.8vw, 2.6rem);
  font-weight: 400; line-height: 1.14;
  margin-top: .3rem;
}
.page-header .page-intro { margin-left: auto; margin-right: auto; }
/* prima sezione dopo l'intestazione: piu vicina, niente vuoto enorme */
.page-header + .section { padding-top: clamp(2rem, 4vw, 3rem); }
.articolo { max-width: var(--read); margin: 0 auto; padding-bottom: var(--sez); }
.articolo > * { margin-left: auto; margin-right: auto; }
/* Articolo a tutta pagina (non dentro un .wrap): padding laterale sempre,
   cosi su mobile il testo non tocca mai i bordi. La max-width e aumentata dei
   margini in modo da NON restringere la colonna di lettura sul desktop (~700px). */
main > .articolo {
  max-width: calc(var(--read) + var(--pad) + var(--pad));
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.articolo h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.28;
  margin: clamp(3rem, 6vw, 4.5rem) 0 1.2rem;
}
.articolo h2:first-child { margin-top: 0; }
.articolo p {
  color: var(--nero-morbido);
  font-size: 1.1875rem;
  line-height: 1.85;
}

/* foto grande in cima all'articolo, bordo oro */
.page-header .filetto-oro { max-width: 92px; margin: clamp(1.2rem, 2.5vw, 1.8rem) auto 0; }
.articolo-foto {
  max-width: 940px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
  padding: 0 var(--pad);
}
/* Foto degli articoli: sempre proporzioni naturali (mai deformata ne tagliata) */
.articolo-foto img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--oro-soft);
}
.articolo-foto--natural img { height: auto; object-fit: contain; }
.articolo .torna { margin-top: clamp(3rem, 6vw, 4.5rem); }
.articolo-foto figcaption,
.foto-colonne figcaption {
  margin-top: .65rem;
  color: var(--grigio);
  font-size: .82rem;
  line-height: 1.55;
}
.romanov-rulers {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--linea);
}
.romanov-rulers li {
  padding: .9rem 0;
  border-bottom: 1px solid var(--linea);
  color: var(--nero-morbido);
  line-height: 1.65;
}
.romanov-rulers strong { font-weight: 600; }
.articolo-correlato {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--linea);
}
.articolo-correlato .eyebrow { margin-bottom: .8rem; }
.articolo-gallery { padding-top: 0; }
.articolo-gallery .wrap { max-width: 1040px; }
.articolo-nav-finale { padding-bottom: var(--sez); }
.articolo .legale-update {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  font-size: .95rem;
  color: var(--grigio);
}

/* Apertura della storia Romanov: testo centrato e icona compatta a destra. */
.romanov-article-hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4.5rem);
}
.romanov-article-hero .split {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
}
.romanov-article-hero .romanov-article-hero__text {
  max-width: 44rem;
  justify-self: center;
  text-align: center;
}
.romanov-article-hero h1 {
  margin: .3rem 0 1.3rem;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  font-weight: 400;
  line-height: 1.2;
}
.romanov-article-hero .page-intro {
  max-width: 38rem;
  margin-right: auto;
  margin-left: auto;
}
.romanov-article-hero .filetto-oro {
  width: 92px;
  margin: clamp(1.2rem, 2.5vw, 1.8rem) auto 0;
}
.romanov-article-hero__media {
  width: 100%;
  max-width: 360px;
  justify-self: end;
}

@media (max-width: 900px) {
  .romanov-article-hero .split { grid-template-columns: 1fr; }
  .romanov-article-hero .romanov-article-hero__media {
    max-width: 250px;
    justify-self: center;
    order: 0;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blu-notte);
  color: #DCD6C6;
  margin-top: var(--sez);
  font-size: .85rem;
  line-height: 1.9;
}
.site-footer .wrap { padding-top: clamp(3.5rem, 7vw, 6rem); padding-bottom: 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.footer-brand p { max-width: 34ch; margin: 1.2rem 0 0; }
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
.site-footer h4 {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .2em;
  color: var(--oro); font-weight: 600; margin: 0 0 1.1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .35rem; }
.site-footer a { color: #DCD6C6; transition: color .3s ease; }
.site-footer a:hover { color: #E8D9AE; }
/* nome dell'associazione nel footer: testo secondario */
.site-footer .footer-brand .eyebrow { color: #9FB3CC !important; }
.footer-bottom {
  border-top: 1px solid rgba(176, 141, 46, 0.25);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 2rem;
  display: flex; flex-wrap: wrap; gap: .4rem 1.5rem;
  font-size: .78rem; color: #9FB3CC;
}
.footer-bottom .footer-legali { margin-left: auto; }
.footer-bottom a { color: #9FB3CC; }
.footer-bottom a:hover { color: #E8D9AE; }

/* ---------- Rivelazioni allo scroll (morbide e lente) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s cubic-bezier(.22,.61,.36,1),
              transform 1s cubic-bezier(.22,.61,.36,1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .idx-row:hover .idx-arrow { transform: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--bianco); border-bottom: 1px solid var(--linea);
    max-height: 0; overflow: hidden; margin: 0;
    transition: max-height .4s ease;
  }
  .main-nav.open { max-height: 80vh; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 0; padding: 1rem var(--pad) 1.5rem; }
  .main-nav li { width: 100%; }
  .main-nav a { display: block; padding: .7rem 0; font-size: .95rem; opacity: .85; }
  .lang { margin-left: 0; }
  .header-inner { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom .footer-legali { margin-left: 0; }
  .idx-row { grid-template-columns: 1fr; gap: 1rem; }
  .idx-arrow { justify-self: start; }
}

/* =====================================================================
   Sezioni a due colonne (testo breve grande + foto grande) + oro brunito.
   Applicato per ora alla sola sezione "Chi siamo" della home.
   ===================================================================== */
:root {
  --oro:      #B08D2E;                 /* oro brunito/ottone, unico accento */
  --oro-soft: rgba(176, 141, 46, .55); /* filetti e bordi dorati tenui */
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.split--rev .split__media { order: -1; }      /* foto a sinistra */

.split__text { max-width: 36rem; text-align: left; }
.split .eyebrow { color: var(--oro); margin-bottom: 1.6rem; }
.split__lead {
  font-size: clamp(1.4rem, 1.95vw, 1.78rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--nero);
  margin: 0 0 2.2rem;
}

/* Foto delle sezioni a due colonne: sempre proporzioni naturali,
   mai deformate ne tagliate (persone, gruppi, icone, ritratti). */
.split__media { margin: 0; }
.split__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--oro-soft);
}
.split__media--natural img { height: auto; object-fit: contain; }

/* freccia dorata dopo i link freccia dentro le sezioni a due colonne */
.arrow-gold { color: var(--oro); }
.split .arrow-link::after { content: "\00A0\2192"; color: var(--oro); }

/* filetto separatore dorato, sottile */
.filetto-oro {
  height: 1px;
  background: var(--oro-soft);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* la sezione Chi siamo non è più centrata (ora è a due colonne) */
.chi-home { text-align: left; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split__media { order: -1; }               /* su mobile: foto sopra, testo sotto */
  .split--rev .split__media { order: -1; }
  .split__text { max-width: none; }
  /* nessuna altezza forzata: le foto restano a proporzioni naturali su mobile */
}

/* =====================================================================
   Bottoni di azione (hero + CTA "Diventa socio" in fondo). Stile pulito.
   ===================================================================== */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .13em;
  padding: 1.2rem 2.9rem;
  border: 1px solid transparent;
  text-shadow: none;
  cursor: pointer;
  transition: opacity .3s ease, background-color .3s ease, color .3s ease;
}
/* Bottone primario su fondo chiaro: blu notte con bordo oro (niente nero) */
.btn--primary {
  background: var(--blu-notte);
  color: #F2EEE4;
  border: 1px solid var(--oro);
}
.btn--primary:hover { background: #12294B; }
.btn--ghost { background: transparent; border-color: var(--nero); color: var(--nero); }
.btn--ghost:hover { opacity: .6; }

/* hero (fondo scuro): il ghost diventa chiaro */
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.8rem; }
/* Hero: bottoni trasparenti sopra la fotografia */
.hero .btn--primary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid #B08D2E;
  color: #E8D9AE;
}
.hero .btn--primary:hover { background: rgba(176, 141, 46, 0.18); color: #F4E9C8; }
.hero .btn--ghost {
  background: transparent;
  border: 1px solid rgba(242, 238, 228, 0.4);
  color: #F2EEE4;
}
.hero .btn--ghost:hover {
  opacity: 1;
  border-color: rgba(242, 238, 228, 0.75);
  background: rgba(255, 255, 255, 0.06);
}

/* CTA "Diventa socio" in fondo alla home */
.cta-socio { text-align: center; }
.cta-socio .filetto-oro { max-width: 120px; margin-left: auto; margin-right: auto; }
.cta-socio .eyebrow { color: var(--oro); }
.cta-frase {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 400;
  line-height: 1.32;
  max-width: 22ch;
  margin: 0 auto 2.6rem;
}

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

/* =====================================================================
   Componenti delle pagine interne (stile Aesop + dettagli oro)
   ===================================================================== */

/* intro sotto il titolo di pagina */
.page-intro {
  margin: 1.4rem 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--grigio);
  max-width: 56ch;
}

/* titolo di sezione dentro le pagine */
.sez-titolo {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.28;
  margin: 0 0 2rem;
}

/* elenco articoli: righe pulite con foto intera + testo + freccia */
.art-lista { border-bottom: 1px solid var(--linea); }
.art-item {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--linea);
}
.art-item__media { margin: 0; }
.art-item__media img { width: 100%; height: auto; border: 1px solid var(--oro-soft); }
.art-item__date {
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .16em; color: var(--oro); margin: 0 0 .8rem;
}
.art-item__title { font-size: clamp(1.3rem, 2.2vw, 1.65rem); font-weight: 500; line-height: 1.3; margin: 0 0 .9rem; }
.art-item__excerpt { color: var(--grigio); margin: 0 0 1.4rem; }
.art-item--soon { grid-template-columns: 1fr; }
.art-item--soon .art-item__title { color: var(--grigio); font-weight: 400; }

/* calendario delle ricorrenze */
.calendario { border-bottom: 1px solid var(--linea); margin-bottom: var(--sez); }
.cal-item {
  display: grid;
  grid-template-columns: minmax(150px, 210px) 1fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  padding: 1.7rem 0;
  border-top: 1px solid var(--linea);
}
.cal-data { font-weight: 600; letter-spacing: .02em; }
.cal-nome { font-weight: 500; margin: 0 0 .3rem; }
.cal-desc { color: var(--grigio); margin: 0; font-size: .98rem; }
.cal-badge {
  display: none;
  font-size: .68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .16em; color: var(--oro); margin-top: .5rem;
}
.cal-item.is-next { border-left: 2px solid var(--oro); padding-left: clamp(1rem, 2vw, 1.5rem); }
.cal-item.is-next .cal-badge { display: block; }

/* moduli (contatti, tesseramento) */
.form { max-width: 640px; }
.form .due { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.campo { margin-bottom: 1.4rem; }
.campo label {
  display: block;
  font-size: .72rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: .16em; color: var(--grigio);
  margin-bottom: .5rem;
}
.campo input, .campo textarea {
  width: 100%;
  font: inherit; color: var(--nero);
  background: #FFFFFF;
  border: 1px solid var(--linea);
  padding: .85rem 1rem;
  border-radius: 0;
}
.campo textarea { min-height: 150px; resize: vertical; }
.campo input:focus, .campo textarea:focus { outline: none; border-color: var(--oro); }
.form .nota { font-size: .9rem; color: var(--grigio); margin: .4rem 0 1.6rem; }

/* passi numerati (tesseramento) */
.passi { margin: 0 0 var(--sez); padding-left: 1.2rem; line-height: 2; color: var(--nero-morbido); font-size: 1.1rem; }
.passi li { margin-bottom: .4rem; }

/* box informativi discreti */
.box-info {
  border: 1px solid var(--linea);
  border-top: 2px solid var(--oro-soft);
  padding: 1.6rem 1.8rem;
  margin-bottom: 1.4rem;
  font-size: .98rem;
  color: var(--nero-morbido);
}
.box-info .tag {
  display: block;
  font-size: .68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .16em; color: var(--oro);
  margin-bottom: .7rem;
}
.box-info p { margin: 0; }
.box-info a { border-bottom: 1px solid var(--oro); }

/* elenco recapiti */
.contatti-lista { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid var(--linea); }
.contatti-lista li { padding: 1.1rem 0; border-top: 1px solid var(--linea); }
.contatti-lista .et {
  display: block;
  font-size: .7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: .16em; color: var(--oro); margin-bottom: .25rem;
}
.contatti-lista .val a { border-bottom: 1px solid var(--oro); }

/* griglia fotografica (galleria): foto intere, mai tagliate */
.foto-colonne { columns: 3; column-gap: 1.2rem; }
.foto-colonne figure { margin: 0 0 1.2rem; break-inside: avoid; }
.foto-colonne img { width: 100%; height: auto; border: 1px solid var(--oro-soft); display: block; }

/* rassegna stampa */
.press-list { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid var(--linea); }
.press-list li { border-top: 1px solid var(--linea); }
.press-list a { display: block; padding: 1.2rem 0; transition: opacity .3s ease; }
.press-list a:hover { opacity: .6; }
.press-list .fonte {
  display: block;
  font-size: .7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: .16em; color: var(--oro); margin-bottom: .3rem;
}

/* blocco "prossimamente" centrato */
.prossimamente { text-align: center; max-width: 620px; margin: 0 auto; }
.prossimamente .tag-soon {
  display: inline-block;
  font-size: .72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .2em; color: var(--oro); margin-bottom: 1.6rem;
}
.prossimamente h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 500; margin-bottom: 1.2rem; }
.prossimamente p { color: var(--grigio); }

/* colonne allineate in alto (contatti) */
.split--top { align-items: start; }

/* didascalia sotto le immagini */
.didascalia { font-size: .9rem; color: var(--grigio); margin-top: 1rem; text-align: center; }

/* ---------- Banner cookie ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--bianco);
  border-top: 1px solid var(--oro-soft);
  box-shadow: 0 -8px 30px rgba(26, 26, 26, .08);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .8rem 2rem;
  padding: 1rem var(--pad);
}
.cookie-banner .cb-text { margin: 0; font-size: .9rem; color: var(--nero-morbido); }
.cookie-banner a { border-bottom: 1px solid var(--oro); white-space: nowrap; }
.cb-btn {
  font-family: var(--font);
  font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em;
  background: var(--blu-notte); color: #F2EEE4;
  border: 1px solid var(--oro);
  padding: .65rem 1.5rem;
  cursor: pointer;
  transition: opacity .3s ease;
}
.cb-btn:hover { opacity: .82; }

@media (max-width: 760px) {
  .art-item { grid-template-columns: 1fr; gap: 1.2rem; }
  .cal-item { grid-template-columns: 1fr; gap: .4rem; }
  .form .due { grid-template-columns: 1fr; gap: 0; }
  .foto-colonne { columns: 2; }
  .cookie-banner { flex-direction: column; text-align: center; gap: .8rem; }
}
@media (max-width: 480px) {
  .foto-colonne { columns: 1; }
}

/* =====================================================================
   Pagina Partnership: blocco in evidenza (con foto) + elenco partner
   ===================================================================== */
.partner-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 500; line-height: 1.2; margin: 0 0 .7rem; }
.partner-featured .eyebrow { margin: 0 0 1.4rem; }
.partner-desc { font-size: 1.12rem; line-height: 1.7; color: var(--nero-morbido); margin: 0 0 1.8rem; }
.partner-links { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.7rem; margin: 0; }
.partner-links__label {
  font-size: .82rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .16em; color: var(--grigio);
}

.partner-lista { border-top: 1px solid var(--linea); }
.partner {
  padding: clamp(1.8rem, 3.5vw, 2.6rem) 0;
  border-bottom: 1px solid var(--linea);
}
.partner h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); font-weight: 500; margin: 0 0 .6rem; }
.partner p { color: var(--grigio); margin: 0 0 1rem; max-width: 62ch; }

/* =====================================================================
   Segnaposto foto (immagine non ancora fornita) + preghiera (testo liturgico)
   ===================================================================== */
.ph-foto {
  display: flex; align-items: center; justify-content: center; text-align: center;
  width: 100%; min-height: 170px; padding: 1.4rem;
  border: 1px dashed var(--oro-soft);
  background: rgba(176, 141, 46, .06);
  color: var(--grigio); font-size: .82rem; line-height: 1.5; letter-spacing: .02em;
}
.articolo-foto .ph-foto { min-height: clamp(240px, 34vw, 360px); }

/* preghiera: citazione liturgica, rientrata con filetto oro a lato */
.preghiera {
  margin: clamp(2rem, 4vw, 3rem) 0;
  padding: .3rem 0 .3rem clamp(1.2rem, 3vw, 1.8rem);
  border-left: 2px solid var(--oro);
  font-style: italic;
  color: var(--nero-morbido);
}
.preghiera p { margin: 0 0 1rem; }
.preghiera p:last-child { margin-bottom: 0; }
.preghiera .preghiera-amen { font-style: normal; font-weight: 600; letter-spacing: .04em; }

/* =====================================================================
   Galleria = archivio degli EVENTI PASSATI (scheda per evento)
   ===================================================================== */
.ev-arch {
  padding-bottom: var(--sez);
  margin-bottom: var(--sez);
  border-bottom: 1px solid var(--linea);
}
.ev-arch:last-child { border-bottom: 0; margin-bottom: 0; }
.ev-arch__media { margin: 0 0 clamp(1.6rem, 3vw, 2.4rem); max-width: 760px; }
.ev-arch__media img { width: 100%; height: auto; border: 1px solid var(--oro-soft); }
.ev-arch__data {
  font-size: .82rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .18em; color: var(--oro); margin: 0 0 .7rem;
}
.ev-arch__title {
  font-size: clamp(1.5rem, 2.8vw, 2.05rem); font-weight: 500;
  line-height: 1.25; margin: 0 0 1.5rem;
}
.ev-arch__testo { max-width: var(--read); }
.ev-arch__testo p { color: var(--nero-morbido); font-size: 1.08rem; line-height: 1.8; }
.ev-arch__links { margin-top: 1.8rem; }
.ev-arch .press-list { max-width: var(--read); margin-top: 1rem; }
.ev-arch__sub {
  font-size: .82rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .16em; color: var(--grigio); margin: 2.2rem 0 .4rem;
}
/* stato vuoto: nessun evento futuro */
.ev-vuoto {
  border-top: 1px solid var(--linea);
  border-bottom: 1px solid var(--linea);
  padding: clamp(2.4rem, 5vw, 3.4rem) 0;
  color: var(--grigio);
  font-size: 1.12rem;
}

/* prossimo evento: locandina intera e data in primo piano */
.event-feature {
  display: grid;
  grid-template-columns: minmax(260px, 440px) 1fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
  border-top: 1px solid var(--linea);
  border-bottom: 1px solid var(--linea);
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.event-feature__media { margin: 0; }
.event-feature__media img { width: 100%; height: auto; display: block; border: 1px solid var(--oro-soft); }
.event-feature__date {
  margin: 0 0 1.2rem;
  color: var(--oro);
  font-size: clamp(2.5rem, 5.6vw, 5.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
}
.event-feature__title {
  margin: 0 0 1.2rem;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
}
.event-feature__details { max-width: 38rem; color: var(--grigio); margin: 0 0 1.8rem; }

@media (max-width: 760px) {
  .event-feature { grid-template-columns: 1fr; }
  .event-feature__media { max-width: 440px; }
}

/* =====================================================================
   Blocco 3 — Feste e ricorrenze: calendario indice + elenco voci
   ===================================================================== */
.fs-cal { border-top: 1px solid var(--linea); }
.fs-cal-row {
  display: grid; grid-template-columns: minmax(160px, 230px) 1fr;
  gap: 1rem 1.5rem; padding: .85rem 0;
  border-bottom: 1px solid var(--linea);
  transition: opacity .3s ease;
}
.fs-cal-row:hover { opacity: .6; }
.fs-cal-d { font-weight: 600; font-size: .95rem; }
.fs-cal-n { color: var(--grigio); font-size: .95rem; }
.fs-cal-row.is-next { border-left: 2px solid var(--oro); padding-left: 1rem; }
.fs-cal-row.is-next .fs-cal-d,
.fs-cal-row.is-next .fs-cal-n { color: var(--oro); font-weight: 600; }

.fs-lista { border-top: 1px solid var(--linea); }
.fs-voce {
  display: grid; grid-template-columns: minmax(200px, 290px) 1fr;
  gap: clamp(1.4rem, 3.5vw, 3rem);
  align-items: start;
  padding: clamp(1.8rem, 3.5vw, 2.6rem) 0;
  border-bottom: 1px solid var(--linea);
  scroll-margin-top: 100px;
}
.fs-media { margin: 0; }
.fs-media img { width: 100%; height: auto; border: 1px solid var(--oro-soft); }
.fs-media .ph-foto { min-height: 150px; }
.fs-data {
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .16em; color: var(--oro); margin: 0 0 .5rem;
}
.fs-nome { font-size: clamp(1.2rem, 2.1vw, 1.5rem); font-weight: 500; line-height: 1.3; margin: 0 0 .8rem; }
.fs-desc { color: var(--nero-morbido); margin: 0; line-height: 1.75; }
.fs-voce .cal-badge { display: none; margin-top: .9rem; }
.fs-voce.is-next { border-left: 2px solid var(--oro); padding-left: clamp(1rem, 2vw, 1.5rem); }
.fs-voce.is-next .cal-badge { display: block; }
.fs-nota {
  max-width: var(--read); margin: clamp(2rem, 4vw, 3rem) 0 0;
  font-size: .95rem; color: var(--grigio); line-height: 1.7;
  padding-left: 1rem; border-left: 1px solid var(--oro-soft);
}

@media (max-width: 760px) {
  .fs-cal-row { grid-template-columns: 1fr; gap: .2rem; }
  .fs-voce { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* =====================================================================
   Blocco 4 — Modulo cartaceo (download PDF) + quote associative
   ===================================================================== */
.te-pdf { max-width: 34rem; }
.te-pdf .btn { margin-bottom: 1.3rem; }
.te-pdf__nota { font-size: .98rem; color: var(--grigio); line-height: 1.7; margin: 0; }
.te-pdf__nota a { border-bottom: 1px solid var(--oro); }

/* elenco sobrio delle quote: nome a sinistra, importo a destra */
.quote { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--linea); max-width: 30rem; }
.quote li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem;
  padding: 1rem 0; border-bottom: 1px solid var(--linea);
}
.quote__n { color: var(--nero-morbido); }
.quote__v { font-weight: 600; white-space: nowrap; color: var(--oro); }

/* freccia dopo i link freccia anche fuori dalle sezioni a due colonne */
.arrow-link--fr::after { content: "\00A0\2192"; color: var(--oro); font-size: 1.15em; }

/* pagina di ringraziamento: blocco centrato e arioso */
.grazie { text-align: center; max-width: 640px; margin: 0 auto; padding-bottom: var(--sez); }
.grazie__testo { font-size: clamp(1.1rem, 1.8vw, 1.28rem); line-height: 1.75; color: var(--nero-morbido); margin: 0 auto 2.6rem; }

/* =====================================================================
   Modulo: consenso privacy, messaggi di errore, stato di invio
   ===================================================================== */
.consenso { display: flex; flex-wrap: wrap; align-items: flex-start; gap: .7rem; margin: 0 0 1.4rem; }
/* Il messaggio di errore va a capo, sotto la casella, non di fianco. */
.consenso .campo-errore { flex: 0 0 100%; margin-top: 0; }
.consenso input[type="checkbox"] {
  width: 18px; height: 18px; margin: .28rem 0 0; flex: 0 0 auto;
  accent-color: var(--blu-notte); cursor: pointer;
}
.consenso label { font-size: .95rem; line-height: 1.6; color: var(--nero-morbido); cursor: pointer; }
.consenso a { border-bottom: 1px solid var(--oro); }

.campo-errore {
  display: block; margin-top: .45rem;
  font-size: .88rem; color: #9A1720;
}
.campo input.is-invalid, .campo textarea.is-invalid { border-color: #9A1720; }

.form-errore {
  margin: 1.2rem 0 0; padding: 1rem 1.2rem;
  border: 1px solid #9A1720; border-left-width: 2px;
  font-size: .95rem; line-height: 1.6; color: var(--nero-morbido);
}
.form-errore a { border-bottom: 1px solid var(--oro); }

.btn[disabled] { opacity: .65; cursor: default; }

/* Campo esca antispam: invisibile e non raggiungibile da tastiera. */
.esca { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* Numeri di telefono: area toccabile comoda su mobile */
.site-footer li a[href^="tel:"],
.contatti-lista a[href^="tel:"] { display: inline-block; padding: .25rem 0; }
@media (max-width: 760px) {
  .site-footer li a[href^="tel:"],
  .contatti-lista a[href^="tel:"] { padding: .45rem 0; }
}
