.site-shell-wrap {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.site-shell__nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #DCE7E2;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  transition: box-shadow .25s ease;
}
.site-shell__nav.scrolled { box-shadow: 0 6px 24px rgba(20,58,43,.09); }
.site-shell__nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.site-shell__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #143A2B;
  text-decoration: none;
}
.site-shell__mark { width: 54px; height: 36px; flex: none; }
.site-shell__brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.site-shell__brand-name small {
  display: block;
  margin-top: 4px;
  color: #5E92B8;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .22em;
}
.site-shell__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-shell__links a {
  color: #143A2B;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}
.site-shell__actions { display: flex; align-items: center; gap: 14px; }
.site-shell__login {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  background: #15684A;
  color: #fff;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}
.site-shell__login:hover { background: #0E4A35; }
.site-shell__burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}
.site-shell__burger span { display: block; height: 2px; margin: 5px 0; background: #143A2B; }
.site-shell__drawer { display: none; }

.site-shell__footer {
  padding: 64px 0 30px;
  background: #0E4A35;
  color: #BFD9CD;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.site-shell__footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-shell__footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.site-shell__footer .site-shell__brand-name { color: #fff; }
.site-shell__footer h4 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.site-shell__footer p { max-width: 30em; margin: 0; }
.site-shell__footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.site-shell__footer a { color: inherit; text-decoration: none; }
.site-shell__footer a:hover { color: #fff; }
.site-shell__footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: .85rem;
}

@media (max-width: 900px) {
  .site-shell__desktop-nav { display: none; }
  .site-shell__burger { display: block; }
  .site-shell__drawer {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    z-index: 99;
    display: block;
    padding: 20px 28px 26px;
    border-bottom: 1px solid #DCE7E2;
    background: #fff;
    box-shadow: 0 18px 50px rgba(20,58,43,.16);
    transform: translateY(-130%);
    transition: transform .3s ease;
  }
  .site-shell__drawer.open { transform: translateY(0); }
  .site-shell__drawer ul { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
  .site-shell__drawer a { color: #143A2B; font-weight: 800; text-decoration: none; }
  .site-shell__footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 560px) {
  .site-shell-wrap { width: min(100% - 32px, 1180px); }
  .site-shell__brand-name { font-size: 1rem; }
  .site-shell__mark { width: 46px; height: 31px; }
  .site-shell__login { display: none; }
  .site-shell__footer-bottom { flex-direction: column; }
}
