:root {
  --white: #ffffff;
  --off: #fafafa;
  --ink: #0a0a0a;
  --ink-soft: #4a4a4a;
  --ink-mute: #8a8a8a;
  --red: #e11d1d;
  --red-deep: #b01010;
  --rule: #e6e6e6;
  --rule-strong: #1a1a1a;
  --sans: "Helvetica Neue", Helvetica, Arial, "Liberation Sans", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "Courier New", monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--red); color: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 3.5vw, 56px); }

/* ============ NAV ============ */
nav.top {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule-strong);
}
nav.top .bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(20px, 3.5vw, 56px);
  max-width: 1200px;
  margin: 0 auto;
}
nav.top .mark {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--red);
}
nav.top ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
nav.top ul a {
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}
nav.top ul a:hover { color: var(--red); }
nav.top ul a.is-active { color: var(--red); }
nav.top ul a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}
nav.top ul a:hover::after,
nav.top ul a.is-active::after { width: 100%; }
nav.top .social-mini {
  display: flex;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
nav.top .social-mini a:hover { color: var(--red); }
@media (max-width: 900px) {
  nav.top ul { display: none; }
  nav.top .bar { grid-template-columns: 1fr auto; }
}

/* ============ PAGE HEADER (per pagine interne) ============ */
.page-header {
  padding: clamp(40px, 5vw, 72px) 0 clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--rule-strong);
}
.page-header .breadcrumb {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.page-header .breadcrumb a {
  color: var(--ink-mute);
  transition: color 0.2s;
}
.page-header .breadcrumb a:hover { color: var(--red); }
.page-header .breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
.page-header h1 {
  font-weight: 900;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--red);
}
.page-header .subtitle {
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.35;
  color: var(--ink);
  margin-top: 18px;
  max-width: 60ch;
  letter-spacing: -0.01em;
}
.back-to-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(40px, 5vw, 64px);
  padding: 12px 22px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: all 0.25s ease;
}
.back-to-home:hover {
  background: var(--ink);
  color: var(--white);
}
.back-to-home .arrow {
  transition: transform 0.25s;
}
.back-to-home:hover .arrow {
  transform: translateX(-3px);
}

/* ============ MASTHEAD (home only) ============ */
.masthead {
  padding: clamp(40px, 5vw, 72px) 0 clamp(40px, 5vw, 56px);
  border-bottom: 1px solid var(--rule-strong);
}
.masthead-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 780px) {
  .masthead-grid { grid-template-columns: 1fr; gap: 32px; }
}
h1.name {
  font-weight: 900;
  font-size: clamp(58px, 13vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--red);
}
h1.name .rielli {
  display: block;
  padding-left: clamp(16px, 4vw, 48px);
  margin-top: -0.05em;
  color: var(--red);
}

.social-blobs {
  display: flex;
  gap: 8px;
  margin-top: clamp(28px, 3.5vw, 40px);
}
.social-blobs a {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.social-blobs a::before {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--red);
  z-index: 0;
  transition: border-radius 0.6s, background 0.3s;
  filter: drop-shadow(0 2px 0 rgba(157, 42, 16, 0.35));
}
.social-blobs a:nth-child(1)::before { border-radius: 62% 38% 50% 50% / 45% 58% 42% 55%; }
.social-blobs a:nth-child(2)::before { border-radius: 44% 56% 60% 40% / 58% 42% 58% 42%; }
.social-blobs a:nth-child(3)::before { border-radius: 55% 45% 38% 62% / 50% 55% 45% 50%; }
.social-blobs a:nth-child(4)::before { border-radius: 48% 52% 58% 42% / 42% 58% 42% 58%; }
.social-blobs a:nth-child(5)::before { border-radius: 58% 42% 45% 55% / 52% 45% 55% 48%; }
.social-blobs a svg {
  position: relative;
  width: 16px; height: 16px;
  fill: currentColor;
  z-index: 1;
}
.social-blobs a:hover::before {
  border-radius: 50%;
  background: var(--ink);
}
.social-blobs a:hover { transform: scale(1.08); }

.substack-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 22px 12px 18px;
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  box-shadow: 0 2px 0 var(--red-deep);
}
.substack-btn:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--ink);
}
.substack-btn svg { width: 14px; height: 14px; fill: currentColor; }

.portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--ink);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02);
}
.portrait::after {
  content: "Daniele Rielli";
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 780px) {
  .portrait { max-width: 420px; margin: 0 auto; }
}

/* ============ SECTIONS (home) ============ */
.section {
  padding: clamp(56px, 7vw, 100px) 0;
  border-bottom: 1px solid var(--rule-strong);
}
.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule-strong);
  margin-bottom: clamp(36px, 4.5vw, 56px);
}
.section-head .num {
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.9;
  color: var(--ink-mute);
  letter-spacing: -0.03em;
}
.section-head .title {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--red);
  max-width: 22ch;
}
.section-head .kicker {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  max-width: 30ch;
  line-height: 1.6;
}
@media (max-width: 780px) {
  .section-head { grid-template-columns: auto 1fr; }
  .section-head .kicker { grid-column: 1 / -1; text-align: left; margin-top: 8px; }
}

/* ============ BIO ============ */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .bio-grid { grid-template-columns: 1fr; } }
.bio-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink);
  max-width: 420px;
}
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02);
}
.bio-text h3 {
  font-weight: 900;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--red);
  margin-bottom: 24px;
}
.bio-text p {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 60ch;
}
.bio-text p strong { font-weight: 700; }
.bio-text p em { font-style: normal; font-weight: 700; color: var(--red); }
.bio-credits {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-strong);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.bio-credits .cr-label { color: var(--red); font-weight: 700; margin-bottom: 4px; }
.bio-credits .cr-value { color: var(--ink); font-weight: 500; line-height: 1.5; }

/* ============ LIBRI ============ */
.book {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(28px, 4vw, 72px);
  padding: clamp(36px, 4.5vw, 64px) 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.book:first-of-type { border-top: none; padding-top: 0; }
.book.reverse { grid-template-columns: 1.5fr 1fr; }
.book.reverse .book-visual { order: 2; }
.book.reverse .book-content { order: 1; }
@media (max-width: 880px) {
  .book, .book.reverse { grid-template-columns: 1fr; }
  .book.reverse .book-visual { order: -1; }
  .book.reverse .book-content { order: 0; }
}
.book-visual { display: flex; justify-content: center; }
.book-cover {
  width: 100%;
  max-width: 320px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.2), 0 24px 40px -20px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}
.book-cover img { width: 100%; display: block; }
.book-cover::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 8px;
  background: linear-gradient(90deg, rgba(0,0,0,0.22), transparent);
}
.book-meta {
  display: flex;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.book-meta .roman { color: var(--red); font-weight: 700; }
.book-meta .accent { color: var(--red); font-weight: 700; }
.book-title {
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 14px;
  color: var(--red);
}
.book-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 50ch;
}
.book-awards { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.award {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.award.red { background: var(--red); color: var(--white); border-color: var(--red); }
.blurbs {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
  padding-left: clamp(16px, 2vw, 24px);
  border-left: 2px solid var(--red);
}
.blurb-quote {
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 6px;
}
.blurb-quote::before { content: "«"; color: var(--red); margin-right: 3px; font-weight: 700; }
.blurb-quote::after { content: "»"; color: var(--red); margin-left: 3px; font-weight: 700; }
.blurb-source {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.book-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: all 0.25s;
}
.btn:hover { background: var(--ink); color: var(--white); }
.btn.primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn.primary:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============ PODCAST ============ */
.podcast-intro-line {
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: clamp(28px, 3.5vw, 40px);
  max-width: 60ch;
  letter-spacing: -0.01em;
}
.pdr-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: clamp(24px, 3vw, 36px) 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  margin-bottom: clamp(24px, 3vw, 36px);
}
@media (max-width: 640px) { .pdr-stats { grid-template-columns: 1fr; gap: 24px; } }
.pdr-stat { padding-left: 18px; border-left: 1px solid var(--red); }
.pdr-stat .num {
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.04em;
}
.pdr-stat .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
  line-height: 1.4;
}

