:root{
  --pl-bg:#f6f4ef;
  --pl-ink:#11110f;
  --pl-muted:#74746d;
  --pl-line:#dedbd2;
  --pl-gold:#d7b46f;
  --pl-gold-dark:#ad7b2d;
}

html,body{
  min-height:100%;
}

body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}

.top{
  min-height:56px;
  height:auto;
  background:#11110f;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px 22px;
  position:sticky;
  top:0;
  z-index:20;
}

.brand{
  display:inline-flex;
  align-items:center;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
  white-space:nowrap;
}

.brand span{
  color:#c8943b;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex-wrap:wrap;
}

.nav a,
.nav button,
.nav select,
.langSwitch a{
  min-height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.16);
  border-radius:7px;
  background:transparent;
  color:rgba(255,255,255,.78);
  padding:7px 11px;
  font:700 14px/1.2 -apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  text-decoration:none;
  cursor:pointer;
}

.nav a:hover,
.nav button:hover,
.langSwitch a:hover{
  color:#fff;
  border-color:rgba(255,255,255,.34);
}

.langSwitch{
  display:flex;
  align-items:center;
  gap:6px;
}

.langSwitch a.active{
  color:#11110f;
  background:#d7b46f;
  border-color:#d7b46f;
}

.langSelect{
  min-height:36px;
  width:auto;
  border:1px solid rgba(255,255,255,.16);
  border-radius:7px;
  background:#11110f;
  color:#fff;
  font:700 14px/1.2 -apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  padding:7px 10px;
}

.siteFooter{
  background:#11110f;
  color:#f7f4ed;
  margin-top:30px;
  padding:30px 22px;
  flex-shrink:0;
}

.siteFooterInner,
.siteFooterInner.footerThree{
  max-width:1080px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr 1.2fr;
  gap:28px;
  align-items:start;
}

.siteFooterInner.footerThree .footerCol{
  min-width:0;
}

.siteFooterInner.footerThree .siteFooterLinks{
  display:block;
}

.siteFooter .brand{
  color:#fff;
  margin-bottom:8px;
}

.siteFooter p{
  color:#bbb;
  margin:8px 0 14px;
}

.footerCol h3{
  margin:0 0 10px;
  color:#d7b46f;
  font-size:15px;
  line-height:1.25;
}

.siteFooter a,
.footerCol a,
.siteFooterLinks a{
  display:block;
  color:#d7b46f;
  text-decoration:none;
  margin:7px 0;
  font-size:15px;
  line-height:1.28;
}

.siteFooter a:hover{
  color:#f0d99e;
}

@media(max-width:760px){
  .top{
    padding:10px 12px;
    align-items:flex-start;
  }

  .nav{
    gap:6px;
  }

  .nav a,
  .nav button,
  .nav select,
  .langSwitch a{
    min-height:34px;
    padding:6px 9px;
    font-size:13px;
  }

  .siteFooterInner,
  .siteFooterInner.footerThree{
    grid-template-columns:1fr;
    gap:18px;
  }

  .footerCol h3{
    margin-top:4px;
  }
}
