/* SagaTrial — redaktionelles Layout, Basis: weisses Papier, schwarze Schrift, ein Akzent */

@font-face {
  font-family: "Anton SG";
  src: url("assets/fonts/anton-latin-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Karla SG";
  src: url("assets/fonts/karla-latin-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}

:root {
  --sgt-ink: #0A0A0A;
  --sgt-paper: #FFFFFF;
  --sgt-band: #F1F1EF;
  --sgt-band-deep: #E6E6E2;
  --sgt-muted: #55554F;
  --sgt-accent: #B3122E;
  --sgt-display: "Anton SG", "Arial Narrow", Impact, sans-serif;
  --sgt-text: "Karla SG", "Helvetica Neue", Arial, sans-serif;
  --sgt-shell: 1200px;
  --sgt-pad: clamp(20px, 5vw, 44px);
  --sgt-gap: clamp(18px, 2.4vw, 30px);
  --sgt-cut: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--sgt-paper);
  color: var(--sgt-ink);
  font-family: var(--sgt-text);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.004em;
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--sgt-ink); }
a:focus-visible,
.sgt-brand:focus-visible {
  outline: 3px solid var(--sgt-accent);
  outline-offset: 3px;
}

h1, h2, h3 { margin: 0; font-weight: 400; }

p { margin: 0 0 1em; }

.sgt-shell {
  width: 100%;
  max-width: var(--sgt-shell);
  margin-inline: auto;
  padding-inline: var(--sgt-pad);
}

.sgt-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 60;
  background: var(--sgt-ink);
  color: var(--sgt-paper);
  padding: 14px 20px;
  font-size: 16px;
}
.sgt-skip:focus { left: 12px; top: 12px; }

/* ---------- Kopfbereich ---------- */
.sgt-head { background: var(--sgt-paper); padding-block: 22px 14px; }
.sgt-head__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.sgt-brand {
  font-family: var(--sgt-display);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 2px;
  display: inline-block;
}
.sgt-brand__b { color: var(--sgt-accent); }

.sgt-burger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 18px;
  font: 400 16px/1 var(--sgt-text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--sgt-paper);
  background: var(--sgt-ink);
  border: 0;
  cursor: pointer;
  clip-path: var(--sgt-cut);
}
.sgt-burger:hover { background: var(--sgt-accent); }
.sgt-burger:focus-visible { box-shadow: inset 0 0 0 3px var(--sgt-accent), inset 0 0 0 6px var(--sgt-paper); }
.sgt-burger svg { width: 18px; height: 18px; }

.sgt-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
}
.sgt-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 4px 2px;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.sgt-nav__link:hover { color: var(--sgt-accent); }

@media (max-width: 61.99em) {
  .sgt-nav { display: none; width: 100%; }
  .sgt-nav.is-open { display: block; }
  .sgt-nav__list { flex-direction: column; gap: 0; padding-top: 8px; }
  .sgt-nav__link { width: 100%; }
  .sgt-head__row { flex-wrap: wrap; }
}
@media (min-width: 62em) {
  .sgt-burger { display: none; }
  .sgt-head { padding-block: 30px 10px; }
}

/* ---------- Aktionen ---------- */
.sgt-act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  font: 400 17px/1.2 var(--sgt-text);
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--sgt-paper);
  background: var(--sgt-ink);
  border: 0;
  cursor: pointer;
  clip-path: var(--sgt-cut);
  transition: transform .16s ease, background-color .16s ease;
}
.sgt-act:hover { background: var(--sgt-accent); transform: translateY(-2px); }
.sgt-act:active { transform: translateY(1px); }
.sgt-act:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 3px var(--sgt-accent), inset 0 0 0 6px var(--sgt-paper);
}
.sgt-act--ghost {
  color: var(--sgt-ink);
  background: var(--sgt-paper);
  border: 1px solid var(--sgt-ink);
}
.sgt-act--ghost:hover { color: var(--sgt-paper); background: var(--sgt-ink); }
.sgt-act--ghost:focus-visible { box-shadow: inset 0 0 0 3px var(--sgt-accent); }

.sgt-chip {
  display: inline-block;
  padding: 7px 14px;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--sgt-ink);
  background: var(--sgt-band-deep);
  clip-path: var(--sgt-cut);
}
.sgt-chip--mark { color: var(--sgt-paper); background: var(--sgt-accent); }

