﻿:root{
  --accent:#8b2e2e;
  --accent-dark:#6f2323;
  --text:#1f1c1a;
  --muted:#6e6963;
  --line:#e7dfd6;
  --bg:#ffffff;
  --soft:#f6f2ed;
  --card:#ffffff;
  --panel:#fdfaf6;
  --panel-2:#efe7df;
  --max:1180px;
  --radius:18px;
  --shadow:0 18px 50px rgba(0,0,0,.06);
  --shadow-soft:0 10px 30px rgba(0,0,0,.04);
}

/* =========================
   RESET / BASIS
========================= */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#f8f4ef 0%, #fff 220px);
  line-height:1.55;
  display:flex;
  flex-direction:column;
  min-height:100vh;
}

main{
  flex:1;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

/* =========================
   TYPOGRAFIE
========================= */

h1{
  font-size:clamp(2.2rem, 3vw, 3.2rem);
  line-height:1.05;
  letter-spacing:-.03em;
  margin:0 0 18px;
}

h2{
  line-height:1.15;
  letter-spacing:-.02em;
  margin:0 0 12px;
}

p{
  margin:0 0 14px;
}

/* =========================
   HEADER / NAVIGATION
========================= */

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.nav{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:78px;
}

.brand{
  display:flex;
  align-items:center;
  min-height:46px;
  flex-shrink:0;
}

.brand-logo{
  height:54px;
  width:auto;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.nav-links a{
  padding:10px 14px;
  border-radius:999px;
  color:#2a2a2a;
  font-weight:500;
  transition:background-color .2s ease, color .2s ease;
}

.nav-links a:hover{
  background:#f3ede6;
}

.nav-links a[aria-current="page"]{
  background:var(--accent);
  color:#fff;
}

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  color:#111;
  border-radius:10px;
  padding:10px 14px;
  font:inherit;
  font-weight:600;
  cursor:pointer;
}

@media (max-width:900px){
  .nav{
    min-height:72px;
  }

  .nav-toggle{
    display:inline-block;
  }

  .nav-links{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    margin-top:10px;
    padding:12px;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    box-shadow:0 16px 40px rgba(0,0,0,.10);
  }

  .nav-links.open{
    display:flex;
  }

  .nav-links a{
    padding:12px 14px;
    border-radius:12px;
  }
}

/* =========================
   BUTTONS
========================= */

.btn{
  display:inline-block;
  width:100%;
  margin-top:12px;
  padding:12px 14px;
  border:2px solid var(--accent);
  border-radius:10px;
  text-align:center;
  font-weight:700;
  color:#000;
  background:#fff;
  transition:
    background-color .2s ease,
    color .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    transform .12s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 10px 24px rgba(139,46,46,.20);
}

.btn-primary:hover{
  background:var(--accent-dark);
}

.btn-secondary{
  border-color:var(--line);
  background:#fff;
  color:var(--text);
}

.btn-secondary:hover{
  background:#faf7f3;
}

.btn-spinner{
  display:inline-block;
  width:14px;
  height:14px;
  margin-right:8px;
  border:2px solid currentColor;
  border-right-color:transparent;
  border-radius:50%;
  animation:spin .6s linear infinite;
}

@keyframes spin{
  to{transform:rotate(360deg);}
}

/* =========================
   BADGES / TAGS / FACTS
========================= */

.eyebrow,
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  background:var(--panel-2);
  color:var(--accent);
  font-weight:700;
}

.eyebrow{
  padding:8px 12px;
  font-size:14px;
  margin-bottom:16px;
}

.badge{
  padding:6px 10px;
  font-size:12px;
  border:1px solid #e4d7cf;
}

.facts{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  font-size:13px;
}

.fact{
  border:1px solid var(--line);
  border-radius:10px;
  padding:6px 8px;
  background:#fbf7f2;
  color:var(--text);
}

/* =========================
   GENERISCHE LAYOUTS
========================= */

.section{
  padding:34px 0;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:20px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}

.split{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:stretch;
}

.content{
  padding:28px 0 60px;
}

