/* ============================================================
   VirellaPlans – „Golden Hour" (v4)
   Warme Sand-/Cremetöne, elegante Serifen, ruhiger Luxus.
   Nach Marias Moodboard: Bali-Ästhetik, erwachsen, weich.
   ============================================================ */
:root {
  --creme: #F7F1E8;         /* Seitenhintergrund */
  --sand: #EDE3D3;          /* sanfte Flächen */
  --leinen: #FDFAF5;        /* Karten */
  --karamell: #B98A5E;      /* warmer Akzent */
  --terrakotta: #C0764F;    /* CTA / Wärme */
  --gold-sanft: #C9A36A;
  --braun: #3E322A;         /* Text */
  --braun-tief: #2A211B;
  --grau-warm: #8A7B6C;
  --salbei: #8A9B8E;
  --radius: 22px;
  --radius-gross: 36px;
  --schatten: 0 16px 44px rgba(62, 50, 42, .10);
  --schatten-tief: 0 24px 60px rgba(62, 50, 42, .16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--braun); background: var(--creme); line-height: 1.7; overflow-x: hidden; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
::selection { background: var(--gold-sanft); color: #fff; }

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 400; letter-spacing: .2px; }
em.zart { font-style: italic; color: var(--karamell); }

/* ---------- Animationen (sanft) ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s ease, transform 1s ease; }
.reveal.sichtbar { opacity: 1; transform: none; }
@keyframes atmen { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes lichtspiel { 0%,100% { opacity: .5; } 50% { opacity: .9; } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- Navigation ---------- */
.navleiste { position: sticky; top: 0; z-index: 50; background: rgba(247,241,232,.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(185,138,94,.25); }
.navleiste .innen { max-width: 1120px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.navleiste .logo { font-family: var(--serif); font-size: 1.3rem; color: var(--braun-tief); letter-spacing: 1px; }
.navleiste .logo span { color: var(--karamell); font-style: italic; }
.navleiste nav { display: flex; gap: 4px; flex-wrap: wrap; }
.navleiste a.punkt { color: var(--braun); text-decoration: none; font-size: .88rem; padding: 7px 14px; border-radius: 40px; transition: background .25s ease; }
.navleiste a.punkt:hover { background: var(--sand); }
.navleiste a.nav-cta { background: var(--braun-tief); color: var(--creme); text-decoration: none; font-size: .88rem; padding: 9px 20px; border-radius: 40px; transition: background .25s ease; }
.navleiste a.nav-cta:hover { background: var(--terrakotta); }

/* ---------- Hero ---------- */
.held { position: relative; padding: 84px 0 60px; }
.held::before { content: ""; position: absolute; top: -120px; right: -140px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(201,163,106,.28), transparent 65%); animation: lichtspiel 8s ease-in-out infinite; }
.held .innen { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; position: relative; }
.vorzeile { text-transform: uppercase; letter-spacing: 3px; font-size: .78rem; color: var(--karamell); font-weight: 600; margin-bottom: 22px; }
.held h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); line-height: 1.12; color: var(--braun-tief); }
.held h1 em { font-style: italic; color: var(--karamell); }
.held p.unterzeile { margin-top: 24px; font-size: 1.12rem; max-width: 520px; color: #5B4C3F; }
.cta-zeile { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.knopf {
  display: inline-block; background: var(--braun-tief); color: var(--creme); font-weight: 600; font-size: 1rem;
  padding: 16px 36px; border-radius: 60px; text-decoration: none; border: none; cursor: pointer; font-family: var(--sans);
  transition: background .3s ease, transform .2s ease, box-shadow .3s ease; box-shadow: var(--schatten);
}
.knopf:hover { background: var(--terrakotta); transform: translateY(-2px); box-shadow: var(--schatten-tief); }
.knopf.gold { background: var(--terrakotta); }
.knopf.gold:hover { background: var(--braun-tief); }
.knopf-leise { color: var(--braun); font-size: .95rem; text-decoration: none; border-bottom: 1px solid var(--karamell); padding-bottom: 3px; }
.knopf-leise:hover { color: var(--karamell); }

/* Bogen-Porträt */
.held-figur { position: relative; text-align: center; }
.bogen {
  position: relative; display: inline-block; background: linear-gradient(170deg, var(--sand), #E2D2BB);
  border-radius: 200px 200px 24px 24px; padding: 26px 22px 0; overflow: hidden;
  box-shadow: var(--schatten-tief);
}
.bogen::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(185,138,94,.4); border-radius: 190px 190px 18px 18px; pointer-events: none; }
.bogen svg, .bogen img { display: block; width: min(300px, 68vw); height: auto; animation: atmen 7s ease-in-out infinite; }
.zweig { position: absolute; font-size: 1.6rem; opacity: .8; }
.zweig.a { top: 8%; left: -10px; animation: atmen 6s ease-in-out infinite; }
.zweig.b { bottom: 12%; right: -6px; animation: atmen 8s ease-in-out infinite 1s; }

/* ---------- Ticker (dezent) ---------- */
.laufband { border-top: 1px solid rgba(185,138,94,.3); border-bottom: 1px solid rgba(185,138,94,.3); padding: 14px 0; overflow: hidden; background: var(--sand); margin: 40px 0 0; }
.laufband .spur { display: flex; width: max-content; animation: ticker 36s linear infinite; }
.laufband span { font-family: var(--serif); font-style: italic; font-size: .95rem; color: var(--braun); white-space: nowrap; padding: 0 30px; }
.laufband span em { font-style: normal; color: var(--karamell); }

/* ---------- Abschnitte ---------- */
section { padding: 74px 0 16px; }
.abschnitt-kopf { margin-bottom: 8px; }
.abschnitt-kopf .ueberzeile { text-transform: uppercase; letter-spacing: 3px; font-size: .74rem; color: var(--karamell); font-weight: 600; display: block; margin-bottom: 10px; }
.abschnitt-kopf h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--braun-tief); }
.abschnitt-kopf h2 em { font-style: italic; color: var(--karamell); }
.abschnitt-sub { color: var(--grau-warm); font-size: 1.02rem; margin: 10px 0 40px; max-width: 620px; }

