/* ============================================================
   KIMSEN — Startseite v4 »Helles Papier«
   Heller, papierener Grund mit echter Papierkörnung.
   Buttons: dunkle Tintenkleckse (wie das Logo) + Kringel.
   Kims Handschrift überall außer im Fließtext.
   ============================================================ */

@font-face {
  font-family: 'Kimsen';
  src: url('../fonts/kimsen_regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* ß fehlt in der Original-Schrift (fiel auf eine Fremd-Schrift zurück).
   Eigenes, handschrift-passendes Eszett – nur für U+00DF. */
@font-face {
  font-family: 'Kimsen';
  src: url('../fonts/kimsen_eszett.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+00DF;
}

:root {
  /* Papier */
  --paper-hi: #fdfaf2;
  --paper: #fbf7ec;
  --paper-lo: #f5efdf;
  --card: #fffefa;
  --paper-dark: #8a744a;

  /* Tinte & Bleistift (kühles Grau) */
  --ink: #383d3f;
  --ink-deep: #2a2f31;
  --body: #51575a;
  --muted: #71777a;
  --pencil: #8a8375;

  /* Pigmente (aus den Illustrationen) */
  --clay: #d0825f;
  --sky-blue: #417d88;
  --leaf: #558a56;
  --plum: #97719b;
  --sun: #e0ba62;

  --accent: var(--clay);

  /* Icon-Pigmente (kimsen-icons nutzt diese vars, Fallbacks sind alt) */
  --ki-accent: var(--accent);
  --ki-sun: var(--sun);
  --ki-leaf: var(--leaf);
  --ki-brown: var(--paper-dark);
  --ki-paper: var(--paper-lo);
  --ki-sand: #d3c194;
  --motion: 1;
  --pline-1: url('../pencil-line.svg?v=16');
  --pline-2: url('../pencil-line-2.svg?v=16');
  --pline-3: url('../pencil-line-3.svg?v=16');
  --pline: var(--pline-1);
  --puline: url('../pencil-underline.svg?v=20');
  --pline-v: url('../pencil-line-v.svg?v=16');

  --f-hand: 'Kimsen', 'Bradley Hand', cursive;
  --f-sans: 'Alegreya Sans', system-ui, -apple-system, sans-serif;
  --f-serif: 'Alegreya', Georgia, serif;

  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(90px, 11vw, 170px);
  --maxw: 1280px;
}

/* ---------- Basis ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Papierkorn — echte, unregelmäßige Körnung wie auf Aquarellpapier */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='k'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.27  0 0 0 0 0.24  0 0 0 0 0.19  0 0 0 0.75 0'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23k)'/%3E%3C/svg%3E");
  background-size: 280px 280px;
  opacity: .34;
  mix-blend-mode: multiply;
}
body[data-grain="aus"]::before { display: none; }

/* Der Himmel: helles Papier-Firmament */
#sky {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background: var(--paper);
}

header, main, footer { position: relative; z-index: 2; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--accent); color: #fffefa; }

a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: 16px; top: -64px; z-index: 200;
  background: var(--ink); color: var(--paper);
  padding: 10px 18px; border-radius: 10px;
  font-size: 14px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.shell { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.shell-narrow { max-width: 860px; }
section { padding-block: var(--section-y); position: relative; }

/* ---------- Aquarell-Schleier (zarte Farbnebel je Sektion) ---------- */
.aurora { display: none; }


/* ---------- Typo ---------- */
.kicker {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 18px;
}

.display {
  font-family: var(--f-hand);
  line-height: 1.0;
  letter-spacing: .004em;
  color: var(--ink);
  font-size: clamp(54px, 8.8vw, 128px);
  text-wrap: balance;
}
.h-section {
  font-family: var(--f-hand);
  line-height: 1.05;
  color: var(--ink);
  font-size: clamp(40px, 5.6vw, 74px);
  text-wrap: balance;
}
.lead {
  font-size: clamp(17px, 1.6vw, 19.5px);
  line-height: 1.7;
  color: var(--body);
  max-width: 56ch;
  text-wrap: pretty;
}
.hand { font-family: var(--f-hand); line-height: 1.15; }

/* Farbiges Wort mit wachendem Sternchen */
.glow-word {
  color: var(--accent);
  position: relative;
}
.js .glow-word::after { animation: starpulse 2.8s ease-in-out infinite; }
@keyframes starpulse {
  0%, 100% { opacity: .5; transform: scale(.85) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(22deg); }
}

/* Wort-für-Wort: Headline taucht aus dem Papiernebel auf */
.js .split-word { display: inline-block; }
@media (prefers-reduced-motion: no-preference) {
  .js .split-word {
    opacity: 0;
    filter: blur(calc(7px * var(--motion)));
    transform: translateY(calc(.4em * var(--motion))) rotate(calc(2deg * var(--motion)));
    transition: opacity .7s ease, filter .8s ease, transform .8s cubic-bezier(.2, .75, .2, 1);
    transition-delay: calc(var(--wi) * 90ms + 120ms);
  }
  .js .type-in .split-word { opacity: 1; filter: blur(0); transform: none; }
}

/* ============================================================
   BUTTONS v4 — Farbkleckse
   ============================================================ */

/* --- »Farbklecks«: organischer Klecks wie im Logo — per JS als
       sanft morphende SVG-Form mit Farbspritzern erzeugt (je Button
       leicht anders); beim Hover flutet die Akzentfarbe hinein --- */
.stamp {
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--f-hand);
  font-size: 21px; line-height: 1; letter-spacing: .03em;
  color: #fffefa;
  padding: 21px 42px 23px;
  border: none; background: transparent;
  cursor: pointer; text-align: center;
  -webkit-tap-highlight-color: transparent;
  transform: rotate(-1.4deg);
  transition: transform .4s cubic-bezier(.34, 1.56, .5, 1);
}
/* Fallback ohne JS: einfacher, ruhiger Klecks */
.stamp::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background: var(--ink);
  border-radius: 48% 52% 44% 56% / 58% 44% 56% 42%;
  box-shadow: 0 10px 22px rgba(62, 52, 30, .18);
  transition: background-color .3s ease;
}
.stamp:hover::before, .stamp:focus-visible::before { background: var(--accent); }
.js .stamp::before { display: none; }

