:root {
  --container: 1100px;
  --pad: 16px;
  --r: 18px;
  --b: 1px solid rgba(0, 0, 0, 0.12);
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: var(--b);
  padding: 3px 12px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}
.brand {
  font-weight: 800;
  text-decoration: none;
  color: inherit;
}
.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.nav__link {
  text-decoration: none;
  color: inherit;
  opacity: 0.85;
}
.nav__link:hover {
  opacity: 1;
}
.nav__link.activ_link {
  opacity: 1;
  font-weight: 600;
  color: #d4af37;
}
.burger {
  display: none;
  align-items: center;
  gap: 6px;
  border: var(--b);
  background: #fff;
  border-radius: 999px;
  padding: 10px;
}
.burger__line {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 49;
}
.mobile {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: #fff;
  border-left: var(--b);
  z-index: 50;
  padding: 12px;
}
.mobile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px 12px;
}
.mobile__close {
  border: var(--b);
  background: #fff;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  font-size: 22px;
  line-height: 1;
}
.nav--mobile {
  flex-direction: column;
  gap: 10px;
}
.site-footer {
  padding: 28px 0;
  border-top: var(--b);
  background: #fff;
  margin-top: auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.footer__bottom {
  margin-top: 16px;
  padding-top: 12px;
  border-top: var(--b);
  opacity: 0.75;
}
@media (max-width: 860px) {
  .nav--desktop {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
/* footer extras */
.footer__extras {
  margin-top: 16px;
}
.footer__extrasInner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}
.footer-social__icon {
  display: block;
}
.footer__poemWrap {
  max-width: 520px;
}
.footer-poem {
  opacity: 0.9;
  font-size: 0.95em;
  line-height: 1.35;
}
/* --- injected by logo step --- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 28px;
  height: 28px;
  display: inline-block;
  flex: 0 0 auto;
}
.brand-logo * {
  vector-effect: non-scaling-stroke;
}
/* --- /injected by logo step --- */
.py-8 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
main {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}
.bg-gold {
  background-color: #ffd700;
}
.bg-gold-600 {
  background-color: #d4af37;
}
.py-200 {
  padding-top: 50px;
  padding-bottom: 50px;
}
