/* =====================================================================
   UN'IMMAGINE PER LA PAROLA DI DIO: IL PADRE NOSTRO
   Concorso Fotografico — Movimento Presenza del Vangelo APS
   Stylesheet — mobile first, vanilla CSS
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Blues (institutional, from the poster) */
  --ink: #0a1733;
  --blue-900: #06245c;
  --blue-800: #0a2f78;
  --blue-700: #063d99;   /* primary institutional blue */
  --blue-600: #1450c0;
  --blue-500: #2b6ae0;
  --blue-400: #5b8ef0;
  --sky-200: #cfe0fb;
  --sky-100: #e7f0ff;

  /* Sacred gold accent (used sparingly) */
  --gold: #c9a24b;          /* borders, fills, gradients, on-dark text */
  --gold-soft: #e7cf93;
  --gold-text: #8a6b1f;     /* AA-safe gold for text on light backgrounds (5:1 on #fff) */

  /* Neutrals */
  --white: #ffffff;
  --paper: #f5f8fd;
  --paper-2: #eef3fb;
  --gray-700: #44506a;
  --gray-600: #5a6480;
  --gray-400: #8a93a8;
  --line: #dde6f4;

  /* Semantic */
  --bg: var(--white);
  --text: var(--ink);
  --text-soft: var(--gray-600);

  /* Type */
  --font-display: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  /* Layout */
  --container: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(10, 35, 92, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 35, 92, 0.10);
  --shadow-lg: 0 28px 70px rgba(8, 30, 80, 0.18);
  --shadow-blue: 0 18px 50px rgba(6, 61, 153, 0.28);
  --shadow-gold: 0 16px 40px rgba(201, 162, 75, 0.30);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}
.section--dark :focus-visible,
.hero :focus-visible,
.section--countdown :focus-visible { outline-color: var(--gold-soft); }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-left: max(clamp(1.1rem, 4vw, 2.5rem), env(safe-area-inset-left));
  padding-right: max(clamp(1.1rem, 4vw, 2.5rem), env(safe-area-inset-right));
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  top: -100px; left: 1rem;
  z-index: 2000;
  background: var(--blue-700);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  z-index: 1500;
  transition: width 0.1s linear, opacity 0.3s var(--ease);
}
/* hide the progress line while a full-screen menu/modal is open */
body.nav-open .scroll-progress { opacity: 0; }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--blue-700); }
/* keep the mark a vivid blue square on any header state, so its white cross stays visible */
.brand__mark { display: inline-flex; flex: none; color: var(--blue-700); filter: drop-shadow(0 6px 14px rgba(6,61,153,.35)); }
.site-header:not(.is-scrolled) .brand__mark { color: #2f6ae0; }
.brand__mark svg { width: 38px; height: 38px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand__text small {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-600);
  font-weight: 600;
}
/* Brand readable over the dark hero before scroll */
.site-header:not(.is-scrolled) .brand__text strong { color: #fff; }
.site-header:not(.is-scrolled) .brand__text small { color: var(--sky-200); }
.site-header:not(.is-scrolled) .brand { color: #fff; }

.nav__menu { display: flex; align-items: center; gap: 1.6rem; }
.nav__list { display: flex; align-items: center; gap: 1.5rem; }
.nav__link {
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--ink);
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.28s var(--ease);
}
.nav__link:hover, .nav__link.is-current { color: var(--blue-700); }
.nav__link:hover::after, .nav__link.is-current::after { width: 100%; }
.site-header:not(.is-scrolled) .nav__link { color: rgba(255,255,255,0.92); }
.site-header:not(.is-scrolled) .nav__link:hover,
.site-header:not(.is-scrolled) .nav__link.is-current { color: #fff; }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  position: relative;
  flex: none;
}
.nav__toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2.5px; border-radius: 3px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), background 0.3s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 28px; }
.site-header:not(.is-scrolled) .nav__toggle span { background: #fff; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  padding: 0.92rem 1.6rem;
  border-radius: 999px;
  min-height: 48px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  text-align: center;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn--primary { background: var(--blue-700); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--blue-600); }