/* per JS erzeugter Klecks */
.stamp-blob {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%;
  overflow: visible;
  filter: drop-shadow(0 8px 15px rgba(62, 52, 30, .2));
  transition: filter .35s ease;
}
.stamp-blob .blob-main { fill: var(--ink); transition: fill .3s ease; }
.stamp-blob .blob-spr { fill: #fffefa; opacity: 0; transition: opacity .25s ease; }
.stamp:hover .stamp-blob, .stamp:focus-visible .stamp-blob { filter: drop-shadow(0 13px 24px rgba(62, 52, 30, .28)); }
.stamp:hover .blob-main, .stamp:focus-visible .blob-main { fill: var(--accent); }
.stamp:hover .blob-spr, .stamp:focus-visible .blob-spr { opacity: 1; }
.js .stamp:hover .blob-spr { animation: inkblink 1.4s steps(2, jump-none) infinite; }
@keyframes inkblink { 0% { opacity: 0; } 100% { opacity: 1; } }

.stamp:hover, .stamp:focus-visible { transform: rotate(1deg) scale(1.05); }
.stamp:hover::after, .stamp:focus-visible::after { opacity: 1; transform: scale(1) rotate(0deg); }
.stamp:active { transform: scale(.93) rotate(0deg); transition-duration: .08s; }

.stamp--sm { font-size: 18px; padding: 14px 28px 16px; gap: 8px; }

/* --- »Pinselschweif«-Variante (Hero): dichte Farbmasse rechts unterm
       Label, Trockenbürsten-Schweif läuft nach links aus — Form kommt
       als inline-SVG mit .stamp-blob, das JS überspringt sie --- */
.stamp--smear::before { display: none; }
.stamp--smear .stamp-blob {
  inset: auto;
  top: -9%; height: 118%;
  right: -4%; width: 165%;
}
.stamp--smear .blob-tex { fill: none; stroke: #fffefa; opacity: .13; stroke-linecap: round; }
@media (max-width: 720px) {
  .stamp--smear .stamp-blob { width: 155%; }
}

/* handgezeichneter Pfeil im Button */
.stamp .arr, .loop .arr { flex: none; transition: transform .3s cubic-bezier(.34, 1.56, .5, 1); }
.stamp:hover .arr, .loop:hover .arr { transform: translateX(5px) rotate(4deg); }

/* --- »Kringel«: Kims Stift kreist beim Hover ums Wort --- */
.loop {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--f-hand);
  font-size: 20.5px; line-height: 1; letter-spacing: .03em;
  color: var(--ink);
  padding: 17px 30px 19px;
  border: none; background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color .25s ease, transform .35s cubic-bezier(.34, 1.56, .5, 1);
}
.loop-ring {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; overflow: visible;
}
.loop-ring path { fill: none; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.loop-ring .lr-dot {
  stroke: rgba(64, 55, 42, .38);
  stroke-width: 1.5;
  stroke-dasharray: .004 .026;
  transition: opacity .3s ease;
}
.loop-ring .lr-draw {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset .85s cubic-bezier(.55, .06, .28, .99);
}
.loop:hover, .loop:focus-visible { color: var(--ink-deep); transform: rotate(-1deg); }
.loop:hover .lr-dot, .loop:focus-visible .lr-dot { opacity: .16; }
.loop:hover .lr-draw, .loop:focus-visible .lr-draw { stroke-dashoffset: 0; }
.loop:active { transform: scale(.95); }

/* --- Sternlink --- */
.tlink {
  font-family: var(--f-hand);
  font-size: 21px; line-height: 1.1;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 9px;
  padding-bottom: 6px;
  transition: gap .2s ease, color .2s ease;
}
.tlink .tst {
  color: var(--accent); font-size: .88em;
  transition: transform .5s cubic-bezier(.34, 1.56, .5, 1);
}
.tlink:hover { color: var(--ink-deep); gap: 14px; border-bottom-color: var(--accent); }
.tlink:hover .tst { transform: translateX(3px) rotate(6deg) scale(1.15); }

/* --- Etiketten: EINE Pill für Chips, Tags und Badges (P2-Optik) --- */
.chip, .tag, .badge.badge-kim, .lstg-tag {
  font-family: var(--f-hand);
  font-size: 17.5px; line-height: 1; font-weight: 400;
  color: var(--ink);
  border: 1.5px solid rgba(64, 55, 42, .26);
  background: rgba(255, 253, 246, .55);
  padding: 11px 16px 7px; border-radius: 999px;
  display: inline-flex; align-items: center; white-space: nowrap;
}
.chip:nth-child(odd), .tag:nth-child(odd), .badge.badge-kim:nth-child(odd), .lstg-tag:nth-child(odd) { transform: rotate(-1.2deg); }
.chip:nth-child(even), .tag:nth-child(even), .badge.badge-kim:nth-child(even), .lstg-tag:nth-child(even) { transform: rotate(1deg); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
}
/* Abgerissener Papierstreifen — taucht beim Scrollen auf.
   ::before = Papier (Körnung, faserig-unterbrochener Saum), ::after = Kontaktschatten
   mit eigener, leicht abweichender Kontur (bricht stellenweise ab). */
.site-header::before,
.site-header::after {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; bottom: -15px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
  -webkit-mask-size: 100% calc(100% - 17px), 1440px 18px;
  -webkit-mask-position: left top, left bottom;
  -webkit-mask-repeat: no-repeat, repeat-x;
  mask-size: 100% calc(100% - 17px), 1440px 18px;
  mask-position: left top, left bottom;
  mask-repeat: no-repeat, repeat-x;
}
.site-header::before {
  z-index: -1;
  -webkit-mask-image: linear-gradient(#000 0 0), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='18'%3E%3Cpath d='M0 0 L1440 0 L1440 9.2 L1438.4 9 L1436.8 9 L1435.2 9.2 L1433.6 9.3 L1432 9.3 L1430.4 9 L1428.8 8.4 L1427.2 8.1 L1425.6 8.3 L1424 8.2 L1422.4 7.9 L1420.8 8.1 L1419.2 8.5 L1417.6 8.2 L1416 7.9 L1414.4 7.7 L1412.8 7.6 L1411.2 7.7 L1409.6 7.9 L1408 8.3 L1406.4 8.6 L1404.8 8.7 L1403.2 8.6 L1401.6 8.5 L1400 8.4 L1398.4 8.3 L1396.8 8 L1395.2 7.7 L1393.6 7.8 L1392 8 L1390.4 8.5 L1388.8 9.3 L1387.2 9.3 L1385.6 8.7 L1384 6.8 L1382.4 6 L1380.8 6 L1379.2 6.2 L1377.6 6.5 L1376 6.6 L1374.4 6.4 L1372.8 6.9 L1371.2 7.2 L1369.6 7.1 L1368 7.4 L1366.4 7.9 L1364.8 8.3 L1363.2 8.8 L1361.6 8.9 L1360 8.9 L1358.4 8.6 L1356.8 8.4 L1355.2 8.3 L1353.6 7.8 L1352 7.8 L1350.4 7.9 L1348.8 8.1 L1347.2 8.3 L1345.6 8.1 L1344 7.8 L1342.4 8.1 L1340.8 8.4 L1339.2 8.7 L1337.6 9.1 L1336 9.6 L1334.4 9.9 L1332.8 10.2 L1331.2 10.3 L1329.6 10.4 L1328 10.2 L1326.4 9.8 L1324.8 10.1 L1323.2 10.5 L1321.6 10.3 L1320 9.8 L1318.4 10.2 L1316.8 10.5 L1315.2 10.5 L1313.6 10.4 L1312 9.7 L1310.4 9 L1308.8 8.4 L1307.2 8.2 L1305.6 8.2 L1304 8.4 L1302.4 8.6 L1300.8 8.7 L1299.2 8.8 L1297.6 8.9 L1296 9.1 L1294.4 8.7 L1292.8 8.4 L1291.2 8.5 L1289.6 8.6 L1288 8.3 L1286.4 8.3 L1284.8 8.6 L1283.2 8.5 L1281.6 8.3 L1280 8.3 L1278.4 8.6 L1276.8 8.5 L1275.2 8.4 L1273.6 8.5 L1272 8.5 L1270.4 8.9 L1268.8 9.2 L1267.2 9.1 L1265.6 9.1 L1264 9.4 L1262.4 9.4 L1260.8 9.1 L1259.2 9 L1257.6 9.1 L1256 9.1 L1254.4 8.9 L1252.8 9.3 L1251.2 9.9 L1249.6 9.7 L1248 9.5 L1246.4 10.1 L1244.8 10.5 L1243.2 10 L1241.6 9.5 L1240 9.2 L1238.4 9 L1236.8 9.2 L1235.2 9.4 L1233.6 9.4 L1232 9.8 L1230.4 10.3 L1228.8 10.3 L1227.2 10.2 L1225.6 9.7 L1224 9.3 L1222.4 9.1 L1220.8 8.9 L1219.2 8.8 L1217.6 8.7 L1216 8.4 L1214.4 8.3 L1212.8 8.6 L1211.2 8.7 L1209.6 8.7 L1208 8.6 L1206.4 8.6 L1204.8 8.7 L1203.2 8.8 L1201.6 8.8 L1200 8.9 L1198.4 9.7 L1196.8 10.3 L1195.2 10 L1193.6 9.7 L1192 9.5 L1190.4 9.3 L1188.8 9.1 L1187.2 9.1 L1185.6 9.5 L1184 9.4 L1182.4 9 L1180.8 9.1 L1179.2 9.3 L1177.6 9.2 L1176 9.2 L1174.4 9 L1172.8 8.7 L1171.2 8.2 L1169.6 7.8 L1168 7.6 L1166.4 7.6 L1164.8 7.9 L1163.2 7.7 L1161.6 7.8 L1160 7.5 L1158.4 6.8 L1156.8 6.5 L1155.2 6.1 L1153.6 6.3 L1152 6.8 L1150.4 7.2 L1148.8 7.8 L1147.2 7.8 L1145.6 7.5 L1144 7.3 L1142.4 6.9 L1140.8 6.3 L1139.2 6.1 L1137.6 6.2 L1136 6.5 L1134.4 7.2 L1132.8 7.2 L1131.2 7.1 L1129.6 6.8 L1128 6.3 L1126.4 6.3 L1124.8 6.3 L1123.2 6.3 L1121.6 6.1 L1120 5.3 L1118.4 4.7 L1116.8 4.6 L1115.2 4.6 L1113.6 4.9 L1112 5.1 L1110.4 5.2 L1108.8 5.2 L1107.2 5.2 L1105.6 5.3 L1104 5.4 L1102.4 5.9 L1100.8 6 L1099.2 5.8 L1097.6 5.7 L1096 6 L1094.4 6.2 L1092.8 5.9 L1091.2 6 L1089.6 6.3 L1088 6.5 L1086.4 6.9 L1084.8 6.7 L1083.2 6.3 L1081.6 6.4 L1080 6.5 L1078.4 6.5 L1076.8 6.6 L1075.2 6.7 L1073.6 6.8 L1072 6.7 L1070.4 6.7 L1068.8 6.6 L1067.2 6.7 L1065.6 7 L1064 7 L1062.4 6.7 L1060.8 6.7 L1059.2 6.7 L1057.6 7 L1056 7.4 L1054.4 7.9 L1052.8 8.4 L1051.2 8.5 L1049.6 8.6 L1048 8.3 L1046.4 8.1 L1044.8 8.2 L1043.2 8 L1041.6 7.9 L1040 7.8 L1038.4 7.8 L1036.8 7.2 L1035.2 6.5 L1033.6 6.8 L1032 7.4 L1030.4 7.4 L1028.8 7.4 L1027.2 7.5 L1025.6 7.3 L1024 6.6 L1022.4 6.1 L1020.8 5.9 L1019.2 6.2 L1017.6 7 L1016 7.2 L1014.4 7 L1012.8 7.3 L1011.2 7.8 L1009.6 7.9 L1008 7.9 L1006.4 7.9 L1004.8 8 L1003.2 8 L1001.6 8 L1000 8.2 L998.4 8.2 L996.8 8.2 L995.2 8 L993.6 7.5 L992 7.3 L990.4 7.1 L988.8 7.2 L987.2 7.4 L985.6 7.6 L984 7.8 L982.4 7.5 L980.8 7.2 L979.2 7.5 L977.6 7.8 L976 7.7 L974.4 7.8 L972.8 8.5 L971.2 8.7 L969.6 8.7 L968 9.1 L966.4 9.7 L964.8 9.7 L963.2 9.4 L961.6 9.4 L960 9.3 L958.4 9.3 L956.8 9.3 L955.2 9.6 L953.6 9.5 L952 9.2 L950.4 9.1 L948.8 9.1 L947.2 9.3 L945.6 9.3 L944 9.6 L942.4 10 L940.8 10.2 L939.2 10.5 L937.6 11 L936 11.5 L934.4 11.2 L932.8 10.7 L931.2 10.9 L929.6 10.9 L928 10.3 L926.4 10.2 L924.8 10.6 L923.2 10.6 L921.6 10.3 L920 10.2 L918.4 10.2 L916.8 10.1 L915.2 9.9 L913.6 10 L912 10.2 L910.4 10.1 L908.8 10 L907.2 9.8 L905.6 9.6 L904 9.4 L902.4 9.2 L900.8 9.1 L899.2 8.6 L897.6 7.8 L896 7.5 L894.4 7.8 L892.8 7.7 L891.2 7.7 L889.6 7.6 L888 7.5 L886.4 7.4 L884.8 7.4 L883.2 7.7 L881.6 7.9 L880 8.2 L878.4 8.3 L876.8 8.3 L875.2 8.2 L873.6 7.9 L872 7.8 L870.4 7.7 L868.8 7.9 L867.2 8.2 L865.6 8.2 L864 8.2 L862.4 8 L860.8 7.9 L859.2 8 L857.6 7.9 L856 7.7 L854.4 7.5 L852.8 7.6 L851.2 7.6 L849.6 7.3 L848 7.4 L846.4 7.4 L844.8 7.6 L843.2 8 L841.6 8.4 L840 8.7 L838.4 8.9 L836.8 8.9 L835.2 9.1 L833.6 9.2 L832 9.1 L830.4 9 L828.8 8.6 L827.2 8.4 L825.6 8.8 L824 8.7 L822.4 8.5 L820.8 8.6 L819.2 8.8 L817.6 8.6 L816 8.4 L814.4 8.8 L812.8 9.2 L811.2 9 L809.6 8.9 L808 9.3 L806.4 9.6 L804.8 9.5 L803.2 9.4 L801.6 8.8 L800 8.4 L798.4 7.9 L796.8 7.9 L795.2 8.2 L793.6 8.4 L792 8.6 L790.4 8.6 L788.8 8.6 L787.2 9.2 L785.6 9.8 L784 10.2 L782.4 10.4 L780.8 10.3 L779.2 10.2 L777.6 10.1 L776 10.1 L774.4 10.1 L772.8 9.8 L771.2 9.5 L769.6 9.4 L768 9.5 L766.4 9.2 L764.8 8.9 L763.2 8.7 L761.6 8.2 L760 7.5 L758.4 7.3 L756.8 7.6 L755.2 7.7 L753.6 7.6 L752 8.1 L750.4 8.9 L748.8 9.5 L747.2 10.2 L745.6 10.4 L744 10.6 L742.4 10.8 L740.8 11 L739.2 10.9 L737.6 10.8 L736 11 L734.4 11.1 L732.8 11 L731.2 10.9 L729.6 10.9 L728 10.5 L726.4 9.9 L724.8 9.9 L723.2 10 L721.6 9.9 L720 9.9 L718.4 9.9 L716.8 9.8 L715.2 9.3 L713.6 9 L712 9.1 L710.4 9.1 L708.8 9.3 L707.2 9.4 L705.6 9.3 L704 9.4 L702.4 9.9 L700.8 9.8 L699.2 9.7 L697.6 9.8 L696 10.1 L694.4 10.3 L692.8 10.5 L691.2 10 L689.6 9.5 L688 9.3 L686.4 9.1 L684.8 9.3 L683.2 9.4 L681.6 9.2 L680 9.6 L678.4 10.1 L676.8 10.1 L675.2 10 L673.6 9.5 L672 9.1 L670.4 9.1 L668.8 9.2 L667.2 9.3 L665.6 9.4 L664 9.7 L662.4 9.7 L660.8 9.7 L659.2 9.5 L657.6 9.1 L656 9.2 L654.4 9.7 L652.8 10.2 L651.2 10.7 L649.6 10.9 L648 11 L646.4 11 L644.8 11 L643.2 11 L641.6 10.9 L640 10.4 L638.4 9.9 L636.8 9.5 L635.2 9.5 L633.6 9.5 L632 10.1 L630.4 10.8 L628.8 11.2 L627.2 11.5 L625.6 11.4 L624 11.1 L622.4 11 L620.8 11 L619.2 11.3 L617.6 11.5 L616 11.4 L614.4 11.1 L612.8 10.8 L611.2 10.7 L609.6 10.5 L608 10.3 L606.4 9.8 L604.8 9.8 L603.2 10 L601.6 9.6 L600 9.3 L598.4 9.4 L596.8 9.5 L595.2 9.5 L593.6 9.5 L592 9.8 L590.4 10 L588.8 9.8 L587.2 9.8 L585.6 9.6 L584 9.5 L582.4 9.3 L580.8 9.2 L579.2 9.4 L577.6 9.3 L576 9.2 L574.4 9.2 L572.8 9.1 L571.2 9.4 L569.6 9.7 L568 9.6 L566.4 9.6 L564.8 9.5 L563.2 9.2 L561.6 8.9 L560 8.6 L558.4 8.6 L556.8 8.5 L555.2 8.2 L553.6 8.2 L552 8.1 L550.4 8.1 L548.8 8.1 L547.2 7.8 L545.6 7.6 L544 8.1 L542.4 8.5 L540.8 8.6 L539.2 8.8 L537.6 8.6 L536 8.5 L534.4 8.7 L532.8 8.5 L531.2 8.3 L529.6 8.5 L528 8.5 L526.4 8.3 L524.8 8.1 L523.2 8.1 L521.6 8.3 L520 8.7 L518.4 9 L516.8 9.1 L515.2 9.4 L513.6 10.2 L512 10.3 L510.4 9.9 L508.8 10 L507.2 10.1 L505.6 10.4 L504 10.7 L502.4 10.5 L500.8 10.4 L499.2 10.3 L497.6 10.2 L496 9.9 L494.4 10 L492.8 10.3 L491.2 10.6 L489.6 10.8 L488 11.1 L486.4 11.6 L484.8 11.5 L483.2 11.3 L481.6 11.2 L480 10.9 L478.4 10.2 L476.8 9.6 L475.2 9.4 L473.6 9.4 L472 9.8 L470.4 10 L468.8 10 L467.2 9.9 L465.6 9.6 L464 9.6 L462.4 9.5 L460.8 9.7 L459.2 10.1 L457.6 10.4 L456 10.7 L454.4 10.8 L452.8 10.9 L451.2 10.7 L449.6 10.6 L448 10.6 L446.4 10.5 L444.8 10.7 L443.2 10.8 L441.6 11 L440 11.4 L438.4 11.6 L436.8 11.8 L435.2 11.8 L433.6 12 L432 12.3 L430.4 11.9 L428.8 11.5 L427.2 11.3 L425.6 11.2 L424 11.4 L422.4 11.4 L420.8 10.9 L419.2 10.9 L417.6 11 L416 10.8 L414.4 10.4 L412.8 10.3 L411.2 10.4 L409.6 10.4 L408 10.4 L406.4 10.7 L404.8 10.8 L403.2 10.9 L401.6 11 L400 10.7 L398.4 10.7 L396.8 10.8 L395.2 10.8 L393.6 10.6 L392 10.6 L390.4 10.6 L388.8 10.4 L387.2 10.1 L385.6 10.2 L384 10.3 L382.4 10.3 L380.8 10.2 L379.2 9.8 L377.6 9.5 L376 9.3 L374.4 9.2 L372.8 9.2 L371.2 9.2 L369.6 9.5 L368 9.4 L366.4 9.1 L364.8 9.3 L363.2 9.7 L361.6 9.4 L360 9.1 L358.4 9.2 L356.8 9.2 L355.2 9.5 L353.6 9.7 L352 9.3 L350.4 9.3 L348.8 9.5 L347.2 9.6 L345.6 10 L344 9.9 L342.4 9.8 L340.8 9.6 L339.2 9.4 L337.6 9.2 L336 8.6 L334.4 8 L332.8 7.6 L331.2 8 L329.6 8.3 L328 8 L326.4 8.3 L324.8 8.4 L323.2 8.6 L321.6 8.9 L320 9.1 L318.4 9.3 L316.8 9.2 L315.2 8.1 L313.6 7.2 L312 6.7 L310.4 6.6 L308.8 6.8 L307.2 7.7 L305.6 8.7 L304 9.3 L302.4 9.2 L300.8 9.2 L299.2 9.3 L297.6 9.6 L296 10 L294.4 10.4 L292.8 10.5 L291.2 10.7 L289.6 11 L288 11.3 L286.4 11.7 L284.8 12.1 L283.2 12.4 L281.6 12.5 L280 12.9 L278.4 12.9 L276.8 12.5 L275.2 12.1 L273.6 11.9 L272 11.6 L270.4 11.2 L268.8 10.7 L267.2 10.1 L265.6 9.6 L264 9.7 L262.4 9.8 L260.8 9.9 L259.2 9.8 L257.6 9.8 L256 9.8 L254.4 9.8 L252.8 9.9 L251.2 9.8 L249.6 9.4 L248 9.4 L246.4 9.8 L244.8 9.6 L243.2 9.3 L241.6 9.3 L240 9.4 L238.4 9 L236.8 8.5 L235.2 8.6 L233.6 8.4 L232 7.8 L230.4 7.5 L228.8 7.4 L227.2 7.2 L225.6 7.2 L224 7.2 L222.4 7.3 L220.8 7.6 L219.2 8 L217.6 8.1 L216 8.2 L214.4 8.4 L212.8 8.6 L211.2 9 L209.6 9.2 L208 9.4 L206.4 9.3 L204.8 8.7 L203.2 8.6 L201.6 8.9 L200 8.8 L198.4 8.4 L196.8 8.3 L195.2 8.1 L193.6 8.2 L192 8.4 L190.4 8.3 L188.8 8.2 L187.2 8.5 L185.6 8.6 L184 8.3 L182.4 8.2 L180.8 8.3 L179.2 8.2 L177.6 8 L176 7.7 L174.4 7.4 L172.8 7.7 L171.2 8.2 L169.6 8.3 L168 8.3 L166.4 8.4 L164.8 8.3 L163.2 7.8 L161.6 7.5 L160 7.8 L158.4 8 L156.8 8.1 L155.2 8.4 L153.6 8.8 L152 8.7 L150.4 8.5 L148.8 8.4 L147.2 8.4 L145.6 8.4 L144 8.3 L142.4 8.5 L140.8 8.6 L139.2 8.5 L137.6 8.5 L136 9.3 L134.4 9.5 L132.8 9.4 L131.2 9.5 L129.6 9.8 L128 10.1 L126.4 10.3 L124.8 10.1 L123.2 9.7 L121.6 9.5 L120 10.1 L118.4 10.3 L116.8 10.4 L115.2 10.7 L113.6 10.8 L112 10.5 L110.4 10.3 L108.8 10.1 L107.2 9.8 L105.6 9.5 L104 8.8 L102.4 8.9 L100.8 9.4 L99.2 9.8 L97.6 9.6 L96 9.1 L94.4 9.3 L92.8 9.3 L91.2 9 L89.6 8.9 L88 8.8 L86.4 8.6 L84.8 7.9 L83.2 7.8 L81.6 8.4 L80 8.7 L78.4 8.8 L76.8 9 L75.2 9.2 L73.6 9.1 L72 9 L70.4 9.5 L68.8 9.8 L67.2 9.8 L65.6 9.7 L64 9.7 L62.4 9.8 L60.8 10 L59.2 10.2 L57.6 10 L56 10.2 L54.4 10.4 L52.8 10.5 L51.2 10.5 L49.6 10.3 L48 10.1 L46.4 9.7 L44.8 9.3 L43.2 9.3 L41.6 9.4 L40 9.4 L38.4 9.7 L36.8 10 L35.2 10.2 L33.6 10.3 L32 10 L30.4 9.5 L28.8 9.4 L27.2 9.6 L25.6 9.8 L24 10 L22.4 10.3 L20.8 10.5 L19.2 10.6 L17.6 10.5 L16 10.2 L14.4 10 L12.8 10.1 L11.2 9.9 L9.6 9.6 L8 9.4 L6.4 9.1 L4.8 9 L3.2 9.1 L1.6 9.1 L0 9.2 Z'/%3E%3C/svg%3E");
  mask-image: linear-gradient(#000 0 0), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='18'%3E%3Cpath d='M0 0 L1440 0 L1440 9.2 L1438.4 9 L1436.8 9 L1435.2 9.2 L1433.6 9.3 L1432 9.3 L1430.4 9 L1428.8 8.4 L1427.2 8.1 L1425.6 8.3 L1424 8.2 L1422.4 7.9 L1420.8 8.1 L1419.2 8.5 L1417.6 8.2 L1416 7.9 L1414.4 7.7 L1412.8 7.6 L1411.2 7.7 L1409.6 7.9 L1408 8.3 L1406.4 8.6 L1404.8 8.7 L1403.2 8.6 L1401.6 8.5 L1400 8.4 L1398.4 8.3 L1396.8 8 L1395.2 7.7 L1393.6 7.8 L1392 8 L1390.4 8.5 L1388.8 9.3 L1387.2 9.3 L1385.6 8.7 L1384 6.8 L1382.4 6 L1380.8 6 L1379.2 6.2 L1377.6 6.5 L1376 6.6 L1374.4 6.4 L1372.8 6.9 L1371.2 7.2 L1369.6 7.1 L1368 7.4 L1366.4 7.9 L1364.8 8.3 L1363.2 8.8 L1361.6 8.9 L1360 8.9 L1358.4 8.6 L1356.8 8.4 L1355.2 8.3 L1353.6 7.8 L1352 7.8 L1350.4 7.9 L1348.8 8.1 L1347.2 8.3 L1345.6 8.1 L1344 7.8 L1342.4 8.1 L1340.8 8.4 L1339.2 8.7 L1337.6 9.1 L1336 9.6 L1334.4 9.9 L1332.8 10.2 L1331.2 10.3 L1329.6 10.4 L1328 10.2 L1326.4 9.8 L1324.8 10.1 L1323.2 10.5 L1321.6 10.3 L1320 9.8 L1318.4 10.2 L1316.8 10.5 L1315.2 10.5 L1313.6 10.4 L1312 9.7 L1310.4 9 L1308.8 8.4 L1307.2 8.2 L1305.6 8.2 L1304 8.4 L1302.4 8.6 L1300.8 8.7 L1299.2 8.8 L1297.6 8.9 L1296 9.1 L1294.4 8.7 L1292.8 8.4 L1291.2 8.5 L1289.6 8.6 L1288 8.3 L1286.4 8.3 L1284.8 8.6 L1283.2 8.5 L1281.6 8.3 L1280 8.3 L1278.4 8.6 L1276.8 8.5 L1275.2 8.4 L1273.6 8.5 L1272 8.5 L1270.4 8.9 L1268.8 9.2 L1267.2 9.1 L1265.6 9.1 L1264 9.4 L1262.4 9.4 L1260.8 9.1 L1259.2 9 L1257.6 9.1 L1256 9.1 L1254.4 8.9 L1252.8 9.3 L1251.2 9.9 L1249.6 9.7 L1248 9.5 L1246.4 10.1 L1244.8 10.5 L1243.2 10 L1241.6 9.5 L1240 9.2 L1238.4 9 L1236.8 9.2 L1235.2 9.4 L1233.6 9.4 L1232 9.8 L1230.4 10.3 L1228.8 10.3 L1227.2 10.2 L1225.6 9.7 L1224 9.3 L1222.4 9.1 L1220.8 8.9 L1219.2 8.8 L1217.6 8.7 L1216 8.4 L1214.4 8.3 L1212.8 8.6 L1211.2 8.7 L1209.6 8.7 L1208 8.6 L1206.4 8.6 L1204.8 8.7 L1203.2 8.8 L1201.6 8.8 L1200 8.9 L1198.4 9.7 L1196.8 10.3 L1195.2 10 L1193.6 9.7 L1192 9.5 L1190.4 9.3 L1188.8 9.1 L1187.2 9.1 L1185.6 9.5 L1184 9.4 L1182.4 9 L1180.8 9.1 L1179.2 9.3 L1177.6 9.2 L1176 9.2 L1174.4 9 L1172.8 8.7 L1171.2 8.2 L1169.6 7.8 L1168 7.6 L1166.4 7.6 L1164.8 7.9 L1163.2 7.7 L1161.6 7.8 L1160 7.5 L1158.4 6.8 L1156.8 6.5 L1155.2 6.1 L1153.6 6.3 L1152 6.8 L1150.4 7.2 L1148.8 7.8 L1147.2 7.8 L1145.6 7.5 L1144 7.3 L1142.4 6.9 L1140.8 6.3 L1139.2 6.1 L1137.6 6.2 L1136 6.5 L1134.4 7.2 L1132.8 7.2 L1131.2 7.1 L1129.6 6.8 L1128 6.3 L1126.4 6.3 L1124.8 6.3 L1123.2 6.3 L1121.6 6.1 L1120 5.3 L1118.4 4.7 L1116.8 4.6 L1115.2 4.6 L1113.6 4.9 L1112 5.1 L1110.4 5.2 L1108.8 5.2 L1107.2 5.2 L1105.6 5.3 L1104 5.4 L1102.4 5.9 L1100.8 6 L1099.2 5.8 L1097.6 5.7 L1096 6 L1094.4 6.2 L1092.8 5.9 L1091.2 6 L1089.6 6.3 L1088 6.5 L1086.4 6.9 L1084.8 6.7 L1083.2 6.3 L1081.6 6.4 L1080 6.5 L1078.4 6.5 L1076.8 6.6 L1075.2 6.7 L1073.6 6.8 L1072 6.7 L1070.4 6.7 L1068.8 6.6 L1067.2 6.7 L1065.6 7 L1064 7 L1062.4 6.7 L1060.8 6.7 L1059.2 6.7 L1057.6 7 L1056 7.4 L1054.4 7.9 L1052.8 8.4 L1051.2 8.5 L1049.6 8.6 L1048 8.3 L1046.4 8.1 L1044.8 8.2 L1043.2 8 L1041.6 7.9 L1040 7.8 L1038.4 7.8 L1036.8 7.2 L1035.2 6.5 L1033.6 6.8 L1032 7.4 L1030.4 7.4 L1028.8 7.4 L1027.2 7.5 L1025.6 7.3 L1024 6.6 L1022.4 6.1 L1020.8 5.9 L1019.2 6.2 L1017.6 7 L1016 7.2 L1014.4 7 L1012.8 7.3 L1011.2 7.8 L1009.6 7.9 L1008 7.9 L1006.4 7.9 L1004.8 8 L1003.2 8 L1001.6 8 L1000 8.2 L998.4 8.2 L996.8 8.2 L995.2 8 L993.6 7.5 L992 7.3 L990.4 7.1 L988.8 7.2 L987.2 7.4 L985.6 7.6 L984 7.8 L982.4 7.5 L980.8 7.2 L979.2 7.5 L977.6 7.8 L976 7.7 L974.4 7.8 L972.8 8.5 L971.2 8.7 L969.6 8.7 L968 9.1 L966.4 9.7 L964.8 9.7 L963.2 9.4 L961.6 9.4 L960 9.3 L958.4 9.3 L956.8 9.3 L955.2 9.6 L953.6 9.5 L952 9.2 L950.4 9.1 L948.8 9.1 L947.2 9.3 L945.6 9.3 L944 9.6 L942.4 10 L940.8 10.2 L939.2 10.5 L937.6 11 L936 11.5 L934.4 11.2 L932.8 10.7 L931.2 10.9 L929.6 10.9 L928 10.3 L926.4 10.2 L924.8 10.6 L923.2 10.6 L921.6 10.3 L920 10.2 L918.4 10.2 L916.8 10.1 L915.2 9.9 L913.6 10 L912 10.2 L910.4 10.1 L908.8 10 L907.2 9.8 L905.6 9.6 L904 9.4 L902.4 9.2 L900.8 9.1 L899.2 8.6 L897.6 7.8 L896 7.5 L894.4 7.8 L892.8 7.7 L891.2 7.7 L889.6 7.6 L888 7.5 L886.4 7.4 L884.8 7.4 L883.2 7.7 L881.6 7.9 L880 8.2 L878.4 8.3 L876.8 8.3 L875.2 8.2 L873.6 7.9 L872 7.8 L870.4 7.7 L868.8 7.9 L867.2 8.2 L865.6 8.2 L864 8.2 L862.4 8 L860.8 7.9 L859.2 8 L857.6 7.9 L856 7.7 L854.4 7.5 L852.8 7.6 L851.2 7.6 L849.6 7.3 L848 7.4 L846.4 7.4 L844.8 7.6 L843.2 8 L841.6 8.4 L840 8.7 L838.4 8.9 L836.8 8.9 L835.2 9.1 L833.6 9.2 L832 9.1 L830.4 9 L828.8 8.6 L827.2 8.4 L825.6 8.8 L824 8.7 L822.4 8.5 L820.8 8.6 L819.2 8.8 L817.6 8.6 L816 8.4 L814.4 8.8 L812.8 9.2 L811.2 9 L809.6 8.9 L808 9.3 L806.4 9.6 L804.8 9.5 L803.2 9.4 L801.6 8.8 L800 8.4 L798.4 7.9 L796.8 7.9 L795.2 8.2 L793.6 8.4 L792 8.6 L790.4 8.6 L788.8 8.6 L787.2 9.2 L785.6 9.8 L784 10.2 L782.4 10.4 L780.8 10.3 L779.2 10.2 L777.6 10.1 L776 10.1 L774.4 10.1 L772.8 9.8 L771.2 9.5 L769.6 9.4 L768 9.5 L766.4 9.2 L764.8 8.9 L763.2 8.7 L761.6 8.2 L760 7.5 L758.4 7.3 L756.8 7.6 L755.2 7.7 L753.6 7.6 L752 8.1 L750.4 8.9 L748.8 9.5 L747.2 10.2 L745.6 10.4 L744 10.6 L742.4 10.8 L740.8 11 L739.2 10.9 L737.6 10.8 L736 11 L734.4 11.1 L732.8 11 L731.2 10.9 L729.6 10.9 L728 10.5 L726.4 9.9 L724.8 9.9 L723.2 10 L721.6 9.9 L720 9.9 L718.4 9.9 L716.8 9.8 L715.2 9.3 L713.6 9 L712 9.1 L710.4 9.1 L708.8 9.3 L707.2 9.4 L705.6 9.3 L704 9.4 L702.4 9.9 L700.8 9.8 L699.2 9.7 L697.6 9.8 L696 10.1 L694.4 10.3 L692.8 10.5 L691.2 10 L689.6 9.5 L688 9.3 L686.4 9.1 L684.8 9.3 L683.2 9.4 L681.6 9.2 L680 9.6 L678.4 10.1 L676.8 10.1 L675.2 10 L673.6 9.5 L672 9.1 L670.4 9.1 L668.8 9.2 L667.2 9.3 L665.6 9.4 L664 9.7 L662.4 9.7 L660.8 9.7 L659.2 9.5 L657.6 9.1 L656 9.2 L654.4 9.7 L652.8 10.2 L651.2 10.7 L649.6 10.9 L648 11 L646.4 11 L644.8 11 L643.2 11 L641.6 10.9 L640 10.4 L638.4 9.9 L636.8 9.5 L635.2 9.5 L633.6 9.5 L632 10.1 L630.4 10.8 L628.8 11.2 L627.2 11.5 L625.6 11.4 L624 11.1 L622.4 11 L620.8 11 L619.2 11.3 L617.6 11.5 L616 11.4 L614.4 11.1 L612.8 10.8 L611.2 10.7 L609.6 10.5 L608 10.3 L606.4 9.8 L604.8 9.8 L603.2 10 L601.6 9.6 L600 9.3 L598.4 9.4 L596.8 9.5 L595.2 9.5 L593.6 9.5 L592 9.8 L590.4 10 L588.8 9.8 L587.2 9.8 L585.6 9.6 L584 9.5 L582.4 9.3 L580.8 9.2 L579.2 9.4 L577.6 9.3 L576 9.2 L574.4 9.2 L572.8 9.1 L571.2 9.4 L569.6 9.7 L568 9.6 L566.4 9.6 L564.8 9.5 L563.2 9.2 L561.6 8.9 L560 8.6 L558.4 8.6 L556.8 8.5 L555.2 8.2 L553.6 8.2 L552 8.1 L550.4 8.1 L548.8 8.1 L547.2 7.8 L545.6 7.6 L544 8.1 L542.4 8.5 L540.8 8.6 L539.2 8.8 L537.6 8.6 L536 8.5 L534.4 8.7 L532.8 8.5 L531.2 8.3 L529.6 8.5 L528 8.5 L526.4 8.3 L524.8 8.1 L523.2 8.1 L521.6 8.3 L520 8.7 L518.4 9 L516.8 9.1 L515.2 9.4 L513.6 10.2 L512 10.3 L510.4 9.9 L508.8 10 L507.2 10.1 L505.6 10.4 L504 10.7 L502.4 10.5 L500.8 10.4 L499.2 10.3 L497.6 10.2 L496 9.9 L494.4 10 L492.8 10.3 L491.2 10.6 L489.6 10.8 L488 11.1 L486.4 11.6 L484.8 11.5 L483.2 11.3 L481.6 11.2 L480 10.9 L478.4 10.2 L476.8 9.6 L475.2 9.4 L473.6 9.4 L472 9.8 L470.4 10 L468.8 10 L467.2 9.9 L465.6 9.6 L464 9.6 L462.4 9.5 L460.8 9.7 L459.2 10.1 L457.6 10.4 L456 10.7 L454.4 10.8 L452.8 10.9 L451.2 10.7 L449.6 10.6 L448 10.6 L446.4 10.5 L444.8 10.7 L443.2 10.8 L441.6 11 L440 11.4 L438.4 11.6 L436.8 11.8 L435.2 11.8 L433.6 12 L432 12.3 L430.4 11.9 L428.8 11.5 L427.2 11.3 L425.6 11.2 L424 11.4 L422.4 11.4 L420.8 10.9 L419.2 10.9 L417.6 11 L416 10.8 L414.4 10.4 L412.8 10.3 L411.2 10.4 L409.6 10.4 L408 10.4 L406.4 10.7 L404.8 10.8 L403.2 10.9 L401.6 11 L400 10.7 L398.4 10.7 L396.8 10.8 L395.2 10.8 L393.6 10.6 L392 10.6 L390.4 10.6 L388.8 10.4 L387.2 10.1 L385.6 10.2 L384 10.3 L382.4 10.3 L380.8 10.2 L379.2 9.8 L377.6 9.5 L376 9.3 L374.4 9.2 L372.8 9.2 L371.2 9.2 L369.6 9.5 L368 9.4 L366.4 9.1 L364.8 9.3 L363.2 9.7 L361.6 9.4 L360 9.1 L358.4 9.2 L356.8 9.2 L355.2 9.5 L353.6 9.7 L352 9.3 L350.4 9.3 L348.8 9.5 L347.2 9.6 L345.6 10 L344 9.9 L342.4 9.8 L340.8 9.6 L339.2 9.4 L337.6 9.2 L336 8.6 L334.4 8 L332.8 7.6 L331.2 8 L329.6 8.3 L328 8 L326.4 8.3 L324.8 8.4 L323.2 8.6 L321.6 8.9 L320 9.1 L318.4 9.3 L316.8 9.2 L315.2 8.1 L313.6 7.2 L312 6.7 L310.4 6.6 L308.8 6.8 L307.2 7.7 L305.6 8.7 L304 9.3 L302.4 9.2 L300.8 9.2 L299.2 9.3 L297.6 9.6 L296 10 L294.4 10.4 L292.8 10.5 L291.2 10.7 L289.6 11 L288 11.3 L286.4 11.7 L284.8 12.1 L283.2 12.4 L281.6 12.5 L280 12.9 L278.4 12.9 L276.8 12.5 L275.2 12.1 L273.6 11.9 L272 11.6 L270.4 11.2 L268.8 10.7 L267.2 10.1 L265.6 9.6 L264 9.7 L262.4 9.8 L260.8 9.9 L259.2 9.8 L257.6 9.8 L256 9.8 L254.4 9.8 L252.8 9.9 L251.2 9.8 L249.6 9.4 L248 9.4 L246.4 9.8 L244.8 9.6 L243.2 9.3 L241.6 9.3 L240 9.4 L238.4 9 L236.8 8.5 L235.2 8.6 L233.6 8.4 L232 7.8 L230.4 7.5 L228.8 7.4 L227.2 7.2 L225.6 7.2 L224 7.2 L222.4 7.3 L220.8 7.6 L219.2 8 L217.6 8.1 L216 8.2 L214.4 8.4 L212.8 8.6 L211.2 9 L209.6 9.2 L208 9.4 L206.4 9.3 L204.8 8.7 L203.2 8.6 L201.6 8.9 L200 8.8 L198.4 8.4 L196.8 8.3 L195.2 8.1 L193.6 8.2 L192 8.4 L190.4 8.3 L188.8 8.2 L187.2 8.5 L185.6 8.6 L184 8.3 L182.4 8.2 L180.8 8.3 L179.2 8.2 L177.6 8 L176 7.7 L174.4 7.4 L172.8 7.7 L171.2 8.2 L169.6 8.3 L168 8.3 L166.4 8.4 L164.8 8.3 L163.2 7.8 L161.6 7.5 L160 7.8 L158.4 8 L156.8 8.1 L155.2 8.4 L153.6 8.8 L152 8.7 L150.4 8.5 L148.8 8.4 L147.2 8.4 L145.6 8.4 L144 8.3 L142.4 8.5 L140.8 8.6 L139.2 8.5 L137.6 8.5 L136 9.3 L134.4 9.5 L132.8 9.4 L131.2 9.5 L129.6 9.8 L128 10.1 L126.4 10.3 L124.8 10.1 L123.2 9.7 L121.6 9.5 L120 10.1 L118.4 10.3 L116.8 10.4 L115.2 10.7 L113.6 10.8 L112 10.5 L110.4 10.3 L108.8 10.1 L107.2 9.8 L105.6 9.5 L104 8.8 L102.4 8.9 L100.8 9.4 L99.2 9.8 L97.6 9.6 L96 9.1 L94.4 9.3 L92.8 9.3 L91.2 9 L89.6 8.9 L88 8.8 L86.4 8.6 L84.8 7.9 L83.2 7.8 L81.6 8.4 L80 8.7 L78.4 8.8 L76.8 9 L75.2 9.2 L73.6 9.1 L72 9 L70.4 9.5 L68.8 9.8 L67.2 9.8 L65.6 9.7 L64 9.7 L62.4 9.8 L60.8 10 L59.2 10.2 L57.6 10 L56 10.2 L54.4 10.4 L52.8 10.5 L51.2 10.5 L49.6 10.3 L48 10.1 L46.4 9.7 L44.8 9.3 L43.2 9.3 L41.6 9.4 L40 9.4 L38.4 9.7 L36.8 10 L35.2 10.2 L33.6 10.3 L32 10 L30.4 9.5 L28.8 9.4 L27.2 9.6 L25.6 9.8 L24 10 L22.4 10.3 L20.8 10.5 L19.2 10.6 L17.6 10.5 L16 10.2 L14.4 10 L12.8 10.1 L11.2 9.9 L9.6 9.6 L8 9.4 L6.4 9.1 L4.8 9 L3.2 9.1 L1.6 9.1 L0 9.2 Z'/%3E%3C/svg%3E");
  background-color: rgba(250, 245, 230, .93);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='18'%3E%3Cpath d='M0 9 L1.6 8.4 L3.2 8 L4.8 7.6 L6.4 7.7 L8 8.1 L9.6 8.3 L11.2 8.6 L12.8 8.7 L14.4 8.7 L16 9.3 L17.6 10 L19.2 10.3 L20.8 10 L22.4 9.6 L24 9.1 L25.6 8.8 L27.2 8.2 L28.8 8.3 L30.4 8.7 L32 9.6 L33.6 10.3 L35.2 10.2 L36.8 10 L38.4 9.7 L40 9.4 L41.6 9.4 L43.2 9.2 L44.8 8.8 L46.4 8.9 L48 9.1 L49.6 8.8 L51.2 9.3 L52.8 9.6 L54.4 10 L56 9.9 L57.6 10 L59.2 10.2 L60.8 10 L62.4 9.8 L64 9.2 L65.6 8.9 L67.2 8.8 L68.8 9.6 L70.4 9.5 L72 9 L73.6 9 L75.2 8.8 L76.8 7.9 L78.4 7.5 L80 7.5 L81.6 7.9 L83.2 7.7 L84.8 7.7 L86.4 8.4 L88 8.5 L89.6 8.5 L91.2 8.6 L92.8 8.9 L94.4 8.8 L96 8.7 L97.6 9.4 L99.2 9.4 L100.8 8.9 L102.4 8.2 L104 8.2 L105.6 8.7 L107.2 8.5 L108.8 8.9 L110.4 9.3 L112 9.7 L113.6 9.9 L115.2 9.6 L116.8 10 L118.4 10 L120 9.3 L121.6 8.8 L123.2 9.4 L124.8 10.1 L126.4 10.3 L128 10.1 L129.6 9.8 L131.2 9.5 L132.8 9.2 L134.4 9.5 L136 9 L137.6 8.1 L139.2 7.9 L140.8 8.2 L142.4 8.5 L144 8.2 L145.6 7.9 L147.2 7.6 L148.8 7.1 L150.4 7.1 L152 7.2 L153.6 7.9 L155.2 8.2 L156.8 7.3 L158.4 7.3 L160 7.5 L161.6 7.4 L163.2 7.7 L164.8 8.3 L166.4 8.4 L168 8.3 L169.6 8.1 L171.2 7.9 L172.8 7.4 L174.4 7.2 L176 7.6 L177.6 8 L179.2 8.2 L180.8 8.3 L182.4 7.9 L184 7.7 L185.6 8 L187.2 8.4 L188.8 7.5 L190.4 7.1 L192 7.7 L193.6 7.4 L195.2 7.2 L196.8 7.9 L198.4 8 L200 7.9 L201.6 8.1 L203.2 7.7 L204.8 7.7 L206.4 8.6 L208 8.9 L209.6 8.2 L211.2 8.1 L212.8 7.9 L214.4 8.2 L216 8 L217.6 7.5 L219.2 7.5 L220.8 6.9 L222.4 6.2 L224 6.3 L225.6 6.4 L227.2 6.7 L228.8 6.9 L230.4 6.9 L232 6.2 L233.6 6.9 L235.2 7.8 L236.8 7.5 L238.4 8.3 L240 9.3 L241.6 8.8 L243.2 8.7 L244.8 9.1 L246.4 9.2 L248 8.9 L249.6 9 L251.2 9.7 L252.8 9.9 L254.4 9.8 L256 9.8 L257.6 9.8 L259.2 9.8 L260.8 9.9 L262.4 9.8 L264 9.7 L265.6 9.6 L267.2 10.1 L268.8 10.7 L270.4 11.2 L272 11.6 L273.6 11.9 L275.2 12.1 L276.8 12.5 L278.4 12.6 L280 11.5 L281.6 11.5 L283.2 11.5 L284.8 10.9 L286.4 10.6 L288 10.4 L289.6 10.3 L291.2 10.2 L292.8 10.2 L294.4 10.2 L296 9.5 L297.6 8.5 L299.2 8.2 L300.8 8 L302.4 7.8 L304 8.4 L305.6 8.1 L307.2 6.7 L308.8 5.7 L310.4 5.4 L312 6 L313.6 6.7 L315.2 7.8 L316.8 8.5 L318.4 8.5 L320 8.2 L321.6 7.5 L323.2 6.8 L324.8 6.7 L326.4 6.7 L328 6.6 L329.6 7.3 L331.2 7 L332.8 6.8 L334.4 7 L336 7.8 L337.6 8.8 L339.2 9.2 L340.8 9.6 L342.4 9.5 L344 9.8 L345.6 9.9 L347.2 9.5 L348.8 9.3 L350.4 8.8 L352 8.8 L353.6 8.6 L355.2 7.9 L356.8 7.7 L358.4 7.6 L360 7.7 L361.6 8.6 L363.2 9.3 L364.8 9 L366.4 8.6 L368 8.7 L369.6 9.4 L371.2 9 L372.8 8.7 L374.4 8.6 L376 8.6 L377.6 8.9 L379.2 8.8 L380.8 9.3 L382.4 10 L384 9.8 L385.6 9.5 L387.2 9.4 L388.8 9.8 L390.4 10.1 L392 10.5 L393.6 10.6 L395.2 10.8 L396.8 10.8 L398.4 10.7 L400 10.5 L401.6 11 L403.2 10.9 L404.8 10.6 L406.4 10.7 L408 10.4 L409.6 10 L411.2 10 L412.8 10 L414.4 9.9 L416 10.4 L417.6 10.9 L419.2 10.9 L420.8 10.9 L422.4 11 L424 10.6 L425.6 10 L427.2 10 L428.8 11 L430.4 11.9 L432 12.3 L433.6 12 L435.2 11.3 L436.8 11.3 L438.4 11.1 L440 10.7 L441.6 10.1 L443.2 9.7 L444.8 9.6 L446.4 10 L448 10.6 L449.6 10.6 L451.2 10.7 L452.8 10.9 L454.4 10.8 L456 10.6 L457.6 10.1 L459.2 9.8 L460.8 9.5 L462.4 9.3 L464 8.9 L465.6 8.4 L467.2 8.4 L468.8 8.5 L470.4 8.6 L472 8.8 L473.6 8.6 L475.2 8.8 L476.8 9 L478.4 9.5 L480 10.2 L481.6 10.6 L483.2 10.8 L484.8 11 L486.4 11.1 L488 10.5 L489.6 9.5 L491.2 9.5 L492.8 9.7 L494.4 9.5 L496 9.9 L497.6 10.2 L499.2 10.3 L500.8 10.1 L502.4 10 L504 10.6 L505.6 10.4 L507.2 9.8 L508.8 10 L510.4 9.9 L512 10.3 L513.6 9.6 L515.2 8.3 L516.8 8.2 L518.4 8.6 L520 8.6 L521.6 8.3 L523.2 8 L524.8 7.9 L526.4 7.1 L528 6.9 L529.6 7.7 L531.2 7.9 L532.8 8.2 L534.4 8.7 L536 8.5 L537.6 8.6 L539.2 8.6 L540.8 8.3 L542.4 8 L544 8.1 L545.6 7.6 L547.2 7.8 L548.8 7.6 L550.4 6.9 L552 6.6 L553.6 7 L555.2 7.5 L556.8 7.8 L558.4 7.8 L560 7.6 L561.6 8.3 L563.2 8.9 L564.8 9.5 L566.4 9.1 L568 8.8 L569.6 9.3 L571.2 9.1 L572.8 8.8 L574.4 8.5 L576 8.8 L577.6 9.3 L579.2 9.4 L580.8 9.1 L582.4 8.7 L584 8.9 L585.6 9.3 L587.2 9.8 L588.8 9.8 L590.4 10 L592 9.6 L593.6 8.8 L595.2 8.6 L596.8 8.9 L598.4 8.8 L600 8.3 L601.6 8.4 L603.2 8.9 L604.8 9.3 L606.4 9.1 L608 9.4 L609.6 10.4 L611.2 10.5 L612.8 10.4 L614.4 10.7 L616 11.4 L617.6 11.5 L619.2 11.3 L620.8 10.8 L622.4 10.4 L624 10.7 L625.6 11 L627.2 11.3 L628.8 10.6 L630.4 9.7 L632 8.8 L633.6 8.4 L635.2 8.8 L636.8 8.7 L638.4 9.3 L640 10.2 L641.6 10.9 L643.2 11 L644.8 11 L646.4 11 L648 10.9 L649.6 10.7 L651.2 10 L652.8 9 L654.4 8.5 L656 8.2 L657.6 8.3 L659.2 8.9 L660.8 9.1 L662.4 9.3 L664 9.7 L665.6 9.4 L667.2 9.1 L668.8 8.5 L670.4 8 L672 7.9 L673.6 8.3 L675.2 8.6 L676.8 8.8 L678.4 9 L680 9 L681.6 8.1 L683.2 8.1 L684.8 8 L686.4 8.6 L688 9.3 L689.6 9.5 L691.2 10 L692.8 10.5 L694.4 9.7 L696 9.3 L697.6 9.5 L699.2 9.3 L700.8 9.8 L702.4 9.9 L704 9.4 L705.6 9.2 L707.2 9.4 L708.8 9 L710.4 8.4 L712 8.4 L713.6 7.9 L715.2 7.9 L716.8 8.8 L718.4 9.4 L720 9.8 L721.6 9.9 L723.2 10 L724.8 9.7 L726.4 9.8 L728 10.5 L729.6 10.9 L731.2 10.5 L732.8 10.4 L734.4 11.1 L736 11 L737.6 10.8 L739.2 10.9 L740.8 10.9 L742.4 10.4 L744 10.4 L745.6 10.1 L747.2 9.3 L748.8 8.4 L750.4 7.7 L752 6.7 L753.6 6.8 L755.2 7.7 L756.8 7.4 L758.4 6.9 L760 6.9 L761.6 7 L763.2 7.3 L764.8 7.8 L766.4 7.8 L768 7.9 L769.6 7.9 L771.2 8.1 L772.8 8.6 L774.4 8.7 L776 8.7 L777.6 8.6 L779.2 8.7 L780.8 8.9 L782.4 9.7 L784 9.4 L785.6 9 L787.2 8.9 L788.8 8.1 L790.4 7.9 L792 8.1 L793.6 8.2 L795.2 8.2 L796.8 7.9 L798.4 7.9 L800 8.4 L801.6 8.7 L803.2 9 L804.8 9.1 L806.4 9 L808 8.7 L809.6 8.4 L811.2 8.3 L812.8 8.2 L814.4 8.4 L816 7.8 L817.6 7.6 L819.2 7.6 L820.8 7.2 L822.4 7.1 L824 7.7 L825.6 8.3 L827.2 8.4 L828.8 8.4 L830.4 8.7 L832 9.1 L833.6 9.2 L835.2 9.1 L836.8 8.9 L838.4 8.9 L840 8.7 L841.6 8.4 L843.2 8 L844.8 7.1 L846.4 7 L848 7.2 L849.6 7.3 L851.2 7.6 L852.8 7.6 L854.4 7.2 L856 6.9 L857.6 7.2 L859.2 7.5 L860.8 7.7 L862.4 7.6 L864 8.2 L865.6 8.1 L867.2 7.9 L868.8 7.2 L870.4 6.7 L872 7.3 L873.6 7.6 L875.2 7.9 L876.8 8.1 L878.4 8.2 L880 8.2 L881.6 7.9 L883.2 7.7 L884.8 7.4 L886.4 7.4 L888 7.5 L889.6 7.4 L891.2 7.7 L892.8 7.7 L894.4 7.8 L896 7.5 L897.6 7.8 L899.2 8.4 L900.8 8.7 L902.4 8.6 L904 8.6 L905.6 8.7 L907.2 9.1 L908.8 9.8 L910.4 10.1 L912 10.1 L913.6 9.6 L915.2 9.2 L916.8 9.1 L918.4 9.1 L920 9.1 L921.6 9.4 L923.2 10 L924.8 10.5 L926.4 9.9 L928 9.9 L929.6 10.2 L931.2 10.5 L932.8 10.7 L934.4 10.9 L936 11.2 L937.6 10.5 L939.2 9.8 L940.8 9.4 L942.4 9 L944 8.6 L945.6 8.6 L947.2 9.1 L948.8 8.9 L950.4 8.7 L952 9 L953.6 9.4 L955.2 9.6 L956.8 8.9 L958.4 9.2 L960 9.3 L961.6 9.4 L963.2 9.4 L964.8 9.7 L966.4 9.7 L968 8.8 L969.6 7.9 L971.2 7.8 L972.8 7.7 L974.4 7.3 L976 7.6 L977.6 7.8 L979.2 7.5 L980.8 7.1 L982.4 6.6 L984 7.1 L985.6 7.1 L987.2 7.4 L988.8 7.2 L990.4 7.1 L992 7.3 L993.6 7.5 L995.2 8 L996.8 8.2 L998.4 8.1 L1000 7.6 L1001.6 7.2 L1003.2 7.1 L1004.8 6.7 L1006.4 6.8 L1008 6.9 L1009.6 7 L1011.2 7.4 L1012.8 7.3 L1014.4 6.8 L1016 6.9 L1017.6 6.7 L1019.2 5.5 L1020.8 5.1 L1022.4 5.1 L1024 6.1 L1025.6 7.1 L1027.2 7.5 L1028.8 7 L1030.4 6.6 L1032 6.6 L1033.6 6.1 L1035.2 5.8 L1036.8 6 L1038.4 6.4 L1040 6.6 L1041.6 7.3 L1043.2 7.7 L1044.8 7.8 L1046.4 8 L1048 8.2 L1049.6 8 L1051.2 7.9 L1052.8 7.7 L1054.4 6.7 L1056 6.1 L1057.6 5.7 L1059.2 5.6 L1060.8 6 L1062.4 6.4 L1064 6.6 L1065.6 6.2 L1067.2 5.2 L1068.8 5.1 L1070.4 5.5 L1072 6.5 L1073.6 6.7 L1075.2 6.4 L1076.8 6.2 L1078.4 6.2 L1080 6.4 L1081.6 6 L1083.2 5.7 L1084.8 6.2 L1086.4 6.4 L1088 6 L1089.6 5.8 L1091.2 5.7 L1092.8 5.8 L1094.4 5.5 L1096 5.6 L1097.6 5.7 L1099.2 5.6 L1100.8 5.7 L1102.4 5.4 L1104 4.9 L1105.6 4.7 L1107.2 4.8 L1108.8 4.7 L1110.4 4.7 L1112 4.4 L1113.6 4.7 L1115.2 4.6 L1116.8 4.5 L1118.4 4.6 L1120 5.3 L1121.6 6.1 L1123.2 6.3 L1124.8 6.2 L1126.4 5.8 L1128 5.6 L1129.6 6.1 L1131.2 6.5 L1132.8 6.5 L1134.4 6.8 L1136 6.1 L1137.6 5.5 L1139.2 5.7 L1140.8 5.8 L1142.4 5.6 L1144 5.9 L1145.6 6.1 L1147.2 6.8 L1148.8 7.2 L1150.4 7 L1152 6.2 L1153.6 5.9 L1155.2 6.1 L1156.8 6.5 L1158.4 6.8 L1160 7.5 L1161.6 7 L1163.2 6.4 L1164.8 6.6 L1166.4 6.6 L1168 7 L1169.6 7.8 L1171.2 8.2 L1172.8 8.7 L1174.4 9 L1176 9.2 L1177.6 9.2 L1179.2 9.3 L1180.8 9 L1182.4 9 L1184 9.4 L1185.6 9.5 L1187.2 9.1 L1188.8 9 L1190.4 8.8 L1192 8.6 L1193.6 8.8 L1195.2 9.5 L1196.8 9.6 L1198.4 9.3 L1200 8.8 L1201.6 8.8 L1203.2 8.5 L1204.8 7.9 L1206.4 7.4 L1208 7.7 L1209.6 8.7 L1211.2 8.7 L1212.8 8.6 L1214.4 7.9 L1216 7.5 L1217.6 7.6 L1219.2 8 L1220.8 8.3 L1222.4 8.7 L1224 8.8 L1225.6 9 L1227.2 9.2 L1228.8 9.1 L1230.4 9.1 L1232 9.3 L1233.6 9.1 L1235.2 9.2 L1236.8 9.1 L1238.4 9 L1240 9.2 L1241.6 9.5 L1243.2 10 L1244.8 9.9 L1246.4 9.4 L1248 8.8 L1249.6 9.4 L1251.2 9.3 L1252.8 8.5 L1254.4 8.1 L1256 8.7 L1257.6 9.1 L1259.2 9 L1260.8 9.1 L1262.4 9.4 L1264 8.6 L1265.6 7.7 L1267.2 7.8 L1268.8 8.2 L1270.4 8.2 L1272 8 L1273.6 8.1 L1275.2 8.3 L1276.8 8.3 L1278.4 8.5 L1280 8.3 L1281.6 8.3 L1283.2 8.5 L1284.8 8.6 L1286.4 8.3 L1288 7.9 L1289.6 7.7 L1291.2 7.8 L1292.8 8 L1294.4 8.3 L1296 8.6 L1297.6 8 L1299.2 8.1 L1300.8 7.9 L1302.4 7.4 L1304 7.5 L1305.6 7.6 L1307.2 7.7 L1308.8 8 L1310.4 8.4 L1312 8.6 L1313.6 9.2 L1315.2 9.6 L1316.8 9.8 L1318.4 9.8 L1320 9.7 L1321.6 10.3 L1323.2 10.5 L1324.8 10.1 L1326.4 9.8 L1328 10 L1329.6 9.3 L1331.2 8.8 L1332.8 8.8 L1334.4 8.8 L1336 9.1 L1337.6 9.1 L1339.2 8.6 L1340.8 8.2 L1342.4 7.8 L1344 7.5 L1345.6 7.8 L1347.2 7.9 L1348.8 7.8 L1350.4 7.7 L1352 7.2 L1353.6 7.2 L1355.2 7.7 L1356.8 8.3 L1358.4 8.5 L1360 8.6 L1361.6 8.3 L1363.2 8.2 L1364.8 7.9 L1366.4 7.2 L1368 6.5 L1369.6 6.4 L1371.2 6.9 L1372.8 6.9 L1374.4 6.3 L1376 6.5 L1377.6 6.5 L1379.2 6.2 L1380.8 6 L1382.4 6 L1384 6.2 L1385.6 7.8 L1387.2 9 L1388.8 9.2 L1390.4 8.4 L1392 7.7 L1393.6 7.1 L1395.2 6.5 L1396.8 6.6 L1398.4 6.8 L1400 7.1 L1401.6 7.7 L1403.2 8.2 L1404.8 8.7 L1406.4 8.6 L1408 8.3 L1409.6 7.9 L1411.2 7.7 L1412.8 7.5 L1414.4 7.7 L1416 7.9 L1417.6 8.2 L1419.2 8.4 L1420.8 8 L1422.4 7.9 L1424 8.1 L1425.6 8.1 L1427.2 8.1 L1428.8 8.4 L1430.4 8.9 L1432 8.9 L1433.6 8.6 L1435.2 8.3 L1436.8 8 L1438.4 8.3 L1440 9 L1440 9.2 L1438.4 9 L1436.8 9 L1435.2 9.2 L1433.6 9.3 L1432 9.3 L1430.4 9 L1428.8 8.4 L1427.2 8.1 L1425.6 8.3 L1424 8.2 L1422.4 7.9 L1420.8 8.1 L1419.2 8.5 L1417.6 8.2 L1416 7.9 L1414.4 7.7 L1412.8 7.6 L1411.2 7.7 L1409.6 7.9 L1408 8.3 L1406.4 8.6 L1404.8 8.7 L1403.2 8.6 L1401.6 8.5 L1400 8.4 L1398.4 8.3 L1396.8 8 L1395.2 7.7 L1393.6 7.8 L1392 8 L1390.4 8.5 L1388.8 9.3 L1387.2 9.3 L1385.6 8.7 L1384 6.8 L1382.4 6 L1380.8 6 L1379.2 6.2 L1377.6 6.5 L1376 6.6 L1374.4 6.4 L1372.8 6.9 L1371.2 7.2 L1369.6 7.1 L1368 7.4 L1366.4 7.9 L1364.8 8.3 L1363.2 8.8 L1361.6 8.9 L1360 8.9 L1358.4 8.6 L1356.8 8.4 L1355.2 8.3 L1353.6 7.8 L1352 7.8 L1350.4 7.9 L1348.8 8.1 L1347.2 8.3 L1345.6 8.1 L1344 7.8 L1342.4 8.1 L1340.8 8.4 L1339.2 8.7 L1337.6 9.1 L1336 9.6 L1334.4 9.9 L1332.8 10.2 L1331.2 10.3 L1329.6 10.4 L1328 10.2 L1326.4 9.8 L1324.8 10.1 L1323.2 10.5 L1321.6 10.3 L1320 9.8 L1318.4 10.2 L1316.8 10.5 L1315.2 10.5 L1313.6 10.4 L1312 9.7 L1310.4 9 L1308.8 8.4 L1307.2 8.2 L1305.6 8.2 L1304 8.4 L1302.4 8.6 L1300.8 8.7 L1299.2 8.8 L1297.6 8.9 L1296 9.1 L1294.4 8.7 L1292.8 8.4 L1291.2 8.5 L1289.6 8.6 L1288 8.3 L1286.4 8.3 L1284.8 8.6 L1283.2 8.5 L1281.6 8.3 L1280 8.3 L1278.4 8.6 L1276.8 8.5 L1275.2 8.4 L1273.6 8.5 L1272 8.5 L1270.4 8.9 L1268.8 9.2 L1267.2 9.1 L1265.6 9.1 L1264 9.4 L1262.4 9.4 L1260.8 9.1 L1259.2 9 L1257.6 9.1 L1256 9.1 L1254.4 8.9 L1252.8 9.3 L1251.2 9.9 L1249.6 9.7 L1248 9.5 L1246.4 10.1 L1244.8 10.5 L1243.2 10 L1241.6 9.5 L1240 9.2 L1238.4 9 L1236.8 9.2 L1235.2 9.4 L1233.6 9.4 L1232 9.8 L1230.4 10.3 L1228.8 10.3 L1227.2 10.2 L1225.6 9.7 L1224 9.3 L1222.4 9.1 L1220.8 8.9 L1219.2 8.8 L1217.6 8.7 L1216 8.4 L1214.4 8.3 L1212.8 8.6 L1211.2 8.7 L1209.6 8.7 L1208 8.6 L1206.4 8.6 L1204.8 8.7 L1203.2 8.8 L1201.6 8.8 L1200 8.9 L1198.4 9.7 L1196.8 10.3 L1195.2 10 L1193.6 9.7 L1192 9.5 L1190.4 9.3 L1188.8 9.1 L1187.2 9.1 L1185.6 9.5 L1184 9.4 L1182.4 9 L1180.8 9.1 L1179.2 9.3 L1177.6 9.2 L1176 9.2 L1174.4 9 L1172.8 8.7 L1171.2 8.2 L1169.6 7.8 L1168 7.6 L1166.4 7.6 L1164.8 7.9 L1163.2 7.7 L1161.6 7.8 L1160 7.5 L1158.4 6.8 L1156.8 6.5 L1155.2 6.1 L1153.6 6.3 L1152 6.8 L1150.4 7.2 L1148.8 7.8 L1147.2 7.8 L1145.6 7.5 L1144 7.3 L1142.4 6.9 L1140.8 6.3 L1139.2 6.1 L1137.6 6.2 L1136 6.5 L1134.4 7.2 L1132.8 7.2 L1131.2 7.1 L1129.6 6.8 L1128 6.3 L1126.4 6.3 L1124.8 6.3 L1123.2 6.3 L1121.6 6.1 L1120 5.3 L1118.4 4.7 L1116.8 4.6 L1115.2 4.6 L1113.6 4.9 L1112 5.1 L1110.4 5.2 L1108.8 5.2 L1107.2 5.2 L1105.6 5.3 L1104 5.4 L1102.4 5.9 L1100.8 6 L1099.2 5.8 L1097.6 5.7 L1096 6 L1094.4 6.2 L1092.8 5.9 L1091.2 6 L1089.6 6.3 L1088 6.5 L1086.4 6.9 L1084.8 6.7 L1083.2 6.3 L1081.6 6.4 L1080 6.5 L1078.4 6.5 L1076.8 6.6 L1075.2 6.7 L1073.6 6.8 L1072 6.7 L1070.4 6.7 L1068.8 6.6 L1067.2 6.7 L1065.6 7 L1064 7 L1062.4 6.7 L1060.8 6.7 L1059.2 6.7 L1057.6 7 L1056 7.4 L1054.4 7.9 L1052.8 8.4 L1051.2 8.5 L1049.6 8.6 L1048 8.3 L1046.4 8.1 L1044.8 8.2 L1043.2 8 L1041.6 7.9 L1040 7.8 L1038.4 7.8 L1036.8 7.2 L1035.2 6.5 L1033.6 6.8 L1032 7.4 L1030.4 7.4 L1028.8 7.4 L1027.2 7.5 L1025.6 7.3 L1024 6.6 L1022.4 6.1 L1020.8 5.9 L1019.2 6.2 L1017.6 7 L1016 7.2 L1014.4 7 L1012.8 7.3 L1011.2 7.8 L1009.6 7.9 L1008 7.9 L1006.4 7.9 L1004.8 8 L1003.2 8 L1001.6 8 L1000 8.2 L998.4 8.2 L996.8 8.2 L995.2 8 L993.6 7.5 L992 7.3 L990.4 7.1 L988.8 7.2 L987.2 7.4 L985.6 7.6 L984 7.8 L982.4 7.5 L980.8 7.2 L979.2 7.5 L977.6 7.8 L976 7.7 L974.4 7.8 L972.8 8.5 L971.2 8.7 L969.6 8.7 L968 9.1 L966.4 9.7 L964.8 9.7 L963.2 9.4 L961.6 9.4 L960 9.3 L958.4 9.3 L956.8 9.3 L955.2 9.6 L953.6 9.5 L952 9.2 L950.4 9.1 L948.8 9.1 L947.2 9.3 L945.6 9.3 L944 9.6 L942.4 10 L940.8 10.2 L939.2 10.5 L937.6 11 L936 11.5 L934.4 11.2 L932.8 10.7 L931.2 10.9 L929.6 10.9 L928 10.3 L926.4 10.2 L924.8 10.6 L923.2 10.6 L921.6 10.3 L920 10.2 L918.4 10.2 L916.8 10.1 L915.2 9.9 L913.6 10 L912 10.2 L910.4 10.1 L908.8 10 L907.2 9.8 L905.6 9.6 L904 9.4 L902.4 9.2 L900.8 9.1 L899.2 8.6 L897.6 7.8 L896 7.5 L894.4 7.8 L892.8 7.7 L891.2 7.7 L889.6 7.6 L888 7.5 L886.4 7.4 L884.8 7.4 L883.2 7.7 L881.6 7.9 L880 8.2 L878.4 8.3 L876.8 8.3 L875.2 8.2 L873.6 7.9 L872 7.8 L870.4 7.7 L868.8 7.9 L867.2 8.2 L865.6 8.2 L864 8.2 L862.4 8 L860.8 7.9 L859.2 8 L857.6 7.9 L856 7.7 L854.4 7.5 L852.8 7.6 L851.2 7.6 L849.6 7.3 L848 7.4 L846.4 7.4 L844.8 7.6 L843.2 8 L841.6 8.4 L840 8.7 L838.4 8.9 L836.8 8.9 L835.2 9.1 L833.6 9.2 L832 9.1 L830.4 9 L828.8 8.6 L827.2 8.4 L825.6 8.8 L824 8.7 L822.4 8.5 L820.8 8.6 L819.2 8.8 L817.6 8.6 L816 8.4 L814.4 8.8 L812.8 9.2 L811.2 9 L809.6 8.9 L808 9.3 L806.4 9.6 L804.8 9.5 L803.2 9.4 L801.6 8.8 L800 8.4 L798.4 7.9 L796.8 7.9 L795.2 8.2 L793.6 8.4 L792 8.6 L790.4 8.6 L788.8 8.6 L787.2 9.2 L785.6 9.8 L784 10.2 L782.4 10.4 L780.8 10.3 L779.2 10.2 L777.6 10.1 L776 10.1 L774.4 10.1 L772.8 9.8 L771.2 9.5 L769.6 9.4 L768 9.5 L766.4 9.2 L764.8 8.9 L763.2 8.7 L761.6 8.2 L760 7.5 L758.4 7.3 L756.8 7.6 L755.2 7.7 L753.6 7.6 L752 8.1 L750.4 8.9 L748.8 9.5 L747.2 10.2 L745.6 10.4 L744 10.6 L742.4 10.8 L740.8 11 L739.2 10.9 L737.6 10.8 L736 11 L734.4 11.1 L732.8 11 L731.2 10.9 L729.6 10.9 L728 10.5 L726.4 9.9 L724.8 9.9 L723.2 10 L721.6 9.9 L720 9.9 L718.4 9.9 L716.8 9.8 L715.2 9.3 L713.6 9 L712 9.1 L710.4 9.1 L708.8 9.3 L707.2 9.4 L705.6 9.3 L704 9.4 L702.4 9.9 L700.8 9.8 L699.2 9.7 L697.6 9.8 L696 10.1 L694.4 10.3 L692.8 10.5 L691.2 10 L689.6 9.5 L688 9.3 L686.4 9.1 L684.8 9.3 L683.2 9.4 L681.6 9.2 L680 9.6 L678.4 10.1 L676.8 10.1 L675.2 10 L673.6 9.5 L672 9.1 L670.4 9.1 L668.8 9.2 L667.2 9.3 L665.6 9.4 L664 9.7 L662.4 9.7 L660.8 9.7 L659.2 9.5 L657.6 9.1 L656 9.2 L654.4 9.7 L652.8 10.2 L651.2 10.7 L649.6 10.9 L648 11 L646.4 11 L644.8 11 L643.2 11 L641.6 10.9 L640 10.4 L638.4 9.9 L636.8 9.5 L635.2 9.5 L633.6 9.5 L632 10.1 L630.4 10.8 L628.8 11.2 L627.2 11.5 L625.6 11.4 L624 11.1 L622.4 11 L620.8 11 L619.2 11.3 L617.6 11.5 L616 11.4 L614.4 11.1 L612.8 10.8 L611.2 10.7 L609.6 10.5 L608 10.3 L606.4 9.8 L604.8 9.8 L603.2 10 L601.6 9.6 L600 9.3 L598.4 9.4 L596.8 9.5 L595.2 9.5 L593.6 9.5 L592 9.8 L590.4 10 L588.8 9.8 L587.2 9.8 L585.6 9.6 L584 9.5 L582.4 9.3 L580.8 9.2 L579.2 9.4 L577.6 9.3 L576 9.2 L574.4 9.2 L572.8 9.1 L571.2 9.4 L569.6 9.7 L568 9.6 L566.4 9.6 L564.8 9.5 L563.2 9.2 L561.6 8.9 L560 8.6 L558.4 8.6 L556.8 8.5 L555.2 8.2 L553.6 8.2 L552 8.1 L550.4 8.1 L548.8 8.1 L547.2 7.8 L545.6 7.6 L544 8.1 L542.4 8.5 L540.8 8.6 L539.2 8.8 L537.6 8.6 L536 8.5 L534.4 8.7 L532.8 8.5 L531.2 8.3 L529.6 8.5 L528 8.5 L526.4 8.3 L524.8 8.1 L523.2 8.1 L521.6 8.3 L520 8.7 L518.4 9 L516.8 9.1 L515.2 9.4 L513.6 10.2 L512 10.3 L510.4 9.9 L508.8 10 L507.2 10.1 L505.6 10.4 L504 10.7 L502.4 10.5 L500.8 10.4 L499.2 10.3 L497.6 10.2 L496 9.9 L494.4 10 L492.8 10.3 L491.2 10.6 L489.6 10.8 L488 11.1 L486.4 11.6 L484.8 11.5 L483.2 11.3 L481.6 11.2 L480 10.9 L478.4 10.2 L476.8 9.6 L475.2 9.4 L473.6 9.4 L472 9.8 L470.4 10 L468.8 10 L467.2 9.9 L465.6 9.6 L464 9.6 L462.4 9.5 L460.8 9.7 L459.2 10.1 L457.6 10.4 L456 10.7 L454.4 10.8 L452.8 10.9 L451.2 10.7 L449.6 10.6 L448 10.6 L446.4 10.5 L444.8 10.7 L443.2 10.8 L441.6 11 L440 11.4 L438.4 11.6 L436.8 11.8 L435.2 11.8 L433.6 12 L432 12.3 L430.4 11.9 L428.8 11.5 L427.2 11.3 L425.6 11.2 L424 11.4 L422.4 11.4 L420.8 10.9 L419.2 10.9 L417.6 11 L416 10.8 L414.4 10.4 L412.8 10.3 L411.2 10.4 L409.6 10.4 L408 10.4 L406.4 10.7 L404.8 10.8 L403.2 10.9 L401.6 11 L400 10.7 L398.4 10.7 L396.8 10.8 L395.2 10.8 L393.6 10.6 L392 10.6 L390.4 10.6 L388.8 10.4 L387.2 10.1 L385.6 10.2 L384 10.3 L382.4 10.3 L380.8 10.2 L379.2 9.8 L377.6 9.5 L376 9.3 L374.4 9.2 L372.8 9.2 L371.2 9.2 L369.6 9.5 L368 9.4 L366.4 9.1 L364.8 9.3 L363.2 9.7 L361.6 9.4 L360 9.1 L358.4 9.2 L356.8 9.2 L355.2 9.5 L353.6 9.7 L352 9.3 L350.4 9.3 L348.8 9.5 L347.2 9.6 L345.6 10 L344 9.9 L342.4 9.8 L340.8 9.6 L339.2 9.4 L337.6 9.2 L336 8.6 L334.4 8 L332.8 7.6 L331.2 8 L329.6 8.3 L328 8 L326.4 8.3 L324.8 8.4 L323.2 8.6 L321.6 8.9 L320 9.1 L318.4 9.3 L316.8 9.2 L315.2 8.1 L313.6 7.2 L312 6.7 L310.4 6.6 L308.8 6.8 L307.2 7.7 L305.6 8.7 L304 9.3 L302.4 9.2 L300.8 9.2 L299.2 9.3 L297.6 9.6 L296 10 L294.4 10.4 L292.8 10.5 L291.2 10.7 L289.6 11 L288 11.3 L286.4 11.7 L284.8 12.1 L283.2 12.4 L281.6 12.5 L280 12.9 L278.4 12.9 L276.8 12.5 L275.2 12.1 L273.6 11.9 L272 11.6 L270.4 11.2 L268.8 10.7 L267.2 10.1 L265.6 9.6 L264 9.7 L262.4 9.8 L260.8 9.9 L259.2 9.8 L257.6 9.8 L256 9.8 L254.4 9.8 L252.8 9.9 L251.2 9.8 L249.6 9.4 L248 9.4 L246.4 9.8 L244.8 9.6 L243.2 9.3 L241.6 9.3 L240 9.4 L238.4 9 L236.8 8.5 L235.2 8.6 L233.6 8.4 L232 7.8 L230.4 7.5 L228.8 7.4 L227.2 7.2 L225.6 7.2 L224 7.2 L222.4 7.3 L220.8 7.6 L219.2 8 L217.6 8.1 L216 8.2 L214.4 8.4 L212.8 8.6 L211.2 9 L209.6 9.2 L208 9.4 L206.4 9.3 L204.8 8.7 L203.2 8.6 L201.6 8.9 L200 8.8 L198.4 8.4 L196.8 8.3 L195.2 8.1 L193.6 8.2 L192 8.4 L190.4 8.3 L188.8 8.2 L187.2 8.5 L185.6 8.6 L184 8.3 L182.4 8.2 L180.8 8.3 L179.2 8.2 L177.6 8 L176 7.7 L174.4 7.4 L172.8 7.7 L171.2 8.2 L169.6 8.3 L168 8.3 L166.4 8.4 L164.8 8.3 L163.2 7.8 L161.6 7.5 L160 7.8 L158.4 8 L156.8 8.1 L155.2 8.4 L153.6 8.8 L152 8.7 L150.4 8.5 L148.8 8.4 L147.2 8.4 L145.6 8.4 L144 8.3 L142.4 8.5 L140.8 8.6 L139.2 8.5 L137.6 8.5 L136 9.3 L134.4 9.5 L132.8 9.4 L131.2 9.5 L129.6 9.8 L128 10.1 L126.4 10.3 L124.8 10.1 L123.2 9.7 L121.6 9.5 L120 10.1 L118.4 10.3 L116.8 10.4 L115.2 10.7 L113.6 10.8 L112 10.5 L110.4 10.3 L108.8 10.1 L107.2 9.8 L105.6 9.5 L104 8.8 L102.4 8.9 L100.8 9.4 L99.2 9.8 L97.6 9.6 L96 9.1 L94.4 9.3 L92.8 9.3 L91.2 9 L89.6 8.9 L88 8.8 L86.4 8.6 L84.8 7.9 L83.2 7.8 L81.6 8.4 L80 8.7 L78.4 8.8 L76.8 9 L75.2 9.2 L73.6 9.1 L72 9 L70.4 9.5 L68.8 9.8 L67.2 9.8 L65.6 9.7 L64 9.7 L62.4 9.8 L60.8 10 L59.2 10.2 L57.6 10 L56 10.2 L54.4 10.4 L52.8 10.5 L51.2 10.5 L49.6 10.3 L48 10.1 L46.4 9.7 L44.8 9.3 L43.2 9.3 L41.6 9.4 L40 9.4 L38.4 9.7 L36.8 10 L35.2 10.2 L33.6 10.3 L32 10 L30.4 9.5 L28.8 9.4 L27.2 9.6 L25.6 9.8 L24 10 L22.4 10.3 L20.8 10.5 L19.2 10.6 L17.6 10.5 L16 10.2 L14.4 10 L12.8 10.1 L11.2 9.9 L9.6 9.6 L8 9.4 L6.4 9.1 L4.8 9 L3.2 9.1 L1.6 9.1 L0 9.2 Z' fill='%23fffefa' fill-opacity='0.55'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='hk'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.27  0 0 0 0 0.24  0 0 0 0 0.19  0 0 0 0.26 0'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23hk)'/%3E%3C/svg%3E");
  background-size: 1440px 18px, 280px 280px;
  background-position: left bottom, 0 0;
  background-repeat: repeat-x, repeat;
  background-blend-mode: normal, multiply;
  filter: drop-shadow(0 10px 20px rgba(62, 52, 30, .14));
}
.site-header::after {
  z-index: -2;
  -webkit-mask-image: linear-gradient(#000 0 0), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='18'%3E%3Cpath d='M0 0 L1440 0 L1440 10.8 L1438.4 10.6 L1436.8 10.5 L1435.2 10.7 L1433.6 10.8 L1432 10.7 L1430.4 10.4 L1428.8 9.7 L1427.2 9.3 L1425.6 9.5 L1424 9.3 L1422.4 8.9 L1420.8 9 L1419.2 9.3 L1417.6 9 L1416 8.6 L1414.4 8.2 L1412.8 7.8 L1411.2 7.6 L1409.6 7.6 L1408 7.9 L1406.4 8.2 L1404.8 8.3 L1403.2 8.5 L1401.6 8.9 L1400 9.1 L1398.4 9.3 L1396.8 9.3 L1395.2 9 L1393.6 9.1 L1392 9.4 L1390.4 10.1 L1388.8 11 L1387.2 11.1 L1385.6 10.5 L1384 8.6 L1382.4 7.6 L1380.8 7.5 L1379.2 7.4 L1377.6 7.5 L1376 7.4 L1374.4 7.1 L1372.8 7.6 L1371.2 7.8 L1369.6 7.5 L1368 7.4 L1366.4 7.7 L1364.8 8 L1363.2 8.4 L1361.6 8.6 L1360 8.7 L1358.4 8.8 L1356.8 8.9 L1355.2 9.1 L1353.6 8.9 L1352 8.9 L1350.4 9.1 L1348.8 9.4 L1347.2 9.8 L1345.6 9.6 L1344 9.5 L1342.4 9.8 L1340.8 10.2 L1339.2 10.3 L1337.6 10.3 L1336 10.3 L1334.4 10.2 L1332.8 10 L1331.2 9.9 L1329.6 10 L1328 9.9 L1326.4 9.8 L1324.8 10.6 L1323.2 11.5 L1321.6 11.6 L1320 11.4 L1318.4 11.8 L1316.8 12.2 L1315.2 12.2 L1313.6 12.1 L1312 11.3 L1310.4 10.7 L1308.8 10.1 L1307.2 9.9 L1305.6 9.7 L1304 9.7 L1302.4 9.6 L1300.8 9.5 L1299.2 9.3 L1297.6 9.3 L1296 9.5 L1294.4 9.3 L1292.8 9.1 L1291.2 9.5 L1289.6 9.8 L1288 9.7 L1286.4 9.7 L1284.8 10.1 L1283.2 10 L1281.6 9.8 L1280 9.8 L1278.4 10.1 L1276.8 10.1 L1275.2 10 L1273.6 10.1 L1272 10 L1270.4 10.3 L1268.8 10.5 L1267.2 10.2 L1265.6 10.2 L1264 10.5 L1262.4 10.4 L1260.8 10.4 L1259.2 10.4 L1257.6 10.6 L1256 10.8 L1254.4 10.7 L1252.8 11.1 L1251.2 11.6 L1249.6 11.3 L1248 11 L1246.4 11.4 L1244.8 11.6 L1243.2 11 L1241.6 10.5 L1240 10.3 L1238.4 10.2 L1236.8 10.6 L1235.2 10.8 L1233.6 11 L1232 11.4 L1230.4 11.9 L1228.8 11.8 L1227.2 11.5 L1225.6 10.8 L1224 10.1 L1222.4 9.8 L1220.8 9.4 L1219.2 9.3 L1217.6 9.3 L1216 9.2 L1214.4 9.4 L1212.8 9.9 L1211.2 10.2 L1209.6 10.3 L1208 10.2 L1206.4 9.9 L1204.8 9.6 L1203.2 9.4 L1201.6 9 L1200 8.8 L1198.4 9.4 L1196.8 10 L1195.2 9.8 L1193.6 9.6 L1192 9.5 L1190.4 9.5 L1188.8 9.4 L1187.2 9.5 L1185.6 9.8 L1184 9.9 L1182.4 9.7 L1180.8 10 L1179.2 10.4 L1177.6 10.5 L1176 10.5 L1174.4 10.2 L1172.8 9.8 L1171.2 9 L1169.6 8.4 L1168 8 L1166.4 7.9 L1164.8 8.1 L1163.2 8 L1161.6 8.4 L1160 8.3 L1158.4 8 L1156.8 7.9 L1155.2 7.7 L1153.6 7.9 L1152 8.3 L1150.4 8.6 L1148.8 8.9 L1147.2 8.7 L1145.6 8.3 L1144 8 L1142.4 7.5 L1140.8 6.9 L1139.2 6.6 L1137.6 6.5 L1136 6.7 L1134.4 7.3 L1132.8 7.3 L1131.2 7.2 L1129.6 7 L1128 6.8 L1126.4 7.1 L1124.8 7.4 L1123.2 7.6 L1121.6 7.5 L1120 6.7 L1118.4 5.9 L1116.8 5.5 L1115.2 5.3 L1113.6 5.3 L1112 5.2 L1110.4 5.2 L1108.8 5.3 L1107.2 5.5 L1105.6 5.8 L1104 6.1 L1102.4 6.9 L1100.8 7.3 L1099.2 7.1 L1097.6 6.9 L1096 7.2 L1094.4 7.2 L1092.8 6.9 L1091.2 6.9 L1089.6 7.1 L1088 7.3 L1086.4 7.8 L1084.8 7.8 L1083.2 7.5 L1081.6 7.9 L1080 8.1 L1078.4 8.3 L1076.8 8.3 L1075.2 8.4 L1073.6 8.4 L1072 8.4 L1070.4 8.3 L1068.8 8.1 L1067.2 8.2 L1065.6 8.5 L1064 8.5 L1062.4 8.2 L1060.8 8.3 L1059.2 8.4 L1057.6 8.8 L1056 9.2 L1054.4 9.7 L1052.8 10.2 L1051.2 10.3 L1049.6 10.3 L1048 10 L1046.4 9.8 L1044.8 9.9 L1043.2 9.6 L1041.6 9.2 L1040 8.7 L1038.4 8.2 L1036.8 7.3 L1035.2 6.3 L1033.6 6.4 L1032 7 L1030.4 7.1 L1028.8 7.3 L1027.2 7.7 L1025.6 7.6 L1024 7.1 L1022.4 6.7 L1020.8 6.6 L1019.2 7 L1017.6 8 L1016 8.4 L1014.4 8.3 L1012.8 8.8 L1011.2 9.4 L1009.6 9.4 L1008 9.3 L1006.4 9.2 L1004.8 9.2 L1003.2 9 L1001.6 8.9 L1000 9.2 L998.4 9 L996.8 8.8 L995.2 8.4 L993.6 7.7 L992 7.3 L990.4 7 L988.8 7 L987.2 7.2 L985.6 7.4 L984 7.7 L982.4 7.4 L980.8 7.1 L979.2 7.5 L977.6 7.8 L976 7.7 L974.4 7.9 L972.8 8.7 L971.2 9 L969.6 9.1 L968 9.5 L966.4 10.1 L964.8 10.3 L963.2 10.2 L961.6 10.4 L960 10.6 L958.4 10.8 L956.8 10.9 L955.2 11.2 L953.6 11.1 L952 10.8 L950.4 10.7 L948.8 10.7 L947.2 10.8 L945.6 10.9 L944 11.1 L942.4 11.6 L940.8 11.9 L939.2 12.3 L937.6 12.9 L936 13.5 L934.4 13.1 L932.8 12.6 L931.2 12.5 L929.6 12.3 L928 11.4 L926.4 11 L924.8 11.2 L923.2 11.1 L921.6 10.8 L920 10.7 L918.4 10.6 L916.8 10.4 L915.2 10.1 L913.6 10.2 L912 10.4 L910.4 10.4 L908.8 10.5 L907.2 10.5 L905.6 10.5 L904 10.4 L902.4 10.3 L900.8 10.2 L899.2 9.7 L897.6 8.8 L896 8.4 L894.4 8.5 L892.8 8.4 L891.2 8.3 L889.6 8.2 L888 8.1 L886.4 8.2 L884.8 8.3 L883.2 8.7 L881.6 9 L880 9.4 L878.4 9.5 L876.8 9.4 L875.2 9.3 L873.6 8.9 L872 8.8 L870.4 8.6 L868.8 8.8 L867.2 9.1 L865.6 9.3 L864 9.5 L862.4 9.6 L860.8 9.6 L859.2 9.9 L857.6 9.9 L856 9.5 L854.4 9.1 L852.8 8.7 L851.2 8.3 L849.6 7.6 L848 7.3 L846.4 7.3 L844.8 7.5 L843.2 7.9 L841.6 8.4 L840 8.8 L838.4 9.1 L836.8 9.2 L835.2 9.4 L833.6 9.5 L832 9.4 L830.4 9.3 L828.8 8.8 L827.2 8.7 L825.6 9 L824 8.9 L822.4 8.7 L820.8 8.8 L819.2 9 L817.6 8.8 L816 8.6 L814.4 9.1 L812.8 9.5 L811.2 9.2 L809.6 9 L808 9.5 L806.4 9.6 L804.8 9.5 L803.2 9.4 L801.6 8.8 L800 8.5 L798.4 8.2 L796.8 8.4 L795.2 8.9 L793.6 9.2 L792 9.6 L790.4 9.5 L788.8 9.6 L787.2 10.4 L785.6 11.2 L784 11.7 L782.4 12.1 L780.8 12 L779.2 12 L777.6 11.8 L776 11.6 L774.4 11.5 L772.8 11.1 L771.2 10.6 L769.6 10.5 L768 10.5 L766.4 10 L764.8 9.6 L763.2 9 L761.6 8.4 L760 7.5 L758.4 7.2 L756.8 7.5 L755.2 7.7 L753.6 7.7 L752 8.3 L750.4 9.2 L748.8 9.9 L747.2 10.6 L745.6 10.7 L744 10.7 L742.4 10.8 L740.8 10.7 L739.2 10.5 L737.6 10.4 L736 10.6 L734.4 10.7 L732.8 10.6 L731.2 10.7 L729.6 10.9 L728 10.7 L726.4 10.2 L724.8 10.2 L723.2 10.5 L721.6 10.6 L720 10.7 L718.4 10.9 L716.8 11 L715.2 10.7 L713.6 10.4 L712 10.2 L710.4 9.9 L708.8 9.7 L707.2 9.4 L705.6 9 L704 9 L702.4 9.5 L700.8 9.6 L699.2 9.8 L697.6 10.1 L696 10.6 L694.4 11.1 L692.8 11.4 L691.2 10.9 L689.6 10.2 L688 9.8 L686.4 9.4 L684.8 9.3 L683.2 9.3 L681.6 9 L680 9.4 L678.4 10.1 L676.8 10.3 L675.2 10.4 L673.6 10.2 L672 9.9 L670.4 10 L668.8 9.9 L667.2 9.9 L665.6 9.7 L664 9.6 L662.4 9.4 L660.8 9.3 L659.2 9.1 L657.6 8.7 L656 8.8 L654.4 9.4 L652.8 10.1 L651.2 10.7 L649.6 11 L648 11.1 L646.4 11.1 L644.8 11.1 L643.2 11 L641.6 10.8 L640 10.3 L638.4 9.8 L636.8 9.5 L635.2 9.4 L633.6 9.6 L632 10.3 L630.4 11.1 L628.8 11.7 L627.2 12 L625.6 11.9 L624 11.5 L622.4 11.2 L620.8 11 L619.2 11.1 L617.6 11.2 L616 11 L614.4 10.7 L612.8 10.4 L611.2 10.4 L609.6 10.3 L608 10.2 L606.4 9.8 L604.8 9.8 L603.2 10.1 L601.6 9.9 L600 9.9 L598.4 10.3 L596.8 10.8 L595.2 11 L593.6 11.1 L592 11.4 L590.4 11.5 L588.8 11.2 L587.2 11 L585.6 10.8 L584 10.5 L582.4 10.3 L580.8 10.3 L579.2 10.5 L577.6 10.4 L576 10.4 L574.4 10.5 L572.8 10.4 L571.2 10.8 L569.6 10.9 L568 10.5 L566.4 10.1 L564.8 9.7 L563.2 9.1 L561.6 8.6 L560 8.3 L558.4 8.4 L556.8 8.5 L555.2 8.5 L553.6 8.8 L552 8.9 L550.4 9.1 L548.8 9.2 L547.2 8.9 L545.6 8.9 L544 9.5 L542.4 10 L540.8 10.3 L539.2 10.5 L537.6 10.3 L536 10.1 L534.4 10 L532.8 9.5 L531.2 9.1 L529.6 9 L528 9 L526.4 8.7 L524.8 8.6 L523.2 8.8 L521.6 9.1 L520 9.7 L518.4 10.1 L516.8 10.2 L515.2 10.4 L513.6 11.1 L512 11.1 L510.4 10.5 L508.8 10.4 L507.2 10.4 L505.6 10.7 L504 11 L502.4 11 L500.8 11 L499.2 11.1 L497.6 11.2 L496 11.1 L494.4 11.1 L492.8 11.4 L491.2 11.5 L489.6 11.5 L488 11.5 L486.4 11.8 L484.8 11.6 L483.2 11.3 L481.6 11.4 L480 11.4 L478.4 11 L476.8 10.8 L475.2 10.9 L473.6 11.1 L472 11.4 L470.4 11.4 L468.8 11.1 L467.2 10.6 L465.6 9.8 L464 9.4 L462.4 9.2 L460.8 9.3 L459.2 9.8 L457.6 10.3 L456 10.8 L454.4 11.2 L452.8 11.4 L451.2 11.3 L449.6 11.2 L448 11.1 L446.4 11 L444.8 11.1 L443.2 11.1 L441.6 11.3 L440 11.7 L438.4 11.9 L436.8 12 L435.2 11.9 L433.6 12.1 L432 12.3 L430.4 11.8 L428.8 11.4 L427.2 11.3 L425.6 11.3 L424 11.8 L422.4 12.1 L420.8 11.9 L419.2 12.1 L417.6 12.3 L416 12 L414.4 11.5 L412.8 11.3 L411.2 11.3 L409.6 11.3 L408 11.3 L406.4 11.5 L404.8 11.6 L403.2 11.6 L401.6 11.5 L400 11.1 L398.4 10.9 L396.8 11 L395.2 10.9 L393.6 10.9 L392 11.1 L390.4 11.5 L388.8 11.7 L387.2 11.8 L385.6 12 L384 12.2 L382.4 12.1 L380.8 11.8 L379.2 11.2 L377.6 10.8 L376 10.4 L374.4 10.2 L372.8 10.2 L371.2 10.1 L369.6 10.3 L368 10.1 L366.4 9.7 L364.8 9.8 L363.2 10.2 L361.6 9.9 L360 9.6 L358.4 9.8 L356.8 9.9 L355.2 10.2 L353.6 10.5 L352 10.2 L350.4 10.2 L348.8 10.3 L347.2 10.4 L345.6 10.8 L344 10.7 L342.4 10.5 L340.8 10.4 L339.2 10.2 L337.6 10.1 L336 9.7 L334.4 9.2 L332.8 9 L331.2 9.5 L329.6 9.8 L328 9.5 L326.4 9.6 L324.8 9.4 L323.2 9.3 L321.6 9.4 L320 9.3 L318.4 9.5 L316.8 9.5 L315.2 8.7 L313.6 8.1 L312 8 L310.4 8.1 L308.8 8.6 L307.2 9.5 L305.6 10.4 L304 10.8 L302.4 10.4 L300.8 10.2 L299.2 10.2 L297.6 10.3 L296 10.7 L294.4 11.1 L292.8 11.3 L291.2 11.4 L289.6 11.7 L288 12 L286.4 12.4 L284.8 12.8 L283.2 13 L281.6 13.1 L280 13.3 L278.4 13.2 L276.8 12.7 L275.2 12.2 L273.6 12 L272 11.6 L270.4 11.2 L268.8 10.6 L267.2 9.8 L265.6 9.3 L264 9.4 L262.4 9.5 L260.8 9.6 L259.2 9.7 L257.6 9.8 L256 9.9 L254.4 10 L252.8 10.2 L251.2 10.1 L249.6 9.6 L248 9.6 L246.4 10 L244.8 9.8 L243.2 9.5 L241.6 9.5 L240 9.5 L238.4 9.2 L236.8 8.9 L235.2 9.1 L233.6 9 L232 8.5 L230.4 8.2 L228.8 8.2 L227.2 8.2 L225.6 8.2 L224 8.4 L222.4 8.6 L220.8 9 L219.2 9.4 L217.6 9.5 L216 9.5 L214.4 9.6 L212.8 9.8 L211.2 10.1 L209.6 10.2 L208 10.4 L206.4 10.3 L204.8 9.8 L203.2 9.7 L201.6 10.2 L200 10.1 L198.4 9.8 L196.8 9.6 L195.2 9.2 L193.6 9.1 L192 8.9 L190.4 8.5 L188.8 8.2 L187.2 8.4 L185.6 8.5 L184 8.5 L182.4 8.7 L180.8 9.3 L179.2 9.5 L177.6 9.5 L176 9.4 L174.4 9.1 L172.8 9.3 L171.2 9.7 L169.6 9.7 L168 9.7 L166.4 9.7 L164.8 9.7 L163.2 9.2 L161.6 9 L160 9.3 L158.4 9.7 L156.8 9.8 L155.2 10.2 L153.6 10.6 L152 10.5 L150.4 10.1 L148.8 9.8 L147.2 9.6 L145.6 9.4 L144 9.3 L142.4 9.4 L140.8 9.6 L139.2 9.6 L137.6 9.9 L136 10.8 L134.4 11.3 L132.8 11.2 L131.2 11.4 L129.6 11.6 L128 11.6 L126.4 11.5 L124.8 11.1 L123.2 10.5 L121.6 10.2 L120 10.7 L118.4 10.9 L116.8 10.9 L115.2 11 L113.6 10.9 L112 10.5 L110.4 10.2 L108.8 10 L107.2 9.7 L105.6 9.4 L104 8.7 L102.4 8.8 L100.8 9.2 L99.2 9.6 L97.6 9.5 L96 9 L94.4 9.2 L92.8 9.3 L91.2 9 L89.6 8.9 L88 8.8 L86.4 8.7 L84.8 8.2 L83.2 8.4 L81.6 9.3 L80 9.9 L78.4 10.2 L76.8 10.5 L75.2 10.8 L73.6 10.7 L72 10.7 L70.4 11.2 L68.8 11.6 L67.2 11.5 L65.6 11.5 L64 11.4 L62.4 11.3 L60.8 11.3 L59.2 11.3 L57.6 10.9 L56 10.9 L54.4 11.2 L52.8 11.2 L51.2 11.3 L49.6 11 L48 10.8 L46.4 10.4 L44.8 10 L43.2 10 L41.6 10.2 L40 10.5 L38.4 11 L36.8 11.6 L35.2 12 L33.6 12.1 L32 11.9 L30.4 11.3 L28.8 11.2 L27.2 11.2 L25.6 11.3 L24 11.5 L22.4 11.7 L20.8 11.8 L19.2 11.8 L17.6 11.4 L16 10.7 L14.4 10.2 L12.8 10 L11.2 9.8 L9.6 9.6 L8 9.6 L6.4 9.6 L4.8 10 L3.2 10.4 L1.6 10.6 L0 10.8 Z'/%3E%3C/svg%3E");
  mask-image: linear-gradient(#000 0 0), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='18'%3E%3Cpath d='M0 0 L1440 0 L1440 10.8 L1438.4 10.6 L1436.8 10.5 L1435.2 10.7 L1433.6 10.8 L1432 10.7 L1430.4 10.4 L1428.8 9.7 L1427.2 9.3 L1425.6 9.5 L1424 9.3 L1422.4 8.9 L1420.8 9 L1419.2 9.3 L1417.6 9 L1416 8.6 L1414.4 8.2 L1412.8 7.8 L1411.2 7.6 L1409.6 7.6 L1408 7.9 L1406.4 8.2 L1404.8 8.3 L1403.2 8.5 L1401.6 8.9 L1400 9.1 L1398.4 9.3 L1396.8 9.3 L1395.2 9 L1393.6 9.1 L1392 9.4 L1390.4 10.1 L1388.8 11 L1387.2 11.1 L1385.6 10.5 L1384 8.6 L1382.4 7.6 L1380.8 7.5 L1379.2 7.4 L1377.6 7.5 L1376 7.4 L1374.4 7.1 L1372.8 7.6 L1371.2 7.8 L1369.6 7.5 L1368 7.4 L1366.4 7.7 L1364.8 8 L1363.2 8.4 L1361.6 8.6 L1360 8.7 L1358.4 8.8 L1356.8 8.9 L1355.2 9.1 L1353.6 8.9 L1352 8.9 L1350.4 9.1 L1348.8 9.4 L1347.2 9.8 L1345.6 9.6 L1344 9.5 L1342.4 9.8 L1340.8 10.2 L1339.2 10.3 L1337.6 10.3 L1336 10.3 L1334.4 10.2 L1332.8 10 L1331.2 9.9 L1329.6 10 L1328 9.9 L1326.4 9.8 L1324.8 10.6 L1323.2 11.5 L1321.6 11.6 L1320 11.4 L1318.4 11.8 L1316.8 12.2 L1315.2 12.2 L1313.6 12.1 L1312 11.3 L1310.4 10.7 L1308.8 10.1 L1307.2 9.9 L1305.6 9.7 L1304 9.7 L1302.4 9.6 L1300.8 9.5 L1299.2 9.3 L1297.6 9.3 L1296 9.5 L1294.4 9.3 L1292.8 9.1 L1291.2 9.5 L1289.6 9.8 L1288 9.7 L1286.4 9.7 L1284.8 10.1 L1283.2 10 L1281.6 9.8 L1280 9.8 L1278.4 10.1 L1276.8 10.1 L1275.2 10 L1273.6 10.1 L1272 10 L1270.4 10.3 L1268.8 10.5 L1267.2 10.2 L1265.6 10.2 L1264 10.5 L1262.4 10.4 L1260.8 10.4 L1259.2 10.4 L1257.6 10.6 L1256 10.8 L1254.4 10.7 L1252.8 11.1 L1251.2 11.6 L1249.6 11.3 L1248 11 L1246.4 11.4 L1244.8 11.6 L1243.2 11 L1241.6 10.5 L1240 10.3 L1238.4 10.2 L1236.8 10.6 L1235.2 10.8 L1233.6 11 L1232 11.4 L1230.4 11.9 L1228.8 11.8 L1227.2 11.5 L1225.6 10.8 L1224 10.1 L1222.4 9.8 L1220.8 9.4 L1219.2 9.3 L1217.6 9.3 L1216 9.2 L1214.4 9.4 L1212.8 9.9 L1211.2 10.2 L1209.6 10.3 L1208 10.2 L1206.4 9.9 L1204.8 9.6 L1203.2 9.4 L1201.6 9 L1200 8.8 L1198.4 9.4 L1196.8 10 L1195.2 9.8 L1193.6 9.6 L1192 9.5 L1190.4 9.5 L1188.8 9.4 L1187.2 9.5 L1185.6 9.8 L1184 9.9 L1182.4 9.7 L1180.8 10 L1179.2 10.4 L1177.6 10.5 L1176 10.5 L1174.4 10.2 L1172.8 9.8 L1171.2 9 L1169.6 8.4 L1168 8 L1166.4 7.9 L1164.8 8.1 L1163.2 8 L1161.6 8.4 L1160 8.3 L1158.4 8 L1156.8 7.9 L1155.2 7.7 L1153.6 7.9 L1152 8.3 L1150.4 8.6 L1148.8 8.9 L1147.2 8.7 L1145.6 8.3 L1144 8 L1142.4 7.5 L1140.8 6.9 L1139.2 6.6 L1137.6 6.5 L1136 6.7 L1134.4 7.3 L1132.8 7.3 L1131.2 7.2 L1129.6 7 L1128 6.8 L1126.4 7.1 L1124.8 7.4 L1123.2 7.6 L1121.6 7.5 L1120 6.7 L1118.4 5.9 L1116.8 5.5 L1115.2 5.3 L1113.6 5.3 L1112 5.2 L1110.4 5.2 L1108.8 5.3 L1107.2 5.5 L1105.6 5.8 L1104 6.1 L1102.4 6.9 L1100.8 7.3 L1099.2 7.1 L1097.6 6.9 L1096 7.2 L1094.4 7.2 L1092.8 6.9 L1091.2 6.9 L1089.6 7.1 L1088 7.3 L1086.4 7.8 L1084.8 7.8 L1083.2 7.5 L1081.6 7.9 L1080 8.1 L1078.4 8.3 L1076.8 8.3 L1075.2 8.4 L1073.6 8.4 L1072 8.4 L1070.4 8.3 L1068.8 8.1 L1067.2 8.2 L1065.6 8.5 L1064 8.5 L1062.4 8.2 L1060.8 8.3 L1059.2 8.4 L1057.6 8.8 L1056 9.2 L1054.4 9.7 L1052.8 10.2 L1051.2 10.3 L1049.6 10.3 L1048 10 L1046.4 9.8 L1044.8 9.9 L1043.2 9.6 L1041.6 9.2 L1040 8.7 L1038.4 8.2 L1036.8 7.3 L1035.2 6.3 L1033.6 6.4 L1032 7 L1030.4 7.1 L1028.8 7.3 L1027.2 7.7 L1025.6 7.6 L1024 7.1 L1022.4 6.7 L1020.8 6.6 L1019.2 7 L1017.6 8 L1016 8.4 L1014.4 8.3 L1012.8 8.8 L1011.2 9.4 L1009.6 9.4 L1008 9.3 L1006.4 9.2 L1004.8 9.2 L1003.2 9 L1001.6 8.9 L1000 9.2 L998.4 9 L996.8 8.8 L995.2 8.4 L993.6 7.7 L992 7.3 L990.4 7 L988.8 7 L987.2 7.2 L985.6 7.4 L984 7.7 L982.4 7.4 L980.8 7.1 L979.2 7.5 L977.6 7.8 L976 7.7 L974.4 7.9 L972.8 8.7 L971.2 9 L969.6 9.1 L968 9.5 L966.4 10.1 L964.8 10.3 L963.2 10.2 L961.6 10.4 L960 10.6 L958.4 10.8 L956.8 10.9 L955.2 11.2 L953.6 11.1 L952 10.8 L950.4 10.7 L948.8 10.7 L947.2 10.8 L945.6 10.9 L944 11.1 L942.4 11.6 L940.8 11.9 L939.2 12.3 L937.6 12.9 L936 13.5 L934.4 13.1 L932.8 12.6 L931.2 12.5 L929.6 12.3 L928 11.4 L926.4 11 L924.8 11.2 L923.2 11.1 L921.6 10.8 L920 10.7 L918.4 10.6 L916.8 10.4 L915.2 10.1 L913.6 10.2 L912 10.4 L910.4 10.4 L908.8 10.5 L907.2 10.5 L905.6 10.5 L904 10.4 L902.4 10.3 L900.8 10.2 L899.2 9.7 L897.6 8.8 L896 8.4 L894.4 8.5 L892.8 8.4 L891.2 8.3 L889.6 8.2 L888 8.1 L886.4 8.2 L884.8 8.3 L883.2 8.7 L881.6 9 L880 9.4 L878.4 9.5 L876.8 9.4 L875.2 9.3 L873.6 8.9 L872 8.8 L870.4 8.6 L868.8 8.8 L867.2 9.1 L865.6 9.3 L864 9.5 L862.4 9.6 L860.8 9.6 L859.2 9.9 L857.6 9.9 L856 9.5 L854.4 9.1 L852.8 8.7 L851.2 8.3 L849.6 7.6 L848 7.3 L846.4 7.3 L844.8 7.5 L843.2 7.9 L841.6 8.4 L840 8.8 L838.4 9.1 L836.8 9.2 L835.2 9.4 L833.6 9.5 L832 9.4 L830.4 9.3 L828.8 8.8 L827.2 8.7 L825.6 9 L824 8.9 L822.4 8.7 L820.8 8.8 L819.2 9 L817.6 8.8 L816 8.6 L814.4 9.1 L812.8 9.5 L811.2 9.2 L809.6 9 L808 9.5 L806.4 9.6 L804.8 9.5 L803.2 9.4 L801.6 8.8 L800 8.5 L798.4 8.2 L796.8 8.4 L795.2 8.9 L793.6 9.2 L792 9.6 L790.4 9.5 L788.8 9.6 L787.2 10.4 L785.6 11.2 L784 11.7 L782.4 12.1 L780.8 12 L779.2 12 L777.6 11.8 L776 11.6 L774.4 11.5 L772.8 11.1 L771.2 10.6 L769.6 10.5 L768 10.5 L766.4 10 L764.8 9.6 L763.2 9 L761.6 8.4 L760 7.5 L758.4 7.2 L756.8 7.5 L755.2 7.7 L753.6 7.7 L752 8.3 L750.4 9.2 L748.8 9.9 L747.2 10.6 L745.6 10.7 L744 10.7 L742.4 10.8 L740.8 10.7 L739.2 10.5 L737.6 10.4 L736 10.6 L734.4 10.7 L732.8 10.6 L731.2 10.7 L729.6 10.9 L728 10.7 L726.4 10.2 L724.8 10.2 L723.2 10.5 L721.6 10.6 L720 10.7 L718.4 10.9 L716.8 11 L715.2 10.7 L713.6 10.4 L712 10.2 L710.4 9.9 L708.8 9.7 L707.2 9.4 L705.6 9 L704 9 L702.4 9.5 L700.8 9.6 L699.2 9.8 L697.6 10.1 L696 10.6 L694.4 11.1 L692.8 11.4 L691.2 10.9 L689.6 10.2 L688 9.8 L686.4 9.4 L684.8 9.3 L683.2 9.3 L681.6 9 L680 9.4 L678.4 10.1 L676.8 10.3 L675.2 10.4 L673.6 10.2 L672 9.9 L670.4 10 L668.8 9.9 L667.2 9.9 L665.6 9.7 L664 9.6 L662.4 9.4 L660.8 9.3 L659.2 9.1 L657.6 8.7 L656 8.8 L654.4 9.4 L652.8 10.1 L651.2 10.7 L649.6 11 L648 11.1 L646.4 11.1 L644.8 11.1 L643.2 11 L641.6 10.8 L640 10.3 L638.4 9.8 L636.8 9.5 L635.2 9.4 L633.6 9.6 L632 10.3 L630.4 11.1 L628.8 11.7 L627.2 12 L625.6 11.9 L624 11.5 L622.4 11.2 L620.8 11 L619.2 11.1 L617.6 11.2 L616 11 L614.4 10.7 L612.8 10.4 L611.2 10.4 L609.6 10.3 L608 10.2 L606.4 9.8 L604.8 9.8 L603.2 10.1 L601.6 9.9 L600 9.9 L598.4 10.3 L596.8 10.8 L595.2 11 L593.6 11.1 L592 11.4 L590.4 11.5 L588.8 11.2 L587.2 11 L585.6 10.8 L584 10.5 L582.4 10.3 L580.8 10.3 L579.2 10.5 L577.6 10.4 L576 10.4 L574.4 10.5 L572.8 10.4 L571.2 10.8 L569.6 10.9 L568 10.5 L566.4 10.1 L564.8 9.7 L563.2 9.1 L561.6 8.6 L560 8.3 L558.4 8.4 L556.8 8.5 L555.2 8.5 L553.6 8.8 L552 8.9 L550.4 9.1 L548.8 9.2 L547.2 8.9 L545.6 8.9 L544 9.5 L542.4 10 L540.8 10.3 L539.2 10.5 L537.6 10.3 L536 10.1 L534.4 10 L532.8 9.5 L531.2 9.1 L529.6 9 L528 9 L526.4 8.7 L524.8 8.6 L523.2 8.8 L521.6 9.1 L520 9.7 L518.4 10.1 L516.8 10.2 L515.2 10.4 L513.6 11.1 L512 11.1 L510.4 10.5 L508.8 10.4 L507.2 10.4 L505.6 10.7 L504 11 L502.4 11 L500.8 11 L499.2 11.1 L497.6 11.2 L496 11.1 L494.4 11.1 L492.8 11.4 L491.2 11.5 L489.6 11.5 L488 11.5 L486.4 11.8 L484.8 11.6 L483.2 11.3 L481.6 11.4 L480 11.4 L478.4 11 L476.8 10.8 L475.2 10.9 L473.6 11.1 L472 11.4 L470.4 11.4 L468.8 11.1 L467.2 10.6 L465.6 9.8 L464 9.4 L462.4 9.2 L460.8 9.3 L459.2 9.8 L457.6 10.3 L456 10.8 L454.4 11.2 L452.8 11.4 L451.2 11.3 L449.6 11.2 L448 11.1 L446.4 11 L444.8 11.1 L443.2 11.1 L441.6 11.3 L440 11.7 L438.4 11.9 L436.8 12 L435.2 11.9 L433.6 12.1 L432 12.3 L430.4 11.8 L428.8 11.4 L427.2 11.3 L425.6 11.3 L424 11.8 L422.4 12.1 L420.8 11.9 L419.2 12.1 L417.6 12.3 L416 12 L414.4 11.5 L412.8 11.3 L411.2 11.3 L409.6 11.3 L408 11.3 L406.4 11.5 L404.8 11.6 L403.2 11.6 L401.6 11.5 L400 11.1 L398.4 10.9 L396.8 11 L395.2 10.9 L393.6 10.9 L392 11.1 L390.4 11.5 L388.8 11.7 L387.2 11.8 L385.6 12 L384 12.2 L382.4 12.1 L380.8 11.8 L379.2 11.2 L377.6 10.8 L376 10.4 L374.4 10.2 L372.8 10.2 L371.2 10.1 L369.6 10.3 L368 10.1 L366.4 9.7 L364.8 9.8 L363.2 10.2 L361.6 9.9 L360 9.6 L358.4 9.8 L356.8 9.9 L355.2 10.2 L353.6 10.5 L352 10.2 L350.4 10.2 L348.8 10.3 L347.2 10.4 L345.6 10.8 L344 10.7 L342.4 10.5 L340.8 10.4 L339.2 10.2 L337.6 10.1 L336 9.7 L334.4 9.2 L332.8 9 L331.2 9.5 L329.6 9.8 L328 9.5 L326.4 9.6 L324.8 9.4 L323.2 9.3 L321.6 9.4 L320 9.3 L318.4 9.5 L316.8 9.5 L315.2 8.7 L313.6 8.1 L312 8 L310.4 8.1 L308.8 8.6 L307.2 9.5 L305.6 10.4 L304 10.8 L302.4 10.4 L300.8 10.2 L299.2 10.2 L297.6 10.3 L296 10.7 L294.4 11.1 L292.8 11.3 L291.2 11.4 L289.6 11.7 L288 12 L286.4 12.4 L284.8 12.8 L283.2 13 L281.6 13.1 L280 13.3 L278.4 13.2 L276.8 12.7 L275.2 12.2 L273.6 12 L272 11.6 L270.4 11.2 L268.8 10.6 L267.2 9.8 L265.6 9.3 L264 9.4 L262.4 9.5 L260.8 9.6 L259.2 9.7 L257.6 9.8 L256 9.9 L254.4 10 L252.8 10.2 L251.2 10.1 L249.6 9.6 L248 9.6 L246.4 10 L244.8 9.8 L243.2 9.5 L241.6 9.5 L240 9.5 L238.4 9.2 L236.8 8.9 L235.2 9.1 L233.6 9 L232 8.5 L230.4 8.2 L228.8 8.2 L227.2 8.2 L225.6 8.2 L224 8.4 L222.4 8.6 L220.8 9 L219.2 9.4 L217.6 9.5 L216 9.5 L214.4 9.6 L212.8 9.8 L211.2 10.1 L209.6 10.2 L208 10.4 L206.4 10.3 L204.8 9.8 L203.2 9.7 L201.6 10.2 L200 10.1 L198.4 9.8 L196.8 9.6 L195.2 9.2 L193.6 9.1 L192 8.9 L190.4 8.5 L188.8 8.2 L187.2 8.4 L185.6 8.5 L184 8.5 L182.4 8.7 L180.8 9.3 L179.2 9.5 L177.6 9.5 L176 9.4 L174.4 9.1 L172.8 9.3 L171.2 9.7 L169.6 9.7 L168 9.7 L166.4 9.7 L164.8 9.7 L163.2 9.2 L161.6 9 L160 9.3 L158.4 9.7 L156.8 9.8 L155.2 10.2 L153.6 10.6 L152 10.5 L150.4 10.1 L148.8 9.8 L147.2 9.6 L145.6 9.4 L144 9.3 L142.4 9.4 L140.8 9.6 L139.2 9.6 L137.6 9.9 L136 10.8 L134.4 11.3 L132.8 11.2 L131.2 11.4 L129.6 11.6 L128 11.6 L126.4 11.5 L124.8 11.1 L123.2 10.5 L121.6 10.2 L120 10.7 L118.4 10.9 L116.8 10.9 L115.2 11 L113.6 10.9 L112 10.5 L110.4 10.2 L108.8 10 L107.2 9.7 L105.6 9.4 L104 8.7 L102.4 8.8 L100.8 9.2 L99.2 9.6 L97.6 9.5 L96 9 L94.4 9.2 L92.8 9.3 L91.2 9 L89.6 8.9 L88 8.8 L86.4 8.7 L84.8 8.2 L83.2 8.4 L81.6 9.3 L80 9.9 L78.4 10.2 L76.8 10.5 L75.2 10.8 L73.6 10.7 L72 10.7 L70.4 11.2 L68.8 11.6 L67.2 11.5 L65.6 11.5 L64 11.4 L62.4 11.3 L60.8 11.3 L59.2 11.3 L57.6 10.9 L56 10.9 L54.4 11.2 L52.8 11.2 L51.2 11.3 L49.6 11 L48 10.8 L46.4 10.4 L44.8 10 L43.2 10 L41.6 10.2 L40 10.5 L38.4 11 L36.8 11.6 L35.2 12 L33.6 12.1 L32 11.9 L30.4 11.3 L28.8 11.2 L27.2 11.2 L25.6 11.3 L24 11.5 L22.4 11.7 L20.8 11.8 L19.2 11.8 L17.6 11.4 L16 10.7 L14.4 10.2 L12.8 10 L11.2 9.8 L9.6 9.6 L8 9.6 L6.4 9.6 L4.8 10 L3.2 10.4 L1.6 10.6 L0 10.8 Z'/%3E%3C/svg%3E");
  background: rgba(62, 52, 30, .15);
  filter: blur(1px);
  display: none;
}
.site-header.is-scrolled::before,
.site-header.is-scrolled::after { opacity: 1; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 62px;
}
.brand { position: relative; display: inline-flex; align-items: center; }
.brand-mark {
  display: block;
  position: relative; z-index: 1;
  height: 46px;
  aspect-ratio: 180 / 165;
  background-color: var(--ink);
  -webkit-mask: url('../logo.png') center / contain no-repeat;
  mask: url('../logo.png') center / contain no-repeat;
  transition: background-color .25s ease;
  transform-origin: 50% 85%;
}
.brand:hover .brand-mark, .brand:focus-visible .brand-mark { background-color: var(--accent); animation: splat .5s cubic-bezier(.34, 1.56, .5, 1) both; }
@keyframes splat { 0% { transform: none; } 35% { transform: scale(1.12, .9); } 70% { transform: scale(.97, 1.05) rotate(-2deg); } 100% { transform: scale(1.04) rotate(-4deg); } }
/* Farbspritzer: Landepunkte relativ zur Logo-KANTE (% Logo-Box + fester px-Abstand) — dadurch landen sie
   im Header und im Footer exakt gleich weit vom Logo entfernt. Vertikal bleiben alle im Logo-Band
   (überspringen den Header nicht), horizontal landen sie klar neben dem Logo (kein Überlappen). */
.brand .drop { position: absolute; z-index: 0; pointer-events: none; margin: -5px 0 0 -5px; width: 10px; height: 10px; border-radius: 50%; transform: translate(var(--bx, 0px), var(--by, 0px)) rotate(var(--rot, 0deg)) scale(0); opacity: 0; transition: transform .42s cubic-bezier(.2, .9, .35, 1.1), opacity .12s ease; }
.brand .tear { width: 8px; height: 14px; border-radius: 0; clip-path: path('M4 0C5.3 3.2 7.7 6.6 7.7 9.6C7.7 12.2 6.1 14 4 14C1.9 14 .3 12.2 .3 9.6C.3 6.6 2.7 3.2 4 0Z'); }
.brand .blob { border-radius: 64% 36% 48% 52% / 44% 60% 40% 56%; }
.brand .d1 { background: var(--clay); --s: .95; left: calc(0% - 10px); top: 18%; --bx: 18px; --by: 8px; --rot: 115deg; transition-delay: .02s; }
.brand .d2 { background: var(--sky-blue); --s: .75; left: calc(100% + 6px); top: 12%; --bx: -18px; --by: 8px; --rot: -115deg; transition-delay: .06s; }
.brand .d3 { background: var(--sun); width: 9px; height: 7px; --s: .8; left: calc(100% + 11px); top: 45%; --bx: -20px; --rot: 40deg; transition-delay: .04s; }
.brand .d4 { background: var(--leaf); --s: .5; left: calc(0% - 7px); top: 78%; --bx: 16px; --by: -6px; --rot: 62deg; transition-delay: .1s; }
.brand .d5 { background: var(--clay); --s: .8; left: calc(100% + 9px); top: 80%; --bx: -18px; --by: -8px; --rot: -62deg; transition-delay: .08s; }
.brand .d6 { background: var(--sun); --s: .45; left: calc(0% - 5px); top: 4%; --bx: 14px; --by: 6px; --rot: 135deg; transition-delay: .12s; }
.brand .d7 { background: var(--sky-blue); --s: .45; left: 34%; top: calc(0% - 8px); --by: 10px; --rot: 180deg; transition-delay: .14s; }
.brand .d8 { background: var(--clay); --s: .38; left: 58%; top: calc(100% + 3px); --by: -10px; transition-delay: .13s; }
.brand:hover .drop, .brand:focus-visible .drop { transform: translate(0, 0) rotate(var(--rot, 0deg)) scale(var(--s, 1)); opacity: 1; }
/* Im Header: Sicherheits-Clip exakt an der Headerkante (8px Luft um das Logo) — der Header wird nicht höher */
.site-header .brand { clip-path: inset(-8px -110px); top: 4px; }
.header-actions .btn { min-height: 40px; padding: 9px 22px 8px; font-size: 19px; }

.main-nav { display: flex; align-items: center; gap: clamp(4px, 1.2vw, 18px); }
.main-nav a {
  font-family: var(--f-hand);
  font-size: clamp(19.5px, 1.05vw + 9px, 23px); line-height: 1;
  color: var(--body);
  padding: 14px 12px 8px;
  position: relative;
  transition: color .18s ease, transform .3s cubic-bezier(.34, 1.56, .5, 1);
}
.main-nav a:hover { color: var(--ink-deep); transform: rotate(-2.2deg); }
.main-nav a .nav-ki {
  position: absolute; top: -1px; right: -7px;
  width: 19px; color: var(--accent); --ki-stroke: 1.5;
  /* solid: alle Flächen einfarbig in Akzentfarbe */
  --ki-accent: var(--accent); --ki-sun: var(--accent); --ki-leaf: var(--accent);
  --ki-brown: var(--accent); --ki-sand: var(--accent); --ki-paper: var(--accent);
  opacity: 0; transform: scale(.3) rotate(-60deg);
  transition: opacity .22s ease, transform .35s cubic-bezier(.34, 1.56, .5, 1);
}
.main-nav a:hover .nav-ki, .main-nav a:active .nav-ki, .main-nav a[aria-current="page"] .nav-ki { opacity: 1; transform: scale(1) rotate(9deg); }
.main-nav a .nav-ki[data-ki="edit"] { width: 23px; top: -6px; }
/* Farbflächen leicht transparent — wie beim Kontakt-Icon (38 %) */
.main-nav a .nav-ki svg path[fill-opacity] { fill-opacity: .38; }
.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border: 0;
  background: transparent; color: var(--ink);
  cursor: pointer;
}

/* ---------- Hero: offener Papierhimmel, Bild löst sich in ihn auf ---------- */
.hero {
  padding-top: clamp(30px, 5vw, 70px);
  padding-bottom: clamp(40px, 6vw, 90px);
  min-height: min(92vh, 980px);
  min-height: min(92svh, 980px);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-art {
  position: absolute; z-index: 0;
  right: -5%; top: 3%; bottom: 0;
  width: 55%;
  pointer-events: none;
}
.hero-art img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 52% 40%;
  -webkit-mask-image: radial-gradient(66% 60% at 52% 45%, #000 46%, transparent 79%);
  mask-image: radial-gradient(66% 60% at 52% 45%, #000 46%, transparent 79%);
  opacity: .96;
}
.js .hero-art { animation: herobob 13s ease-in-out infinite alternate; }
@keyframes herobob {
  from { transform: translate3d(0, calc(-6px * var(--motion)), 0) rotate(-1deg); }
  to { transform: translate3d(0, calc(10px * var(--motion)), 0) rotate(.4deg); }
}

.moon-deco {
  position: absolute; z-index: 0;
  top: 9%; right: 8%;
  width: 54px; height: 54px; border-radius: 50%;
  box-shadow: inset -13px 7px 0 0 var(--sun);
  transform: rotate(12deg);
  pointer-events: none;
}
.js .moon-deco { animation: moonfloat 11s ease-in-out infinite alternate; }
@keyframes moonfloat {
  from { transform: rotate(8deg) translateY(0); }
  to { transform: rotate(16deg) translateY(calc(-14px * var(--motion))); }
}

.hero > .shell { width: 100%; }
.hero-inner { position: relative; z-index: 2; max-width: 1040px; }
.hero h1 {
  font-family: var(--f-hand);
  font-size: clamp(52px, 7.4vw, 116px);
  line-height: .86; letter-spacing: .004em;
  color: var(--ink);
  margin: 0 0 30px;
  text-wrap: balance;
}
.hero .lead { margin-bottom: 38px; max-width: 42ch; color: var(--body); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.hero-meta {
  font-family: var(--f-hand);
  font-size: 17.5px; line-height: 1.5;
  margin-top: 40px; padding-top: 22px;
  border-top: 0; background-image: var(--pline); background-repeat: no-repeat; background-position: left top; background-size: 100% 12px;
  color: var(--muted);
  max-width: 560px;
}
.hero-meta .sep { color: var(--accent); font-size: .68em; padding-inline: 6px; }
.hero-credit {
  position: absolute; right: 3%; bottom: 4%; z-index: 2;
  font-family: var(--f-hand); font-size: 19px;
  color: rgba(64, 55, 42, .55);
  transform: rotate(-1.6deg);
}

.scroll-cue {
  font-family: var(--f-hand);
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 16.5px; letter-spacing: .06em;
  color: var(--muted);
  margin: clamp(40px, 5vw, 70px) auto 0;
  width: max-content;
  position: relative; z-index: 2;
}
.cue-fall {
  position: relative; width: 14px; height: 46px;
  border-left: 0; background-image: var(--pline-v); background-repeat: no-repeat; background-position: left top; background-size: 12px 100%;
  margin-left: 13px;
}
.cue-fall i {
  position: absolute; left: -8px; top: 0;
  font-style: normal; font-size: 13px; color: var(--pencil);
}
.js .cue-fall i { animation: cuefall 2.4s ease-in-out infinite; }
@keyframes cuefall {
  0% { top: -4px; opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { top: 38px; opacity: 0; }
}

/* ---------- Ticker: Sternenlauf in Kims Handschrift ---------- */
.ticker {
  padding-block: clamp(26px, 3vw, 42px);
  border-block: 0; background-image: var(--pline), var(--pline-2); background-repeat: no-repeat, no-repeat; background-position: left top, left bottom; background-size: 100% 12px, 100% 12px;
  overflow: hidden;
  transform: rotate(-1.1deg) scale(1.02);
  --tk: 48s;
}
.ticker-track {
  display: flex; align-items: center; width: max-content;
  animation: marquee calc(var(--tk) / max(var(--motion), .35)) linear infinite;
  animation-play-state: paused;
}
.js .ticker-track { animation-play-state: running; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  font-family: var(--f-hand); font-size: clamp(28px, 4.4vw, 56px);
  color: var(--ink); white-space: nowrap; display: inline-flex; align-items: center;
}
.ticker-item .ghost { color: var(--muted); opacity: .55; }
.ticker-sep {
  display: inline-flex; align-items: center;
  margin-inline: clamp(18px, 2.6vw, 40px);
}
.ticker-sep img {
  width: clamp(26px, 2.8vw, 42px); height: auto; display: block;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Riesige Geisterwörter ---------- */
.has-deco { overflow: hidden; }
.has-deco > .shell { position: relative; z-index: 1; }

/* ---------- Reveals: aus dem Nebel ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(calc(18px * var(--motion)));
    filter: blur(calc(6px * var(--motion)));
    transition: opacity .55s ease, transform .55s cubic-bezier(.2, .7, .2, 1), filter .55s ease;
  }
  .js [data-reveal].in-view { opacity: 1; transform: none; filter: blur(0); }
  .js [data-reveal][data-delay="1"] { transition-delay: .06s; }
  .js [data-reveal][data-delay="2"] { transition-delay: .12s; }
  .js [data-reveal][data-delay="3"] { transition-delay: .18s; }
}

/* ---------- Bewegung aus ---------- */
body[data-motion="0"] .ticker-track,
body[data-motion="0"] #sky .st,
body[data-motion="0"] .shoot,
body[data-motion="0"] .aurora,
body[data-motion="0"] .hero-art,
body[data-motion="0"] .moon-deco,
body[data-motion="0"] .cue-fall i,
body[data-motion="0"] .avail .dot,
body[data-motion="0"] .glow-word::after { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .ticker-track, #sky .st, .shoot, .aurora, .hero-art, .moon-deco,
  .cue-fall i, .avail .dot, .glow-word::after, .blob-spr { animation: none !important; }
  .stamp, .loop, .brand, .main-nav a, .tlink { transition: none; }
  .brand .drop { display: none; }
  .brand:hover .brand-mark, .brand:focus-visible .brand-mark { animation: none; }
}

/* Textschrift-Tweak: Serif-Variante */
body[data-font="Serif"] { --f-sans: var(--f-serif); }

/* ---------- Handgezeichnete Icons (assets/icons/, via kimsen-icons.js) ---------- */
.ki {
  display: inline-block; flex: none;
  width: 1.2em; line-height: 0;
  --ki-accent: var(--accent);
  --ki-sun: var(--sun);
  --ki-leaf: var(--leaf);
  --ki-brown: var(--paper-dark);
  --ki-paper: var(--paper);
}
.ki svg { display: block; width: 100%; height: auto; }
.nav-toggle .ki { width: 30px; color: var(--ink); --ki-stroke: 3.4; }
.footer-social a .ki { width: 24px; --ki-stroke: 1; }
.btn .arr.ki { width: 28px; --ki-stroke: 2.6; margin-block: -8px; }
.btn .arr-l.ki { width: 28px; --ki-stroke: 2.6; margin-block: -8px; transition: transform .25s cubic-bezier(.34, 1.56, .5, 1); }
.btn:hover .arr-l.ki { transform: translateX(-4px) rotate(-3deg); }
.btn-sm .arr.ki, .btn-sm .arr-l.ki { width: 22px; --ki-stroke: 2.4; }
.btn .ki-inline { width: 21px; --ki-stroke: 1.5; }
.callout .ico.ki { width: 30px; flex: none; --ki-stroke: 1; }
.studio-notes li .ki { width: 28px; flex: none; margin-top: 0; color: var(--ink); --ki-stroke: 1; }
.svc-list li .ki, .lstg-list li .ki { position: absolute; left: 0; top: 11px; width: 16px; --ki-stroke: 4; }
.svc-list li .ki { color: var(--pencil); }
.lstg-list li .ki { color: var(--c, var(--pencil)); }
h1 .ki, h2 .ki { width: .85em; }

/* Bleistiftlinien: Varianten streuen, damit gestapelte Linien nicht identisch sind */
.svc-list li:nth-child(3n+2), .lstg-list li:nth-child(3n+2), .stat:nth-child(3n+2) { --pline: var(--pline-2); }
.svc-list li:nth-child(3n), .lstg-list li:nth-child(3n), .stat:nth-child(3n) { --pline: var(--pline-3); }
.cta-note { --pline: var(--pline-2); }
.footer-bottom { --pline: var(--pline-3); }

/* ---------- Skizzierte Buttons & Pills (SVG via kimsen-v4.js) ---------- */
.has-sketch { position: relative; isolation: isolate; }
.sk-svg { position: absolute; z-index: -1; pointer-events: none; left: 0; top: 0; }
.btn.has-sketch, .btn.has-sketch:hover, .btn.has-sketch:active {
  border-color: transparent; background: transparent; box-shadow: none;
}
.has-sketch:not(.btn) { border-color: transparent !important; background: transparent !important; }
.sk-shadow { transition: transform .18s ease; transform: translate(3px, 3px); }
.btn-sm .sk-shadow { transform: translate(2.5px, 2.5px); }
.btn:hover .sk-shadow, .btn:focus-visible .sk-shadow { transform: translate(5px, 5px); }
.btn:active .sk-shadow { transform: translate(1px, 1px); }
.btn-primary .sk-shadow { fill: var(--ink); }
.btn-primary .sk-fill { fill: var(--clay); stroke: rgba(64, 55, 42, .78); stroke-width: 1.5; }
.btn-outline .sk-shadow { fill: rgba(64, 55, 42, .22); }
.btn-outline .sk-fill { fill: var(--card); stroke: rgba(64, 55, 42, .55); stroke-width: 1.5; }
.sk-pillfill { fill: rgba(255, 253, 246, .55); stroke: rgba(64, 55, 42, .24); stroke-width: 1.3; }
.sk-pillghost { fill: none; stroke: rgba(64, 55, 42, .07); stroke-width: 2.4; }
.sk-ring-svg { z-index: 2; }
.sk-ring { fill: none; stroke: var(--card); stroke-width: 8; stroke-linecap: round; }
.sk-ring-ghost { fill: none; stroke: var(--card); stroke-width: 13; stroke-opacity: .38; }
.nav-toggle .sk-pillfill { fill: transparent; stroke: rgba(64, 55, 42, .3); }
@media (prefers-reduced-motion: reduce) { .sk-shadow { transition: none; } }

/* ---------- Animierte Bleistift-Unterstreichung (Textlinks) ---------- */
.tlink, .studio-notes a, .footer-social a, .footer-bottom a, .lstg-list a, main p a:not(.btn) {
  position: relative;
  border-bottom: 0;
}
.tlink::before, .studio-notes a::before, .footer-social a::before, .footer-bottom a::before, .lstg-list a::before, main p a:not(.btn)::before {
  content: '';
  position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 7px;
  background: rgba(64, 55, 42, .28);
  -webkit-mask: var(--puline) left center / 100% 100% no-repeat;
  mask: var(--puline) left center / 100% 100% no-repeat;
  pointer-events: none;
}
.tlink::after, .studio-notes a::after, .footer-social a::after, .footer-bottom a::after, .lstg-list a::after, main p a:not(.btn)::after {
  content: '';
  position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 7px;
  background: var(--accent);
  -webkit-mask: var(--puline) left center / 100% 100% no-repeat;
  mask: var(--puline) left center / 100% 100% no-repeat;
  clip-path: inset(0 100% 0 0);
  transition: clip-path .35s ease;
  pointer-events: none;
}
.tlink:hover::after, .tlink:focus-visible::after,
.studio-notes a:hover::after, .footer-social a:hover::after, .footer-bottom a:hover::after,
.lstg-list a:hover::after, main p a:not(.btn):hover::after { clip-path: inset(0 0 0 0); }
@media (prefers-reduced-motion: reduce) {
  .tlink::after, .studio-notes a::after, .footer-social a::after, .footer-bottom a::after, main p a:not(.btn)::after { transition: none; }
}

/* ============================================================
   MOBIL — das Telefon bekommt eine eigene Bühne
   (Basis, Header, Hero als Bilderbuch-Auftakt)
   ============================================================ */
a, button { -webkit-tap-highlight-color: transparent; }

@media (max-width: 860px) {
  .header-inner { min-height: 56px; gap: 12px; }
  .brand-mark { height: 40px; }
  .header-actions { gap: 8px; }
  /* Hero: erst das Bild (voll da, kein Schleier), dann die Worte */
  .hero { min-height: 0; padding-top: 0; padding-bottom: clamp(40px, 9vw, 64px); }
  .hero-art {
    position: relative; order: -2;
    top: auto; right: auto; bottom: auto;
    width: min(100vw, 560px);
    align-self: center;
    margin-bottom: clamp(-56px, -9vw, -30px);
    opacity: 1;
  }
  .hero-art img {
    height: auto; aspect-ratio: 1 / 1;
    -webkit-mask-image: radial-gradient(58% 58% at 51% 46%, #000 45%, transparent 77%);
    mask-image: radial-gradient(58% 58% at 51% 46%, #000 45%, transparent 77%);
  }
  .hero-credit {
    position: static; order: -1;
    align-self: flex-end;
    margin: 0 calc(var(--gutter) + 4px) 26px 0;
    font-size: 16.5px;
  }
  .moon-deco { top: 18px; right: 16px; width: 40px; height: 40px; box-shadow: inset -10px 5px 0 0 var(--sun); }
  .hero h1 { margin-bottom: 24px; }
  .hero .lead { margin-bottom: 30px; }
  .hero-meta { margin-top: 32px; padding-top: 20px; }
}
@media (max-width: 640px) {
  :root { --section-y: clamp(64px, 17vw, 96px); }
  .kicker { font-size: 12.5px; letter-spacing: .16em; margin-bottom: 14px; }
  .h-section { font-size: clamp(36px, 10vw, 46px); }
  .display { font-size: clamp(42px, 11.5vw, 58px); }
  .hero h1 { font-size: clamp(46px, 12.6vw, 62px); }
  .hero-ctas { gap: 12px 14px; }
  .hero-meta { font-size: 15.5px; }
  .ticker { padding-block: 20px; transform: rotate(-.9deg) scale(1.01); }
  .ticker-item { font-size: clamp(23px, 6.2vw, 32px); }
  .chip, .tag, .badge.badge-kim, .lstg-tag { font-size: 16px; padding: 10px 14px 6px; }
}