.list{
  margin:16px 0 0;
  padding:0;
  list-style:none;
}

.list li{
  padding:12px 0;
  border-top:1px solid var(--line);
}

.list li:first-child{
  border-top:0;
}

@media (max-width:980px){
  .cards,
  .split{
    grid-template-columns:1fr;
  }
}

@media (max-width:720px){
  .section{
    padding:28px 0;
  }
}

/* =========================
   GENERISCHE KARTEN / BOXEN
========================= */

.card,
.card2,
.page-card,
.quote-box,
.contact-box,
.about-card,
.contact-card{
  background:var(--panel);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

.card{
  border-radius:20px;
  padding:22px;
}

.card2{
  border-radius:16px;
  padding:18px;
  margin-bottom:16px;
}

.page-card{
  max-width:900px;
  margin:0 auto;
  border-radius:12px;
  padding:22px 22px 26px;
}

.quote-box,
.contact-box,
.contact-card{
  border-radius:22px;
  padding:26px;
}

.about-card{
  border-radius:12px;
  padding:22px 18px;
  text-align:center;
}

.card .icon,
.icon{
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
}

.card .icon{
  width:52px;
  height:52px;
  border-radius:14px;
  background:var(--panel-2);
  font-weight:700;
  margin-bottom:14px;
}

.icon{
  width:42px;
  height:42px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#fff;
}

.icon svg{
  width:20px;
  height:20px;
  display:block;
}

.card h3{
  margin:0 0 10px;
  font-size:1.15rem;
}

.card p,
.section-intro{
  color:var(--muted);
}

@media (max-width:720px){
  .card,
  .card2,
  .quote-box,
  .contact-box,
  .contact-card{
    padding:20px;
  }
}

/* =========================
   STARTSEITE
========================= */

.home-intro{
  max-width:700px;
  margin:28px auto 40px;
  padding:0 22px 24px;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow-soft);
}

.home-intro h1{
  margin:0 0 12px;
  font-size:28px;
  line-height:1.2;
}

.home-intro p{
  max-width:78ch;
  line-height:1.7;
}

.home-intro a{
  font-weight:600;
}

.home-intro a:hover{
  text-decoration:underline;
}

.hero{
  padding:72px 0 34px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:stretch;
}

.hero-copy{
  padding:10px 0;
}

.hero p.lead{
  font-size:1.14rem;
  color:var(--muted);
  max-width:62ch;
  margin:0 0 22px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.trust-row{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}

.trust-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}

.trust-item strong{
  display:block;
  font-size:1.1rem;
  margin-bottom:4px;
}

.hero-panel{
  background:linear-gradient(160deg,#fff 0%, #f5eee8 100%);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.hero-panel-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  margin-top:16px;
}

.teaser-img{
  margin:0 0 12px;
  overflow:hidden;
  border-radius:10px 10px 0 0;
}

.teaser-img img{
  width:100%;
  height:clamp(140px, 18vw, 260px);
  object-fit:cover;
  object-position:center 35%;
  background:#f2f2f2;
}

@media (max-width:980px){
  .hero-grid,
  .trust-row{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .home-intro{
    margin:20px auto 28px;
    padding:16px;
  }

  .home-intro h1{
    font-size:24px;
  }

  .teaser-img img{
    height:120px;
  }

  .hero-actions{
    flex-direction:column;
  }
}

/* =========================
   STANDARD-SEITEN
========================= */

.page-card h1{
  font-size:34px;
  line-height:1.15;
  margin:0 0 14px;
}

.page-card h2{
  font-size:22px;
  margin:26px 0 10px;
}

.page-card p{
  max-width:78ch;
  line-height:1.75;
}

.page-card ul{
  max-width:78ch;
  margin:0 0 18px 18px;
}

.page-card li{
  margin:6px 0;
  line-height:1.6;
}

/* =========================
   ÜBER UNS
========================= */

.about-page{
  max-width:960px;
  margin:auto;
}

.about-intro{
  margin-bottom:28px;
}

.about-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:24px;
}

.about-card h2{
  margin:0 0 10px;
  font-size:20px;
}

.about-card p{
  margin:0 0 12px;
  line-height:1.7;
  max-width:none;
}

.about-list{
  text-align:left;
  padding-left:18px;
  margin:0;
}

.about-list li{
  margin-bottom:8px;
}

.about-icon{
  width:56px;
  height:56px;
  margin:0 auto 14px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  background:rgba(139,46,46,0.08);
}

.about-icon svg{
  width:28px;
  height:28px;
}

.about-contact{
  max-width:960px;
  margin:24px auto 0;
}

.about-hero{
  height:220px;
  border-radius:12px;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("/assets/img/fassade1.jpg");
  background-size:cover;
  background-position:center;
}

.about-hero-inner{
  text-align:center;
  color:#fff;
  padding:20px;
}

.about-hero h1{
  margin:0 0 8px;
  font-size:36px;
}

.about-hero .subtitle{
  font-size:18px;
  opacity:.9;
}

@media (max-width:900px){
  .about-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:700px){
  .about-hero{
    height:180px;
  }

  .about-hero h1{
    font-size:28px;
  }
}

/* =========================
   KONTAKT
========================= */

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  max-width:1100px;
  margin:0 auto;
}