.btn--gold { background: linear-gradient(135deg, var(--gold), #d9b665); color: #2a2008; box-shadow: var(--shadow-gold); }
.btn--gold:hover { filter: brightness(1.05); }
.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.18); border-color: #fff; }
.btn--outline { background: transparent; color: var(--blue-700); border: 1.5px solid var(--blue-700); }
.btn--outline:hover { background: var(--blue-700); color: #fff; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 4rem;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(120% 90% at 50% -10%, #1a52b8 0%, #0c357f 42%, #06245c 72%, #041a47 100%);
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__bg::after {
  /* subtle grain */
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
}
.hero__rays {
  position: absolute;
  top: 0; left: 50%;
  width: 140%;
  height: 100%;
  transform: translateX(-50%);
  opacity: 0.7;
  animation: rayShift 14s ease-in-out infinite alternate;
}
@keyframes rayShift {
  from { transform: translateX(-50%) rotate(-1.5deg) scale(1.02); opacity: 0.55; }
  to   { transform: translateX(-50%) rotate(1.5deg) scale(1.08); opacity: 0.8; }
}
/* The whole fan widens around its centre/apex (600,-40): current = most closed */
.hero__rays-fan {
  transform-box: view-box;
  transform-origin: 600px -40px;
  animation: rayOpen 30s ease-in-out infinite;
}
@keyframes rayOpen {
  0%, 100% { transform: scaleX(1); }
  50%      { transform: scaleX(1.45); }
}
.hero__mote {
  position: absolute;
  left: var(--x); top: var(--y);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff, rgba(231,207,147,0.4) 60%, transparent 70%);
  box-shadow: 0 0 14px 3px rgba(231,207,147,0.4);
  opacity: 0.5;
  animation: floatMote 9s ease-in-out infinite;
  animation-delay: var(--d);
}
@keyframes floatMote {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.25; }
  50%     { transform: translateY(-26px) scale(1.4); opacity: 0.8; }
}

