/* Eulenstern – dunkles Design mit Goldakzenten */
:root {
  --bg: #0b0b0d;
  --bg-2: #141417;
  --bg-3: #1c1c21;
  --line: #2a2a31;
  --text: #e9e6df;
  --muted: #a9a59b;
  --gold: #d4af37;
  --gold-2: #f1d67a;
  --gold-3: #8a6d1f;
  --danger: #d9534f;
  --ok: #4caf7d;
  --info: #5aa0d8;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,.45);
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-head: Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font); font-size: 17px; line-height: 1.65;
  display: flex; flex-direction: column; min-height: 100vh;
}
img { max-width: 100%; height: auto; }
a { color: var(--gold-2); text-decoration: none; }
a:hover { color: #fff; text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 400; color: #fff; line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 1.6em; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
.wrap { width: min(1120px, 100% - 2.5rem); margin-inline: auto; }
.narrow { max-width: 760px; }
.small { font-size: .9rem; color: var(--muted); }
.muted { color: var(--muted); }
.skip { position: absolute; left: -999px; top: 0; background: var(--gold); color: #000; padding: .5rem 1rem; z-index: 1000; }
.skip:focus { left: 1rem; }

/* ---------- Header ---------- */
.site-header { background: linear-gradient(#0e0e11, #0b0b0d); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 70px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: .75rem; color: inherit; }
.brand:hover { text-decoration: none; }
.brand-owl { width: 40px; height: 46px; object-fit: cover; border-radius: 6px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 700; letter-spacing: .12em; font-size: 1.15rem;
  background: linear-gradient(90deg, #9a7a24, #f1d67a, #b8912e); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-tag { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-3); }
.mainnav { display: flex; align-items: center; gap: 1.5rem; }
.mainnav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .2rem; flex-wrap: wrap; align-items: center; }
.mainnav a { display: inline-block; padding: .45rem .7rem; color: var(--text); border-radius: 6px; font-size: .95rem; }
.mainnav a:hover { background: var(--bg-3); color: var(--gold-2); text-decoration: none; }
.nav-user { border-left: 1px solid var(--line); padding-left: 1rem; }
.badge { display: inline-block; background: var(--gold); color: #000; border-radius: 999px; padding: 0 .5em; font-size: .75rem; font-weight: 700; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 6px; width: 44px; height: 40px; cursor: pointer; padding: 8px; flex-direction: column; justify-content: space-between; }
.nav-toggle span { display: block; height: 2px; background: var(--gold); border-radius: 2px; }

/* Dropdown-Untermenü */
.mainnav li { position: relative; }
.has-sub .caret { font-size: .7em; opacity: .7; }
.has-sub .sub { display: none; position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px; padding: .4rem; box-shadow: var(--shadow); flex-direction: column; gap: 0; z-index: 60; }
.has-sub:hover .sub, .has-sub:focus-within .sub, .has-sub.open .sub { display: flex; }
.has-sub .sub a { display: block; white-space: nowrap; }
.subnav { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.subnav .wrap { display: flex; gap: .3rem; flex-wrap: wrap; padding: .5rem 0; }
.subnav a { padding: .4rem .8rem; border-radius: 999px; color: var(--muted); font-size: .92rem; }
.subnav a:hover, .subnav a.active { background: var(--bg-3); color: var(--gold-2); text-decoration: none; }
.placeholder-missing { color: var(--danger); border-bottom: 1px dashed var(--danger); cursor: help; }
.mandate { border: 1px solid var(--gold-3); border-radius: var(--radius); padding: 1.5rem; background: var(--bg-2); margin: 1.5rem 0; }
.mandate table td:first-child { width: 40%; color: var(--muted); }
.mandate table td { height: 2.4em; }
.footer-sitemap { list-style: none; margin: 0; padding: 0; }
.footer-sitemap li { margin-bottom: .3rem; }
.footer-sitemap ul { list-style: none; margin: .2rem 0 .3rem; padding-left: 1rem; }
.footer-sitemap ul a { color: var(--muted); font-size: .9rem; }
.footer-sitemap a { color: var(--text); }
.footer-sitemap a:hover { color: var(--gold-2); }

/* ---------- Buttons / Formulare ---------- */
.btn { display: inline-block; background: linear-gradient(135deg, #e3c25c, #b8912e); color: #111 !important; font-weight: 600;
  padding: .7rem 1.4rem; border-radius: 999px; border: 0; cursor: pointer; font-size: 1rem; font-family: inherit; transition: transform .15s, box-shadow .15s; }
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(212,175,55,.3); }
.btn-small { padding: .4rem .95rem !important; font-size: .9rem !important; }
.btn-outline { background: transparent; color: var(--gold-2) !important; border: 1px solid var(--gold-3); }
.btn-outline:hover { background: rgba(212,175,55,.1); }
.btn-danger { background: transparent; color: var(--danger) !important; border: 1px solid var(--danger); }
.btn-ghost { background: transparent; color: var(--muted) !important; border: 1px solid var(--line); }
form { margin: 0; }
.form { display: grid; gap: 1rem; }
label { display: block; font-size: .92rem; color: var(--muted); margin-bottom: .3rem; }
input[type=text], input[type=email], input[type=password], input[type=number], input[type=date], input[type=url], select, textarea {
  width: 100%; background: var(--bg-2); color: var(--text); border: 1px solid var(--line); border-radius: 8px;
  padding: .7rem .85rem; font: inherit; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--gold-3); border-color: var(--gold); }
textarea { min-height: 140px; resize: vertical; }
textarea.code { font-family: Consolas, Menlo, monospace; font-size: .9rem; min-height: 320px; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.form-actions { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.check { display: flex; align-items: flex-start; gap: .6rem; color: var(--text); }
.check input { width: auto; margin-top: .35rem; flex: 0 0 auto; }
.help { font-size: .85rem; color: var(--muted); margin-top: .3rem; }

/* ---------- Flash ---------- */
.flash { width: min(1120px, 100% - 2.5rem); margin: 1rem auto 0; padding: .8rem 1rem; border-radius: 8px; border: 1px solid; }
.flash-success { border-color: var(--ok); background: rgba(76,175,125,.12); }
.flash-error { border-color: var(--danger); background: rgba(217,83,79,.12); }
.flash-info { border-color: var(--info); background: rgba(90,160,216,.12); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 3.5rem 0 3rem; text-align: center;
  background: radial-gradient(ellipse at top, rgba(212,175,55,.12), transparent 60%), var(--bg); }
.hero-logo { width: min(520px, 90%); border-radius: 14px; box-shadow: var(--shadow); border: 1px solid #222; }
.hero h1 { margin-top: 2rem; }
.hero .lead { font-size: 1.15rem; max-width: 700px; margin: 0 auto 1.8rem; color: var(--muted); }
.hero-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.gold-rule { width: 80px; height: 2px; margin: 1.5rem auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ---------- Sections ---------- */
.section { padding: 3rem 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-title { text-align: center; margin-bottom: 2rem; }
.section-title h2 { margin-top: 0; }
.section-title p { color: var(--muted); }
.content h2 { color: var(--gold-2); }
.content ul, .content ol { padding-left: 1.4em; }
.content li { margin-bottom: .35em; }
.content blockquote { border-left: 3px solid var(--gold); margin: 1.5em 0; padding: .5em 1.2em; background: var(--bg-2); border-radius: 0 8px 8px 0; font-style: italic; }
.content img { border-radius: var(--radius); }
.content table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.content th, .content td { border: 1px solid var(--line); padding: .5rem .7rem; text-align: left; }

/* Page header (Unterseiten) */
.page-head { padding: 3rem 0 2rem; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(212,175,55,.06), transparent); }
.page-head .intro { font-size: 1.15rem; color: var(--muted); max-width: 760px; margin: 0; }
.crumb { font-size: .85rem; color: var(--muted); margin-bottom: .6rem; }

/* ---------- Karten / Grid ---------- */
.grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: 0 2px 10px rgba(0,0,0,.3);
  transition: border-color .2s, transform .2s; }
.card:hover { border-color: var(--gold-3); }
.card h3 { margin-top: 0; color: var(--gold-2); }
.card .meta { font-size: .85rem; color: var(--muted); }

.sortbar { display: flex; justify-content: flex-end; align-items: center; gap: .6rem; margin: -1rem 0 1.2rem; }
.sortbar label { margin: 0; }
.sortbar select { width: auto; padding: .4rem .7rem; }

/* Feedback-Kommentare */
.testimonials { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.testimonial { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; position: relative; }
.testimonial::before { content: "\201C"; position: absolute; top: -.2rem; left: 1rem; font-family: var(--font-head); font-size: 4rem; color: var(--gold-3); opacity: .6; line-height: 1; }
.testimonial p { margin: .8rem 0 1rem; }
.testimonial .who { font-size: .9rem; color: var(--gold-2); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.stars { color: var(--gold); letter-spacing: 2px; }
.stars .off { color: var(--line); }
.empty { text-align: center; color: var(--muted); padding: 2rem; border: 1px dashed var(--line); border-radius: var(--radius); }

/* Erfahrungsberichte-Template */
.story { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; margin-bottom: 1.25rem; border-left: 4px solid var(--gold); }
.story h3 { margin-top: 0; }
.story .author { color: var(--gold-2); font-style: italic; margin: 0; }

/* Presse-Template */
.press-item { display: grid; grid-template-columns: 130px 1fr; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.press-item time { color: var(--gold-2); font-family: var(--font-head); font-size: 1.05rem; }
.press-item h3 { margin-top: 0; }
.press-item .download { font-size: .9rem; }

/* Kontakt-Template */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; }
.contact-box { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.contact-box h3 { color: var(--gold-2); margin-top: 0; }
.contact-box dl { margin: 0; }
.contact-box dt { color: var(--muted); font-size: .85rem; margin-top: .8rem; }
.contact-box dd { margin: 0; }

/* Legal-Template */
.legal h2 { font-size: 1.35rem; margin-top: 2em; color: var(--gold-2); }
.legal h3 { font-size: 1.1rem; margin-top: 1.5em; }
.legal address { font-style: normal; }

/* Auth-Boxen */
.auth { max-width: 460px; margin: 3rem auto; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.auth h1 { font-size: 1.7rem; text-align: center; }
.auth .switch { text-align: center; margin-top: 1.2rem; font-size: .92rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { margin-top: auto; background: #08080a; border-top: 1px solid var(--line); padding: 2.5rem 0 1.5rem; font-size: .95rem; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.footer-col h3 { color: var(--gold-2); font-size: 1.05rem; }
.footer-logo { max-width: 240px; border-radius: 8px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.footer-nav a { margin-left: 1.2rem; color: var(--muted); }
.footer-nav a:hover { color: var(--gold-2); }

/* ---------- Admin ---------- */
.admin-layout { display: grid; grid-template-columns: 230px 1fr; gap: 2rem; padding: 2rem 0; }
.admin-content { min-width: 0; }
.admin-nav { position: sticky; top: 90px; align-self: start; }
.admin-nav ul { list-style: none; margin: 0; padding: 0; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.admin-nav a { display: block; padding: .75rem 1rem; color: var(--text); border-bottom: 1px solid var(--line); }
.admin-nav a:hover, .admin-nav a.active { background: var(--bg-3); color: var(--gold-2); text-decoration: none; }
.admin-nav li:last-child a { border-bottom: 0; }
.admin-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.admin-head h1 { font-size: 1.8rem; margin: 0; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; }
.stat .num { font-size: 2rem; font-family: var(--font-head); color: var(--gold-2); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: .85rem; margin-top: .3rem; }
.table-wrap { overflow-x: auto; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); }
table.tbl { width: 100%; border-collapse: collapse; font-size: .92rem; }
.tbl th, .tbl td { padding: .65rem .8rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.tbl th { color: var(--gold-2); font-weight: 600; background: var(--bg-3); white-space: nowrap; }
.tbl tr:last-child td { border-bottom: 0; }
.tbl .actions { white-space: nowrap; }
.tbl .actions form { display: inline; }
.pill { display: inline-block; padding: .1em .6em; border-radius: 999px; font-size: .78rem; font-weight: 600; }
.pill-pending { background: rgba(212,175,55,.2); color: var(--gold-2); }
.pill-approved { background: rgba(76,175,125,.2); color: var(--ok); }
.pill-rejected { background: rgba(217,83,79,.2); color: var(--danger); }
.pill-admin { background: rgba(90,160,216,.2); color: var(--info); }
.pill-off { background: var(--bg-3); color: var(--muted); }
.link-btn { background: none; border: 0; color: var(--gold-2); cursor: pointer; font: inherit; padding: 0; }
.link-btn.danger { color: var(--danger); }
.link-btn:hover { text-decoration: underline; }
.pager { display: flex; gap: .5rem; margin-top: 1rem; flex-wrap: wrap; }
.pager a, .pager span { padding: .3rem .7rem; border: 1px solid var(--line); border-radius: 6px; }
.pager .cur { background: var(--gold); color: #000; border-color: var(--gold); }
.filterbar { display: flex; gap: .6rem; flex-wrap: wrap; align-items: end; margin-bottom: 1rem; }
.filterbar label { margin: 0; }
.filterbar input, .filterbar select { width: auto; min-width: 140px; }
.extra-editor .item { background: var(--bg-3); border: 1px solid var(--line); border-radius: 8px; padding: 1rem; margin-bottom: 1rem; }
.extra-editor .item-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; color: var(--muted); font-size: .85rem; }
details.tips { margin-top: 1rem; font-size: .9rem; color: var(--muted); }
details.tips code { background: var(--bg-3); padding: .1em .35em; border-radius: 4px; color: var(--gold-2); }

.progress { height: 10px; background: var(--bg-3); border-radius: 999px; overflow: hidden; margin: .5rem 0; }
.progress div { height: 100%; background: linear-gradient(90deg, #b8912e, #f1d67a); transition: width .3s; }
.newsletter-frame { background: #f3f1ec; border-radius: var(--radius); padding: 1rem; color: #222; }

/* ---------- Terminkalender ---------- */
.cal-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: 1rem 0 .5rem; }
.cal-nav h2 { margin: 0; }
.legend, .legend-row { display: inline-flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.lg { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-left: .6rem; }
.lg-free { background: rgba(76,175,125,.35); border: 1px solid var(--ok); }
.lg-pending { background: rgba(212,175,55,.25); border: 1px solid var(--gold); }
.lg-booked { background: rgba(90,160,216,.25); border: 1px solid var(--info); }
.lg-blocked { background: rgba(217,83,79,.2); border: 1px solid var(--danger); }
.lg-none { background: var(--bg-3); border: 1px solid var(--line); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-head { text-align: center; color: var(--gold-2); font-size: .85rem; padding: .3rem 0; }
.cal-day { background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px; min-height: 96px; padding: .35rem; font-size: .82rem; }
.cal-empty { background: transparent; border: 0; }
.cal-today { border-color: var(--gold); }
.cal-past { opacity: .5; }
.cal-num { font-weight: 600; color: var(--muted); margin-bottom: .25rem; }
.cal-num a { color: var(--gold-2); }
.cal-period { margin-top: .25rem; }
.cal-plabel { display: block; font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.slot { display: inline-block; margin: 1px 2px 1px 0; padding: .1rem .4rem; border-radius: 4px; font-size: .78rem; border: 1px solid var(--line); background: var(--bg-3); color: var(--muted); cursor: default; font-family: inherit; line-height: 1.4; }
button.slot { cursor: pointer; }
.slot-free { background: rgba(76,175,125,.18); border-color: var(--ok); color: #cdeed9; cursor: pointer; }
a.slot-free:hover, button.slot-free:hover { background: var(--ok); color: #000; text-decoration: none; }
.slot-booked { background: rgba(90,160,216,.2); border-color: var(--info); color: #d3e6f5; }
.slot-pending { background: rgba(212,175,55,.2); border-color: var(--gold); color: var(--gold-2); }
.slot-blocked { background: rgba(217,83,79,.15); border-color: var(--danger); color: #f0b3b1; cursor: pointer; }
.slot-none:hover { border-color: var(--ok); color: var(--ok); }
.slot-past { opacity: .5; }
.cal-admin .slot { display: block; width: 100%; text-align: left; }
.cal-admin form { margin: 1px 0; }
.booking-form { max-width: 720px; margin: 0 auto 2rem; }
.mode-choice { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .8rem; }
.mode-option { display: flex; gap: .6rem; align-items: flex-start; background: var(--bg-3); border: 1px solid var(--line); border-radius: 8px; padding: .8rem; color: var(--text); cursor: pointer; }
.mode-option:has(input:checked) { border-color: var(--gold); }
.mode-option input { margin-top: .3rem; }
.cal-week td { vertical-align: top; min-width: 110px; }
.cal-week .th-today { color: #fff; background: rgba(212,175,55,.18); }
.cal-period-row td { background: var(--bg-3); color: var(--gold-2); font-family: var(--font-head); }
.cal-cell { height: 64px; }
.cal-cell.cal-free { background: rgba(76,175,125,.10); }
.cal-cell.cal-pending { background: rgba(212,175,55,.12); }
.cal-cell.cal-booked { background: rgba(90,160,216,.12); }
.cal-cell.cal-blocked { background: rgba(217,83,79,.10); }
.cal-cell.cal-past { opacity: .5; }
.cal-actions { display: flex; gap: .4rem; font-size: .8rem; margin-top: .2rem; }
.cal-actions form { display: inline; }
.cal-booking { display: block; color: var(--text); font-size: .85rem; }
.check-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.check-row .check { display: inline-flex; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-nav { position: static; }
  .admin-nav ul { display: flex; flex-wrap: wrap; }
  .admin-nav a { border-bottom: 0; border-right: 1px solid var(--line); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .mainnav { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 0; padding-bottom: .8rem; }
  .mainnav.open { display: flex; }
  .mainnav ul { flex-direction: column; align-items: stretch; }
  .mainnav li { display: block; }
  .has-sub .sub { position: static; border: 0; box-shadow: none; padding: 0 0 0 1rem; background: transparent; }
  .has-sub .sub a { white-space: normal; }
  .mainnav a { display: block; padding: .7rem .5rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-user { border-left: 0; padding-left: 0; margin-top: .5rem; }
  .nav-user .btn { margin: .5rem; text-align: center; }
  .press-item { grid-template-columns: 1fr; gap: .3rem; }
  .cal-grid { grid-template-columns: repeat(7, minmax(44px, 1fr)); gap: 2px; }
  .cal-day { min-height: 60px; padding: .2rem; font-size: .72rem; }
  .cal-plabel { display: none; }
  .slot { padding: .05rem .25rem; font-size: .7rem; }
  .hero { padding-top: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-nav a { margin: 0 1.2rem 0 0; }
  .auth { margin: 1.5rem auto; padding: 1.4rem; }
}
@media print {
  .site-header, .site-footer, .hero-actions, .nav-toggle, .subnav, .flash, .crumb { display: none; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: none; }
  h1, h2, h3 { color: #000; }
  .content h2 { color: #000; }
  .mandate { border-color: #000; background: #fff; }
  .mandate table td { border: 1px solid #000; }
  .page-head { background: none; border: 0; }
}
