.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background-color: #faf8f5;
  color: #173327;
  border-bottom: 1px solid rgba(23, 51, 39, 0.08);
  font-family: system-ui, -apple-system, sans-serif;
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__brand-zone {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #173327;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.site-brand svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: center;
}
.site-nav__link {
  text-decoration: none;
  color: #173327;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.site-nav__link:hover {
  color: #b87333;
}
.site-header__actions {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}
.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 16px;
  background-color: #b87333;
  color: #faf8f5;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(184, 115, 51, 0.2);
}
.site-header__cta:hover {
  background-color: #9c5621;
  transform: translateY(-1px);
}
.site-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23, 51, 39, 0.15);
  border-radius: 12px;
  background: transparent;
  color: #173327;
  cursor: pointer;
  padding: 0 10px;
}
.site-burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
}

.site-mobileNav {
  position: fixed;
  inset: 0;
  z-index: 70;
  font-family: system-ui, -apple-system, sans-serif;
}
.site-mobileNav[hidden] {
  display: none;
}
.site-mobileNav__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(23, 51, 39, 0.4);
  backdrop-filter: blur(4px);
}
.site-mobileNav__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 85vw);
  background-color: #faf8f5;
  color: #173327;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(23, 51, 39, 0.15);
}
.site-mobileNav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(23, 51, 39, 0.08);
}
.site-mobileNav__brand {
  font-weight: 700;
  font-size: 1.1rem;
}
.site-mobileNav__close {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #173327;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.site-mobileNav__links {
  display: flex;
  flex-direction: column;
  padding: 36px 24px;
  gap: 28px;
  flex-grow: 1;
  overflow-y: auto;
}
.site-mobileNav__link {
  color: #173327;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.site-mobileNav__bottom {
  padding: 32px 24px;
  background-color: #f5efe5;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid rgba(23, 51, 39, 0.05);
}
.site-mobileNav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 16px;
  background-color: #b87333;
  color: #faf8f5;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 12px rgba(184, 115, 51, 0.2);
}
.site-mobileNav__email {
  color: #173327;
  text-decoration: none;
  font-size: 0.95rem;
  text-align: center;
  opacity: 0.8;
  font-weight: 500;
}

.site-footer {
  background-color: #173327;
  color: #faf8f5;
  padding: 72px 24px 36px;
  font-family: system-ui, -apple-system, sans-serif;
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 54px;
}
.site-footer__brand-col {
  max-width: 420px;
}
.site-footer__brand {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #f5efe5;
  letter-spacing: -0.02em;
}
.site-footer__summary {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
}
.site-footer__heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #b87333;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.site-footer__link {
  color: #faf8f5;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
  font-size: 0.95rem;
}
.site-footer__link:hover {
  opacity: 1;
  color: #b87333;
}
.site-footer__contact-link {
  color: #faf8f5;
  text-decoration: none;
  opacity: 0.8;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.site-footer__contact-link:hover {
  color: #b87333;
}
.site-footer__bottom {
  max-width: 1200px;
  margin: 72px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(250, 248, 245, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.site-footer__legal {
  display: flex;
  gap: 28px;
}
.site-footer__copyright {
  font-size: 0.85rem;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .site-nav--desktop { display: none; }
  .site-header__cta { display: none; }
  .site-burger { display: flex; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}
[data-mobile-nav][hidden],[data-mobile-nav].hidden{display:none}
[data-mobile-nav][data-mobile-open="1"]{display:block}
