/* =============================================================
   hautordination.at — Relaunch 2026 „Goldenes Signet"
   Corporate Design: Wiener Honig (Champagner · Honig · Bernstein)
   Dependency-frei: kein Framework, keine Webfonts, keine CDNs
   ============================================================= */

/* ---------- Design Tokens (CI-Farben) ---------- */
:root {
    /* Goldtöne — bewusst kein Reingelb */
    --champagner: #e7cf6f;
    --honig:      #c9a227;
    --bernstein:  #9a7b1e;
    --bernstein-text: #7f6517; /* AA-Kontrast auf Elfenbein */

    /* Neutrale */
    --nacht:      #1a150e;
    --nacht-2:    #262017;
    --elfenbein:  #fbf8f0;
    --sekt:       #f4edda;
    --linie:      #e6ddc4;
    --linie-dark: rgba(251, 248, 240, .14);
    --text:       #37312a;
    --text-soft:  #6e675c;
    --text-inv:   #d9d2c2;
    --weiss:      #ffffff;

    --serif: "Palatino Linotype", Palatino, "Book Antiqua", "URW Palladio L", Georgia, "Times New Roman", serif;
    --sans:  ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    --w: min(1100px, calc(100% - 2.5rem));
    --radius: 3px;
    --shadow-1: 0 1px 2px rgba(26, 21, 14, .05), 0 10px 30px rgba(26, 21, 14, .07);
    --shadow-2: 0 2px 8px rgba(26, 21, 14, .12), 0 28px 64px rgba(26, 21, 14, .2);
    --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.68;
    color: var(--text);
    background: var(--elfenbein);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }

::selection { background: var(--honig); color: var(--nacht); }

:focus-visible {
    outline: 2px solid var(--honig);
    outline-offset: 3px;
    border-radius: var(--radius);
}

.wrap { width: var(--w); margin-inline: auto; }

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px; top: 0;
    z-index: 100;
    background: var(--nacht);
    color: var(--elfenbein);
    padding: .75rem 1.25rem;
    font-size: .85rem;
    text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Typografie ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--bernstein-text);
}
.eyebrow::before, .eyebrow.centered::after {
    content: "";
    width: 2.2rem;
    height: 1px;
    background: var(--honig);
}

.h-display {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.01em;
    line-height: 1.12;
    color: var(--nacht);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    text-wrap: balance;
}

.lead {
    font-size: 1.04rem;
    font-weight: 300;
    color: var(--text-soft);
    max-width: 62ch;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 1rem 2.1rem;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .25s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
    background: linear-gradient(135deg, var(--champagner), var(--honig) 55%, var(--bernstein));
    color: var(--nacht);
    box-shadow: 0 8px 22px rgba(154, 123, 30, .3);
}
.btn-gold:hover { box-shadow: 0 10px 28px rgba(154, 123, 30, .42); }

.btn-line { border-color: var(--linie); color: var(--nacht); background: transparent; }
.btn-line:hover { border-color: var(--bernstein); color: var(--bernstein-text); }

.btn-dark { background: var(--nacht); color: var(--elfenbein); }
.btn-dark:hover { background: var(--bernstein); color: var(--nacht); }

.btn-block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
    background: var(--nacht);
    color: var(--text-inv);
    font-size: .72rem;
    letter-spacing: .12em;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .55rem 0;
}
.topbar span { text-transform: uppercase; }
.topbar strong { color: var(--champagner); font-weight: 600; }
.topbar a { color: var(--champagner); text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--weiss); }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(251, 248, 240, .93);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--linie);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    height: 5.1rem;
}
.brand {
    display: flex;
    align-items: center;
    gap: .9rem;
    text-decoration: none;
}
.brand-mark { width: 2.7rem; height: 2.7rem; flex: none; }
.brand-name {
    font-family: var(--serif);
    font-size: 1.28rem;
    color: var(--nacht);
    line-height: 1.15;
}
.brand-sub {
    display: block;
    font-family: var(--sans);
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--bernstein-text);
    margin-top: .25rem;
}

.main-nav { display: flex; gap: 2.2rem; }
.main-nav a {
    position: relative;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .05em;
    color: var(--text-soft);
    text-decoration: none;
    padding: .4rem 0;
    transition: color .25s var(--ease);
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%; bottom: 0;
    height: 1px;
    background: var(--honig);
    transition: right .3s var(--ease);
}
.main-nav a:hover { color: var(--nacht); }
.main-nav a:hover::after { right: 0; }