.contact-card h1{
  font-size:clamp(2rem, 3vw, 3rem);
  line-height:1.05;
  letter-spacing:-.02em;
  margin:0 0 18px;
}

.contact-card h2{
  font-size:1.4rem;
  line-height:1.2;
  margin:0 0 14px;
}

.contact-card p{
  color:var(--text);
}

.contact-details{
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid var(--line);
}

.contact-list{
  display:grid;
  gap:14px;
  margin:18px 0 22px;
}

.contact-line{
  padding:14px 16px;
  background:var(--soft);
  border-radius:14px;
  border:1px solid #e2d8cd;
}

.contact-form label{
  display:block;
  margin:0 0 14px;
  font-weight:600;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
  width:100%;
  margin-top:6px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:12px;
  font:inherit;
  color:var(--text);
  background:#fff;
}

.contact-form textarea{
  resize:vertical;
  min-height:140px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(139,46,46,.12);
}

.checkbox{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:12px 0 0;
  font-size:14px;
  line-height:1.45;
  font-weight:400;
}

.checkbox input{
  margin-top:3px;
  width:18px;
  height:18px;
  flex:0 0 auto;
  accent-color:var(--accent);
}

.checkbox span{
  display:block;
  flex:1 1 auto;
  min-width:0;
}

.dropDown{
  width:100%;
  margin-top:6px;
}

.form-actions{
  display:flex;
  gap:12px;
  margin-top:18px;
}

.form-actions .btn{
  flex:1 1 0;
}

.form-success{
  border:1px solid var(--line);
  background:var(--panel);
  border-radius:12px;
  padding:16px;
}

.muted{
  color:var(--muted) !important;
  font-size:.95rem;
}

@media (max-width:900px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .form-actions{
    flex-direction:column;
  }
}

/* =========================
   ANGEBOTE
========================= */

.offers-page h1{
  font-size:clamp(2rem, 3vw, 3rem);
  line-height:1.05;
  letter-spacing:-.02em;
  margin:0 0 12px;
}

.offers-intro{
  color:var(--muted);
  margin:0 0 24px;
}

.offers-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin:18px 0 40px;
}

.offers-page .card{
  padding:0;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  height:100%;
}

.offers-page .card img{
  width:100%;
  height:190px;
  object-fit:cover;
  background:#f2f2f2;
}

