
:root {
  --bg: #07090b;
  --bg-soft: #0b0f13;
  --card: #0e1317;
  --card-2: #11171c;
  --text: #f4f6f7;
  --muted: #a0a8ae;
  --line: #252d33;
  --line-bright: #39434b;
  --red: #ef2727;
  --red-dark: #8e0d0d;
  --max: 1180px;
  --radius: 17px;
  --header: 76px;
  --shadow: 0 18px 55px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(30,44,58,.22), transparent 42rem),
    linear-gradient(180deg, #06080a 0%, #090c0f 50%, #050607 100%);
  font-family: "Segoe UI", Arial, sans-serif;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.container { width: min(var(--max), calc(100% - 34px)); margin-inline: auto; }
.display {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.kicker {
  color: var(--red);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.muted { color: var(--muted); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header);
  background: linear-gradient(180deg, rgba(4,6,8,.96), rgba(4,6,8,.78) 72%, transparent);
  backdrop-filter: blur(10px);
}
.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  display: inline-flex;
  align-items: center;
  width: 158px;
  height: 60px;
  overflow: hidden;
  flex: 0 0 auto;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.main-nav a {
  position: relative;
  color: #d4dade;
  padding-block: 12px;
}
.main-nav a:hover,
.main-nav a.active { color: white; }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: var(--red);
}
.menu-button {
  display: none;
  width: 44px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line-bright);
  border-radius: 10px;
  background: rgba(9,13,16,.82);
  cursor: pointer;
}
.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: white;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-button.open span { opacity: 0; }
.menu-button.open::before { transform: translateY(7px) rotate(45deg); }
.menu-button.open::after { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  min-height: 675px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header) + 70px) 0 74px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("../images/team.webp") 50% 28% / cover no-repeat;
  transform: scale(1.01);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4,6,8,.94) 0%, rgba(4,6,8,.62) 38%, rgba(4,6,8,.14) 72%),
    linear-gradient(0deg, #07090b 0%, rgba(7,9,11,.68) 22%, transparent 55%),
    linear-gradient(180deg, rgba(3,4,5,.34), transparent 35%);
}
.hero-glow {
  position: absolute;
  z-index: -1;
  inset: auto -16% -42% 30%;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,24,24,.2), transparent 64%);
  filter: blur(30px);
}
.hero-copy { width: min(650px, 100%); }
.hero-copy h1 {
  margin: 10px 0 17px;
  font-size: clamp(3.5rem, 8vw, 7.6rem);
  line-height: .84;
  text-shadow: 0 10px 34px rgba(0,0,0,.75);
}
.hero-copy h1 span { color: var(--red); }
.hero-copy p {
  max-width: 570px;
  margin: 0;
  color: #d7dcdf;
  font-size: clamp(1rem, 1.65vw, 1.22rem);
  line-height: 1.62;
  text-shadow: 0 3px 14px #000;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid #3b454d;
  border-radius: 8px;
  background: rgba(13,18,22,.9);
  color: #fff;
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); border-color: #69747d; }
.button.primary {
  border-color: #d22a2a;
  background: linear-gradient(135deg, #e62c2c, #8e1010);
  box-shadow: 0 10px 28px rgba(176,16,16,.28);
}
.button .arrow { color: #ff4444; font-size: 1.25rem; line-height: 0; }
.button.primary .arrow { color: white; }
.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 35px;
}
.hero-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #777f84;
}
.hero-dots span:first-child { background: var(--red); }


/* Homepage hero image safety:
   the fixed navigation no longer covers the team,
   and the complete source image remains visible on wide desktop screens. */
