:root {
  --wl-cream: #F5EFE5;
  --wl-dark: #172033;
  --wl-amber: #D97736;
  --wl-amber-hover: #C66A28;
  --wl-radius: 6px;
  --wl-font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --wl-font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.wl-header {
  width: 100%;
  background-color: var(--wl-cream);
  color: var(--wl-dark);
  font-family: var(--wl-font-sans);
  border-bottom: 1px solid rgba(23, 32, 51, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}
.wl-header__utility {
  background-color: var(--wl-dark);
  color: var(--wl-cream);
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.wl-header__main {
  padding: 16px 24px;
}
.wl-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wl-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--wl-dark);
}
.wl-brand svg {
  width: 28px;
  height: 28px;
  fill: var(--wl-amber);
}
.wl-brand__text {
  font-family: var(--wl-font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.wl-nav-desktop {
  display: none;
}
@media (min-width: 900px) {
  .wl-nav-desktop {
    display: flex;
    gap: 32px;
    align-items: center;
  }
}
.wl-nav__link {
  text-decoration: none;
  color: var(--wl-dark);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.wl-nav__link:hover {
  color: var(--wl-amber);
}
.wl-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wl-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--wl-amber);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--wl-radius);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
.wl-btn-primary:hover {
  background-color: var(--wl-amber-hover);
  color: #ffffff;
}
@media (max-width: 899px) {
  .wl-header__actions .wl-btn-primary {
    display: none;
  }
}
.wl-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 900px) {
  .wl-burger {
    display: none;
  }
}
.wl-burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--wl-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.wl-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
  font-family: var(--wl-font-sans);
}
.wl-mobile-nav[data-mobile-open="1"] {
  visibility: visible;
  opacity: 1;
}
.wl-mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(23, 32, 51, 0.4);
  backdrop-filter: blur(4px);
}
.wl-mobile-nav__panel {
  position: relative;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background-color: var(--wl-cream);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(23, 32, 51, 0.1);
}
.wl-mobile-nav[data-mobile-open="1"] .wl-mobile-nav__panel {
  transform: translateX(0);
}
.wl-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(23, 32, 51, 0.05);
}
.wl-mobile-nav__close {
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--wl-dark);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.wl-mobile-nav__content {
  flex: 1;
  padding: 40px 24px;
  overflow-y: auto;
}
.wl-mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.wl-mobile-nav__link {
  text-decoration: none;
  color: var(--wl-dark);
  font-family: var(--wl-font-serif);
  font-size: 28px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.wl-mobile-nav__link:hover {
  color: var(--wl-amber);
}
.wl-mobile-nav__footer {
  padding: 32px 24px;
  background-color: rgba(23, 32, 51, 0.03);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(23, 32, 51, 0.05);
}
.wl-btn-primary--full {
  width: 100%;
}

.wl-footer {
  background-color: var(--wl-dark);
  color: var(--wl-cream);
  font-family: var(--wl-font-sans);
  padding: 80px 24px 32px;
}
.wl-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .wl-footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.wl-footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wl-footer__brand {
  font-family: var(--wl-font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--wl-cream);
}
.wl-footer__summary {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 300px;
}
.wl-footer__heading {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  color: var(--wl-amber);
}
.wl-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wl-footer__link {
  text-decoration: none;
  color: var(--wl-cream);
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.wl-footer__link:hover {
  opacity: 1;
  color: var(--wl-amber);
}
.wl-footer__contact-link {
  color: var(--wl-cream);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.wl-footer__contact-link:hover {
  opacity: 1;
  color: var(--wl-amber);
}
.wl-footer__bottom {
  max-width: 1400px;
  margin: 64px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 239, 229, 0.1);
  text-align: center;
}
.wl-footer__copyright {
  font-size: 13px;
  opacity: 0.6;
}
[data-mobile-nav][hidden],[data-mobile-nav].hidden{display:none}
[data-mobile-nav][data-mobile-open="1"]{display:block}