.hero__inner { position: relative; max-width: 880px; margin-inline: auto; text-align: center; }
.hero__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: clamp(0.66rem, 2.4vw, 0.82rem);
  color: var(--sky-200);
  margin-bottom: 1.4rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: -0.01em;
  font-size: clamp(2.5rem, 9.5vw, 5.6rem);
  margin-bottom: 1.6rem;
  text-wrap: balance;
}
.hero__title span { display: block; }
.hero__title-accent {
  color: var(--gold-soft);
  background: linear-gradient(180deg, #f4e2b5, #cf9f4a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.02em;
  /* sized to always fit "IL PADRE NOSTRO" on one line within the column */
  font-size: clamp(1.3rem, 6.4vw, 4.6rem);
}
.hero__subtitle {
  font-size: clamp(1rem, 2.7vw, 1.22rem);
  color: rgba(255,255,255,0.9);
  max-width: 60ch;
  margin: 0 auto 2.2rem;
  font-weight: 400;
}
.hero__subtitle strong { color: #fff; font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem; margin-bottom: 2.4rem; }
.hero__meta {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.8rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
}
.hero__meta li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__meta strong { color: #fff; font-weight: 600; }
.hero__meta svg {
  width: 1.05rem; height: 1.05rem; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  opacity: 0.82;
}
.inline-ico {
  width: 1.05rem; height: 1.05rem;
  display: inline-block; vertical-align: -0.18em; margin-right: 0.15rem;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  opacity: 0.82;
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 1.6rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero__scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  position: relative;
}
.hero__scroll-mouse::after {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 4px; height: 7px;
  border-radius: 2px;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, -4px); }
  40% { opacity: 1; }
  80%,100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* =====================================================================
   SECTION SHELL
   ===================================================================== */
.section {
  position: relative;
  padding-block: clamp(3.6rem, 8vw, 6.5rem);
}
.section--tight { padding-top: clamp(2.5rem, 5vw, 4rem); }
.section--paper { background: var(--paper); }
.section--info { background: var(--paper-2); padding-block: clamp(2.2rem, 5vw, 3.4rem); }
.section--partners { background: var(--white); padding-block: clamp(2.6rem, 5vw, 4rem); }

.section__head { max-width: 760px; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  color: var(--blue-600);
  margin-bottom: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section__head--center .eyebrow { justify-content: center; }
.eyebrow--light { color: var(--sky-200); }
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 5vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
.section__title--light { color: #fff; }
.section__lead {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  color: var(--text-soft);
  max-width: 65ch;
}
.section__head--center .section__lead { margin-inline: auto; }
.section__lead--light { color: rgba(255,255,255,0.82); }
.section__lead em { font-style: italic; color: var(--blue-700); font-weight: 500; }

/* Dark sections */
.section--dark {
  background:
    radial-gradient(120% 120% at 80% 0%, #0d3a8e 0%, #082a6a 45%, #051d4d 100%);
  color: #fff;
}

/* =====================================================================
   PILLARS (3 finalità)
   ===================================================================== */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #c6d6f0; }
.pillar__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-blue);
}
.pillar__icon svg { width: 30px; height: 30px; fill: currentColor; }
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.pillar p { color: var(--text-soft); font-size: 0.97rem; }

/* Quote feature */
.quote-feature {
  position: relative;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
  border-top: 1px solid var(--line);
}
.quote-feature::before {
  content: "\201C";
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.35;
  display: block;
  margin-bottom: 0.3rem;
}
.quote-feature__text {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.5rem, 4.5vw, 2.4rem);
  line-height: 1.3;
  color: var(--blue-800);
  max-width: 22ch;
  margin-inline: auto;
}
.quote-feature__author {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* =====================================================================
   VALUES
   ===================================================================== */
.values-section { text-align: center; }
.values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}
.value-chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 3.5vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.05);
  color: #fff;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.value-chip span { background: linear-gradient(180deg,#fff,var(--sky-200)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.value-chip:hover { transform: translateY(-4px) scale(1.03); border-color: var(--gold-soft); background: rgba(231,207,147,0.12); }

/* =====================================================================
   INVOCATIONS (gallery)
   ===================================================================== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.filter-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--gray-700);
  transition: all 0.25s var(--ease);
  min-height: 44px;
}
.filter-btn:hover { border-color: var(--blue-400); color: var(--blue-700); }
.filter-btn.is-active {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
/* active filter colour reflects its thematic family */
.filter-btn[data-filter="lode"].is-active { background: #2f74e8; border-color: #2f74e8; }
.filter-btn[data-filter="comunione"].is-active { background: #1a78a8; border-color: #1a78a8; }
.filter-btn[data-filter="liberazione"].is-active { background: #16356f; border-color: #16356f; }

.invocation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.invocation-card { transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.invocation-card.is-hidden {
  display: none;
}
.invocation-card__btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-direction: column;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease), border-color 0.32s var(--ease);
}
.invocation-card__btn:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: #c6d6f0;
}
.invocation-card__art {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.invocation-card__art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,20,55,0) 40%, rgba(4,20,55,0.45) 100%);
}
.invocation-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.invocation-card__btn:hover .invocation-card__img { transform: scale(1.06); }
.invocation-card__num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 9vw, 3.6rem);
  color: rgba(255,255,255,0.95);
  position: relative;
  z-index: 1;
  text-shadow: 0 6px 24px rgba(0,0,0,0.25);
  transition: transform 0.4s var(--ease);
}
.invocation-card__btn:hover .invocation-card__num { transform: scale(1.12); }
.invocation-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.invocation-card__phrase {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.22rem;
  line-height: 1.25;
  color: var(--blue-800);
}
.invocation-card__value {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-top: auto;
}
.invocations__note {
  margin-top: 1.8rem;
  text-align: center;
  color: var(--text-soft);
  font-style: italic;
  font-size: 0.95rem;
}