.header-cta { padding: .68rem 1.3rem; font-size: .7rem; }

.mobile-nav {
    display: none;
    justify-content: space-between;
    border-top: 1px solid var(--linie);
    background: var(--elfenbein);
    padding: .75rem 1.25rem;
}
.mobile-nav a {
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-soft);
    text-decoration: none;
}
.mobile-nav a:hover { color: var(--bernstein-text); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    text-align: center;
    padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
    background:
        radial-gradient(ellipse 60% 45% at 50% 0%, rgba(201, 162, 39, .1), transparent 65%),
        var(--elfenbein);
}
.hero-mark { width: clamp(4.2rem, 8vw, 5.5rem); height: auto; margin: 0 auto 1.75rem; }
.hero .eyebrow { justify-content: center; }
.hero .eyebrow::after { content: ""; width: 2.2rem; height: 1px; background: var(--honig); }

.hero h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2.3rem, 5.5vw, 3.9rem);
    line-height: 1.08;
    letter-spacing: -.015em;
    color: var(--nacht);
    margin-top: 1.4rem;
    text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--bernstein-text); }

.hero-copy {
    max-width: 44rem;
    margin: 1.5rem auto 0;
    font-weight: 300;
    font-size: 1.06rem;
    color: var(--text-soft);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.4rem;
}

.trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem 2.4rem;
    margin-top: 2.8rem;
    padding-top: 1.9rem;
    border-top: 1px solid var(--linie);
}
.trust li {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-soft);
}
.trust li::before {
    content: "";
    width: .45rem;
    height: .45rem;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 35%, var(--champagner), var(--bernstein));
    flex: none;
}

/* Hero-Bild */
.hero-panel { margin-top: clamp(2.5rem, 5vw, 4rem); }
.hero-panel figure {
    position: relative;
    border: 1px solid var(--linie);
    padding: .6rem;
    background: var(--weiss);
    border-radius: var(--radius);
    box-shadow: var(--shadow-1);
}
.hero-panel img {
    width: 100%;
    height: clamp(15rem, 34vw, 24rem);
    object-fit: cover;
    border-radius: 2px;
    filter: saturate(.88);
}
.hero-panel figcaption {
    position: absolute;
    left: 1.6rem;
    bottom: 1.6rem;
    background: rgba(26, 21, 14, .85);
    color: var(--text-inv);
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .55rem 1rem;
    border-left: 2px solid var(--honig);
    border-radius: 2px;
}

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 7.5vw, 6.5rem) 0; }
.section-alt { background: var(--sekt); border-block: 1px solid var(--linie); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }
.section-head.centered .eyebrow::after { content: ""; width: 2.2rem; height: 1px; background: var(--honig); }
.section-head .h-display { margin-top: .9rem; }
.section-head .lead { margin-top: 1rem; }
.section-head.centered .lead { margin-inline: auto; }

/* ---------- Leitbild ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.pillar {
    background: var(--weiss);
    border: 1px solid var(--linie);
    border-top: 2px solid var(--honig);
    border-radius: var(--radius);
    padding: 2.2rem 1.9rem;
    box-shadow: var(--shadow-1);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.pillar-icon {
    width: 3.1rem;
    height: 3.1rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid var(--linie);
    background: var(--elfenbein);
    color: var(--bernstein-text);
    margin-bottom: 1.3rem;
}
.pillar-icon svg { width: 1.35rem; height: 1.35rem; }
.pillar h3 { font-family: var(--serif); font-weight: 600; font-size: 1.18rem; color: var(--nacht); margin-bottom: .65rem; }
.pillar p { font-size: .91rem; font-weight: 300; color: var(--text-soft); }

/* ---------- Leistungen ---------- */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.service {
    position: relative;
    background: var(--weiss);
    border: 1px solid var(--linie);
    border-radius: var(--radius);
    padding: 2rem 1.9rem 1.9rem;
    box-shadow: var(--shadow-1);
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: rgba(154, 123, 30, .45); }
.service-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: .95rem;
    color: var(--honig);
}
.service h3 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.18rem;
    color: var(--nacht);
    margin-top: .55rem;
}
.service p { margin-top: .55rem; font-size: .9rem; font-weight: 300; color: var(--text-soft); }
.service::after {
    content: "";
    position: absolute;
    left: 0; right: 100%; bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--champagner), var(--bernstein));
    transition: right .4s var(--ease);
}
.service:hover::after { right: 0; }