.pdr-membership {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.membership-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px 16px 24px;
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition: all 0.25s;
  box-shadow: 0 2px 0 var(--red-deep);
}
.membership-btn:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--ink);
}
.membership-btn .star { font-size: 15px; line-height: 1; }
.membership-btn .arrow { transition: transform 0.25s; display: inline-block; }
.membership-btn:hover .arrow { transform: translateX(3px); }

.latest-episode { margin-bottom: clamp(40px, 5vw, 72px); }
.latest-episode-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.latest-episode-head h3 {
  font-weight: 900;
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: -0.025em;
  color: var(--ink);
}
.latest-episode-head h3 em { font-style: normal; color: var(--red); }
.latest-episode-head .yt-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 8px;
}
.latest-episode-head .yt-meta .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}
.latest-episode-video {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--ink);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.latest-episode-video iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.latest-listen {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.latest-listen a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: all 0.25s;
}
.latest-listen a:hover { background: var(--ink); color: var(--white); }

/* ============ CATEGORIE ============ */
.pdr-cats-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule-strong);
}
.pdr-cats-head h3 {
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 42px);
  letter-spacing: -0.03em;
  color: var(--ink);
}
.pdr-cats-head h3 em { font-style: normal; font-weight: 900; color: var(--red); }
.pdr-cats-head .mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.pdr-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (max-width: 1040px) { .pdr-cats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .pdr-cats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pdr-cats { grid-template-columns: 1fr; } }
.cat {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cat:hover { background: rgba(225, 29, 29, 0.04); }
.cat-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--ink);
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.cat-video iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.cat-video .cat-video-label {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 3;
  padding: 3px 7px;
  background: rgba(0,0,0,0.85);
  border: 1px solid var(--red);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  pointer-events: none;
}
.cat-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
a.cat-body {
  color: var(--ink);
  text-decoration: none;
  transition: background 0.25s;
}
a.cat-body:hover {
  background: rgba(225, 29, 29, 0.03);
}
.cat-body-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.cat-body-head .cat-num {
  font-weight: 900;
  font-size: 18px;
  color: var(--red);
  letter-spacing: -0.02em;
}
.cat-body-head .cat-arrow {
  font-size: 20px;
  color: var(--red);
  font-weight: 900;
  transition: transform 0.3s;
}
.cat:hover .cat-body-head .cat-arrow { transform: translate(3px, -3px); }
.cat .cat-title {
  font-weight: 900;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  color: var(--ink);
}
.cat .cat-title em { font-style: normal; font-weight: 900; color: var(--red); }
.cat .cat-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.cat .cat-guests {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.7;
  border-top: 1px solid var(--rule);
  padding-top: 12px;
  margin-top: auto;
}
.cat .cat-guests strong { color: var(--ink); font-weight: 600; }

.cat .cat-cta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  margin-top: auto;
  transition: color 0.25s;
}
a.cat-body:hover .cat-cta { color: var(--red-deep); }

/* ============ INSTAGRAM FEED ============ */
.ig-section {
  margin-top: clamp(64px, 7vw, 96px);
  padding-top: clamp(36px, 4vw, 56px);
  border-top: 1px solid var(--rule-strong);
}
.ig-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule-strong);
}
.ig-head h3 {
  font-weight: 900;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.03em;
  color: var(--ink);
}
.ig-head h3 em { font-style: normal; font-weight: 900; color: var(--red); }
.ig-head .ig-link {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  transition: color 0.25s, border-color 0.25s;
}
.ig-head .ig-link:hover { color: var(--red); border-bottom-color: var(--red); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: start;
}
@media (max-width: 780px) { .ig-grid { grid-template-columns: 1fr; } }

/* Instagram embed override: l'embed ufficiale si auto-dimensiona, 
   ma vogliamo che si comporti come una card all'interno della grid */
