
:root{
  --ds-gold:#c69e52;
  --ds-gold-dark:#b48835;
  --ds-header-bg:rgba(251,248,245,.92);
  --ds-header-bg-scrolled:rgba(251,248,245,.97);
  --ds-header-line:rgba(230,223,215,.95);
  --ds-text:#2d4954;
  --ds-ease:cubic-bezier(.22,.61,.36,1);
}
.ds-header{
  position:sticky !important;
  top:0 !important;
  z-index:200 !important;
  background:var(--ds-header-bg) !important;
  backdrop-filter:saturate(1.18) blur(12px) !important;
  border-bottom:1px solid var(--ds-header-line) !important;
  transition:background .25s ease,border-color .25s ease,box-shadow .25s ease !important;
}
.ds-header.scrolled{
  background:var(--ds-header-bg-scrolled) !important;
  box-shadow:0 8px 30px rgba(31,60,73,.06) !important;
}
.ds-header .ds-header-inner{
  height:84px !important;
  min-height:84px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:24px !important;
}
.ds-logo{
  display:flex !important;
  align-items:center !important;
  text-decoration:none !important;
  color:inherit !important;
  flex-shrink:0 !important;
}
.ds-logo img{
  height:95px !important;
  width:auto !important;
  display:block !important;
  max-width:none !important;
}
.ds-header-actions{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:16px !important;
  flex:1 1 auto !important;
}
.ds-menu-wrap{
  position:relative !important;
  display:flex !important;
  align-items:center !important;
}
.ds-menu-button,
.ds-mobile-toggle{
  appearance:none !important;
  border:1px solid rgba(31,60,73,.12) !important;
  background:rgba(255,255,255,.84) !important;
  color:var(--ds-text) !important;
  min-width:86px !important;
  height:46px !important;
  padding:0 16px !important;
  border-radius:12px !important;
  font-size:15px !important;
  font-weight:500 !important;
  line-height:1 !important;
  cursor:pointer !important;
  box-shadow:0 8px 18px rgba(31,60,73,.05) !important;
  transition:transform .22s var(--ds-ease), box-shadow .22s ease !important;
}
.ds-menu-button:hover,
.ds-mobile-toggle:hover{
  transform:translateY(-1px) !important;
  box-shadow:0 12px 24px rgba(31,60,73,.08) !important;
}
.ds-header-cta{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:46px !important;
  height:46px !important;
  padding:0 22px !important;
  border-radius:12px !important;
  background:linear-gradient(180deg,var(--gold, #c69e52),var(--gold-dark, #b48835)) !important;
  color:#fff !important;
  text-decoration:none !important;
  font-size:15px !important;
  font-weight:600 !important;
  letter-spacing:.01em !important;
  white-space:nowrap !important;
  text-align:center !important;
  border:1px solid rgba(255,255,255,.22) !important;
  box-shadow:0 16px 32px rgba(180,136,53,.22) !important;
  transition:transform .22s cubic-bezier(.22,.61,.36,1),box-shadow .22s ease,filter .22s ease,background .22s ease,border-color .22s ease !important;
}
.ds-header-cta:hover{
  transform:translateY(-2px) !important;
  box-shadow:0 20px 40px rgba(180,136,53,.28) !important;
  filter:brightness(1.02) !important;
}
.ds-menu-panel,
.ds-mobile-panel{
  display:none !important;
  background:rgba(248,245,242,.98) !important;
  border:1px solid rgba(217,206,194,.95) !important;
  border-radius:14px !important;
  box-shadow:0 18px 40px rgba(31,60,73,.10) !important;
}
.ds-menu-panel{
  position:absolute !important;
  top:calc(100% + 12px) !important;
  right:0 !important;
  min-width:240px !important;
  padding:12px 14px !important;
  z-index:220 !important;
}
.ds-menu-panel.open{display:grid !important; gap:2px !important;}
.ds-menu-link,
.ds-mobile-link{
  display:block !important;
  text-decoration:none !important;
  color:var(--ds-text) !important;
  font-size:14px !important;
  line-height:1.25 !important;
}
.ds-menu-link{
  padding:10px 0 !important;
  font-weight:500 !important;
  white-space:nowrap !important;
}
.ds-mobile-link{
  padding:9px 0 !important;
  font-weight:600 !important;
}
.ds-menu-link:hover,
.ds-mobile-link:hover{opacity:.78 !important;}
.ds-menu-link.active,
.ds-mobile-link.active{color:#1f3c49 !important;}

.ds-mobile-toggle{display:none !important;}
.ds-mobile-panel{
  position:absolute !important;
  top:calc(100% + 10px) !important;
  left:18px !important;
  right:18px !important;
  padding:10px 12px 12px !important;
  z-index:220 !important;
}
.ds-mobile-panel.open{display:grid !important; gap:2px !important;}
.ds-mobile-cta{
  margin-top:6px !important;
  width:100% !important;
  min-height:42px !important;
  height:42px !important;
  justify-content:center !important;
}
@media (max-width: 900px){
  .ds-header-actions{display:none !important;}
  .ds-mobile-toggle{display:inline-flex !important; align-items:center !important; justify-content:center !important;}
  .ds-header .ds-header-inner{
    gap:12px !important;
    padding:12px 0 !important;
    height:auto !important;
    min-height:84px !important;
  }
}

/* Footer */
.ds-footer{
  background:
    radial-gradient(80% 120% at 0% 100%, rgba(17,45,72,.26) 0%, rgba(17,45,72,0) 44%),
    linear-gradient(180deg, #334d5f 0%, #1b2f3a 100%) !important;
  color:#fff !important;
  padding:58px 0 0 !important;
  overflow:hidden !important;
  margin-top:72px !important;
}
.ds-footer-grid{
  display:grid !important;
  grid-template-columns:1.2fr 1fr 1fr 1.2fr !important;
  gap:40px !important;
  align-items:start !important;
  padding-bottom:24px !important;
}
.ds-footer-heading{
  margin:0 0 12px !important;
  padding-bottom:10px !important;
  border-bottom:1px solid rgba(255,255,255,.18) !important;
  font-size:14px !important;
  font-weight:600 !important;
  color:#fff !important;
  opacity:.95 !important;
}
.ds-footer-col p,
.ds-footer-col a{
  display:block !important;
  margin:0 0 10px !important;
  line-height:1.5 !important;
  color:rgba(255,255,255,.85) !important;
  text-decoration:none !important;
  font-size:15px !important;
}
.ds-footer-col a:hover{
  color:#fff !important;
}
.ds-contact-line{
  display:flex !important;
  gap:6px !important;
  flex-wrap:wrap !important;
  margin:0 0 10px !important;
}
.ds-contact-line span{
  color:rgba(255,255,255,.65) !important;
  font-size:15px !important;
}
.ds-footer-bottom{
  position:relative !important;
  border-top:1px solid rgba(255,255,255,.14) !important;
  min-height:62px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin-top:10px !important;
  padding-top:8px !important;
}
.ds-footer-bottom p{
  margin:0 !important;
  text-align:center !important;
  font-size:13px !important;
  color:rgba(255,255,255,.66) !important;
}
.ds-footer-socials{
  position:absolute !important;
  right:26px !important;
  top:50% !important;
  transform:translateY(-50%) !important;
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
}
.ds-social-link{
  width:22px !important;
  height:22px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.07) !important;
  border:1px solid rgba(255,255,255,.09) !important;
  opacity:.88 !important;
  color:#fff !important;
  text-decoration:none !important;
}
.ds-social-link svg{
  width:11px !important;
  height:11px !important;
  fill:#fff !important;
}
.ds-footer-end-line{
  max-width:1200px !important;
  margin:8px auto 10px !important;
  height:1px !important;
  opacity:.25 !important;
  background:linear-gradient(to right, transparent, rgba(255,255,255,.25), transparent) !important;
}
@media (max-width: 900px){
  .ds-footer-grid{
    grid-template-columns:1fr !important;
    gap:18px !important;
    padding-bottom:16px !important;
  }
  .ds-footer-bottom{
    justify-content:flex-start !important;
    padding:8px 0 40px !important;
  }
  .ds-footer-bottom p{
    text-align:left !important;
  }
  .ds-footer-socials{
    right:0 !important;
    top:auto !important;
    bottom:4px !important;
    transform:none !important;
  }
}