.home-hero {
  margin-top: var(--header);
  min-height: clamp(640px, calc(100svh - var(--header)), 790px);
  padding: 74px 0 70px;
  background-color: #050709;
}
.home-hero::before {
  background-color: #050709;
  background-image:
    url("../images/team.webp"),
    url("../images/team.webp");
  background-repeat: no-repeat, no-repeat;
  background-size: auto 100%, cover;
  background-position: center top, center 28%;
}
.home-hero::after {
  background:
    linear-gradient(90deg, rgba(4,6,8,.91) 0%, rgba(4,6,8,.56) 34%, rgba(4,6,8,.12) 70%, rgba(4,6,8,.38) 100%),
    linear-gradient(0deg, #07090b 0%, rgba(7,9,11,.73) 22%, transparent 52%),
    linear-gradient(180deg, rgba(3,4,5,.12), transparent 34%);
}

/* Common sections */
.section { padding: 72px 0; }
.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 18px;
}
.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  white-space: nowrap;
}
.red-line {
  width: clamp(70px, 12vw, 145px);
  height: 4px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.view-all {
  flex: 0 0 auto;
  color: #cbd1d5;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* Story list exactly follows desktop/mobile mockup */
.story-list {
  display: grid;
  gap: 14px;
}
.story-card {
  min-height: 320px;
  display: grid;
  grid-template-columns: minmax(0, 63%) minmax(290px, 37%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #0e1317, #090c0f);
  box-shadow: var(--shadow);
}
.story-card-media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #080a0c;
}
.story-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(10,14,17,.62));
  pointer-events: none;
}
.story-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s ease;
}
.story-card:hover .story-card-media img { transform: scale(1.025); }
.story-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 30px;
}
.story-card h3 {
  margin: 7px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}
.story-card p {
  margin: 0;
  color: #b9c1c6;
  line-height: 1.55;
}
.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0 18px;
  color: #89939a;
  font-size: .75rem;
}
.story-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.story-meta span::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1px solid #73808a;
  border-radius: 50%;
}
.story-card .button { align-self: flex-start; }
.story-card.is-locked { opacity: .86; }
.story-card.is-locked .story-card-media img { filter: saturate(.72) brightness(.72); }
.status {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 18px;
  padding: 8px 11px;
  border: 1px solid #353f46;
  border-radius: 7px;
  color: #929ca3;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* About / characters */
.about-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #0b0f12;
}
.about-image { min-height: 460px; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 64px);
}
.about-copy h2 {
  margin: 8px 0 17px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: .95;
}
.about-copy p { margin: 0 0 17px; color: #b5bec4; line-height: 1.75; }

.character-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.character-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0d1114;
}
.character-card img { width: 100%; height: 100%; object-fit: cover; }
.character-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,7,9,.96), transparent 62%);
}
.character-info {
  position: absolute;
  z-index: 2;
  inset: auto 20px 20px;
}
.character-info h3 { margin: 4px 0 0; font-size: 1.65rem; }

/* CTA/Footer */
.join-panel {
  min-height: 245px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #07090b;
}
.join-panel::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("../images/logo.webp") 50% 48% / cover no-repeat;
  opacity: .5;
}
.join-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, #07090bf3 0%, #07090bbc 55%, #07090b68);
}
.join-copy { padding: 40px; max-width: 640px; }
.join-copy h2 { margin: 8px 0 14px; font-size: clamp(2.2rem, 5vw, 4.4rem); }
.join-copy p { color: #bbc3c8; line-height: 1.65; }

.site-footer {
  margin-top: 34px;
  border-top: 1px solid #1d2429;
  background: #050607;
}
.footer-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #7e8990;
  font-size: .76rem;
}
.footer-links { display: flex; gap: 22px; }