/* ---------- Story ---------- */
.story-block { background: var(--leinen); border-radius: var(--radius-gross); padding: 56px 52px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 52px; align-items: center; box-shadow: var(--schatten); position: relative; overflow: hidden; }
.story-block::after { content: ""; position: absolute; width: 340px; height: 340px; background: radial-gradient(circle, rgba(201,163,106,.16), transparent 70%); bottom: -140px; right: -100px; }
.story-figur { text-align: center; }
.story-figur .bogen { padding: 20px 16px 0; }
.story-figur .bogen svg, .story-figur .bogen img { width: min(240px, 80vw); }
.story-name { margin-top: 16px; font-family: var(--serif); font-size: 1.15rem; color: var(--braun-tief); }
.story-rolle { font-size: .82rem; color: var(--grau-warm); letter-spacing: 1px; text-transform: uppercase; }
.story-block h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); line-height: 1.3; margin-bottom: 20px; color: var(--braun-tief); }
.story-block h2 em { font-style: italic; color: var(--karamell); }
.story-block p { margin-bottom: 15px; font-size: 1.02rem; color: #5B4C3F; }
.story-block p strong { color: var(--braun-tief); }
.story-kern { background: var(--sand); border-radius: var(--radius); padding: 20px 24px; font-family: var(--serif); font-style: italic; font-size: 1.02rem; color: var(--braun-tief); margin-top: 10px; }

/* ---------- Zahlen-Chips (wie Moodboard) ---------- */
.fakten { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin-top: 40px; }
.fakt { background: var(--leinen); border: 1px solid rgba(185,138,94,.3); border-radius: 60px; padding: 18px 22px; display: flex; align-items: center; gap: 14px; transition: transform .3s ease, box-shadow .3s ease; }
.fakt:hover { transform: translateY(-3px); box-shadow: var(--schatten); }
.fakt .gross { font-family: var(--serif); font-size: 1.6rem; color: var(--karamell); white-space: nowrap; }
.fakt p { font-size: .8rem; color: var(--grau-warm); line-height: 1.4; }

/* ---------- Produktkarten ---------- */
.produkt-gitter { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; }
.pkarte { background: var(--leinen); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; position: relative; box-shadow: var(--schatten); border: 1px solid rgba(185,138,94,.18); transition: transform .35s ease, box-shadow .35s ease; }
.pkarte:hover { transform: translateY(-7px); box-shadow: var(--schatten-tief); }
.pkarte.star { border: 1px solid var(--gold-sanft); background: linear-gradient(175deg, #FBF4E7 0%, var(--leinen) 45%); }
.pkarte .icon { font-size: 1.8rem; margin-bottom: 12px; }
.pkarte h3 { font-size: 1.35rem; line-height: 1.3; margin-bottom: 6px; color: var(--braun-tief); }
.pkarte .hook { font-family: var(--serif); font-style: italic; color: var(--karamell); font-size: 1rem; margin-bottom: 12px; }
.pkarte p.pitch { font-size: .95rem; color: #5B4C3F; margin-bottom: 14px; }
.pkarte ul { list-style: none; margin-bottom: 20px; flex-grow: 1; }
.pkarte ul li { font-size: .9rem; padding-left: 26px; position: relative; margin-bottom: 8px; color: #5B4C3F; }
.pkarte ul li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-sanft); }
.stempel { position: absolute; top: -13px; right: 24px; background: var(--terrakotta); color: #FDF7EE; font-size: .72rem; font-weight: 600; letter-spacing: 1px; padding: 6px 16px; border-radius: 30px; box-shadow: 0 8px 18px rgba(192,118,79,.35); }
.stempel.gold { background: var(--gold-sanft); color: var(--braun-tief); }
.stempel.gruen { background: var(--salbei); }
.preiszeile { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.preiszeile .preis { font-family: var(--serif); font-size: 1.9rem; color: var(--braun-tief); }
.preiszeile .einheit { font-size: .8rem; color: var(--grau-warm); }
.kauf-knopf { display: block; text-align: center; background: var(--braun-tief); color: var(--creme); text-decoration: none; font-weight: 600; padding: 15px; border-radius: 60px; transition: background .3s ease; }
.kauf-knopf:hover { background: var(--terrakotta); }
.kauf-knopf.warten { background: var(--sand); color: var(--grau-warm); pointer-events: none; }
.etsy-zeile { text-align: center; font-size: .84rem; margin-top: 10px; }
.etsy-zeile a { color: var(--grau-warm); }
.etsy-zeile.stark a { color: var(--karamell); font-weight: 600; }

/* ---------- Produkt-Demos (warmes Papier statt dunkler Konsole) ---------- */
.demo { background: #F2E9DA; border: 1px solid rgba(185,138,94,.35); border-radius: 16px; padding: 16px 18px 18px; margin-bottom: 18px; font-size: .8rem; overflow: hidden; }
.demo-kopf { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.demo-kopf .punkt { width: 9px; height: 9px; border-radius: 50%; opacity: .75; }
.demo-kopf .punkt.r { background: #D98E7A; } .demo-kopf .punkt.ge { background: #DDBA72; } .demo-kopf .punkt.gr { background: #9DB59A; }
.demo-titel { color: var(--grau-warm); font-weight: 600; margin-left: 8px; font-size: .76rem; font-style: italic; font-family: var(--serif); }
.demo-zeile { display: grid; grid-template-columns: 52px 1fr auto; gap: 10px; padding: 7px 10px; border-radius: 10px; color: #5B4C3F; }
.demo-zeile.kopfzeile { color: var(--grau-warm); font-weight: 600; font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; }
.demo-zeile .plus { color: #4E7D5B; font-weight: 700; } .demo-zeile .minus { color: #B4614E; font-weight: 700; }
.demo-zeile.tippt { background: rgba(255,255,255,.55); animation: demoTippt 9s infinite; }
.demo-zeile.tippt.v1 { animation-delay: 0s; } .demo-zeile.tippt.v2 { animation-delay: 1.6s; } .demo-zeile.tippt.v3 { animation-delay: 3.2s; }
@keyframes demoTippt {
  0% { opacity: 0; transform: translateX(-12px); }
  6%, 90% { opacity: 1; transform: none; }
  96%, 100% { opacity: 0; transform: translateX(-12px); }
}
.demo-summe { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; background: rgba(201,163,106,.22); border: 1px solid rgba(185,138,94,.5); border-radius: 12px; padding: 11px 14px; margin-top: 10px; color: var(--braun-tief); font-weight: 700; animation: demoSumme 9s infinite; }
.demo-summe .wert { font-family: var(--serif); font-size: 1.2rem; }
.demo-tag { font-size: .66rem; font-weight: 600; color: var(--karamell); background: rgba(255,255,255,.7); padding: 3px 10px; border-radius: 20px; letter-spacing: .5px; }
@keyframes demoSumme {
  0%, 48% { opacity: 0; transform: scale(.95); }
  56%, 90% { opacity: 1; transform: scale(1); }
  96%, 100% { opacity: 0; transform: scale(.95); }
}
.demo-werkzeuge { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.demo-werkzeuge span { background: rgba(255,255,255,.65); color: #5B4C3F; font-size: .7rem; font-weight: 600; padding: 4px 11px; border-radius: 20px; animation: demoWerkzeug 9s infinite; }
.demo-werkzeuge span:nth-child(1) { animation-delay: 0s; } .demo-werkzeuge span:nth-child(2) { animation-delay: .5s; }
.demo-werkzeuge span:nth-child(3) { animation-delay: 1s; } .demo-werkzeuge span:nth-child(4) { animation-delay: 1.5s; }
.demo-werkzeuge span:nth-child(5) { animation-delay: 2s; }
@keyframes demoWerkzeug {
  0% { opacity: 0; transform: translateY(8px); }
  5%, 92% { opacity: 1; transform: none; }
  97%, 100% { opacity: 0; transform: translateY(8px); }
}
.demo-cursor { display: inline-block; width: 2px; height: 12px; background: var(--karamell); margin-left: 3px; animation: blinzeln 1s steps(2) infinite; vertical-align: middle; }
@keyframes blinzeln { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .demo-zeile.tippt, .demo-summe, .demo-werkzeuge span { animation: none; opacity: 1; transform: none; }
}

/* ---------- Ablauf ---------- */
.ablauf-gitter { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; counter-reset: schritt; }
.ablauf-karte { background: var(--leinen); border-radius: var(--radius); padding: 34px 28px 28px; box-shadow: var(--schatten); position: relative; border: 1px solid rgba(185,138,94,.18); }
.ablauf-karte::before { counter-increment: schritt; content: "0" counter(schritt); position: absolute; top: -18px; left: 26px; font-family: var(--serif); font-style: italic; font-size: 1.1rem; background: var(--sand); color: var(--karamell); width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(185,138,94,.4); }
.ablauf-karte h3 { font-size: 1.15rem; margin: 8px 0 8px; color: var(--braun-tief); }
.ablauf-karte p { font-size: .92rem; color: var(--grau-warm); }

/* ---------- Q&A ---------- */
.qa details { background: var(--leinen); border: 1px solid rgba(185,138,94,.25); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: box-shadow .3s ease; }
.qa details[open] { box-shadow: var(--schatten); }
.qa summary { cursor: pointer; font-family: var(--serif); font-size: 1.05rem; color: var(--braun-tief); padding: 19px 56px 19px 24px; list-style: none; position: relative; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-family: var(--serif); font-size: 1.4rem; color: var(--karamell); transition: transform .3s ease; }
.qa details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.qa details p { padding: 0 24px 20px; font-size: .95rem; color: #5B4C3F; }

/* ---------- Kontakt ---------- */
.kontakt-block { background: var(--leinen); border-radius: var(--radius-gross); padding: 54px 50px; box-shadow: var(--schatten); display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; border: 1px solid rgba(185,138,94,.18); }
.kontakt-block h2 { font-size: clamp(1.5rem, 2.8vw, 1.9rem); margin-bottom: 14px; color: var(--braun-tief); }
.kontakt-block h2 em { font-style: italic; color: var(--karamell); }
.kontakt-block .intro { color: var(--grau-warm); font-size: .98rem; margin-bottom: 18px; }
.kontakt-alternativ { font-size: .88rem; color: var(--grau-warm); }
.kontakt-alternativ a { color: var(--karamell); font-weight: 600; }
.formular label { display: block; font-weight: 600; font-size: .86rem; margin: 15px 0 6px; color: var(--braun-tief); }
.formular input, .formular textarea {
  width: 100%; padding: 13px 18px; border: 1px solid rgba(185,138,94,.4); border-radius: 14px; font-family: var(--sans);
  font-size: .95rem; background: var(--creme); color: var(--braun-tief); transition: border-color .25s ease, box-shadow .25s ease;
}
.formular input:focus, .formular textarea:focus { outline: none; border-color: var(--karamell); box-shadow: 0 0 0 3px rgba(201,163,106,.25); }
.formular .hinweis { font-size: .76rem; color: var(--grau-warm); margin-top: 10px; }
.formular button { margin-top: 20px; width: 100%; }
.honigtopf { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Finale ---------- */
.finale { background: linear-gradient(150deg, #E9D9C0, var(--sand)); border-radius: var(--radius-gross); padding: 64px 48px; text-align: center; margin: 40px auto 80px; position: relative; overflow: hidden; }
.finale::before { content: ""; position: absolute; width: 380px; height: 380px; background: radial-gradient(circle, rgba(192,118,79,.18), transparent 70%); top: -160px; right: -120px; }
.finale h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 14px; color: var(--braun-tief); position: relative; }
.finale h2 em { font-style: italic; color: var(--terrakotta); }
.finale p { color: #6B5A4A; margin-bottom: 30px; position: relative; }

/* ---------- Fuß ---------- */
footer { background: var(--braun-tief); color: #C9BBA9; padding: 36px 0; font-size: .88rem; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 12px 30px; justify-content: space-between; align-items: center; }
footer a { color: #EFE6D8; }
.disclaimer { font-size: .8rem; opacity: .8; max-width: 640px; }

/* ---------- Rechtsseiten & Danke-Seite ---------- */
header { background: var(--sand); color: var(--braun-tief); border-bottom: 1px solid rgba(185,138,94,.35); }
header .topbar { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
header .logo { font-family: var(--serif); font-size: 1.4rem; }
header .logo span { color: var(--karamell); font-style: italic; }
header nav a { color: var(--braun); text-decoration: none; margin-left: 22px; font-size: .95rem; }
.rechtsseite { background: var(--leinen); max-width: 800px; margin: 40px auto; padding: 44px; border-radius: var(--radius); border: 1px solid rgba(185,138,94,.25); }
.rechtsseite h1 { color: var(--braun-tief); margin-bottom: 20px; font-size: 1.7rem; }
.rechtsseite h2 { color: var(--karamell); margin: 26px 0 8px; font-size: 1.15rem; }
.rechtsseite p, .rechtsseite li { font-size: .95rem; margin-bottom: 8px; }
.platzhalter { background: #F3E3C2; padding: 2px 6px; border-radius: 4px; font-weight: 600; }
.danke-karte { max-width: 620px; margin: 80px auto; background: var(--leinen); border: 1px solid rgba(185,138,94,.3); box-shadow: var(--schatten-tief); border-radius: var(--radius-gross); padding: 54px 46px; text-align: center; }
.danke-karte h1 { font-size: 1.9rem; margin-bottom: 14px; color: var(--braun-tief); }
.danke-karte p { color: var(--grau-warm); margin-bottom: 28px; }

/* ---------- Responsiv ---------- */
@media (max-width: 860px) {
  .held .innen, .story-block, .kontakt-block { grid-template-columns: 1fr; }
  .held { padding-top: 48px; text-align: center; }
  .held p.unterzeile { margin-left: auto; margin-right: auto; }
  .cta-zeile { justify-content: center; }
  .held-figur { margin-top: 34px; }
  .story-block { padding: 38px 26px; text-align: center; }
  .kontakt-block { padding: 36px 26px; }
  .navleiste nav { justify-content: center; }
}

/* ---------- Dunkelmodus (warm gedämpft) ---------- */
@media (prefers-color-scheme: dark) {
  :root {
    --creme: #1D1813;
    --sand: #2A231C;
    --leinen: #262019;
    --braun: #E8DFD3;
    --braun-tief: #F3ECE1;
    --grau-warm: #A3937F;
    --schatten: 0 16px 44px rgba(0,0,0,.4);
    --schatten-tief: 0 24px 60px rgba(0,0,0,.55);
  }
  body { color: #E8DFD3; }
  .held p.unterzeile, .story-block p, .pkarte p.pitch, .pkarte ul li, .qa details p, .demo-zeile { color: #C6B9A6; }
  .navleiste { background: rgba(29,24,19,.9); }
  .navleiste a.nav-cta { background: var(--karamell); color: #1D1813; }
  .knopf, .kauf-knopf { background: var(--karamell); color: #1D1813; }
  .knopf:hover, .kauf-knopf:hover { background: var(--terrakotta); color: #fff; }
  .kauf-knopf.warten { background: #332B22; color: var(--grau-warm); }
  .demo { background: #211B15; }
  .demo-zeile.tippt { background: rgba(255,255,255,.06); }
  .demo-summe { color: #F0D8AE; }
  .demo-tag { background: rgba(0,0,0,.4); }
  .demo-werkzeuge span { background: rgba(255,255,255,.08); color: #C6B9A6; }
  .finale { background: linear-gradient(150deg, #2E251B, #262019); }
  .finale p { color: #C6B9A6; }
  .formular input, .formular textarea { background: #1D1813; }
  .stempel.gold { color: #1D1813; }
  .bogen { background: linear-gradient(170deg, #2E251B, #262019); }
}