/* ---------- Kassen-Band ---------- */
.kassen {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    margin-top: 2.8rem;
    padding: 1.7rem 2rem;
    background: var(--nacht);
    color: var(--elfenbein);
    border-radius: var(--radius);
    box-shadow: var(--shadow-1);
}
.kassen-label { display: flex; align-items: center; gap: .95rem; }
.kassen-label svg { width: 1.5rem; height: 1.5rem; color: var(--champagner); flex: none; }
.kassen-label strong { font-family: var(--serif); font-weight: 600; font-size: 1.12rem; display: block; }
.kassen-label span { font-size: .78rem; font-weight: 300; color: var(--text-inv); }
.kassen-list { display: flex; flex-wrap: wrap; gap: .55rem; }
.kassen-list li {
    list-style: none;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .18em;
    padding: .5rem 1.05rem;
    border: 1px solid var(--linie-dark);
    border-radius: 999px;
    color: var(--champagner);
}

/* ---------- Termin & Zeiten ---------- */
.consult-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4.5vw, 4rem);
    align-items: stretch;
}
.consult-card {
    position: relative;
    background: var(--nacht);
    color: var(--elfenbein);
    border-radius: var(--radius);
    padding: clamp(2.1rem, 3.5vw, 3.2rem);
    box-shadow: var(--shadow-2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.consult-card::before {
    content: "";
    position: absolute;
    top: -4rem; right: -4rem;
    width: 13rem; height: 13rem;
    background: radial-gradient(circle, rgba(201, 162, 39, .3), transparent 70%);
    pointer-events: none;
}
.consult-card .eyebrow { color: var(--champagner); }
.consult-card .eyebrow::before { background: var(--champagner); }
.consult-card h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    margin-top: .9rem;
}
.consult-card p { margin-top: 1.2rem; font-size: .95rem; font-weight: 300; color: var(--text-inv); }
.consult-card p strong { color: var(--weiss); font-weight: 600; }
.consult-actions { margin-top: auto; padding-top: 1.9rem; display: grid; gap: .8rem; }
.consult-note { font-size: .74rem; text-align: center; color: rgba(217, 210, 194, .62); }

.hours h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 2.8vw, 2.1rem); color: var(--nacht); }
.hours-rule { width: 4rem; height: 1px; background: var(--honig); margin: 1.3rem 0 .9rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 1rem 0; border-bottom: 1px solid var(--linie); font-size: .95rem; }
.hours-table td:first-child { font-weight: 300; letter-spacing: .05em; color: var(--text-soft); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--nacht); font-variant-numeric: tabular-nums; }
.hours-table tr.closed td { color: #a79f8d; }
.hours-table tr.closed td:last-child { font-weight: 300; font-style: italic; }
.hours-hint {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin-top: 1.4rem;
    padding: 1rem 1.2rem;
    font-size: .82rem;
    color: var(--text-soft);
    background: var(--sekt);
    border: 1px solid var(--linie);
    border-left: 2px solid var(--honig);
    border-radius: var(--radius);
}
.hours-hint svg { width: 1rem; height: 1rem; flex: none; margin-top: .15rem; color: var(--bernstein-text); }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 4.5vw, 4rem); }
.contact-items { display: grid; gap: 1.6rem; margin-top: 2rem; }
.contact-item { display: flex; gap: 1.1rem; }
.contact-item > svg { width: 1.2rem; height: 1.2rem; flex: none; margin-top: .2rem; color: var(--bernstein-text); }
.contact-item h3 { font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--nacht); }
.contact-item p { margin-top: .3rem; font-size: .95rem; font-weight: 300; color: var(--text-soft); }
.contact-item a {
    color: var(--nacht);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--linie);
    transition: color .25s, border-color .25s;
}
.contact-item a:hover { color: var(--bernstein-text); border-color: var(--honig); }
.contact-pending { color: #a79f8d; font-style: italic; }

.map-card {
    display: flex;
    flex-direction: column;
    background: var(--weiss);
    border: 1px solid var(--linie);
    border-radius: var(--radius);
    box-shadow: var(--shadow-1);
    overflow: hidden;
}
.map-visual {
    position: relative;
    flex: 1;
    min-height: 17rem;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 2.4rem;
    background:
        radial-gradient(circle at 1px 1px, rgba(110, 103, 92, .3) 1px, transparent 0) 0 0 / 20px 20px,
        var(--elfenbein);
}
.map-pin {
    width: 3.4rem;
    height: 3.4rem;
    display: grid;
    place-items: center;
    background: var(--weiss);
    color: var(--bernstein-text);
    border-radius: 999px;
    box-shadow: var(--shadow-1);
    margin-inline: auto;
}
.map-pin svg { width: 1.45rem; height: 1.45rem; }
.map-visual h3 { font-family: var(--serif); font-weight: 600; font-size: 1.18rem; color: var(--nacht); margin-top: 1rem; }
.map-visual p { max-width: 30rem; margin: .55rem auto 0; font-size: .8rem; font-weight: 300; color: var(--text-soft); }
.map-cta { padding: 1rem; border-top: 1px solid var(--linie); }

/* ---------- Footer ---------- */
.site-footer { background: var(--nacht); color: var(--text-inv); padding: 3.25rem 0; }
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.footer-brand { display: flex; align-items: center; gap: .9rem; }
.footer-brand svg { width: 2.5rem; height: 2.5rem; flex: none; }
.footer-brand p:first-child { font-family: var(--serif); font-size: 1.15rem; color: var(--elfenbein); }
.footer-brand p:last-child {
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--honig);
    margin-top: .4rem;
}
.footer-links { display: flex; gap: 1.9rem; }
.footer-links button {
    background: none;
    border: none;
    font: inherit;
    font-size: .8rem;
    font-weight: 300;
    letter-spacing: .05em;
    color: var(--text-inv);
    cursor: pointer;
    padding: .25rem 0;
    border-bottom: 1px solid transparent;
    transition: color .25s, border-color .25s;
}
.footer-links button:hover { color: var(--champagner); border-color: var(--champagner); }
.footer-meta { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(217, 210, 194, .48); }