/* Toast */
.toast {
  position: fixed;
  z-index: 150;
  right: 20px;
  bottom: 20px;
  max-width: min(390px, calc(100% - 40px));
  padding: 15px 17px;
  border: 1px solid #3b454c;
  border-radius: 10px;
  background: #11171ceF;
  color: #e8ebed;
  box-shadow: 0 15px 45px #0008;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* Story reader page */
.reader-body { background: #07090b; }
.reading-progress {
  position: fixed;
  z-index: 200;
  inset: 0 0 auto;
  height: 3px;
  background: transparent;
}
.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
}
.reader-header {
  position: fixed;
  z-index: 100;
  inset: 3px 0 auto;
  height: 68px;
  background: rgba(5,7,9,.9);
  border-bottom: 1px solid rgba(48,58,65,.75);
  backdrop-filter: blur(12px);
}
.reader-nav {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d7dcdf;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.reader-brand { margin-left: auto; color: #9ba4aa; font-size: .73rem; letter-spacing: .12em; }
.reader-hero {
  min-height: 77svh;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding: 130px 0 72px;
}
.reader-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("../images/convoy.webp") center / cover no-repeat;
}
.reader-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,6,8,.91), rgba(4,6,8,.32) 75%),
    linear-gradient(0deg, #07090b, transparent 58%);
}
.reader-hero-copy { max-width: 740px; }
.reader-hero h1 {
  margin: 9px 0 17px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .88;
}
.reader-deck { max-width: 650px; color: #d2d8dc; font-size: 1.12rem; line-height: 1.65; }
.reader-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; color: #9da6ac; font-size: .8rem; }

.story-article {
  width: min(770px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0 90px;
}
.story-article .lead {
  color: #e4e8ea;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  line-height: 1.8;
}
.story-article p {
  color: #c0c7cc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.06rem, 1.7vw, 1.19rem);
  line-height: 1.92;
}
.story-article h2 {
  margin: 65px 0 20px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1;
}
.story-article blockquote {
  margin: 44px 0;
  padding: 5px 0 5px 24px;
  border-left: 3px solid var(--red);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
  font-style: italic;
  line-height: 1.55;
}
.story-figure {
  width: min(1060px, calc(100% - 30px));
  margin: 45px auto;
}
.story-figure img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow);
}
.story-figure figcaption {
  width: min(770px, 100%);
  margin: 11px auto 0;
  color: #77828a;
  font-size: .78rem;
  line-height: 1.5;
}
.end-card {
  width: min(900px, calc(100% - 34px));
  margin: 0 auto 80px;
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, #11171c, #090c0f);
  text-align: center;
}
.end-card h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
.end-card p { color: #aeb7bd; line-height: 1.65; }

/* Responsive */
@media (max-width: 940px) {
  :root { --header: 68px; }
  .logo { width: 138px; height: 52px; }
  .menu-button { display: block; }
  .main-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 17px 19px;
    background: rgba(7,9,11,.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .main-nav a {
    padding: 15px 3px;
    border-bottom: 1px solid #1f272c;
  }
  .main-nav a.active::after { display: none; }
  .story-card { grid-template-columns: 58% 42%; }
  .about-panel { grid-template-columns: 1fr; }
  .about-image { min-height: 420px; }
  .character-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(var(--max), calc(100% - 22px)); }
  .hero {
    min-height: 650px;
    align-items: flex-end;
    padding: 110px 0 42px;
  }
  .home-hero {
    margin-top: var(--header);
    min-height: 650px;
    padding: 84px 0 42px;
  }
  .home-hero::before {
    background-size: auto 69%, cover;
    background-position: center top, center top;
    background-repeat: no-repeat, no-repeat;
  }
  .home-hero::after {
    background:
      linear-gradient(0deg, #07090b 0%, rgba(7,9,11,.95) 29%, rgba(7,9,11,.24) 65%),
      linear-gradient(90deg, rgba(4,6,8,.30), rgba(4,6,8,.05));
  }
  .hero-copy h1 { font-size: clamp(3.25rem, 18vw, 5rem); }
  .hero-copy p { max-width: 95%; font-size: .98rem; }
  .actions { gap: 9px; }
  .button { width: 100%; }
  .hero-dots { justify-content: center; margin-top: 25px; }

  .section { padding: 54px 0; }
  .section-title-row { align-items: flex-start; }
  .section-title { display: block; }
  .section-title h2 { white-space: normal; }
  .red-line { margin-top: 10px; }
  .view-all { margin-top: 11px; }

  .story-card {
    display: block;
    min-height: 0;
    border-radius: 14px;
  }
  .story-card-media {
    min-height: 0;
    height: clamp(215px, 62vw, 330px);
  }
  .story-card-media::after {
    background: linear-gradient(0deg, rgba(10,14,17,.72), transparent 48%);
  }
  .story-card-body { padding: 22px 20px 24px; }
  .story-card h3 { font-size: 2rem; }
  .story-card .button { width: auto; }
  .story-meta { margin: 18px 0 16px; }

  .about-image { min-height: 310px; }
  .about-copy { padding: 28px 22px 34px; }
  .character-strip {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 7px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .character-strip::-webkit-scrollbar { display: none; }
  .character-card {
    min-width: 77vw;
    min-height: 390px;
    scroll-snap-align: start;
  }
  .join-copy { padding: 30px 23px; }
  .footer-inner { min-height: 120px; flex-direction: column; justify-content: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  .reader-brand { display: none; }
  .reader-hero {
    min-height: 72svh;
    padding: 105px 0 45px;
  }
  .reader-hero::before { background-position: 58% center; }
  .reader-hero::after {
    background:
      linear-gradient(0deg, #07090b, rgba(7,9,11,.76) 40%, rgba(7,9,11,.15)),
      linear-gradient(90deg, rgba(4,6,8,.62), transparent);
  }
  .reader-hero h1 { font-size: clamp(3.05rem, 17vw, 5.2rem); }
  .story-article { width: min(100% - 28px, 770px); padding-top: 36px; }
  .story-article p { font-size: 1.06rem; line-height: 1.82; }
  .story-article h2 { margin-top: 50px; }
  .story-figure {
    width: calc(100% - 14px);
    margin: 32px auto;
  }
  .story-figure img {
    min-height: 250px;
    max-height: 460px;
  }
}

/* ===== История «Лихие 90-е» (story-90.html) ===== */
.reader-hero.hero-90::before {
  background: url("../images/story90/frame-16.jpg") center 24% / cover no-repeat;
}
.chapter-kicker {
  margin: 70px 0 -6px;
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .19em;
  text-transform: uppercase;
  text-align: center;
}
.story-article .chapter-kicker + h2 { margin-top: 8px; text-align: center; }

/* ===== Досье стаи (team.html) ===== */
.hero-team::before {
  background: url("../images/chars/team-full.jpg") center 18% / cover no-repeat;
}
.hero-team::after {
  background:
    linear-gradient(90deg, rgba(4,6,8,.9) 0%, rgba(4,6,8,.45) 42%, rgba(4,6,8,.16) 74%),
    linear-gradient(0deg, #07090b 0%, rgba(7,9,11,.66) 24%, transparent 58%);
}
.emblem-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #0b0f12;
}
.emblem-panel .about-image { min-height: 380px; }
.dossier-list { display: grid; gap: 16px; margin-top: 8px; }
.dossier-card {
  display: grid;
  grid-template-columns: minmax(0, 42%) 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #0e1317, #090c0f);
  box-shadow: var(--shadow);
}
.dossier-card:nth-child(even) { grid-template-columns: 1fr minmax(0, 42%); }
.dossier-card:nth-child(even) .dossier-photo { order: 2; }
.dossier-photo {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #080a0c;
}
.dossier-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform .55s ease;
}
.dossier-card:hover .dossier-photo img { transform: scale(1.03); }
.dossier-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3.6vw, 42px);
}
.dossier-body h3 {
  margin: 7px 0 4px;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1;
}
.dossier-role {
  color: #8d979e;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.dossier-body p {
  margin: 14px 0 0;
  color: #b9c1c6;
  line-height: 1.72;
}
.dossier-mark {
  margin-top: 17px;
  padding: 13px 15px;
  border: 1px solid #2a333a;
  border-left: 3px solid var(--red);
  border-radius: 9px;
  background: rgba(10,14,17,.66);
  color: #aab3b9;
  font-size: .87rem;
  line-height: 1.6;
}
.dossier-mark b { color: #dfe4e7; }
.dossier-quote {
  margin: 18px 0 0;
  color: #e6eaec;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.6;
}
.dossier-quote::before { content: "«"; color: var(--red); }
.dossier-quote::after { content: "»"; color: var(--red); }

@media (max-width: 940px) {
  .emblem-panel { grid-template-columns: 1fr; }
  .dossier-card,
  .dossier-card:nth-child(even) { grid-template-columns: 1fr; }
  .dossier-card:nth-child(even) .dossier-photo { order: 0; }
  .dossier-photo { min-height: 0; height: clamp(250px, 58vw, 420px); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
