*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
}
@font-face {
  font-family: 'PT Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/ptserif-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'PT Serif';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/ptserif-bold.woff2') format('woff2');
}
@font-face {
  font-family: 'PT Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/ptserif-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cabin';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/regular.eot');
  /* IE9 Compat Modes */
  src: url('/assets/fonts/regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/assets/fonts/regular.woff2') format('woff2'), /* Super Modern Browsers */ url('/assets/fonts/regular.woff') format('woff'), /* Modern Browsers */ url('/assets/fonts/regular.ttf') format('truetype');
  /* Safari, Android, iOS */
}
@font-face {
  font-family: 'Cabin';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/bold.eot');
  /* IE9 Compat Modes */
  src: url('/assets/fonts/bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/assets/fonts/bold.woff2') format('woff2'), /* Super Modern Browsers */ url('/assets/fonts/bold.woff') format('woff'), /* Modern Browsers */ url('/assets/fonts/bold.ttf') format('truetype');
  /* Safari, Android, iOS */
}
@font-face {
  font-family: 'Cabin';
  font-style: italic;
  font-weight: 400;
  src: url('/assets/fonts/italic.eot');
  /* IE9 Compat Modes */
  src: url('/assets/fonts/italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/assets/fonts/italic.woff2') format('woff2'), /* Super Modern Browsers */ url('/assets/fonts/italic.woff') format('woff'), /* Modern Browsers */ url('/assets/fonts/italic.ttf') format('truetype');
  /* Safari, Android, iOS */
}
@font-face {
  font-family: 'Cabin';
  font-style: italic;
  font-weight: 700;
  src: url('/assets/fonts/bolditalic.eot');
  /* IE9 Compat Modes */
  src: url('/assets/fonts/bolditalic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('/assets/fonts/bolditalic.woff2') format('woff2'), /* Super Modern Browsers */ url('/assets/fonts/bolditalic.woff') format('woff'), /* Modern Browsers */ url('/assets/fonts/bolditalic.ttf') format('truetype');
  /* Safari, Android, iOS */
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
.page-content,
.vita,
.termine-events {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  .page-content,
  .vita,
  .termine-events {
    padding: 48px 20px;
  }
}
:root {
  --header-h: 71px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
  width: 100%;
  padding: 18px 0;
  background: #F9F4E9;
  color: #211C17;
  box-sizing: border-box;
  border-bottom: 1px solid #E6D088;
  transition: opacity 250ms ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.no-header-page main {
  padding-top: var(--header-h);
}
.header-page .site-header {
  opacity: 0.8;
}
.header-page .site-header.is-solid {
  opacity: 1;
}
.site-logo {
  flex: 0 0 auto;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}
.site-logo a {
  display: inline-block;
  padding: 4px 0;
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}
.site-logo a:hover {
  color: #C0402A;
}
.hamburger {
  display: none;
  position: relative;
  z-index: 12;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
}
.hamburger span {
  position: absolute;
  left: 4px;
  top: 14px;
  width: 22px;
  height: 2px;
}
.hamburger span:before,
.hamburger span:after {
  position: absolute;
  left: 0;
  display: block;
  width: 22px;
  height: 2px;
  background: #211C17;
  content: '';
  transition: transform 200ms ease, top 200ms ease;
}
.hamburger span:before {
  top: -3px;
}
.hamburger span:after {
  top: 3px;
}
.site-nav {
  flex: 1 1 auto;
}
.site-nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav li {
  position: relative;
}
.site-nav a {
  display: block;
  padding: 10px 18px;
  color: #211C17;
  font-family: 'Cabin', system-ui, 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 200ms ease;
}
.site-nav a:hover {
  color: #C0402A;
}
.site-nav li.active > a {
  position: relative;
}
.site-nav li.active > a:after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 2px;
  background: #C0402A;
}
@media (max-width: 1024px) {
  :root {
    --header-h: 55px;
  }
  .site-header {
    padding: 12px 0;
  }
  .site-header .container {
    flex-wrap: nowrap;
  }
  .site-logo {
    font-size: 18px;
    flex: 1 1 auto;
    text-align: center;
  }
  .hamburger {
    display: block;
    flex: 0 0 auto;
    order: -1;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9F4E9;
    opacity: 0;
    visibility: hidden;
    transition: opacity 280ms ease, visibility 0s linear 280ms;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .site-nav a {
    padding: 14px 24px;
    font-size: 16px;
  }
  body.nav-open {
    overflow: hidden;
  }
  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
  body.nav-open .hamburger span:before {
    top: 0;
    transform: rotate(45deg);
  }
  body.nav-open .hamburger span:after {
    top: 0;
    transform: rotate(-45deg);
  }
}
.site-footer {
  width: 100%;
  padding: 48px 0;
  border-top: 1px solid rgba(33, 28, 23, 0.12);
  font-size: 13px;
  color: rgba(33, 28, 23, 0.55);
  text-align: center;
}
.site-footer .footer-links {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.site-footer .footer-links li {
  display: inline-block;
  margin: 0 12px;
}
.site-footer .footer-links a {
  color: rgba(33, 28, 23, 0.75);
  text-decoration: none;
}
.site-footer .footer-links a:hover {
  color: #C0402A;
}
.site-footer .footer-copyright {
  margin: 4px 0;
  font-size: 13px;
}
.site-footer .footer-copyright a {
  color: inherit;
}
.site-footer .footer-copyright a:hover {
  color: #C0402A;
}
.page-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: center / cover no-repeat #E6D088;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(230, 208, 136, 0.82) 0%, rgba(230, 208, 136, 0.82) 45%, #F9F4E9 100%);
}
.page-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: 'Cabin', system-ui, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-align: center;
  color: #C0402A;
}
.wsite-page-index .page-hero {
  background-image: url(/assets/gfx/1846933641.jpg);
}
.wsite-page-buecher .page-hero {
  background-image: url(/assets/gfx/321197733.jpg);
}
.wsite-page-vita .page-hero {
  background-image: url(/assets/gfx/1845631982.jpg);
}
.wsite-page-termine .page-hero {
  background-image: url(/assets/gfx/1586324527.jpg);
}
.wsite-page-kontakt .page-hero {
  background-image: url(/assets/gfx/1516945094.jpg);
}
.page-content > :first-child {
  margin-top: 0;
}
.page-content h1 {
  margin: 0 0 0.6em;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #C0402A;
}
.page-content h2 {
  margin: 1.6em 0 0.5em;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 1.55em;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #211C17;
}
.page-content h3 {
  margin: 1.5em 0 0.4em;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 1.2em;
  font-weight: 700;
  color: #211C17;
}
.page-content p {
  margin: 0 0 1em;
  line-height: 1.7;
}
.page-content p.lead {
  margin-bottom: 1.1em;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.4;
  color: #211C17;
}
.page-content ul,
.page-content ol {
  margin: 0 0 1em 1.25em;
  line-height: 1.7;
}
.page-content li {
  margin: 0.25em 0;
}
.page-content a {
  color: #C0402A;
  text-decoration: underline;
}
.page-content strong {
  font-weight: 700;
}
.page-content.page-content--center {
  text-align: center;
}
.media {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin: 0 0 40px;
}
.media.media--reverse {
  flex-direction: row-reverse;
}
.media .media-figure {
  flex: 0 0 280px;
  margin: 0;
}
.media .media-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.media .media-body {
  flex: 1;
  min-width: 0;
}
.media .media-body > :first-child {
  margin-top: 0;
}
@media (max-width: 600px) {
  .media,
  .media.media--reverse {
    flex-direction: column;
    gap: 20px;
  }
  .media .media-figure {
    flex-basis: auto;
    max-width: 280px;
  }
}
.index-page .page-content {
  padding-top: 64px;
  padding-bottom: 64px;
}
.index-page .page-content h2 {
  color: #C0402A;
}
@media (max-width: 1024px) {
  .index-page .page-content {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.gcal-row {
  display: flex;
  gap: 24px;
  margin-top: 56px;
}
.gcal-row:first-child {
  margin-top: 0;
}
.gcal-row.gcal-continuous-day {
  margin-top: 24px;
}
.gcal-row.gcal-continuous-day .gcal-day {
  visibility: hidden;
}
.gcal-day {
  flex: 0 0 84px;
  align-self: flex-start;
  text-align: center;
  background: #fff;
  border-radius: 2px 3px 3px 2px;
  overflow: hidden;
  box-shadow: 1px 1px 0 #ffffff, 2px 2px 0 #e3dcca, 3px 3px 0 #ffffff, 4px 4px 0 #e3dcca, 5px 5px 0 #ffffff, 6px 6px 0 #e3dcca, 10px 14px 22px -8px rgba(33, 28, 23, 0.38);
}
.gcal-dm {
  display: block;
  padding: 0.35rem;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 0.95em;
  line-height: 1.2;
  color: #fff;
  background: #C0402A;
}
.gcal-dd {
  display: block;
  padding-top: 0.05em;
  font-family: 'Cabin', system-ui, 'Helvetica Neue', Arial, sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.25;
  color: #211C17;
}
.gcal-dy {
  display: block;
  padding-bottom: 0.5rem;
  margin-top: -0.35rem;
  font-family: 'Cabin', system-ui, 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8em;
  color: #756352;
}
.gcal-info {
  flex: 1;
  min-width: 0;
  padding-top: 1.9rem;
}
.gcal-time {
  margin: 0 0 0.2em;
  font-family: 'Cabin', system-ui, 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C0402A;
}
.gcal-title {
  margin: 0;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 1.95em;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: #211C17;
}
.gcal-description {
  padding: 1rem 0;
  line-height: 1.6;
}
.gcal-description p {
  padding: 0 0 5px;
}
.gcal-description ul,
.gcal-description ol {
  margin-left: 20px;
}
.gcal-location {
  margin: 0;
  padding-top: 0.5em;
}
.gcal-location a {
  color: #6f5b53;
}
#gcal.consent-embed--gated {
  min-height: 200px;
}
#gcal.consent-embed {
  background: transparent;
}
#gcal .consent-embed__body {
  background: #F9F4E9;
  border: 1px dashed #E6D088;
  border-radius: 6px;
}
.gcal-state {
  padding: 1rem 0;
  color: #6f5b53;
}
.gcal-error-state {
  color: #9a4a3a;
}
.book-section {
  position: relative;
  background: center top / cover no-repeat;
}
.book-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #F9F4E9 0%, rgba(249, 244, 233, 0.7) 50%, rgba(249, 244, 233, 0.46) 100%);
  pointer-events: none;
}
.book-section .container {
  position: relative;
  z-index: 1;
}
.book-section--plain {
  background: none;
}
.book-section--plain::after {
  display: none;
}
.book-section--aneks-verdacht {
  background-image: url(/assets/gfx/bg-aneks-verdacht.jpg);
}
.book-section--kein-anruf-aus-stockholm {
  background-image: url(/assets/gfx/bg-kein-anruf-aus-stockholm.gif);
}
.book-section--die-zimmermaedchen {
  background-image: url(/assets/gfx/bg-die-zimmermaedchen.gif);
}
.book-section--der-sprint-im-supermarkt {
  background-image: url(/assets/gfx/bg-der-sprint-im-supermarkt.gif);
}
.book-section--gemeindefest {
  background-image: url(/assets/gfx/bg-gemeindefest.jpg);
}
.book-section--der-fremde-alltag {
  background-image: url(/assets/gfx/bg-der-fremde-alltag.jpg);
}
.book-section--die-tochter-des-wasser-meisters {
  background-image: url(/assets/gfx/bg-die-tochter-des-wasser-meisters.jpg);
}
.book-section--der-baum-steht-schief {
  background-image: url(/assets/gfx/bg-der-baum-steht-schief.jpg);
}
.book-section--pueppchen-im-schlepptau {
  background-image: url(/assets/gfx/bg-pueppchen-im-schlepptau.jpg);
}
.book-section--wer-brennt-kann-entzuenden {
  background-image: url(/assets/gfx/bg-wer-brennt-kann-entzuenden.jpg);
}
.book-section--der-raub-der-himmlischen-taenzerin {
  background-image: url(/assets/gfx/bg-der-raub-der-himmlischen-taenzerin.jpg);
}
.book-section--ein-baum-mit-charakter {
  background-image: url(/assets/gfx/bg-ein-baum-mit-charakter.jpg);
}
.book-section--warum-asien {
  background-image: url(/assets/gfx/bg-warum-asien.jpg);
}
.book {
  display: flex;
  gap: 40px;
  padding: 88px 0;
}
.book-cover {
  flex: 0 0 200px;
  align-self: flex-start;
}
.book-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px 3px 3px 2px;
  box-shadow: 1px 1px 0 #F4EDDC, 2px 2px 0 #D7CAA9, 3px 3px 0 #F4EDDC, 4px 4px 0 #D7CAA9, 5px 5px 0 #F4EDDC, 6px 6px 0 #D7CAA9, 7px 7px 0 #F4EDDC, 8px 8px 0 #D7CAA9, 14px 20px 28px -8px rgba(33, 28, 23, 0.42);
}
.book-body {
  flex: 1;
  min-width: 0;
}
.book-title {
  margin: 0 0 0.3em;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 1.95em;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: #C0402A;
}
.book-subtitle {
  margin: 0 0 1.1em;
  font-size: 1.08em;
  line-height: 1.35;
  color: #84705c;
}
.book-description {
  margin: 0;
  line-height: 1.6;
}
.book-price {
  margin: 1em 0 0.2em;
  font-size: 1.25em;
  font-weight: bold;
}
.book-isbn {
  margin: 0;
  font-size: 0.9em;
  color: #84705c;
}
.book-publisher {
  margin: 0.75em 0 0;
  font-size: 0.9em;
}
.book-note {
  margin: 0.75em 0 0;
  font-size: 0.9em;
  color: #84705c;
}
.book-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.25em;
}
.book-buy {
  padding: 0.6rem 1.4rem;
  font-size: 0.95em;
  color: #fff;
  background: #211C17;
  border-radius: 0.5rem;
  text-decoration: none;
}
.book-buy:hover {
  background: #C0402A;
}
.book-leseprobe {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9em;
  color: #84705c;
}
.book-leseprobe img {
  display: block;
}
.book-leseprobe:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .book {
    flex-direction: column;
    gap: 20px;
  }
  .book-cover {
    flex-basis: auto;
    max-width: 200px;
  }
}
.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(33, 28, 23, 0.55);
}
.pdf-modal.is-open {
  display: flex;
}
html.pdf-modal-open,
html.pdf-modal-open body {
  overflow: hidden;
}
.pdf-modal__panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 900px;
  height: 90vh;
  background: #F9F4E9;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(33, 28, 23, 0.45);
}
.pdf-modal__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #E6D088;
  background: #EDDDAB;
}
.pdf-modal__title {
  flex: 1;
  min-width: 0;
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
  font-size: 1em;
  color: #211C17;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdf-modal__open {
  font-size: 0.85em;
  color: #84705c;
  white-space: nowrap;
}
.pdf-modal__open:hover {
  text-decoration: underline;
}
.pdf-modal__close {
  flex: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #84705c;
  font-family: 'Cabin', system-ui, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: color 150ms ease-out, background-color 150ms ease-out;
}
.pdf-modal__close:before {
  content: '\2715';
}
.pdf-modal__close:hover,
.pdf-modal__close:focus-visible {
  color: #211C17;
  background: rgba(33, 28, 23, 0.08);
  outline: none;
}
.pdf-modal__doc {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.25rem;
  background: #f2e8d1;
}
.pdf-modal__doc.is-loading {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdf-modal__doc.is-loading:after {
  content: 'Lädt …';
  font-family: 'Cabin', system-ui, 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9em;
  color: #84705c;
}
.pdf-modal__page {
  display: block;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0.25rem 1rem rgba(33, 28, 23, 0.25);
}
.pdf-modal__page + .pdf-modal__page {
  margin-top: 1.25rem;
}
@media (max-width: 600px) {
  .pdf-modal {
    padding: 0;
  }
  .pdf-modal__panel {
    height: 100%;
    max-width: none;
    border-radius: 0;
  }
}
.vita-list {
  margin: 0;
}
.vita-list dt {
  font-weight: 700;
  color: #6f5b53;
}
.vita-list dd {
  margin: 0;
  line-height: 1.6;
}
.vita-list > div {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.13);
}
.vita-list > div:first-child {
  padding-top: 0;
  border-top: none;
}
.vita-list dt {
  flex: 0 0 110px;
}
.vita-list dd {
  flex: 1;
  min-width: 0;
}
@media (max-width: 600px) {
  .vita-list > div {
    flex-direction: column;
    gap: 4px;
  }
  .vita-list dt {
    flex-basis: auto;
  }
}
.contact {
  margin: 0;
}
.contact-row {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.13);
}
.contact-row:first-child {
  padding-top: 0;
  border-top: none;
}
.contact-label {
  flex: 0 0 110px;
  font-size: 0.85em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6f5b53;
}
.contact-value {
  flex: 1;
  min-width: 0;
  line-height: 1.6;
}
.contact-value a {
  color: #6f5b53;
}
@media (max-width: 600px) {
  .contact-row {
    flex-direction: column;
    gap: 6px;
  }
  .contact-label {
    flex-basis: auto;
  }
}
body {
  background: #F9F4E9;
  color: #211C17;
  font-family: 'Cabin', system-ui, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1 0 auto;
}
h1,
h2,
h3,
h4 {
  font-family: 'PT Serif', Georgia, 'Times New Roman', serif;
}
a {
  color: #C0402A;
}
.wsite-button,
.wsite-button-inner {
  background-color: #C0402A;
  border-color: #C0402A;
}
.site-footer {
  flex: 0 0 auto;
  background: #EDDDAB;
  color: rgba(33, 28, 23, 0.78);
  padding: 32px 0;
}
.site-footer a {
  color: #211C17;
  text-decoration: none;
}
.site-footer a:hover {
  color: #C0402A;
}
.site-footer .footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  font-size: 14px;
}
.site-footer .footer-copyright {
  text-align: center;
  font-size: 12px;
  color: rgba(33, 28, 23, 0.55);
}
.site-footer .footer-copyright a {
  color: rgba(33, 28, 23, 0.75);
}