/* Gradient "art" tiles — colour grouped by the three thematic families */
/* Lode (I–III): luminous azure, lifted toward the light */
.art-1 { background: linear-gradient(150deg, #3f86f2, #114a9e); }
.art-2 { background: linear-gradient(150deg, #2f74e8, #0e3f8f); }
.art-3 { background: linear-gradient(150deg, #4a8ef5, #1a57ad); }
/* Comunione (IV–V): warmer mid teal-blue, the shared table */
.art-4 { background: linear-gradient(150deg, #1f86b8, #0a3a62); }
.art-5 { background: linear-gradient(150deg, #1a78a8, #0a2f52); }
/* Liberazione (VI–VII): deepest navy with a single streak of dawn */
.art-6 { background: linear-gradient(150deg, #1b3f86, #06204f); }
.art-7 { background: linear-gradient(150deg, #16356f, #04183c); }
/* light beam motif inside tiles */
.invocation-card__art::before {
  content: "";
  position: absolute;
  top: -30%; left: 50%;
  width: 60%; height: 160%;
  transform: translateX(-50%) rotate(8deg);
  background: linear-gradient(180deg, rgba(231,207,147,0.32), transparent 70%);
  filter: blur(6px);
}

/* =====================================================================
   TIMELINE
   ===================================================================== */
.timeline {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  padding-left: 2.4rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 14px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-500), var(--blue-400) 50%, var(--line));
}
.timeline__item {
  position: relative;
  padding: 0 0 1.9rem 1.6rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
  position: absolute;
  left: -2.4rem; top: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blue-700);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 0 0 5px var(--paper), var(--shadow-blue);
  z-index: 1;
}
.timeline__content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.timeline__item:hover .timeline__content { transform: translateX(5px); box-shadow: var(--shadow-md); }
.timeline__content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.timeline__content p { color: var(--text-soft); font-size: 0.96rem; }
.timeline__content a { color: var(--blue-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Specs */
.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  max-width: 760px;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
}
.spec {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.spec strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--blue-700);
  line-height: 1.2;
  word-break: break-word;
}
.spec span { font-size: 0.82rem; color: var(--gray-600); }

/* =====================================================================
   DOCUMENTS
   ===================================================================== */
.section--split { background: linear-gradient(180deg, var(--paper) 0%, #fff 100%); }
.docs {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.docs__list { margin-top: 1.4rem; display: grid; gap: 0.6rem; }
.docs__list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text-soft);
  font-size: 0.97rem;
}
.docs__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,75,0.18);
}
.docs__poster {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.8rem;
}
.docs__poster img {
  width: 190px;
  max-width: 52vw;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.docs__poster:hover img { transform: translateY(-5px) rotate(-1.2deg); box-shadow: var(--shadow-lg); }
.docs__poster-cap {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--blue-700);
}
.docs__cards { display: grid; gap: 1rem; }
.doc-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.3rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-400);
}
.doc-card__icon {
  flex: none;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
}
.doc-card--soft .doc-card__icon { background: linear-gradient(135deg, var(--gold), #d9b665); color: #2a2008; }
.doc-card__icon svg { width: 26px; height: 26px; }
.doc-card__body { flex: 1; display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.doc-card__body strong { font-family: var(--font-display); font-weight: 700; font-size: 1.04rem; color: var(--ink); }
.doc-card__body small { color: var(--gray-600); font-size: 0.82rem; }
.doc-card__action {
  flex: none;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--blue-700);
  white-space: nowrap;
  transition: transform 0.3s var(--ease);
}
.doc-card--soft .doc-card__action { color: var(--gold-text); }
.doc-card:hover .doc-card__action { transform: translateY(2px); }

/* =====================================================================
   PRIZES
   ===================================================================== */
.podium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
  align-items: end;
}
.podium__step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.podium__step:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.podium__step--1 {
  order: -1; /* first prize leads the stack on mobile */
  border-color: rgba(231,207,147,0.5);
  background: rgba(231,207,147,0.12);
  box-shadow: var(--shadow-gold);
}
.podium__medal {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.4);
}
.podium__medal--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #2a2008;
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-gold);
  width: 66px; height: 66px;
  font-size: 1.7rem;
}
.podium__step h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-bottom: 0.35rem; }
.podium__step p { color: rgba(255,255,255,0.78); font-size: 0.9rem; }
.attestato {
  text-align: center;
  margin-top: 2.2rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}
.attestato span { color: var(--gold-soft); }

/* =====================================================================
   COUNTDOWN
   ===================================================================== */
.section--countdown {
  position: relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 50% 0%, #15479f 0%, #082a6a 50%, #051d4d 100%);
}
.hero__bg--soft { opacity: 0.8; }
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  max-width: 620px;
  margin: 0 auto;
}
.count-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 1.2rem 0.4rem;
  backdrop-filter: blur(6px);
}
.count-box__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 9vw, 3.4rem);
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.count-box__label {
  display: block;
  margin-top: 0.5rem;
  font-size: clamp(0.62rem, 2.4vw, 0.78rem);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sky-200);
  font-weight: 600;
}
.countdown__deadline { margin-top: 1.8rem; font-size: 1.05rem; color: rgba(255,255,255,0.88); }
.countdown__deadline strong { color: var(--gold-soft); }
.countdown__cta { margin-top: 1.6rem; }
.countdown.is-expired { grid-template-columns: 1fr; }
.countdown__closed {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 5vw, 2rem);
  color: var(--gold-soft);
  padding: 1.5rem;
}