.ig-grid .instagram-media {
  margin: 0 !important;
  max-width: 100% !important;
  min-width: 0 !important;
  width: 100% !important;
  border: 1px solid var(--rule) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.ig-post {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--ink);
  border: 1px solid var(--rule);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.ig-post:hover { transform: translateY(-3px); }
.ig-thumb {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ig-thumb.t1 { background: linear-gradient(135deg, #1a1a1a 0%, #2d1a1a 100%); }
.ig-thumb.t2 { background: linear-gradient(135deg, #1a1a2d 0%, #2d1a1a 100%); }
.ig-thumb.t3 { background: linear-gradient(135deg, #2d1a1a 0%, #1a1a1a 100%); }
.ig-thumb::after {
  content: "";
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 4px 20px rgba(225,29,29,0.4);
  position: relative;
  z-index: 1;
}
.ig-thumb::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 0; height: 0;
  border-left: 15px solid var(--white);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.ig-post .ig-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  pointer-events: none;
}
.ig-post .ig-badge {
  align-self: flex-start;
  padding: 4px 8px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--red);
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.ig-post .ig-caption {
  color: var(--white);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.ig-post .ig-caption .meta {
  display: flex;
  gap: 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
  font-weight: 400;
}
.ig-note {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
}

/* ============ DIRITTI ============ */
.diritti-card-single {
  padding: clamp(32px, 4vw, 56px);
  background: var(--white);
  border: 1px solid var(--rule-strong);
  text-align: center;
}
.diritti-card-single h4 {
  font-weight: 900;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--ink);
}
.diritti-card-single p {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 auto 28px;
  max-width: 56ch;
}
.big-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--red);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: all 0.25s;
  box-shadow: 0 2px 0 var(--red-deep);
}
.big-link:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--ink);
}
.big-link .arrow { transition: transform 0.25s; }
.big-link:hover .arrow { transform: translateX(4px); }

/* ============ EVENTI / LIVE ============ */
.events-list { display: flex; flex-direction: column; }
.event {
  display: grid;
  grid-template-columns: 110px 1fr auto auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px) 0;
  border-top: 1px solid var(--rule);
  transition: background 0.3s, padding 0.3s;
  cursor: pointer;
}
.event:last-child { border-bottom: 1px solid var(--rule); }
.event:hover {
  background: rgba(225,29,29,0.04);
  padding-left: 20px;
  padding-right: 20px;
}
.event .date .day {
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 0.9;
  display: block;
  color: var(--red);
  letter-spacing: -0.04em;
}
.event .date .month {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}
.event .details .etitle {
  font-weight: 900;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 5px;
  color: var(--ink);
}
.event .details .etitle em { font-style: normal; font-weight: 900; color: var(--red); }
.event .details .esub { font-size: 14.5px; color: var(--ink-soft); }
.event .place {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
}
.event .place .city { color: var(--ink); font-weight: 700; }
.event .place .venue { color: var(--ink-mute); margin-top: 4px; }
.event .arrow-btn { font-size: 28px; color: var(--red); font-weight: 900; transition: transform 0.3s; }
.event:hover .arrow-btn { transform: translateX(6px); }
@media (max-width: 860px) {
  .event { grid-template-columns: 90px 1fr; gap: 18px; }
  .event .place, .event .arrow-btn { grid-column: 1 / -1; text-align: left; }
  .event .place { padding-top: 6px; }
  .event .arrow-btn { display: none; }
}

/* ============ CONTATTI ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
}
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid var(--rule-strong);
}
.contact-card.primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.contact-card.primary h4 { color: var(--white); }
.contact-card .ctype {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  font-weight: 700;
}
.contact-card h4 {
  font-weight: 900;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: var(--ink);
}
.contact-card p {
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 18px;
  opacity: 0.85;
}

.write-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px 13px 20px;
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 0 var(--red-deep);
}
.write-btn:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--ink);
}
.write-btn.dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: 0 2px 0 var(--ink-soft);
}
.write-btn.dark:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 3px 0 var(--red-deep);
}

.newsletter-card {
  grid-column: 1/-1;
  padding: clamp(32px, 4vw, 56px);
  background: var(--red);
  color: var(--white);
  margin-top: clamp(20px, 2.5vw, 32px);
  position: relative;
  overflow: hidden;
}
.newsletter-card::before {
  content: "SUBSTACK";
  position: absolute;
  right: -20px; bottom: -70px;
  font-size: 240px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  letter-spacing: -0.05em;
  pointer-events: none;
}
.newsletter-card .ctype { color: var(--white); opacity: 0.7; }
.newsletter-card h4 { color: var(--white); font-size: clamp(28px, 3.5vw, 44px); max-width: 20ch; }
.newsletter-card p { max-width: 42ch; position: relative; }
.newsletter-form {
  display: flex;
  max-width: 480px;
  border-bottom: 1px solid var(--white);
  position: relative;
  z-index: 2;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form button {
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 14px 0 14px 20px;
}
.newsletter-form button:hover { opacity: 0.7; }

/* ============ DOCUMENTARI / STORE ============ */
.doc-card, .store-item {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--rule-strong);
  background: var(--white);
}
@media (max-width: 880px) {
  .doc-card, .store-item { grid-template-columns: 1fr; gap: 24px; }
}
.doc-card-image, .store-item-image {
  aspect-ratio: 4/5;
  background: var(--off);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doc-card-video {
  aspect-ratio: 16/9;
  background: var(--ink);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--ink);
}
.doc-card-video iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.doc-card-image img, .store-item-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.store-item-image.placeholder-dvd,
.doc-card-image.placeholder-dvd {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: rgba(255,255,255,0.3);
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  aspect-ratio: 4/5;
  position: relative;
  flex-direction: column;
  padding: 24px;
  text-align: center;
}
.store-item-image.placeholder-dvd::before,
.doc-card-image.placeholder-dvd::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(255,255,255,0.15);
}
.store-item-image.placeholder-dvd strong,
.doc-card-image.placeholder-dvd strong {
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-transform: none;
  margin-bottom: 8px;
}

