/* ============================================================
   Familien Pizzeria — Digitale Speisekarte
   Konzept „Holzfeuer & Rauch": warme Kohle-Dunkelheit, ein
   Flammen-Verlauf (Bernstein → Orange → Rot) fürs Feuer des
   Ofens, dazu ein unerwarteter Petrol/Türkis-Akzent als Kontrast
   – bewusst NICHT die italienische Trikolore.
   ============================================================ */

:root{
  /* Basis – warmes Kohle-Schwarz statt reinem Schwarz/Grau */
  --ink: #18120e;
  --ink-soft: #241a14;
  --ink-line: rgba(255,239,219,.14);

  /* Papier – warmes Creme statt sterilem Weiß */
  --paper: #fbf3e6;
  --paper-alt: #f3e5cf;
  --paper-line: rgba(37,24,15,.13);

  /* Flamme */
  --ember-1: #ffc93c;
  --ember-2: #fb7a1f;
  --ember-3: #d3140f;
  --flame: linear-gradient(125deg, var(--ember-1) 0%, var(--ember-2) 55%, var(--ember-3) 100%);
  --flame-soft: linear-gradient(125deg, rgba(255,201,60,.18), rgba(211,20,15,.18));

  /* Petrol – der Überraschungsakzent */
  --petrol: #0fb8a6;
  --petrol-deep: #0a7f74;
  --petrol-ink: #06332e;

  --text-hell: #fbf0e2;
  --text-stark: #241a12;
  --text-mild: #6e5c49;
  --text-mild-hell: rgba(251,240,226,.72);

  --font-display: "Fraunces", "Iowan Old Style", ui-serif, Georgia, serif;
  --font-text: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 900px;
  --gutter: 22px;
  --nav-h: 60px;

  color-scheme: light;
}

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

html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}

body{
  margin: 0;
  background: var(--paper);
  color: var(--text-stark);
  font-family: var(--font-text);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-variant-numeric: tabular-nums lining-nums;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  background-image:
    radial-gradient(900px 700px at 8% 0%, rgba(251,122,31,.11), transparent 60%),
    radial-gradient(800px 650px at 100% 8%, rgba(15,184,166,.09), transparent 55%),
    radial-gradient(750px 650px at 12% 100%, rgba(211,20,15,.07), transparent 55%),
    repeating-linear-gradient(135deg, rgba(37,24,15,.04) 0px, rgba(37,24,15,.04) 1px, transparent 1px, transparent 15px),
    radial-gradient(rgba(37,24,15,.07) 1px, transparent 1px);
  background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat;
  background-attachment: fixed, fixed, fixed, scroll, scroll;
  background-size: auto, auto, auto, auto, 4px 4px;
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}

p{ margin: 0; }

.section-inner{
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Skip link */
.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--text-hell);
  padding: 12px 18px;
  z-index: 1000;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip-link:focus{
  left: 0;
  top: 0;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible{
  outline: 2px solid var(--petrol);
  outline-offset: 3px;
}

/* ============ Header / Hero – Holzofen mit Feuer & Pizza ============ */
.site-header{
  position: relative;
  background: var(--ink);
  color: var(--text-hell);
  padding: 88px var(--gutter) 76px;
  overflow: hidden;
  isolation: isolate;
}
.site-header__bg{
  position: absolute;
  inset: -60px 0 0 0;
  background-size: cover;
  background-position: center 58%;
  opacity: 0;
  /* volle Farbe – kein Graustufen-Filter */
  filter: saturate(1.12) contrast(1.05) brightness(0.92);
  z-index: -2;
  transition: opacity .7s ease;
  transform: scale(1.04);
  will-change: transform;
}
.site-header__bg.hat-bild{ opacity: 1; }
.site-header__scrim{
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 8%, rgba(24,18,14,.08) 0%, rgba(24,18,14,.55) 55%, rgba(24,18,14,.86) 100%),
    linear-gradient(0deg, var(--ink) 0%, rgba(24,18,14,.55) 32%, rgba(211,20,15,.16) 60%, rgba(24,18,14,.28) 100%);
}
.site-header::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: var(--flame);
  z-index: 2;
}