/* =====================================================================
   QR CARD
   ===================================================================== */
.qr-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 4vw, 2.6rem);
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 5vw, 3rem);
  box-shadow: var(--shadow-md);
}
.qr-card__code {
  display: grid;
  place-items: center;
  justify-self: center;
  padding: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.qr-card__code img { width: min(220px, 60vw); height: auto; }
.qr-card__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }

/* =====================================================================
   INFO BAND (cenacolo)
   ===================================================================== */
.info-band {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.info-band__icon {
  flex: none;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--blue-700);
  color: #fff;
}
.info-band__text h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 0.25rem; color: var(--ink); }
.info-band__text p { color: var(--text-soft); font-size: 0.96rem; }

/* =====================================================================
   PARTNERS
   ===================================================================== */
.partners__title {
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gray-600);
  margin-bottom: 1.6rem;
}
.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
.partner {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--blue-800);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.partner:hover { transform: translateY(-3px); border-color: var(--blue-400); color: var(--blue-700); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  padding-bottom: 2.6rem;
}
.brand--footer { color: var(--blue-500); margin-bottom: 1rem; }
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__text small { color: var(--sky-200); }
.footer__about { font-size: 0.92rem; max-width: 38ch; margin-bottom: 1rem; }
.footer__motto { font-family: var(--font-serif); font-style: italic; font-size: 1.12rem; color: var(--gold-soft); }
.footer__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer__links { display: grid; gap: 0.7rem; }
.footer__links a, .footer__links li { font-size: 0.92rem; color: rgba(255,255,255,0.74); transition: color 0.2s var(--ease); }
.footer__links a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-block: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer__privacy { font-size: 0.78rem; }
.footer__credit {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer__credit a {
  color: var(--gold-soft);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s var(--ease);
}
.footer__credit a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* =====================================================================
   FLOATING ELEMENTS
   ===================================================================== */
.to-top {
  position: fixed;
  right: 1.1rem; bottom: 1.1rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blue-700);
  color: #fff;
  box-shadow: var(--shadow-blue);
  opacity: 0; visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s, background 0.3s;
  z-index: 900;
}
.to-top svg { width: 22px; height: 22px; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--blue-600); transform: translateY(-3px); }

.mobile-cta {
  position: fixed;
  left: 1rem; right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 880;
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.05rem;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), #d9b665);
  color: #2a2008;
  box-shadow: var(--shadow-lg);
  transform: translateY(160%);
  transition: transform 0.4s var(--ease);
}
.mobile-cta span { font-family: var(--font-display); font-weight: 800; font-size: 1rem; }
.mobile-cta small { font-size: 0.72rem; font-weight: 600; opacity: 0.85; }
.mobile-cta.is-visible { transform: translateY(0); }