.offers-page .card-body{
  padding:14px 14px 16px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.offers-page .badge{
  margin-bottom:8px;
}

.offers-page .card-title{
  font-weight:700;
  margin:0 0 6px;
}

.offers-page .card-addr{
  color:var(--muted);
  font-size:13px;
  margin:0 0 10px;
}

.offers-page .facts{
  font-size:13px;
}

.offers-page .card-price{
  margin-top:10px;
  font-weight:700;
}

.offers-page .card .btn{
  margin-top:auto;
}

@media (max-width:900px){
  .offers-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:640px){
  .offers-grid{
    grid-template-columns:1fr;
  }
}

/* =========================
   EXPOSÉ
========================= */

.content.expose-page{
  padding:34px 0 60px;
}

.expose-page .container{
  max-width:1100px;
}

.expose-page .layout{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:16px;
  margin-top:16px;
}

.expose-hero{
  margin-top:22px;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  background:var(--panel);
  box-shadow:var(--shadow-soft);
}

.expose-page .hero-img{
  width:100%;
  max-height:420px;
  object-fit:cover;
  background:#f2f2f2;
}

.expose-page .hero-body{
  padding:18px 20px 20px;
  background:var(--panel);
}

.expose-page .hero-title{
  font-size:28px;
  margin:10px 0 8px;
  line-height:1.2;
}

.expose-page .hero-sub{
  margin:0 0 10px;
  color:var(--muted);
}

.expose-page .hero-price{
  margin-top:10px;
  font-size:18px;
  font-weight:800;
  color:var(--accent);
}

.expose-page .card2-title{
  font-size:20px;
  margin:0 0 12px;
  color:var(--text);
}

.expose-page .pre{
  margin:0;
  white-space:pre-line;
  line-height:1.7;
}

.expose-page .kv{
  width:100%;
  border-collapse:collapse;
}

.expose-page .kv td{
  padding:10px 0;
  border-top:1px solid var(--line);
  vertical-align:top;
}

.expose-page .kv tr:first-child td{
  border-top:none;
}

.expose-page .kv-k{
  width:42%;
  padding-right:12px;
  color:var(--muted);
}

.expose-page .kv-v{
  color:var(--text);
}

.expose-page .clean-ul{
  margin:0;
  padding-left:18px;
  line-height:1.7;
}

.expose-page .gallery{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
}

.expose-page .gallery-item img{
  width:100%;
  height:180px;
  object-fit:cover;
  border:1px solid var(--line);
  border-radius:12px;
  background:#f2f2f2;
}

.expose-back-btn{
  margin-bottom:10px;
}

.map-card{
  position:relative;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
  margin-top:14px;
  background:#fffdfa;
}

.map-link{
  display:block;
}

.map-image{
  width:100%;
  height:auto;
  display:block;
}

.map-badge{
  position:absolute;
  bottom:24px;
  left:50%;
  transform:translateX(-50%);
  background:rgba(255,255,255,.94);
  padding:8px 15px;
  border-radius:20px;
  font-size:14px;
  font-weight:700;
  color:var(--accent);
  box-shadow:0 2px 8px rgba(0,0,0,.14);
  white-space:nowrap;
}

.map-credit{
  background:var(--soft);
  padding:6px 12px;
  font-size:11px;
  color:var(--muted);
  text-align:right;
  border-top:1px solid var(--line);
}

@media (max-width:900px){
  .expose-page .layout{
    grid-template-columns:1fr;
  }
}

@media (max-width:700px){
  .map-badge{
    bottom:16px;
    font-size:13px;
    padding:7px 12px;
  }
}

@media (max-width:600px){
  .expose-page .gallery{
    grid-template-columns:1fr;
  }
}

/* =========================
   MODAL
========================= */

.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}

.modal.is-open{
  display:block;
}

.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.modal__panel{
  position:relative;
  width:min(920px, calc(100% - 24px));
  max-height:calc(100vh - 24px);
  margin:12px auto;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  display:flex;
  flex-direction:column;
}

.modal__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-bottom:1px solid var(--line);
}

.modal__header h2{
  margin:0;
  font-size:18px;
}

.modal__close{
  border:0;
  background:transparent;
  font-size:26px;
  line-height:1;
  cursor:pointer;
  padding:2px 6px;
}

.modal__body{
  padding:16px;
  overflow:auto;
}

.modal__body h1{
  display:none;
}

.modal__body h2{
  margin-top:18px;
}

.modal__body p{
  line-height:1.7;
  max-width:78ch;
}

/* =========================
   LIGHTBOX
========================= */

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.82);
  display:none;
  z-index:9999;
}