/* ---------- Auszeichnungen ---------- */
.sgt-kicker {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sgt-muted);
  margin: 0 0 18px;
}
.sgt-eyebrow {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sgt-accent);
  margin: 0 0 14px;
}
.sgt-accent { color: var(--sgt-accent); }

/* ---------- Auftakt ---------- */
.sgt-hero { padding-block: 26px 96px; }
.sgt-hero__grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
}
@media (min-width: 62em) {
}
.sgt-hero__title {
  font-family: var(--sgt-display);
  font-size: clamp(52px, 11.2vw, 122px);
  line-height: 0.9;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  margin: 0 0 26px;
}
.sgt-hero__title > span { display: block; }
.sgt-lead {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.5;
  max-width: 44em;
}
.sgt-lead--tight { color: var(--sgt-muted); font-size: 17px; line-height: 1.6; }

.sgt-acts { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 0; }

.sgt-facts {
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.sgt-fact { background: var(--sgt-band); padding: 18px 20px; }
.sgt-fact b {
  display: block;
  font-family: var(--sgt-display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.sgt-fact span { display: block; font-size: 14px; color: var(--sgt-muted); margin-top: 6px; }

.sgt-crit { list-style: none; margin: 44px 0 0; padding: 0; counter-reset: sgt-c; }
.sgt-crit li {
  counter-increment: sgt-c;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 6px 14px;
  padding: 16px 0;
  align-items: start;
}
.sgt-crit li::before {
  content: counter(sgt-c, decimal-leading-zero);
  grid-column: 1;
  grid-row: 1 / 3;
  font-family: var(--sgt-display);
  font-size: 44px;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--sgt-accent);
}
.sgt-crit h3, .sgt-crit p { grid-column: 2; }
.sgt-crit h3 { font-family: var(--sgt-text); font-size: 19px; font-weight: 700; line-height: 1.25; }
.sgt-crit p { margin: 6px 0 0; font-size: 16px; color: var(--sgt-muted); max-width: 34em; }
@media (min-width: 62em) {
  .sgt-crit { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(30px, 4vw, 70px); }
  .sgt-crit li { padding: 20px 0; }
}

/* Bildcollage */
@media (min-width: 62em) {
    }

/* ---------- Bandsektionen ---------- */
.sgt-band-sec { background: var(--sgt-band); padding-block: clamp(64px, 8vw, 104px); }
.sgt-plain-sec { padding-block: clamp(60px, 7vw, 92px); }

.sgt-shead { max-width: 62em; margin-bottom: clamp(34px, 4vw, 54px); }
.sgt-h2 {
  font-family: var(--sgt-display);
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.sgt-intro { max-width: 42em; font-size: 18px; line-height: 1.55; }

/* ---------- Katalog ---------- */
.sgt-grid, .sgt-stack { display: grid; gap: var(--sgt-gap); }
@media (min-width: 48em) and (max-width: 61.99em) {
  .sgt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
  .sgt-plate--wide { grid-column: 1 / -1; }
}
@media (min-width: 62em) {
  .sgt-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); align-items: start; }
  .sgt-plate--wide { grid-column: 1 / 13; }
  .sgt-plate--tall { grid-column: 1 / 5; }
  .sgt-stack { grid-column: 5 / 13; align-content: start; }
  .sgt-plate--square {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "top top"
      "score score"
      "shots copy"
      "chips copy"
      "quote copy"
      "out out";
    column-gap: 30px;
    align-content: start;
  }
  .sgt-plate--square .sgt-plate__top { grid-area: top; }
  .sgt-plate--square .sgt-score { grid-area: score; }
  .sgt-plate--square .sgt-shots { grid-area: shots; margin-bottom: 0; }
  .sgt-plate--square .sgt-copy { grid-area: copy; }
  .sgt-plate--square .sgt-chips { grid-area: chips; }
  .sgt-plate--square .sgt-out { grid-area: out; }
  .sgt-plate--wide .sgt-copy { columns: 3; column-gap: 40px; }
  .sgt-plate--wide .sgt-copy p:first-child { margin-top: 0; }
  .sgt-pull { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(24px, 3vw, 44px); align-items: start; }
  .sgt-pull__body p:first-child { margin-top: 0; }
}

.sgt-plate { background: var(--sgt-paper); padding: clamp(20px, 2.4vw, 30px); }
.sgt-plate__top { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.sgt-plate__ico { width: 64px; height: 64px; flex: 0 0 auto; }
.sgt-plate__name {
  font-family: var(--sgt-display);
  font-size: clamp(24px, 2.5vw, 33px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.sgt-plate__cat { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sgt-accent); margin: 8px 0 0; }

.sgt-score { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px; margin: 0 0 20px; }
.sgt-score b { font-family: var(--sgt-display); font-weight: 400; font-size: 26px; letter-spacing: -0.01em; }
.sgt-score span { font-size: 14px; color: var(--sgt-muted); }
.sgt-stars { display: inline-flex; gap: 3px; }
.sgt-stars svg { width: 16px; height: 16px; fill: var(--sgt-accent); }
.sgt-stars svg.sgt-off { fill: var(--sgt-band-deep); }

.sgt-shots { display: grid; gap: 10px; margin: 0 0 22px; }
.sgt-shots--trio { grid-template-columns: 1fr; }
.sgt-shots--duo { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 40em) {
  .sgt-shots--trio { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.sgt-copy p { font-size: 17px; line-height: 1.6; }
.sgt-copy p:last-of-type { margin-bottom: 0; }

.sgt-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; }

.sgt-out { display: inline-flex; align-items: center; gap: 10px; min-height: 48px; margin-top: 22px; font-size: 16px; }
.sgt-out svg { width: 15px; height: 15px; fill: currentColor; }

.sgt-pull { border: 1px solid var(--sgt-accent); padding: clamp(22px, 2.4vw, 30px); }
.sgt-pull blockquote {
  margin: 0;
  font-family: var(--sgt-display);
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.sgt-pull p { margin: 20px 0 0; font-size: 16px; line-height: 1.6; color: var(--sgt-muted); }
.sgt-pull__body p + p { margin-top: 16px; }

/* ---------- Vergleich ---------- */
.sgt-tablewrap { overflow-x: auto; }
.sgt-tablewrap:focus-visible { outline: 3px solid var(--sgt-accent); outline-offset: 4px; }
.sgt-table { width: 100%; min-width: 46em; border-collapse: collapse; font-size: 16px; }
.sgt-table caption {
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sgt-muted);
  padding-bottom: 16px;
}
.sgt-table th, .sgt-table td { text-align: left; padding: 16px 16px; vertical-align: top; }
.sgt-table thead th {
  font-family: var(--sgt-text);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--sgt-ink);
  padding-bottom: 12px;
}
.sgt-table tbody th {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  min-width: 11em;
}
.sgt-table tbody tr:nth-child(odd) th,
.sgt-table tbody tr:nth-child(odd) td { background: var(--sgt-band); }
.sgt-yes { display: inline-flex; align-items: baseline; gap: 8px; }
.sgt-yes svg { width: 14px; height: 14px; fill: var(--sgt-accent); flex: 0 0 auto; align-self: center; }
.sgt-note { max-width: 46em; margin: 26px 0 0; font-size: 16px; color: var(--sgt-muted); }

/* ---------- Fussbereich ---------- */
.sgt-foot { background: var(--sgt-band); padding-block: clamp(56px, 6vw, 84px) 34px; }
.sgt-arch {
  background: var(--sgt-ink);
  color: var(--sgt-paper);
  padding: clamp(26px, 3.4vw, 46px);
  display: grid;
  gap: clamp(22px, 3vw, 46px);
}
@media (min-width: 56em) {
  .sgt-arch { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); align-items: start; }
}
.sgt-arch h2 {
  font-family: var(--sgt-display);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 14px 0 18px;
}
.sgt-arch p { color: #E8E8E4; }
.sgt-arch__list { list-style: none; margin: 0 0 4px; padding: 0; }
.sgt-arch__list li { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 12px; padding: 9px 0; font-size: 16px; }
.sgt-arch__list svg { width: 14px; height: 14px; fill: var(--sgt-paper); margin-top: 6px; }
.sgt-price { font-family: var(--sgt-display); font-size: clamp(34px, 4.4vw, 52px); line-height: 1; letter-spacing: -0.02em; margin: 0 0 6px; }
.sgt-price small { display: block; font-family: var(--sgt-text); font-size: 15px; letter-spacing: 0.04em; color: #E8E8E4; margin-top: 10px; }
.sgt-disc { font-size: 15px; line-height: 1.55; color: #E8E8E4; margin: 20px 0 0; }

.sgt-contact { margin-top: clamp(44px, 5vw, 72px); max-width: 40em; }
.sgt-contact h2 {
  font-family: var(--sgt-display);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.sgt-mail { display: inline-flex; align-items: center; min-height: 48px; font-size: 19px; font-weight: 700; }

.sgt-cols {
  margin-top: clamp(44px, 5vw, 70px);
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.sgt-cols h3 { font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sgt-muted); margin-bottom: 6px; }
.sgt-flist { list-style: none; margin: 0; padding: 0; }
.sgt-flist a { display: inline-flex; align-items: center; min-height: 48px; font-size: 16px; }
.sgt-copyright { margin-top: 40px; font-size: 14px; color: var(--sgt-muted); }

/* ---------- Nach oben ---------- */
.sgt-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 52px;
  height: 52px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--sgt-ink);
  color: var(--sgt-paper);
  border: 0;
  cursor: pointer;
  clip-path: var(--sgt-cut);
}
.sgt-top.is-on { display: inline-flex; }
.sgt-top:hover { background: var(--sgt-accent); }
.sgt-top:focus-visible { box-shadow: inset 0 0 0 3px var(--sgt-accent), inset 0 0 0 6px var(--sgt-paper); }
.sgt-top svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Cookie-Hinweis ---------- */
.sgt-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: var(--sgt-paper);
  box-shadow: 0 -14px 34px rgba(10, 10, 10, .12);
  display: none;
}
.sgt-cookie.is-on { display: block; }
.sgt-cookie__row {
  display: grid;
  gap: 16px;
  padding-block: 18px;
  align-items: center;
}
@media (min-width: 56em) {
  .sgt-cookie__row { grid-template-columns: minmax(0, 1fr) auto; }
}
.sgt-cookie p { margin: 0; font-size: 15px; line-height: 1.5; max-width: 62em; }
.sgt-cookie__acts { display: flex; flex-wrap: wrap; gap: 10px; }
.sgt-cookie__acts .sgt-act { min-height: 48px; padding: 12px 22px; font-size: 16px; }

/* ---------- Rechtsseiten ---------- */
.sgt-legal { padding-block: 30px clamp(56px, 6vw, 88px); }
.sgt-legal h1 {
  font-family: var(--sgt-display);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.sgt-legal__meta { font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sgt-muted); margin: 0 0 30px; }
.sgt-prose { max-width: 44em; }
.sgt-prose h2 {
  font-family: var(--sgt-display);
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 42px 0 14px;
}
.sgt-prose h3 { font-size: 18px; font-weight: 700; margin: 26px 0 8px; }
.sgt-prose ul { margin: 0 0 1em; padding-left: 22px; }
.sgt-prose li { margin-bottom: 8px; }
.sgt-prose p, .sgt-prose li { font-size: 17px; line-height: 1.62; }

.sgt-404 { padding-block: clamp(60px, 9vw, 130px); }
.sgt-404 h1 {
  font-family: var(--sgt-display);
  font-size: clamp(56px, 14vw, 150px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

/* ---------- Fragen an die Redaktion ---------- */
.sgt-faq { padding-block: clamp(58px, 7vw, 90px) clamp(62px, 7.5vw, 96px); }
.sgt-faq__list { width: 100%; }
.sgt-faq__item + .sgt-faq__item { border-top: 1px solid var(--sgt-band-deep); }

.sgt-faq__sum {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 44px);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}
.sgt-faq__sum::-webkit-details-marker { display: none; }
.sgt-faq__sum::marker { content: ""; }
.sgt-faq__sum:focus-visible { outline: 3px solid var(--sgt-accent); outline-offset: 2px; }
.sgt-faq__sum:hover .sgt-faq__q { color: var(--sgt-accent); }

.sgt-faq__q {
  margin: 0;
  font-family: var(--sgt-text);
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.008em;
  color: var(--sgt-ink);
  transition: color .16s ease;
}

.sgt-faq__ico {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sgt-band);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%);
  transition: background-color .18s ease;
}
.sgt-faq__ico svg { width: 18px; height: 18px; fill: var(--sgt-ink); transition: transform .18s ease; }
.sgt-faq__sum:hover .sgt-faq__ico { background: var(--sgt-band-deep); }
.sgt-faq__item[open] .sgt-faq__ico { background: var(--sgt-accent); }
.sgt-faq__item[open] .sgt-faq__ico svg { fill: var(--sgt-paper); transform: rotate(45deg); }

.sgt-faq__a { padding: 0 0 26px; }
.sgt-faq__a p { margin: 0; max-width: 52em; font-size: 17px; line-height: 1.62; color: var(--sgt-muted); }

@media (min-width: 62em) {
  .sgt-faq__sum { padding: 26px 0; }
  .sgt-faq__a { padding-bottom: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