.doc-card-kicker, .store-item-kicker {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 12px;
}
.doc-card-title, .store-item-title {
  font-weight: 900;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--red);
  margin-bottom: 18px;
}
.doc-card-body, .store-item-body {
  font-size: clamp(14.5px, 1.5vw, 16.5px);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 56ch;
}
.doc-card-body strong, .store-item-body strong { font-weight: 700; }
.doc-card-body em, .store-item-body em { font-style: italic; }

.store-item + .store-item { margin-top: clamp(24px, 3vw, 40px); }

.store-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition: all 0.25s ease;
  box-shadow: 0 2px 0 var(--red-deep);
}
.store-cta:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--ink);
}
.store-cta .arrow { transition: transform 0.25s; display: inline-block; }
.store-cta:hover .arrow { transform: translateX(3px); }
.store-cta.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 2px 0 var(--ink);
}
.store-cta.ghost:hover {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 3px 0 var(--red-deep);
}
.store-note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 14px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--white);
  border-top: 1px solid var(--rule-strong);
  padding: clamp(48px, 6vw, 88px) 0 32px;
}

/* Riga social grandi in testa al footer, prima del nome gigante */
.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 36px);
  padding-bottom: clamp(28px, 4vw, 48px);
  margin-bottom: clamp(20px, 3vw, 32px);
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.footer-social {
  font-family: var(--sans);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s, transform 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-social::after {
  content: "→";
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  font-size: 0.75em;
  margin-left: 2px;
  transition: transform 0.3s;
}
.footer-social:hover {
  color: var(--red);
}
.footer-social:hover::after {
  transform: translate(3px, -3px);
}
.footer-name {
  font-weight: 900;
  font-size: clamp(72px, 16vw, 260px);
  line-height: 0.85;
  letter-spacing: -0.055em;
  color: var(--red);
  margin-bottom: clamp(36px, 5vw, 64px);
  white-space: nowrap;
  overflow: hidden;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--rule-strong);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 760px) { .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.footer-cols h5 {
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
}
.footer-cols ul { list-style: none; }
.footer-cols li { margin-bottom: 8px; }
.footer-cols a { color: var(--ink); transition: color 0.2s; }
.footer-cols a:hover { color: var(--red); }
.copyline {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-wrap: wrap;
  gap: 12px;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.9s, transform 0.9s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ NO EVENTS (live page senza date) ============ */
.no-events {
  padding: clamp(48px, 6vw, 88px) clamp(24px, 4vw, 56px);
  border: 1px solid var(--rule-strong);
  background: var(--off);
  text-align: center;
}
.no-events-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
}
.no-events-title {
  font-weight: 900;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 20px;
}
.no-events-body {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 auto 32px;
  max-width: 56ch;
}
.no-events-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