.lightbox.open{
  display:block;
}

.lightbox-inner{
  position:relative;
  width:min(1100px, calc(100% - 24px));
  height:min(90vh, calc(100% - 24px));
  margin:12px auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

.lightbox-img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  border-radius:12px;
  box-shadow:0 18px 50px rgba(0,0,0,.45);
  background:#111;
}

.lightbox-close{
  position:absolute;
  top:10px;
  right:10px;
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#111;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  z-index:2;
}

.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#111;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  z-index:2;
}

.lightbox-prev{left:10px;}
.lightbox-next{right:10px;}

.lightbox-caption{
  position:absolute;
  left:50%;
  bottom:10px;
  transform:translateX(-50%);
  max-width:min(900px, calc(100% - 120px));
  padding:10px 14px;
  border-radius:12px;
  background:rgba(0,0,0,.55);
  color:#fff;
  font-size:14px;
  line-height:1.4;
  text-align:center;
  user-select:none;
  -webkit-user-select:none;
}

@media (max-width:640px){
  .lightbox-inner{
    width:calc(100% - 12px);
    height:calc(100% - 12px);
    margin:6px auto;
  }

  .lightbox-close,
  .lightbox-nav{
    width:38px;
    height:38px;
    font-size:24px;
  }

  .lightbox-prev{left:6px;}
  .lightbox-next{right:6px;}

  .lightbox-caption{
    max-width:calc(100% - 24px);
    bottom:6px;
    font-size:13px;
    padding:8px 10px;
  }
}

/* =========================
   FOOTER
========================= */

.site-footer{
  border-top:1px solid var(--line);
  margin-top:40px;
  padding:24px 0 34px;
  background:#fff;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color:var(--muted);
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* =========================
   Mobil
========================= */
.mobile-a11y{
  display:none;
}

@media (max-width: 768px){
  .mobile-a11y{
    display:block;
    position:fixed;
    right:16px;
    bottom:16px;
    z-index:1200;
  }

  .mobile-a11y-toggle{
    width:52px;
    height:52px;
    border:none;
    border-radius:999px;
    background:var(--accent);
    color:#fff;
    font-weight:700;
    box-shadow:0 8px 24px rgba(0,0,0,.18);
    cursor:pointer;
  }

  .mobile-a11y-panel{
    position:absolute;
    right:0;
    bottom:64px;
    display:flex;
    flex-direction:column;
    gap:8px;
    padding:10px;
    min-width:140px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
  }

  .mobile-a11y-panel button{
    border:1px solid var(--line);
    background:#fff;
    color:var(--text);
    border-radius:10px;
    padding:10px 12px;
    text-align:left;
    font:inherit;
    cursor:pointer;
  }

  .mobile-a11y-panel button:hover{
    background:#f7f7f7;
  }
}
/*
body.theme-dark{
  background:#121212;
  color:#f2f2f2;
}

body.theme-dark .site-header,
body.theme-dark .site-footer,
body.theme-dark .card,
body.theme-dark .card2,
body.theme-dark .page-card,
body.theme-dark .contact-card,
body.theme-dark .about-card,
body.theme-dark .quote-box,
body.theme-dark .contact-box,
body.theme-dark .home-intro,
body.theme-dark .expose-hero{
  background:#1b1b1b;
  color:#f2f2f2;
  border-color:#333;
}

body.theme-dark .nav-links a,
body.theme-dark .card-addr,
body.theme-dark .hero-sub,
body.theme-dark .muted,
body.theme-dark .section-intro{
  color:#d0d0d0;
}

body.theme-dark .fact,
body.theme-dark .badge,
body.theme-dark .eyebrow,
body.theme-dark .contact-line{
  background:#242424;
  border-color:#3a3a3a;
  color:#f2f2f2;
}

body.theme-dark .mobile-a11y-panel{
  background:#1b1b1b;
  border-color:#333;
}

body.theme-dark .mobile-a11y-panel button{
  background:#242424;
  color:#f2f2f2;
  border-color:#3a3a3a;
} */