/* =====================================================================
   LIGHTBOX
   ===================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: grid;
  place-items: center;
  padding: 1.2rem;
}
.lightbox[hidden] { display: none; }
/* lock background scroll when a modal/menu is open (all viewports) */
body.nav-open { overflow: hidden; }
.lightbox__overlay {
  position: absolute; inset: 0;
  background: rgba(4, 18, 48, 0.78);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s var(--ease);
}
.lightbox__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: 90svh;
  overflow-y: auto;
  background: linear-gradient(180deg, #fff, #f3f7fe);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 5vw, 2.8rem);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: popIn 0.35s var(--ease);
  border-top: 5px solid var(--gold);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: translateY(20px) scale(0.97); } to { opacity: 1; transform: none; } }
.lightbox__close {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gray-700);
  background: rgba(10,35,92,0.06);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.lightbox__close:hover { background: rgba(10,35,92,0.14); transform: rotate(90deg); }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.lightbox__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--blue-600);
  margin-top: 0.6rem;
}
.lightbox__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 5vw, 2rem);
  line-height: 1.2;
  color: var(--blue-800);
  margin: 0.5rem 0 0.9rem;
}
.lightbox__verse {
  font-style: italic;
  color: var(--gray-700);
  font-size: 1rem;
  margin-bottom: 0.9rem;
}
.lightbox__reflection { color: var(--text-soft); font-size: 0.98rem; }
.lightbox__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.lightbox__prev, .lightbox__next {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper-2);
  color: var(--blue-700);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.lightbox__prev:hover, .lightbox__next:hover { background: var(--sky-100); transform: scale(1.08); }
.lightbox__prev svg, .lightbox__next svg { width: 24px; height: 24px; }
.lightbox__cta { order: 0; }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (min-width: 600px) {
  .specs { grid-template-columns: repeat(4, 1fr); }
  .invocation-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 880px) {
  :root { --header-h: 80px; }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .invocation-grid { grid-template-columns: repeat(3, 1fr); }
  .docs { grid-template-columns: 1fr 1fr; }
  .podium { grid-template-columns: repeat(3, 1fr); }
  .podium__step { order: 0; } /* restore 2-1-3 podium order on desktop */
  .podium__step--1 { min-height: 232px; transform: translateY(-16px) scale(1.03); }
  .podium__step--1:hover { transform: translateY(-22px) scale(1.03); }
  .podium__step--2 { min-height: 204px; }
  .podium__step--3 { min-height: 182px; }
  .qr-card { grid-template-columns: auto 1fr; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 1100px) {
  .invocation-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Mobile nav + sticky CTA ---- */
@media (max-width: 879px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 86vw);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--header-h) + 1.4rem) 1.6rem 2rem;
    background: linear-gradient(180deg, #06245c, #041a47);
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav__list li { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav__link {
    display: block;
    padding: 1.05rem 0.2rem;
    color: rgba(255,255,255,0.92) !important;
    font-size: 1.06rem;
    font-weight: 500;
  }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 1.4rem; width: 100%; }
  .mobile-cta { display: flex; }
  .to-top { bottom: calc(6.5rem + env(safe-area-inset-bottom)); }
  /* reserve room so the persistent CTA never covers the last content (on main, not body — keeps the dark footer flush) */
  main { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
}

@media (max-width: 360px) {
  .countdown { gap: 0.4rem; }
  .count-box { padding: 0.9rem 0.2rem; }
  .count-box__num { font-size: clamp(1.5rem, 8vw, 2.4rem); }
  .hero__meta { font-size: 0.84rem; }
}

/* Nav backdrop for mobile menu */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4,18,48,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
  z-index: 999;
}
.nav-backdrop.is-visible { opacity: 1; visibility: visible; }

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .hero__rays, .hero__rays-fan, .hero__mote, .hero__scroll-mouse::after { animation: none; }
}

/* Print */
@media print {
  .site-header, .to-top, .mobile-cta, .hero__scroll, .scroll-progress, .nav__toggle, .lightbox { display: none !important; }
  .hero, .section--dark, .section--countdown { background: #fff !important; color: #000 !important; }
  body { color: #000; }
  /* gradient-clipped text would print transparent — force a solid colour */
  .hero__title-accent, .value-chip span {
    -webkit-text-fill-color: #000 !important;
    color: #000 !important;
    background: none !important;
  }
}