/* ---------- Dialoge ---------- */
dialog.legal {
    width: min(44rem, calc(100vw - 2rem));
    max-height: 85vh;
    margin: auto;
    border: none;
    border-radius: var(--radius);
    padding: 0;
    background: var(--weiss);
    color: var(--text);
    box-shadow: var(--shadow-2);
}
dialog.legal::backdrop { background: rgba(26, 21, 14, .72); backdrop-filter: blur(4px); }

.legal-head {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--weiss);
    border-bottom: 1px solid var(--linie);
    padding: 1.4rem 1.9rem;
}
.legal-head h2 {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.28rem;
    color: var(--nacht);
}
.legal-head h2 svg { width: 1.15rem; height: 1.15rem; color: var(--bernstein-text); }
.legal-close {
    width: 2.4rem;
    height: 2.4rem;
    display: grid;
    place-items: center;
    background: none;
    border: 1px solid var(--linie);
    border-radius: 999px;
    color: var(--text-soft);
    cursor: pointer;
    transition: color .25s, border-color .25s;
}
.legal-close:hover { color: var(--nacht); border-color: var(--nacht); }
.legal-close svg { width: 1rem; height: 1rem; }

.legal-body { padding: 1.9rem; font-size: .92rem; font-weight: 300; color: var(--text-soft); }
.legal-body > * + * { margin-top: 1.4rem; }
.legal-body h3 {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--bernstein-text);
    margin-bottom: .5rem;
}
.legal-body h4 { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; color: var(--nacht); margin-bottom: .35rem; }
.legal-body strong { color: var(--nacht); font-weight: 600; }
.legal-body a { color: var(--nacht); }
.legal-body a:hover { color: var(--bernstein-text); }
.legal-body .legal-card {
    background: var(--elfenbein);
    border: 1px solid var(--linie);
    border-radius: var(--radius);
    padding: 1.35rem 1.55rem;
}
.legal-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--nacht); }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .pillars, .services { grid-template-columns: 1fr 1fr; }
    .consult-grid, .contact-grid { grid-template-columns: 1fr; }
    .main-nav { display: none; }
    .mobile-nav { display: flex; }
    .topbar-inner { justify-content: center; text-align: center; }
    .topbar-inner span:nth-child(2) { display: none; }
}

@media (max-width: 620px) {
    .pillars, .services { grid-template-columns: 1fr; }
    .kassen { flex-direction: column; align-items: flex-start; }
    .header-cta span { display: none; }
    .header-cta { padding: .68rem .9rem; }
    .brand-name { font-size: 1.1rem; }
}

/* ---------- Print ---------- */
@media print {
    .topbar, .site-header, .mobile-nav, .hero-actions, .map-cta, .site-footer, .consult-actions { display: none !important; }
    body { background: #fff; color: #000; }
}