.site-header__inner{
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--petrol);
  margin-bottom: 18px;
  padding: 7px 16px;
  border: 1px solid rgba(15,184,166,.45);
  border-radius: 99px;
  background: rgba(15,184,166,.08);
}
.eyebrow::before{
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--flame);
  box-shadow: 0 0 10px 1px rgba(251,122,31,.85);
  flex: none;
}
.site-title{
  font-style: italic;
  font-size: clamp(2.6rem, 9vw, 4.2rem);
  line-height: 1.02;
  text-shadow: 0 2px 40px rgba(251,122,31,.35);
}
.site-subtitle{
  margin-top: 14px;
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  color: var(--text-mild-hell);
  font-weight: 500;
}
.hero-info{
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-rating{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  padding: 7px 16px;
  border-radius: 99px;
  border: 1px solid rgba(255,201,60,.4);
  background: rgba(255,201,60,.08);
  color: var(--text-hell);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.hero-rating:hover{ border-color: rgba(255,201,60,.65); color: var(--ember-1); }
.hero-rating .hero-info-card__icon{
  width: 15px;
  height: 15px;
  color: var(--ember-1);
}

/* Info-Card: Adresse, Telefon & Öffnungszeiten gebündelt, mit klarem
   Kontrast zum Hintergrundfoto statt Fließtext direkt aufs Bild. */
.hero-info-card{
  width: 100%;
  max-width: 620px;
  text-align: left;
  background: rgba(24,18,14,.58);
  border: 1px solid var(--ink-line);
  border-radius: 20px;
  padding: 24px 26px 22px;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 18px 44px rgba(0,0,0,.32);
}
.hero-info-card__body{
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-info-card__main{
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.hero-info-card__row{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-hell);
  text-decoration: none;
}
.hero-info-card__row--link:hover{ color: var(--ember-1); }
.hero-info-card__icon{
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--ember-1);
}
.hero-info-card__icon svg{ width: 100%; height: 100%; display: block; }

.hero-info-card__hours{
  padding-top: 16px;
  border-top: 1px solid var(--ink-line);
}
.hero-info-card__hours-label{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--petrol);
  margin-bottom: 12px;
}
.hero-info-card__hours-label .hero-info-card__icon{ width: 15px; height: 15px; color: var(--petrol); }
.hero-info-card__hours-list{
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hero-info-card__hours-row{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14.5px;
  color: var(--text-mild-hell);
}
.hero-info-card__hours-row span:first-child{
  font-weight: 700;
  color: var(--text-hell);
  white-space: nowrap;
}
.hero-info-card__hours-row span:last-child{ text-align: right; }

.hero-info-card__extra{
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-mild-hell);
  line-height: 1.5;
}
.hero-info-card__extra + .hero-info-card__extra{ margin-top: 4px; }

@media (min-width: 640px){
  .hero-info-card__body{ flex-direction: row; gap: 30px; }
  .hero-info-card__main{ flex: 1 1 44%; }
  .hero-info-card__hours{
    flex: 1 1 56%;
    padding-top: 0;
    padding-left: 28px;
    border-top: none;
    border-left: 1px solid var(--ink-line);
  }
}

/* CTA: Route & Anruf – die zwei wichtigsten Handlungen, direkt im Hero */
.hero-cta{
  margin-top: 16px;
  width: 100%;
  max-width: 620px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn{
  flex: 1 1 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 18px;
  border-radius: 14px;
  font-family: var(--font-text);
  font-weight: 800;
  font-size: 14.5px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn svg{ width: 18px; height: 18px; flex: none; }
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn .hero-info-card__icon{ color: var(--text-stark); }

.btn--route{
  background: linear-gradient(155deg, #e8391f, var(--ember-3));
  color: #fff;
  box-shadow: 0 10px 24px rgba(211,20,15,.35);
}
.btn--route:hover{ filter: brightness(1.06); box-shadow: 0 12px 28px rgba(211,20,15,.42); }

.btn--call{
  background: linear-gradient(155deg, #ffa347, var(--ember-2));
  color: var(--text-stark);
  box-shadow: 0 10px 24px rgba(251,122,31,.32);
}
.btn--call:hover{ filter: brightness(1.05); box-shadow: 0 12px 28px rgba(251,122,31,.4); }

/* ============ Sticky category nav ============ */
.kategorie-nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,243,230,.9);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--paper-line);
}
.kategorie-nav__scroll{
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 10px 14px;
  -webkit-overflow-scrolling: touch;
}
.kategorie-nav__scroll::-webkit-scrollbar{ display: none; }

.kategorie-nav__link{
  flex: 0 0 auto;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-mild);
  text-decoration: none;
  white-space: nowrap;
  border-radius: 99px;
  border: 1px solid transparent;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.kategorie-nav__link:hover{
  color: var(--text-stark);
  border-color: var(--paper-line);
  background: var(--paper-alt);
}
.kategorie-nav__link.aktiv{
  color: var(--ember-3);
  background: linear-gradient(180deg, rgba(255,201,60,.16), rgba(211,20,15,.05));
  border-color: rgba(211,20,15,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 1px 0 rgba(211,20,15,.12);
}

/* ============ Categories ============ */
.kategorie{
  padding: 64px 0 8px;
  scroll-margin-top: calc(var(--nav-h) + 10px);
}
.kategorie:first-child{ padding-top: 52px; }

.kategorie__kopf{
  padding: 0 var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto 10px;
}
.kategorie__titel{
  font-style: italic;
  font-size: clamp(1.8rem, 5.6vw, 2.5rem);
  position: relative;
  padding-bottom: 18px;
  color: var(--text-stark);
}
.kategorie__titel::after{
  content: "";
  position: absolute;
  left: 1px; bottom: 4px;
  width: 64px;
  height: 6px;
  background: var(--flame);
  border-radius: 4px;
  transform: scaleX(0) skewX(-14deg);
  transform-origin: 0 50%;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.kategorie__kopf.ist-sichtbar .kategorie__titel::after{
  transform: scaleX(1) skewX(-14deg);
}
@media (prefers-reduced-motion: reduce){
  .kategorie__titel::after{ transform: scaleX(1) skewX(-14deg); transition: none; }
}
.kategorie__hinweis{
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-mild);
  max-width: 60ch;
}
.kategorie__hinweis-extra{
  margin-top: 5px;
  font-size: 13px;
  color: var(--petrol-deep);
  font-weight: 600;
}
.kategorie__groessen{
  margin-top: 16px;
  display: flex;
  gap: 18px;
  font-size: 11.5px;
  letter-spacing: .06em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-mild);
  justify-content: flex-end;
  padding-right: 2px;
}
.kategorie__groessen span{ width: 52px; text-align: right; }

/* ============ Gericht (menu item) ============ */
.gerichte-liste{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.gericht{
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 16px;
  padding: 22px 0;
  border-top: 1px solid var(--paper-line);
  opacity: 0;
  transform: translateY(20px) scale(.985);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.gericht.ist-sichtbar{
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce){
  .gericht{ opacity: 1; transform: none; transition: none; }
}

/* Foto – volle Farbe, edge-to-edge auf Mobil */
.gericht__foto-wrap{
  grid-column: 1 / -1;
  order: -1;
  margin-bottom: 4px;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--paper-alt);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(37,24,15,.14);
}
.gericht__foto{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gericht:hover .gericht__foto{
  transform: scale(1.045);
}

.gericht__haupt{ min-width: 0; }
.gericht__zeile{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.gericht__nummer{
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 800;
  color: var(--text-hell);
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  border-radius: 50%;
  background: var(--ink);
  border: 1.5px solid rgba(251,122,31,.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(37,24,15,.22);
  flex: none;
}
.gericht__name{
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-stark);
}
.gericht__allergene{
  font-size: 10.5px;
  color: var(--petrol-deep);
  letter-spacing: .02em;
  font-weight: 700;
  vertical-align: super;
}
.gericht__beschreibung{
  margin-top: 5px;
  font-size: 14px;
  color: var(--text-mild);
  line-height: 1.5;
}

.gericht__preise{
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  align-self: start;
}
.gericht__preise span{
  width: 56px;
  text-align: center;
  color: var(--petrol-ink);
  background: rgba(15,184,166,.13);
  border: 1px solid rgba(15,184,166,.3);
  border-radius: 99px;
  padding: 5px 0;
}

.gericht__preis-einzel{
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
  align-self: start;
  color: var(--petrol-ink);
  background: rgba(15,184,166,.13);
  border: 1px solid rgba(15,184,166,.3);
  border-radius: 99px;
  padding: 6px 14px;
}

/* Getränke: Varianten-Liste statt Größenspalten */
.gericht__varianten{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  align-self: start;
  font-size: 14px;
}
.gericht__variante{
  display: flex;
  gap: 10px;
  color: var(--text-mild);
}
.gericht__variante strong{
  font-weight: 800;
  color: var(--petrol-ink);
  min-width: 52px;
  text-align: right;
}

/* ============ Allergene-Sektion ============ */
.allergene-sektion{
  margin-top: 48px;
  padding: 60px 0 70px;
  background: var(--ink);
  color: var(--text-hell);
}
.allergene-sektion h2{
  font-style: italic;
  font-size: clamp(1.6rem, 4.5vw, 2rem);
  color: var(--text-hell);
}
.allergene-hinweis{
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-mild-hell);
  max-width: 62ch;
}
.allergene-grid{
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 640px){
  .allergene-grid{ grid-template-columns: 1fr 1fr; }
}
.allergene-spalte h3{
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--font-text);
  font-weight: 800;
  color: var(--petrol);
  margin-bottom: 16px;
}
.allergene-liste{
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px 14px;
  font-size: 13.5px;
}
.allergene-liste dt{
  font-weight: 800;
  color: var(--ember-1);
}
.allergene-liste dd{
  margin: 0;
  color: var(--text-mild-hell);
}

/* ============ Footer ============ */
.site-footer{
  padding: 44px 0 100px;
  text-align: center;
  color: var(--text-mild);
  font-size: 13px;
  background: var(--ink-soft);
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--text-mild-hell);
}
.site-footer__name{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ember-1);
  margin-bottom: 8px;
}
.site-footer__note{
  margin-top: 12px;
  color: rgba(251,240,226,.45);
  font-size: 12px;
}

.impressum{
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(251,240,226,.12);
}
.impressum__titel{
  font-family: var(--font-text);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
  color: var(--petrol);
  margin-bottom: 10px;
}
.impressum__zeile{
  font-size: 12.5px;
  color: rgba(251,240,226,.55);
  line-height: 1.7;
}
.impressum__zeile a{
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(251,240,226,.3);
}
.impressum__zeile a:hover{ color: var(--ember-1); }
.impressum__zeile--label{
  margin-top: 10px;
  font-weight: 700;
  color: rgba(251,240,226,.72);
}

/* ============ Back to top ============ */
.nach-oben{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(251,122,31,.4);
  background: var(--ink);
  color: var(--text-hell);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease, border-color .2s ease;
  box-shadow: 0 6px 18px rgba(37,24,15,.3);
  z-index: 60;
}
.nach-oben.sichtbar{
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.nach-oben:hover{ background: var(--ink-soft); border-color: rgba(251,122,31,.65); }

/* ============ Responsive ============ */
@media (min-width: 560px){
  .gericht{
    grid-template-columns: 1fr auto;
  }
  .gericht__foto-wrap{
    grid-column: auto;
    order: 0;
    width: 128px;
    aspect-ratio: 1/1;
    margin-bottom: 0;
    margin-right: 6px;
    background: #fff;
    padding: 7px 7px 16px;
    border-radius: 3px;
    box-shadow: 0 10px 20px rgba(37,24,15,.2), 0 1px 0 rgba(255,255,255,.6) inset;
    overflow: visible;
    position: relative;
  }
  .gericht__foto-wrap::before{
    content: "";
    position: absolute;
    top: -9px; left: 50%;
    width: 34px; height: 16px;
    background: rgba(15,184,166,.55);
    transform: translateX(-50%) rotate(-3deg);
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,.15);
  }
  .gericht__foto{
    border-radius: 1px;
  }
  .gericht:nth-child(odd) .gericht__foto-wrap{ transform: rotate(-2.4deg); }
  .gericht:nth-child(even) .gericht__foto-wrap{ transform: rotate(2deg); }
  .gericht:hover .gericht__foto-wrap{ transform: rotate(0deg); transition: transform .35s ease; }
  .gericht{
    grid-template-columns: 128px 1fr auto;
    align-items: start;
  }
  .gericht:not(:has(.gericht__foto-wrap)){
    grid-template-columns: 1fr auto;
  }
  .gericht__preise, .gericht__varianten{
    justify-content: flex-end;
    align-items: flex-end;
  }
}

@media (min-width: 760px){
  :root{ --gutter: 32px; }
  .site-header{ padding: 124px var(--gutter) 88px; }
}

/* ============ Print ============ */
@media print{
  .kategorie-nav, .nach-oben, .skip-link{ display: none !important; }
  body{ background: #fff; }
  .site-header{
    background: none !important;
    color: var(--text-stark) !important;
    padding: 20px 0;
  }
  .site-header::after{ display: none; }
  .site-header__bg, .site-header__scrim{ display: none; }
  .eyebrow{ color: var(--text-stark); border-color: #ccc; }
  .site-title{ color: var(--text-stark); text-shadow: none; }
  .hero-cta{ display: none; }
  .hero-info-card{ background: none; border-color: #ccc; box-shadow: none; backdrop-filter: none; }
  .hero-info-card__row, .hero-info-card__hours-row span:first-child{ color: var(--text-stark); }
  .hero-info-card__hours-row, .hero-info-card__extra{ color: #333; }
  .hero-info-card__icon{ color: var(--text-stark); }
  .gericht{ opacity: 1 !important; transform: none !important; break-inside: avoid; }
  .gericht__foto-wrap{ display: none; }
  .allergene-sektion{ background: none; color: var(--text-stark); }
  .allergene-liste dt{ color: var(--text-stark); }
  .allergene-liste dd, .allergene-hinweis{ color: #333; }
  .site-footer{ background: none; color: #333; }
  .site-footer__name{ color: var(--text-stark); }
  body{ font-size: 11px; }
  a[href]::after{ content: ""; }
}
