:root {
  --zs-color-primary: #d7b36e;
  --zs-color-primary-dark: #b98b36;
  --zs-color-text: #1f1f1f;
  --zs-color-muted: #666666;
  --zs-color-white: #ffffff;
  --zs-color-footer: #2f2a26;
  --zs-header-border: #f1e5ce;
  --zs-font-family-base: "LT Superior", "Times New Roman", Georgia, serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: var(--zs-font-family-base);
  color: var(--zs-color-text);
  background: var(--zs-color-white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.zs-sr-only {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.zs-wz {
  padding: 0 8%;
}

.zs-site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: var(--zs-color-white);
}

.zs-header-box {
  position: relative;
  background: var(--zs-color-white);
}

.zs-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.zs-logo {
  flex: 0 0 auto;
  width: 40px;
  margin: 0;
}

.zs-logo a {
  display: block;
}

.zs-logo img {
  width: 100%;
}

.zs-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.zs-menu-toggle-line {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--zs-color-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.zs-header-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.zs-header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 56px;
}

.zs-header-item a {
  display: inline-block;
  padding: 43px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--zs-color-text);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.zs-header-item {
  position: relative;
}

.zs-header-item-has-children {
  padding-right: 8px;
}

.zs-header-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 220;
  min-width: 220px;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(31, 31, 31, 0.08);
  box-shadow: 0 14px 28px rgba(31, 31, 31, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.zs-header-item-has-children:hover > .zs-header-submenu,
.zs-header-item-has-children:focus-within > .zs-header-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.zs-header-submenu a {
  display: block;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--zs-color-text);
  white-space: nowrap;
}

.zs-header-submenu > li {
  position: relative;
}

.zs-header-subitem-has-children > a {
  padding-right: 34px;
}

.zs-header-submenu-level3 {
  top: -12px;
  left: 100%;
  min-width: 180px;
  z-index: 230;
  transform: translateX(10px);
}

.zs-header-subitem-has-children:hover > .zs-header-submenu-level3,
.zs-header-subitem-has-children:focus-within > .zs-header-submenu-level3 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.zs-header-submenu a:hover {
  color: var(--zs-color-primary);
  background: rgba(215, 179, 110, 0.08);
}

.zs-header-item a:hover,
.zs-header-item.zs-is-active a {
  color: var(--zs-color-primary);
}

.zs-header-item.zs-is-active .zs-header-submenu a {
  color: var(--zs-color-text);
}

.zs-header-item.zs-is-active .zs-header-submenu a:hover {
  color: var(--zs-color-primary);
}

.zs-main {
  min-height: 1px;
  padding-top: 100px;
}

.zs-site-footer {
  padding: 42px 0 28px;
  background: #d8b06b;
  color: rgba(255, 255, 255, 0.9);
}

.zs-footer-wrap,
.zs-footer-grid {
  display: grid;
  grid-template-columns: 2.45fr 0.9fr 0.9fr 0.95fr;
  gap: 64px;
  align-items: start;
}

.zs-footer-column,
.zs-footer-brand {
  min-width: 0;
}

.zs-footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.zs-footer-logo img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.zs-footer-text {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.75;
}

.zs-site-footer h3,
.zs-site-footer h4 {
  margin-bottom: 14px;
  color: #ffffff;
}

.zs-site-footer p + p {
  margin-top: 6px;
}

.zs-footer-title {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.zs-footer-form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.zs-footer-form input {
  width: 360px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  outline: medium;
}

.zs-footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.zs-footer-form button {
  min-width: 100px;
  height: 38px;
  border: 0;
  background: rgba(255, 255, 255, 0.82);
  color: #d1a04f;
  font-size: 18px;
  cursor: pointer;
}

.zs-footer-agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 560px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.zs-footer-agree input {
  margin-top: 2px;
}

.zs-footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.zs-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  line-height: 1;
}

.zs-footer-social a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.zs-footer-social a svg {
  display: block;
  width: 30px;
  height: 30px;
}

.zs-footer-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.zs-footer-column h4 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
}

.zs-footer-links,
.zs-footer-contact {
  display: grid;
  gap: 14px;
}

.zs-footer-links a,
.zs-footer-contact a,
.zs-footer-contact span {
  font-size: 18px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.zs-footer-contact a,
.zs-footer-contact-text {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.zs-footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 14px;
  margin-top: 2px;
}

.zs-footer-contact-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

@media (max-width: 991px) {
  .zs-wz {
    padding: 0 80px;
  }

  .zs-main {
    padding-top: 88px;
  }

  .zs-header-box {
    position: relative;
  }

  .zs-header-inner {
    position: relative;
    align-items: center;
    gap: 14px 20px;
    padding: 14px 0;
  }

  .zs-logo {
    order: 1;
    margin-right: auto;
    width: 36px;
  }

  .zs-menu-toggle {
    display: inline-flex;
    order: 2;
  }

  .zs-header-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 120;
    display: none;
    width: 100%;
    padding: 0 80px;
    background: rgba(255, 255, 255, 0.98);
    transform: translateX(-50%);
    box-shadow: 0 16px 32px rgba(31, 31, 31, 0.08);
  }

  .zs-site-header.zs-menu-open .zs-header-nav {
    display: block;
  }

  .zs-header-menu {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    row-gap: 0;
    gap: 0;
  }

  .zs-header-item a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.32px;
    text-align: left;
    border-top: 1px solid rgba(31, 31, 31, 0.08);
  }

  .zs-header-item:first-child a {
    border-top: 0;
  }

  .zs-header-item-has-children {
    padding-right: 0;
  }

  .zs-header-item-has-children > a,
  .zs-header-subitem-has-children > a {
    position: relative;
    padding-right: 26px;
  }

  .zs-header-item-has-children > a::after,
  .zs-header-subitem-has-children > a::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 18px;
    line-height: 1;
    color: rgba(31, 31, 31, 0.7);
    transform: translateY(-50%);
  }

  .zs-header-item-has-children.is-open > a::after,
  .zs-header-subitem-has-children.is-open > a::after {
    content: "-";
  }

  .zs-header-submenu {
    position: static;
    min-width: 0;
    display: none;
    padding: 0 0 10px 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .zs-header-item-has-children.is-open > .zs-header-submenu,
  .zs-header-subitem-has-children.is-open > .zs-header-submenu {
    display: block;
  }

  .zs-header-submenu a {
    padding: 8px 0;
    font-size: 15px;
    border-top: 0;
    color: rgba(31, 31, 31, 0.82);
  }

  .zs-header-submenu-level3 {
    position: static;
    min-width: 0;
    display: none;
    padding: 6px 0 0 18px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .zs-header-submenu a:hover {
    background: transparent;
  }


  .zs-footer-wrap,
  .zs-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .zs-footer-newsletter {
    grid-column: 1 / -1;
  }

  .zs-footer-form input {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 767px) {
  .zs-wz {
    padding: 0 20px;
  }

  .zs-main {
    padding-top: 80px;
  }

  .zs-header-inner {
    gap: 14px 16px;
    padding: 10px 0;
  }

  .zs-logo {
    width: 30px;
  }

  .zs-header-nav {
    left: 0;
    width: 100%;
    padding: 0 20px;
    transform: none;
  }

  .zs-site-footer {
    padding: 36px 0 24px;
  }

  .zs-footer-wrap,
  .zs-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .zs-footer-form {
    flex-wrap: wrap;
  }

  .zs-footer-form input {
    width: 100%;
    max-width: none;
  }

  .zs-footer-form button {
    min-width: 96px;
  }

  .zs-footer-social {
    margin-bottom: 24px;
  }
}

.zs-site-header.zs-menu-open .zs-menu-toggle-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.zs-site-header.zs-menu-open .zs-menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.zs-site-header.zs-menu-open .zs-menu-toggle-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 480px) {
  .zs-header-item a {
    padding: 14px 0;
    font-size: 16px;
  }
}
