@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:block;src:url('../fonts/inter-400-latin-ext.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:'Inter';font-style:normal;font-weight:400;font-display:block;src:url('../fonts/inter-400-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;}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:block;src:url('../fonts/inter-700-latin-ext.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:'Inter';font-style:normal;font-weight:700;font-display:block;src:url('../fonts/inter-700-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;}
@font-face{font-family:'Inter';font-style:normal;font-weight:800;font-display:block;src:url('../fonts/inter-800-latin-ext.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:'Inter';font-style:normal;font-weight:800;font-display:block;src:url('../fonts/inter-800-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;}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
:root {
  --black:#000000;
  --white:#ffffff;
  --red:#ff1a48;
  --ink:#0a0a0a;
  --muted:#8a8a8a;
}
html { overflow-x:hidden; background:var(--black); scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce) { html { scroll-behavior:auto; } }
body {
  background:var(--black); color:var(--white);
  font-family:'Inter', Arial, Helvetica, sans-serif;
  font-weight:400; font-size:16px; line-height:1.4;
  font-feature-settings:'cv11';
  overflow-x:hidden; -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility; padding-top:56px;
}
img,video { display:block; max-width:100%; }
a { color:inherit; text-decoration:none; }
button { font:inherit; cursor:pointer; background:none; border:none; color:inherit; }
:focus-visible { outline:2px solid var(--red); outline-offset:3px; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

.bar {
  position:fixed; top:0; left:0; right:0; height:56px; z-index:9000;
  display:flex; align-items:center; gap:24px; padding:0 24px;
  background:transparent; transition:background 140ms ease;
}
/* col menu aperto la barra torna piena: trasparente farebbe uno stacco
   con la tendina nera, e dietro puo' esserci una copertina chiara */
.bar.menu-open { background:var(--black); }
/* nome della sezione in cui ci si trova, incollato in alto a sinistra */
.sez {
  font-size:11px; font-weight:800; letter-spacing:normal; text-transform:uppercase;
  color:var(--white); white-space:nowrap; min-width:0;
}
/* il logo e' fisso: sulla home parte grande al centro e si aggancia qui
   scorrendo (vedi home.js); sulle altre pagine e' gia' agganciato */
.bar-brand {
  position:fixed; left:50%; top:14px; z-index:9100;
  transform:translateX(-50%); transform-origin:top left;
  will-change:transform; display:block;
}
.bar-brand img { height:28px; width:auto; display:block; }

.filters { display:flex; gap:14px; flex-wrap:nowrap; margin-left:auto; }
.filt, .bar-about {
  font-size:10px; font-weight:700; letter-spacing:normal; text-transform:uppercase;
  padding:6px 0; background:none; color:var(--white);
  transition:color 160ms ease; white-space:nowrap;
}
.filt:hover, .bar-about:hover { color:var(--red); }
.filt[aria-pressed="true"] { color:var(--red); }
.bar-about { color:var(--red); }
.bar-about:hover, .bar-about[aria-current="page"] { color:var(--white); }
.bar-menu { display:contents; }
.burger { display:none; }

footer { padding:34px 24px 30px; }
.social-icons { list-style:none; display:flex; gap:22px;
  justify-content:center; flex-wrap:wrap; }
.social-icons a { display:block; color:var(--white); transition:color 160ms ease; }
.social-icons a:hover { color:var(--red); }
.social-icons svg { width:22px; height:22px; display:block; }

.chip {
  font-size:9px; font-weight:700; letter-spacing:normal; text-transform:uppercase;
  color:var(--muted); display:inline-block;
}
a.chip:hover { color:var(--red); }

@media (max-width:900px) {
  .bar { gap:12px; padding:0 16px; }
}
@media (max-width:760px) {
  body { padding-top:56px; }
  .bar { height:56px; padding:0 16px; flex-wrap:nowrap; }
  /* sul telefono sotto la barra passano copertine anche chiare e il testo
     bianco ci si perde: una sfumatura appena accennata, invisibile sul nero */
  .bar::before {
    content:''; position:absolute; left:0; right:0; top:0; height:150%;
    background:linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,0));
    pointer-events:none; z-index:-1;
  }
  .bar.menu-open::before { display:none; }
  .burger {
    display:flex; align-items:center; justify-content:center; margin-left:auto;
    width:40px; height:40px; background:none; color:var(--white);
    transition:color 160ms ease;
  }
  .burger svg { width:20px; height:20px; }
  .burger[aria-expanded="true"] { color:var(--red); }
  .bar-menu {
    display:none; position:fixed; top:56px; left:0; right:0; z-index:9200;
    background:var(--black);
    padding:18px 16px 22px; flex-direction:column; gap:16px;
    max-height:calc(100vh - 56px); overflow-y:auto;
  }
  .bar-menu.open { display:flex; }
  .filters { width:100%; margin-left:0; flex-wrap:wrap; row-gap:14px; gap:18px; }
  .bar-about { margin-left:0; }
}
@media (prefers-reduced-motion:reduce) {
  * { transition:none !important; animation:none !important; }
}
